WebSocket client library

Committer:
samux
Date:
Thu Aug 25 06:11:04 2011 +0000
Revision:
11:094c86973097
Parent:
10:4f02275c34ee
Child:
12:1f6b9451a608

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
samux 0:21fe3b05249f 1 /**
samux 0:21fe3b05249f 2 * @author Samuel Mokrani
samux 0:21fe3b05249f 3 *
samux 0:21fe3b05249f 4 * @section LICENSE
samux 0:21fe3b05249f 5 *
samux 0:21fe3b05249f 6 * Copyright (c) 2011 mbed
samux 0:21fe3b05249f 7 *
samux 0:21fe3b05249f 8 * Permission is hereby granted, free of charge, to any person obtaining a copy
samux 0:21fe3b05249f 9 * of this software and associated documentation files (the "Software"), to deal
samux 0:21fe3b05249f 10 * in the Software without restriction, including without limitation the rights
samux 0:21fe3b05249f 11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
samux 0:21fe3b05249f 12 * copies of the Software, and to permit persons to whom the Software is
samux 0:21fe3b05249f 13 * furnished to do so, subject to the following conditions:
samux 0:21fe3b05249f 14 *
samux 0:21fe3b05249f 15 * The above copyright notice and this permission notice shall be included in
samux 0:21fe3b05249f 16 * all copies or substantial portions of the Software.
samux 0:21fe3b05249f 17 *
samux 0:21fe3b05249f 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
samux 0:21fe3b05249f 19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
samux 0:21fe3b05249f 20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
samux 0:21fe3b05249f 21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
samux 0:21fe3b05249f 22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
samux 0:21fe3b05249f 23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
samux 0:21fe3b05249f 24 * THE SOFTWARE.
samux 0:21fe3b05249f 25 *
samux 0:21fe3b05249f 26 * @section DESCRIPTION
samux 0:21fe3b05249f 27 * Simple websocket client
samux 0:21fe3b05249f 28 *
samux 0:21fe3b05249f 29 */
samux 0:21fe3b05249f 30
samux 0:21fe3b05249f 31 #ifndef WEBSOCKET_H
samux 0:21fe3b05249f 32 #define WEBSOCKET_H
samux 0:21fe3b05249f 33
samux 0:21fe3b05249f 34 #include "mbed.h"
samux 0:21fe3b05249f 35 #include "Wifly.h"
samux 6:01a1eb7c0145 36 #include "EthernetNetIf.h"
samux 6:01a1eb7c0145 37 #include "TCPSocket.h"
samux 6:01a1eb7c0145 38 #include "dnsresolve.h"
samux 6:01a1eb7c0145 39
samux 0:21fe3b05249f 40 /** Websocket client Class.
samux 0:21fe3b05249f 41 *
samux 10:4f02275c34ee 42 * Warning: you must use a wifi module (Wifly RN131-C or RN131-g) to use this class or an ethernet connection
samux 0:21fe3b05249f 43 *
samux 10:4f02275c34ee 44 * Example with a Wifi module (Wifly RN131-C or RNR131-g):
samux 0:21fe3b05249f 45 * @code
samux 0:21fe3b05249f 46 * #include "mbed.h"
samux 0:21fe3b05249f 47 * #include "Wifly.h"
samux 0:21fe3b05249f 48 * #include "Websocket.h"
samux 0:21fe3b05249f 49 *
samux 0:21fe3b05249f 50 * Serial pc(USBTX, USBRX);
samux 0:21fe3b05249f 51 * Wifly * wifly;
samux 0:21fe3b05249f 52 * Websocket * ws;
samux 0:21fe3b05249f 53 *
samux 0:21fe3b05249f 54 * int main()
samux 0:21fe3b05249f 55 * {
samux 0:21fe3b05249f 56 * wifly = new Wifly(p9, p10, p20, "network", "password", true);
samux 10:4f02275c34ee 57 * ws = new Websocket("ws://ip_domain:443/path", wifly);
samux 0:21fe3b05249f 58 *
samux 0:21fe3b05249f 59 * if(wifly->Join())
samux 0:21fe3b05249f 60 * {
samux 0:21fe3b05249f 61 * if(ws->connect())
samux 0:21fe3b05249f 62 * {
samux 0:21fe3b05249f 63 * pc.printf("ws connected\r\n");
samux 0:21fe3b05249f 64 * while(1)
samux 0:21fe3b05249f 65 * {
samux 0:21fe3b05249f 66 * wait(0.1);
samux 0:21fe3b05249f 67 * ws->Send("test");
samux 0:21fe3b05249f 68 * }
samux 0:21fe3b05249f 69 * }
samux 0:21fe3b05249f 70 * else
samux 0:21fe3b05249f 71 * pc.printf("ws not connected\r\n");
samux 0:21fe3b05249f 72 * }
samux 0:21fe3b05249f 73 * else
samux 0:21fe3b05249f 74 * pc.printf("join network failed\r\n");
samux 0:21fe3b05249f 75 *
samux 0:21fe3b05249f 76 * }
samux 0:21fe3b05249f 77 * @endcode
samux 10:4f02275c34ee 78 *
samux 10:4f02275c34ee 79 *
samux 10:4f02275c34ee 80 * Example with an Ethernet Jack:
samux 10:4f02275c34ee 81 * @code
samux 10:4f02275c34ee 82 * #include "mbed.h"
samux 10:4f02275c34ee 83 * #include "Websocket.h"
samux 10:4f02275c34ee 84 *
samux 10:4f02275c34ee 85 * Serial pc(USBTX, USBRX);
samux 10:4f02275c34ee 86 * Websocket * ws;
samux 10:4f02275c34ee 87 *
samux 10:4f02275c34ee 88 * int main()
samux 10:4f02275c34ee 89 * {
samux 10:4f02275c34ee 90 * ws = new Websocket("ws://ip_domain:443/path");
samux 10:4f02275c34ee 91 *
samux 10:4f02275c34ee 92 * while(!ws->connect())
samux 10:4f02275c34ee 93 * pc.printf("cannot connect webasocekt\r\n");
samux 10:4f02275c34ee 94 *
samux 10:4f02275c34ee 95 * ws->Send("Hello World!");
samux 10:4f02275c34ee 96 * }
samux 11:094c86973097 97 * @endcode
samux 0:21fe3b05249f 98 */
samux 0:21fe3b05249f 99 class Websocket
samux 0:21fe3b05249f 100 {
samux 0:21fe3b05249f 101 public:
samux 0:21fe3b05249f 102 /**
samux 6:01a1eb7c0145 103 * Constructor for a wifi module
samux 0:21fe3b05249f 104 *
samux 6:01a1eb7c0145 105 * @param url The Websocket url in the form "ws://ip_domain[:port]/path" (by default: port = 80)
samux 0:21fe3b05249f 106 * @param wifi pointer to a wifi module (the communication will be establish by this module)
samux 0:21fe3b05249f 107 */
samux 6:01a1eb7c0145 108 Websocket(char * url, Wifly * wifi);
samux 6:01a1eb7c0145 109
samux 6:01a1eb7c0145 110 /**
samux 6:01a1eb7c0145 111 * Constructor for an ethernet communication
samux 6:01a1eb7c0145 112 *
samux 6:01a1eb7c0145 113 * @param url The Websocket url in the form "ws://ip_domain[:port]/path" (by default: port = 80)
samux 6:01a1eb7c0145 114 */
samux 6:01a1eb7c0145 115 Websocket(char * url);
samux 0:21fe3b05249f 116
samux 0:21fe3b05249f 117 /**
samux 9:9fa055ed54b4 118 * Connect to the websocket url
samux 0:21fe3b05249f 119 *
samux 1:0bb1153de91e 120 *@return true if the connection is established, false otherwise
samux 0:21fe3b05249f 121 */
samux 0:21fe3b05249f 122 bool connect();
samux 0:21fe3b05249f 123
samux 0:21fe3b05249f 124 /**
samux 5:0f3422b6ca44 125 * Send a string according to the websocket format: \x00 str \xff
samux 0:21fe3b05249f 126 *
samux 5:0f3422b6ca44 127 * @param str string to be sent
samux 0:21fe3b05249f 128 */
samux 0:21fe3b05249f 129 void Send(char * str);
samux 0:21fe3b05249f 130
samux 0:21fe3b05249f 131 /**
samux 0:21fe3b05249f 132 * Read a websocket message
samux 0:21fe3b05249f 133 *
samux 0:21fe3b05249f 134 * @param message pointer to the string to be read (null if drop frame)
samux 0:21fe3b05249f 135 *
samux 0:21fe3b05249f 136 * @return true if a string has been read, false otherwise
samux 0:21fe3b05249f 137 */
samux 0:21fe3b05249f 138 bool read(char * message);
samux 0:21fe3b05249f 139
samux 0:21fe3b05249f 140 /**
samux 10:4f02275c34ee 141 * To see if there is an active websocket connection
samux 0:21fe3b05249f 142 *
samux 10:4f02275c34ee 143 * @return true if there is an active websocket connection
samux 0:21fe3b05249f 144 */
samux 0:21fe3b05249f 145 bool connected();
samux 0:21fe3b05249f 146
samux 0:21fe3b05249f 147 /**
samux 0:21fe3b05249f 148 * Close the websocket connection
samux 0:21fe3b05249f 149 *
samux 1:0bb1153de91e 150 * @return true if the connection has been closed, false otherwise
samux 0:21fe3b05249f 151 */
samux 0:21fe3b05249f 152 bool close();
samux 6:01a1eb7c0145 153
samux 6:01a1eb7c0145 154
samux 0:21fe3b05249f 155
samux 0:21fe3b05249f 156 private:
samux 6:01a1eb7c0145 157
samux 6:01a1eb7c0145 158 void fillFields(bool wifi, char * url);
samux 6:01a1eb7c0145 159 void onTCPSocketEvent(TCPSocketEvent e);
samux 6:01a1eb7c0145 160
samux 0:21fe3b05249f 161 char * ip_domain;
samux 0:21fe3b05249f 162 char * path;
samux 6:01a1eb7c0145 163 char * port;
samux 6:01a1eb7c0145 164
samux 0:21fe3b05249f 165 Wifly * wifi;
samux 6:01a1eb7c0145 166
samux 6:01a1eb7c0145 167 bool eth_connected;
samux 9:9fa055ed54b4 168 char eth_rx[512];
samux 9:9fa055ed54b4 169 bool response_server_eth;
samux 6:01a1eb7c0145 170
samux 6:01a1eb7c0145 171 bool wifi_use;
samux 6:01a1eb7c0145 172 bool eth_use;
samux 6:01a1eb7c0145 173
samux 6:01a1eb7c0145 174 EthernetNetIf eth;
samux 6:01a1eb7c0145 175 TCPSocket sock;
samux 6:01a1eb7c0145 176 IpAddr server_ip;
samux 0:21fe3b05249f 177
samux 0:21fe3b05249f 178 };
samux 0:21fe3b05249f 179
samux 0:21fe3b05249f 180 #endif