Hi. This is the feed program for Cosm. (The previous name of the services is Pachube.)

Dependencies:   mbed ThermistorPack Pachube ConfigFile EthernetNetIf TextLCD HTTPClient_ToBeRemoved FatFileSystem SDFileSystem

Committer:
shintamainjp
Date:
Mon Aug 06 12:37:59 2012 +0000
Revision:
0:521ba375aa0f
Pachube renamed to Cosm.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shintamainjp 0:521ba375aa0f 1
shintamainjp 0:521ba375aa0f 2 /*
shintamainjp 0:521ba375aa0f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
shintamainjp 0:521ba375aa0f 4
shintamainjp 0:521ba375aa0f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
shintamainjp 0:521ba375aa0f 6 of this software and associated documentation files (the "Software"), to deal
shintamainjp 0:521ba375aa0f 7 in the Software without restriction, including without limitation the rights
shintamainjp 0:521ba375aa0f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
shintamainjp 0:521ba375aa0f 9 copies of the Software, and to permit persons to whom the Software is
shintamainjp 0:521ba375aa0f 10 furnished to do so, subject to the following conditions:
shintamainjp 0:521ba375aa0f 11
shintamainjp 0:521ba375aa0f 12 The above copyright notice and this permission notice shall be included in
shintamainjp 0:521ba375aa0f 13 all copies or substantial portions of the Software.
shintamainjp 0:521ba375aa0f 14
shintamainjp 0:521ba375aa0f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
shintamainjp 0:521ba375aa0f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
shintamainjp 0:521ba375aa0f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
shintamainjp 0:521ba375aa0f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
shintamainjp 0:521ba375aa0f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
shintamainjp 0:521ba375aa0f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
shintamainjp 0:521ba375aa0f 21 THE SOFTWARE.
shintamainjp 0:521ba375aa0f 22 */
shintamainjp 0:521ba375aa0f 23
shintamainjp 0:521ba375aa0f 24 /** \file
shintamainjp 0:521ba375aa0f 25 HTTP Map data source/sink header file
shintamainjp 0:521ba375aa0f 26 */
shintamainjp 0:521ba375aa0f 27
shintamainjp 0:521ba375aa0f 28 #ifndef HTTP_MAP_H
shintamainjp 0:521ba375aa0f 29 #define HTTP_MAP_H
shintamainjp 0:521ba375aa0f 30
shintamainjp 0:521ba375aa0f 31 #include "../HTTPData.h"
shintamainjp 0:521ba375aa0f 32 #include "mbed.h"
shintamainjp 0:521ba375aa0f 33
shintamainjp 0:521ba375aa0f 34 #include <map>
shintamainjp 0:521ba375aa0f 35 using std::map;
shintamainjp 0:521ba375aa0f 36
shintamainjp 0:521ba375aa0f 37 typedef map<string, string> Dictionary;
shintamainjp 0:521ba375aa0f 38
shintamainjp 0:521ba375aa0f 39 ///HTTP Client data container for key/value pairs
shintamainjp 0:521ba375aa0f 40 /**
shintamainjp 0:521ba375aa0f 41 This class simplifies the use of key/value pairs requests and responses used widely among web APIs.
shintamainjp 0:521ba375aa0f 42 Note that HTTPMap inherits from std::map<std::string,std::string>.
shintamainjp 0:521ba375aa0f 43 You can therefore use any public method of that class, including the square brackets operator ( [ ] ) to access a value.
shintamainjp 0:521ba375aa0f 44
shintamainjp 0:521ba375aa0f 45 The data is encoded or decoded to/from a key/value pairs-formatted string, after url-encoding/decoding.
shintamainjp 0:521ba375aa0f 46 */
shintamainjp 0:521ba375aa0f 47 class HTTPMap : public HTTPData, public Dictionary //Key/Value pairs
shintamainjp 0:521ba375aa0f 48 {
shintamainjp 0:521ba375aa0f 49 public:
shintamainjp 0:521ba375aa0f 50 ///Instantiates map
shintamainjp 0:521ba375aa0f 51 /**
shintamainjp 0:521ba375aa0f 52 @param keyValueSep Key/Value separator (defaults to "=")
shintamainjp 0:521ba375aa0f 53 @param pairSep Pairs separator (defaults to "&")
shintamainjp 0:521ba375aa0f 54 */
shintamainjp 0:521ba375aa0f 55 HTTPMap(const string& keyValueSep = "=", const string& pairSep = "&");
shintamainjp 0:521ba375aa0f 56 virtual ~HTTPMap();
shintamainjp 0:521ba375aa0f 57
shintamainjp 0:521ba375aa0f 58 /* string& operator[](const string& key);
shintamainjp 0:521ba375aa0f 59 int count();*/
shintamainjp 0:521ba375aa0f 60
shintamainjp 0:521ba375aa0f 61 ///Clears the content
shintamainjp 0:521ba375aa0f 62 virtual void clear();
shintamainjp 0:521ba375aa0f 63
shintamainjp 0:521ba375aa0f 64 protected:
shintamainjp 0:521ba375aa0f 65 virtual int read(char* buf, int len);
shintamainjp 0:521ba375aa0f 66 virtual int write(const char* buf, int len);
shintamainjp 0:521ba375aa0f 67
shintamainjp 0:521ba375aa0f 68 virtual string getDataType(); //Internet media type for Content-Type header
shintamainjp 0:521ba375aa0f 69 virtual void setDataType(const string& type); //Internet media type from Content-Type header
shintamainjp 0:521ba375aa0f 70
shintamainjp 0:521ba375aa0f 71 virtual bool getIsChunked(); //For Transfer-Encoding header
shintamainjp 0:521ba375aa0f 72 virtual void setIsChunked(bool chunked); //From Transfer-Encoding header
shintamainjp 0:521ba375aa0f 73
shintamainjp 0:521ba375aa0f 74 virtual int getDataLen(); //For Content-Length header
shintamainjp 0:521ba375aa0f 75 virtual void setDataLen(int len); //From Content-Length header
shintamainjp 0:521ba375aa0f 76
shintamainjp 0:521ba375aa0f 77 private:
shintamainjp 0:521ba375aa0f 78 void generateString();
shintamainjp 0:521ba375aa0f 79 void parseString();
shintamainjp 0:521ba375aa0f 80 //map<string, string> m_map;
shintamainjp 0:521ba375aa0f 81 string m_buf;
shintamainjp 0:521ba375aa0f 82 int m_len;
shintamainjp 0:521ba375aa0f 83 bool m_chunked;
shintamainjp 0:521ba375aa0f 84
shintamainjp 0:521ba375aa0f 85 string m_keyValueSep;
shintamainjp 0:521ba375aa0f 86 string m_pairSep;
shintamainjp 0:521ba375aa0f 87 };
shintamainjp 0:521ba375aa0f 88
shintamainjp 0:521ba375aa0f 89 #endif