mbeduino + Weatherduino Weather Stations post test

Dependencies:   mbed

Committer:
okini3939
Date:
Tue Oct 26 17:19:28 2010 +0000
Revision:
0:10bcaa7c2253

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 0:10bcaa7c2253 1
okini3939 0:10bcaa7c2253 2 /*
okini3939 0:10bcaa7c2253 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 0:10bcaa7c2253 4
okini3939 0:10bcaa7c2253 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 0:10bcaa7c2253 6 of this software and associated documentation files (the "Software"), to deal
okini3939 0:10bcaa7c2253 7 in the Software without restriction, including without limitation the rights
okini3939 0:10bcaa7c2253 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 0:10bcaa7c2253 9 copies of the Software, and to permit persons to whom the Software is
okini3939 0:10bcaa7c2253 10 furnished to do so, subject to the following conditions:
okini3939 0:10bcaa7c2253 11
okini3939 0:10bcaa7c2253 12 The above copyright notice and this permission notice shall be included in
okini3939 0:10bcaa7c2253 13 all copies or substantial portions of the Software.
okini3939 0:10bcaa7c2253 14
okini3939 0:10bcaa7c2253 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 0:10bcaa7c2253 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 0:10bcaa7c2253 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 0:10bcaa7c2253 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 0:10bcaa7c2253 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 0:10bcaa7c2253 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 0:10bcaa7c2253 21 THE SOFTWARE.
okini3939 0:10bcaa7c2253 22 */
okini3939 0:10bcaa7c2253 23
okini3939 0:10bcaa7c2253 24 #ifndef HTTP_STREAM_H
okini3939 0:10bcaa7c2253 25 #define HTTP_STREAM_H
okini3939 0:10bcaa7c2253 26
okini3939 0:10bcaa7c2253 27 #include "../HTTPData.h"
okini3939 0:10bcaa7c2253 28 #include "mbed.h"
okini3939 0:10bcaa7c2253 29
okini3939 0:10bcaa7c2253 30 /** \file
okini3939 0:10bcaa7c2253 31 HTTP Stream data source/sink header file
okini3939 0:10bcaa7c2253 32 */
okini3939 0:10bcaa7c2253 33
okini3939 0:10bcaa7c2253 34 typedef uint8_t byte;
okini3939 0:10bcaa7c2253 35
okini3939 0:10bcaa7c2253 36 ///HTTP Client Streaming tool
okini3939 0:10bcaa7c2253 37 /**
okini3939 0:10bcaa7c2253 38 This class allows you to stream data from the web using a persisting HTTP connection.
okini3939 0:10bcaa7c2253 39 To use it properly you must use a non-blocking HTTPClient method.
okini3939 0:10bcaa7c2253 40 */
okini3939 0:10bcaa7c2253 41 class HTTPStream : public HTTPData //Streaming buf
okini3939 0:10bcaa7c2253 42 {
okini3939 0:10bcaa7c2253 43 public:
okini3939 0:10bcaa7c2253 44 ///Instantiates the object
okini3939 0:10bcaa7c2253 45 HTTPStream();
okini3939 0:10bcaa7c2253 46 virtual ~HTTPStream();
okini3939 0:10bcaa7c2253 47
okini3939 0:10bcaa7c2253 48 ///Starts to read into buffer
okini3939 0:10bcaa7c2253 49 /**
okini3939 0:10bcaa7c2253 50 Passes a buffer of address @a buf and size @a size to the instance.
okini3939 0:10bcaa7c2253 51 When it receives data it will be stored in this buffer.
okini3939 0:10bcaa7c2253 52 When the buffer is full it throttles the client until this function is called again.
okini3939 0:10bcaa7c2253 53 */
okini3939 0:10bcaa7c2253 54 void readNext(byte* buf, int size);
okini3939 0:10bcaa7c2253 55
okini3939 0:10bcaa7c2253 56 ///Returns whether there is data available to read
okini3939 0:10bcaa7c2253 57 bool readable();
okini3939 0:10bcaa7c2253 58
okini3939 0:10bcaa7c2253 59 ///Returns the actual length of the payload written in the buffer
okini3939 0:10bcaa7c2253 60 int readLen();
okini3939 0:10bcaa7c2253 61
okini3939 0:10bcaa7c2253 62 virtual void clear();
okini3939 0:10bcaa7c2253 63
okini3939 0:10bcaa7c2253 64 protected:
okini3939 0:10bcaa7c2253 65 virtual int read(char* buf, int len);
okini3939 0:10bcaa7c2253 66 virtual int write(const char* buf, int len);
okini3939 0:10bcaa7c2253 67
okini3939 0:10bcaa7c2253 68 virtual string getDataType(); //Internet media type for Content-Type header
okini3939 0:10bcaa7c2253 69 virtual void setDataType(const string& type); //Internet media type from Content-Type header
okini3939 0:10bcaa7c2253 70
okini3939 0:10bcaa7c2253 71 virtual bool getIsChunked(); //For Transfer-Encoding header
okini3939 0:10bcaa7c2253 72 virtual void setIsChunked(bool chunked); //From Transfer-Encoding header
okini3939 0:10bcaa7c2253 73
okini3939 0:10bcaa7c2253 74 virtual int getDataLen(); //For Content-Length header
okini3939 0:10bcaa7c2253 75 virtual void setDataLen(int len); //From Content-Length header, or if the transfer is chunked, next chunk length
okini3939 0:10bcaa7c2253 76
okini3939 0:10bcaa7c2253 77 private:
okini3939 0:10bcaa7c2253 78 byte* m_buf;
okini3939 0:10bcaa7c2253 79 int m_size; //Capacity
okini3939 0:10bcaa7c2253 80 int m_len; //Length
okini3939 0:10bcaa7c2253 81 };
okini3939 0:10bcaa7c2253 82
okini3939 0:10bcaa7c2253 83 #endif