mbed Weather Platform firmware http://mbed.org/users/okini3939/notebook/mbed-weather-platform-firmware/

Dependencies:   EthernetNetIf SDHCFileSystem I2CLEDDisp Agentbed NTPClient_NetServices mbed BMP085 HTTPClient ConfigFile I2CLCD

Committer:
okini3939
Date:
Fri Dec 10 17:15:15 2010 +0000
Revision:
0:4265d973a98f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 0:4265d973a98f 1
okini3939 0:4265d973a98f 2 /*
okini3939 0:4265d973a98f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 0:4265d973a98f 4
okini3939 0:4265d973a98f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 0:4265d973a98f 6 of this software and associated documentation files (the "Software"), to deal
okini3939 0:4265d973a98f 7 in the Software without restriction, including without limitation the rights
okini3939 0:4265d973a98f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 0:4265d973a98f 9 copies of the Software, and to permit persons to whom the Software is
okini3939 0:4265d973a98f 10 furnished to do so, subject to the following conditions:
okini3939 0:4265d973a98f 11
okini3939 0:4265d973a98f 12 The above copyright notice and this permission notice shall be included in
okini3939 0:4265d973a98f 13 all copies or substantial portions of the Software.
okini3939 0:4265d973a98f 14
okini3939 0:4265d973a98f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 0:4265d973a98f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 0:4265d973a98f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 0:4265d973a98f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 0:4265d973a98f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 0:4265d973a98f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 0:4265d973a98f 21 THE SOFTWARE.
okini3939 0:4265d973a98f 22 */
okini3939 0:4265d973a98f 23
okini3939 0:4265d973a98f 24 /** \file
okini3939 0:4265d973a98f 25 HTTP Text data source/sink header file
okini3939 0:4265d973a98f 26 */
okini3939 0:4265d973a98f 27
okini3939 0:4265d973a98f 28 #ifndef HTTP_TEXT_H
okini3939 0:4265d973a98f 29 #define HTTP_TEXT_H
okini3939 0:4265d973a98f 30
okini3939 0:4265d973a98f 31 #include "../HTTPData.h"
okini3939 0:4265d973a98f 32 #include "mbed.h"
okini3939 0:4265d973a98f 33
okini3939 0:4265d973a98f 34 #define DEFAULT_MAX_MEM_ALLOC 512 //Avoid out-of-memory problems
okini3939 0:4265d973a98f 35
okini3939 0:4265d973a98f 36 ///HTTP Client data container for text
okini3939 0:4265d973a98f 37 /**
okini3939 0:4265d973a98f 38 This is a simple "Text" data repository for HTTP requests.
okini3939 0:4265d973a98f 39 */
okini3939 0:4265d973a98f 40 class HTTPText : public HTTPData //Simple Text I/O
okini3939 0:4265d973a98f 41 {
okini3939 0:4265d973a98f 42 public:
okini3939 0:4265d973a98f 43 ///Instantiates the object.
okini3939 0:4265d973a98f 44 /**
okini3939 0:4265d973a98f 45 @param encoding encoding of the data, it defaults to text/html.
okini3939 0:4265d973a98f 46 @param maxSize defines the maximum memory size that can be allocated by the object. It defaults to 512 bytes.
okini3939 0:4265d973a98f 47 */
okini3939 0:4265d973a98f 48 HTTPText(const string& encoding = "text/html", int maxSize = DEFAULT_MAX_MEM_ALLOC);
okini3939 0:4265d973a98f 49 virtual ~HTTPText();
okini3939 0:4265d973a98f 50
okini3939 0:4265d973a98f 51 ///Gets text
okini3939 0:4265d973a98f 52 /**
okini3939 0:4265d973a98f 53 Returns the text in the container as a zero-terminated char*.
okini3939 0:4265d973a98f 54 The array returned points to the internal buffer of the object and remains owned by the object.
okini3939 0:4265d973a98f 55 */
okini3939 0:4265d973a98f 56 const char* gets() const;
okini3939 0:4265d973a98f 57
okini3939 0:4265d973a98f 58 //Puts text
okini3939 0:4265d973a98f 59 /**
okini3939 0:4265d973a98f 60 Sets the text in the container using a zero-terminated char*.
okini3939 0:4265d973a98f 61 */
okini3939 0:4265d973a98f 62 void puts(const char* str);
okini3939 0:4265d973a98f 63
okini3939 0:4265d973a98f 64 ///Gets text
okini3939 0:4265d973a98f 65 /**
okini3939 0:4265d973a98f 66 Returns the text in the container as string.
okini3939 0:4265d973a98f 67 */
okini3939 0:4265d973a98f 68 string& get();
okini3939 0:4265d973a98f 69
okini3939 0:4265d973a98f 70 ///Puts text
okini3939 0:4265d973a98f 71 /**
okini3939 0:4265d973a98f 72 Sets the text in the container as string.
okini3939 0:4265d973a98f 73 */
okini3939 0:4265d973a98f 74 void set(const string& str);
okini3939 0:4265d973a98f 75
okini3939 0:4265d973a98f 76 ///Clears the content.
okini3939 0:4265d973a98f 77 /**
okini3939 0:4265d973a98f 78 If this container is used as a data sink, it is cleared by the HTTP Client at the beginning of the request.
okini3939 0:4265d973a98f 79 */
okini3939 0:4265d973a98f 80 virtual void clear();
okini3939 0:4265d973a98f 81
okini3939 0:4265d973a98f 82 protected:
okini3939 0:4265d973a98f 83 virtual int read(char* buf, int len);
okini3939 0:4265d973a98f 84 virtual int write(const char* buf, int len);
okini3939 0:4265d973a98f 85
okini3939 0:4265d973a98f 86 virtual string getDataType(); //Internet media type for Content-Type header
okini3939 0:4265d973a98f 87 virtual void setDataType(const string& type); //Internet media type from Content-Type header
okini3939 0:4265d973a98f 88
okini3939 0:4265d973a98f 89 virtual bool getIsChunked(); //For Transfer-Encoding header
okini3939 0:4265d973a98f 90 virtual void setIsChunked(bool chunked); //From Transfer-Encoding header
okini3939 0:4265d973a98f 91
okini3939 0:4265d973a98f 92 virtual int getDataLen(); //For Content-Length header
okini3939 0:4265d973a98f 93 virtual void setDataLen(int len); //From Content-Length header, or if the transfer is chunked, next chunk length
okini3939 0:4265d973a98f 94
okini3939 0:4265d973a98f 95 private:
okini3939 0:4265d973a98f 96 string m_buf;
okini3939 0:4265d973a98f 97 string m_encoding;
okini3939 0:4265d973a98f 98 int m_maxSize;
okini3939 0:4265d973a98f 99 };
okini3939 0:4265d973a98f 100
okini3939 0:4265d973a98f 101 #endif