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 #ifndef URL_H
okini3939 0:4265d973a98f 25 #define URL_H
okini3939 0:4265d973a98f 26
okini3939 0:4265d973a98f 27 #include "core/ipaddr.h"
okini3939 0:4265d973a98f 28
okini3939 0:4265d973a98f 29 #include <string>
okini3939 0:4265d973a98f 30 using std::string;
okini3939 0:4265d973a98f 31
okini3939 0:4265d973a98f 32 #include "mbed.h"
okini3939 0:4265d973a98f 33
okini3939 0:4265d973a98f 34 #ifdef __cplusplus
okini3939 0:4265d973a98f 35 extern "C" {
okini3939 0:4265d973a98f 36 #endif
okini3939 0:4265d973a98f 37
okini3939 0:4265d973a98f 38 char *url_encode(char *str);
okini3939 0:4265d973a98f 39 char *url_decode(char *str);
okini3939 0:4265d973a98f 40
okini3939 0:4265d973a98f 41 #ifdef __cplusplus
okini3939 0:4265d973a98f 42 }
okini3939 0:4265d973a98f 43 #endif
okini3939 0:4265d973a98f 44
okini3939 0:4265d973a98f 45 class Url
okini3939 0:4265d973a98f 46 {
okini3939 0:4265d973a98f 47 public:
okini3939 0:4265d973a98f 48 static string encode(const string& url)
okini3939 0:4265d973a98f 49 {
okini3939 0:4265d973a98f 50 char* c_res = url_encode( (char*) url.c_str() );
okini3939 0:4265d973a98f 51 string res(c_res);
okini3939 0:4265d973a98f 52 free(c_res); //Alloc'ed in url_encode()
okini3939 0:4265d973a98f 53 return res;
okini3939 0:4265d973a98f 54 }
okini3939 0:4265d973a98f 55
okini3939 0:4265d973a98f 56 static string decode(const string& url)
okini3939 0:4265d973a98f 57 {
okini3939 0:4265d973a98f 58 char* c_res = url_decode( (char*) url.c_str() );
okini3939 0:4265d973a98f 59 string res(c_res);
okini3939 0:4265d973a98f 60 free(c_res); //Alloc'ed in url_decode()
okini3939 0:4265d973a98f 61 return res;
okini3939 0:4265d973a98f 62 }
okini3939 0:4265d973a98f 63
okini3939 0:4265d973a98f 64 Url();
okini3939 0:4265d973a98f 65
okini3939 0:4265d973a98f 66 string getProtocol();
okini3939 0:4265d973a98f 67 string getHost();
okini3939 0:4265d973a98f 68 bool getHostIp(IpAddr* ip); //If host is in IP form, return true & proper object by ptr
okini3939 0:4265d973a98f 69 uint16_t getPort();
okini3939 0:4265d973a98f 70 string getPath();
okini3939 0:4265d973a98f 71
okini3939 0:4265d973a98f 72 void setProtocol(string protocol);
okini3939 0:4265d973a98f 73 void setHost(string host);
okini3939 0:4265d973a98f 74 void setPort(uint16_t port);
okini3939 0:4265d973a98f 75 void setPath(string path);
okini3939 0:4265d973a98f 76
okini3939 0:4265d973a98f 77 void fromString(string str);
okini3939 0:4265d973a98f 78 string toString();
okini3939 0:4265d973a98f 79
okini3939 0:4265d973a98f 80 private:
okini3939 0:4265d973a98f 81 string m_protocol;
okini3939 0:4265d973a98f 82 string m_host;
okini3939 0:4265d973a98f 83 uint16_t m_port;
okini3939 0:4265d973a98f 84 string m_path;
okini3939 0:4265d973a98f 85
okini3939 0:4265d973a98f 86 };
okini3939 0:4265d973a98f 87
okini3939 0:4265d973a98f 88 #endif /* LWIP_UTILS_H */