blob: 289374aa4f282e9f39ace4ed95bb4a8417b9b097 [file] [log] [blame]
Andy Green4739e5c2011-01-22 12:51:57 +00001/*
2 * libwebsockets-test-client - libwebsockets test implementation
3 *
4 * Copyright (C) 2011 Andy Green <andy@warmcat.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation:
9 * version 2.1 of the License.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <unistd.h>
25#include <getopt.h>
26#include <string.h>
27
Andy Green4739e5c2011-01-22 12:51:57 +000028#include "../lib/libwebsockets.h"
29#include <poll.h>
30
31/*
32 * This demo shows how to connect multiple websockets simultaneously to a
33 * websocket server (there is no restriction on their having to be the same
34 * server just it simplifies the demo).
35 *
36 * dumb-increment-protocol: we connect to the server and print the number
Andy Green90c7cbc2011-01-27 06:26:52 +000037 * we are given
Andy Green4739e5c2011-01-22 12:51:57 +000038 *
39 * lws-mirror-protocol: draws random circles, which are mirrored on to every
Andy Green90c7cbc2011-01-27 06:26:52 +000040 * client (see them being drawn in every browser
41 * session also using the test server)
Andy Green4739e5c2011-01-22 12:51:57 +000042 */
43
44enum demo_protocols {
45
46 PROTOCOL_DUMB_INCREMENT,
47 PROTOCOL_LWS_MIRROR,
48
49 /* always last */
50 DEMO_PROTOCOL_COUNT
51};
52
53
54/* dumb_increment protocol */
55
56static int
57callback_dumb_increment(struct libwebsocket *wsi,
58 enum libwebsocket_callback_reasons reason,
59 void *user, void *in, size_t len)
60{
61 switch (reason) {
62
63 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +000064 ((char *)in)[len] = '\0';
65 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
Andy Green4739e5c2011-01-22 12:51:57 +000066 break;
67
68 default:
69 break;
70 }
71
72 return 0;
73}
74
75
76/* lws-mirror_protocol */
77
Andy Green4739e5c2011-01-22 12:51:57 +000078
79static int
80callback_lws_mirror(struct libwebsocket *wsi,
81 enum libwebsocket_callback_reasons reason,
82 void *user, void *in, size_t len)
83{
Andy Green90c7cbc2011-01-27 06:26:52 +000084 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
85 LWS_SEND_BUFFER_POST_PADDING];
86 int l;
87
Andy Green4739e5c2011-01-22 12:51:57 +000088 switch (reason) {
89
Andy Green90c7cbc2011-01-27 06:26:52 +000090 case LWS_CALLBACK_CLIENT_ESTABLISHED:
91
92 /*
93 * start the ball rolling,
Andy Greenb6e6ebe2011-01-27 06:36:39 +000094 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
Andy Green90c7cbc2011-01-27 06:26:52 +000095 */
96
97 libwebsocket_callback_on_writable(wsi);
98 break;
99
Andy Green4739e5c2011-01-22 12:51:57 +0000100 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +0000101/* fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
102 break;
103
104 case LWS_CALLBACK_CLIENT_WRITEABLE:
105
106 l = sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING],
107 "c #%06X %d %d %d;",
108 (int)random() & 0xffffff,
109 (int)random() % 500,
110 (int)random() % 250,
111 (int)random() % 24);
112
113 libwebsocket_write(wsi,
114 &buf[LWS_SEND_BUFFER_PRE_PADDING], l, LWS_WRITE_TEXT);
115
116 /* get notified as soon as we can write again */
117
118 libwebsocket_callback_on_writable(wsi);
119
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000120 /*
121 * without at least this delay, we choke the browser
122 * and the connection stalls, despite we now take care about
123 * flow control
124 */
125
Andy Green90c7cbc2011-01-27 06:26:52 +0000126 usleep(200);
Andy Green4739e5c2011-01-22 12:51:57 +0000127 break;
128
129 default:
130 break;
131 }
132
133 return 0;
134}
135
136
137/* list of supported protocols and callbacks */
138
139static struct libwebsocket_protocols protocols[] = {
140
141 [PROTOCOL_DUMB_INCREMENT] = {
142 .name = "dumb-increment-protocol",
143 .callback = callback_dumb_increment,
144 },
145 [PROTOCOL_LWS_MIRROR] = {
146 .name = "lws-mirror-protocol",
147 .callback = callback_lws_mirror,
148 },
149 [DEMO_PROTOCOL_COUNT] = { /* end of list */
150 .callback = NULL
151 }
152};
153
154static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000155 { "help", no_argument, NULL, 'h' },
156 { "port", required_argument, NULL, 'p' },
157 { "ssl", no_argument, NULL, 's' },
Andy Green4739e5c2011-01-22 12:51:57 +0000158 { NULL, 0, 0, 0 }
159};
160
161
162int main(int argc, char **argv)
163{
164 int n = 0;
165 int port = 7681;
166 int use_ssl = 0;
167 struct libwebsocket_context *context;
Andy Green90c7cbc2011-01-27 06:26:52 +0000168 const char *address = argv[1];
Andy Green4739e5c2011-01-22 12:51:57 +0000169 struct libwebsocket *wsi_dumb;
170 struct libwebsocket *wsi_mirror;
Andy Green90c7cbc2011-01-27 06:26:52 +0000171
Andy Green4739e5c2011-01-22 12:51:57 +0000172 fprintf(stderr, "libwebsockets test client\n"
173 "(C) Copyright 2010 Andy Green <andy@warmcat.com> "
174 "licensed under LGPL2.1\n");
175
176 if (argc < 2)
177 goto usage;
178
179 optind++;
180
181 while (n >= 0) {
182 n = getopt_long(argc, argv, "hsp:", options, NULL);
183 if (n < 0)
184 continue;
185 switch (n) {
186 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000187 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000188 break;
189 case 'p':
190 port = atoi(optarg);
191 break;
192 case 'h':
193 goto usage;
194 }
195 }
196
197 /*
198 * create the websockets context. This tracks open connections and
199 * knows how to route any traffic and which protocol version to use,
200 * and if each connection is client or server side.
201 *
202 * For this client-only demo, we tell it to not listen on any port.
203 */
204
205 context = libwebsocket_create_context(CONTEXT_PORT_NO_LISTEN,
206 protocols, NULL, NULL, -1, -1);
207 if (context == NULL) {
208 fprintf(stderr, "Creating libwebsocket context failed\n");
209 return 1;
210 }
211
212
213 /* create a client websocket using dumb increment protocol */
214
Andy Green90c7cbc2011-01-27 06:26:52 +0000215 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green2ac5a6f2011-01-28 10:00:18 +0000216 "/", libwebsocket_canonical_hostname(context), "origin",
Andy Green4739e5c2011-01-22 12:51:57 +0000217 protocols[PROTOCOL_DUMB_INCREMENT].name);
218
219 if (wsi_dumb == NULL) {
220 fprintf(stderr, "libwebsocket dumb connect failed\n");
221 return -1;
222 }
223
224 /* create a client websocket using mirror protocol */
225
Andy Green90c7cbc2011-01-27 06:26:52 +0000226 wsi_mirror = libwebsocket_client_connect(context, address, port,
Andy Green2ac5a6f2011-01-28 10:00:18 +0000227 use_ssl, "/", libwebsocket_canonical_hostname(context), "origin",
Andy Green4739e5c2011-01-22 12:51:57 +0000228 protocols[PROTOCOL_LWS_MIRROR].name);
229
230 if (wsi_mirror == NULL) {
231 fprintf(stderr, "libwebsocket dumb connect failed\n");
232 return -1;
233 }
234
235 fprintf(stderr, "Websocket connections opened\n");
236
237 /*
238 * sit there servicing the websocket context to handle incoming
239 * packets, and drawing random circles on the mirror protocol websocket
240 */
241
242 n = 0;
Andy Green90c7cbc2011-01-27 06:26:52 +0000243 while (n >= 0)
244 n = libwebsocket_service(context, 1000);
Andy Green4739e5c2011-01-22 12:51:57 +0000245
246 libwebsocket_client_close(wsi_dumb);
247 libwebsocket_client_close(wsi_mirror);
248
Andy Green6964bb52011-01-23 16:50:33 +0000249 libwebsocket_context_destroy(context);
250
Andy Green4739e5c2011-01-22 12:51:57 +0000251 return 0;
252
253usage:
254 fprintf(stderr, "Usage: libwebsockets-test-client "
255 "<server address> [--port=<p>] "
256 "[--ssl]\n");
257 return 1;
258}