Geiger counter http://geigermaps.jp/Create/Tutorials/mbed_geiger/ja

Dependencies:   mbed

Committer:
okini3939
Date:
Fri Apr 15 16:51:30 2011 +0000
Revision:
0:5b2e60110d9b

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 0:5b2e60110d9b 1
okini3939 0:5b2e60110d9b 2 /*
okini3939 0:5b2e60110d9b 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 0:5b2e60110d9b 4
okini3939 0:5b2e60110d9b 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 0:5b2e60110d9b 6 of this software and associated documentation files (the "Software"), to deal
okini3939 0:5b2e60110d9b 7 in the Software without restriction, including without limitation the rights
okini3939 0:5b2e60110d9b 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 0:5b2e60110d9b 9 copies of the Software, and to permit persons to whom the Software is
okini3939 0:5b2e60110d9b 10 furnished to do so, subject to the following conditions:
okini3939 0:5b2e60110d9b 11
okini3939 0:5b2e60110d9b 12 The above copyright notice and this permission notice shall be included in
okini3939 0:5b2e60110d9b 13 all copies or substantial portions of the Software.
okini3939 0:5b2e60110d9b 14
okini3939 0:5b2e60110d9b 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 0:5b2e60110d9b 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 0:5b2e60110d9b 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 0:5b2e60110d9b 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 0:5b2e60110d9b 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 0:5b2e60110d9b 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 0:5b2e60110d9b 21 THE SOFTWARE.
okini3939 0:5b2e60110d9b 22 */
okini3939 0:5b2e60110d9b 23
okini3939 0:5b2e60110d9b 24 #ifndef HTTP_DATA_H
okini3939 0:5b2e60110d9b 25 #define HTTP_DATA_H
okini3939 0:5b2e60110d9b 26
okini3939 0:5b2e60110d9b 27 #include "core/net.h"
okini3939 0:5b2e60110d9b 28
okini3939 0:5b2e60110d9b 29 #include <string>
okini3939 0:5b2e60110d9b 30 using std::string;
okini3939 0:5b2e60110d9b 31
okini3939 0:5b2e60110d9b 32 class HTTPData //This is a simple interface for HTTP data storage (impl examples are Key/Value Pairs, File, etc...)
okini3939 0:5b2e60110d9b 33 {
okini3939 0:5b2e60110d9b 34 public:
okini3939 0:5b2e60110d9b 35 HTTPData();
okini3939 0:5b2e60110d9b 36 virtual ~HTTPData();
okini3939 0:5b2e60110d9b 37
okini3939 0:5b2e60110d9b 38 virtual void clear() = 0;
okini3939 0:5b2e60110d9b 39
okini3939 0:5b2e60110d9b 40 protected:
okini3939 0:5b2e60110d9b 41 friend class HTTPClient;
okini3939 0:5b2e60110d9b 42 virtual int read(char* buf, int len) = 0;
okini3939 0:5b2e60110d9b 43 virtual int write(const char* buf, int len) = 0;
okini3939 0:5b2e60110d9b 44
okini3939 0:5b2e60110d9b 45 virtual string getDataType() = 0; //Internet media type for Content-Type header
okini3939 0:5b2e60110d9b 46 virtual void setDataType(const string& type) = 0; //Internet media type from Content-Type header
okini3939 0:5b2e60110d9b 47
okini3939 0:5b2e60110d9b 48 virtual bool getIsChunked() = 0; //For Transfer-Encoding header
okini3939 0:5b2e60110d9b 49 virtual void setIsChunked(bool chunked) = 0; //From Transfer-Encoding header
okini3939 0:5b2e60110d9b 50
okini3939 0:5b2e60110d9b 51 virtual int getDataLen() = 0; //For Content-Length header
okini3939 0:5b2e60110d9b 52 virtual void setDataLen(int len) = 0; //From Content-Length header, or if the transfer is chunked, next chunk length
okini3939 0:5b2e60110d9b 53
okini3939 0:5b2e60110d9b 54 private:
okini3939 0:5b2e60110d9b 55
okini3939 0:5b2e60110d9b 56 };
okini3939 0:5b2e60110d9b 57
okini3939 0:5b2e60110d9b 58 #endif