blob: 3fecd47dcff8458a9aed0a7f3a428032be6381b8 [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"
Andy Green4739e5c2011-01-22 12:51:57 +000029
Andy Green990d5062011-01-30 21:04:24 +000030static unsigned int opts;
Andy Greenb3ae0a32011-02-14 20:25:43 +000031static int was_closed;
Andy Green775884e2011-03-06 13:32:53 +000032static int deny_deflate;
Andy Green7448c7e2011-05-24 22:06:17 +010033static int deny_mux;
Andy Green4084af12011-05-24 22:06:17 +010034static struct libwebsocket *wsi_mirror;
Andy Green990d5062011-01-30 21:04:24 +000035
Andy Green4739e5c2011-01-22 12:51:57 +000036/*
37 * This demo shows how to connect multiple websockets simultaneously to a
38 * websocket server (there is no restriction on their having to be the same
39 * server just it simplifies the demo).
40 *
41 * dumb-increment-protocol: we connect to the server and print the number
Andy Green90c7cbc2011-01-27 06:26:52 +000042 * we are given
Andy Green4739e5c2011-01-22 12:51:57 +000043 *
44 * lws-mirror-protocol: draws random circles, which are mirrored on to every
Andy Green90c7cbc2011-01-27 06:26:52 +000045 * client (see them being drawn in every browser
46 * session also using the test server)
Andy Green4739e5c2011-01-22 12:51:57 +000047 */
48
49enum demo_protocols {
50
51 PROTOCOL_DUMB_INCREMENT,
52 PROTOCOL_LWS_MIRROR,
53
54 /* always last */
55 DEMO_PROTOCOL_COUNT
56};
57
58
59/* dumb_increment protocol */
60
61static int
Andy Green62c54d22011-02-14 09:14:25 +000062callback_dumb_increment(struct libwebsocket_context * this,
63 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +000064 enum libwebsocket_callback_reasons reason,
65 void *user, void *in, size_t len)
66{
67 switch (reason) {
68
Andy Green4084af12011-05-24 22:06:17 +010069 case LWS_CALLBACK_CLOSED:
70 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
71 was_closed = 1;
72 break;
73
Andy Green4739e5c2011-01-22 12:51:57 +000074 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +000075 ((char *)in)[len] = '\0';
76 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
Andy Green4739e5c2011-01-22 12:51:57 +000077 break;
78
Andy Green775884e2011-03-06 13:32:53 +000079 /* because we are protocols[0] ... */
80
81 case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
Andy Green7448c7e2011-05-24 22:06:17 +010082 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
83 fprintf(stderr, "denied deflate-stream extension\n");
84 return 1;
85 }
86 if ((strcmp(in, "x-google-mux") == 0) && deny_mux) {
87 fprintf(stderr, "denied x-google-mux extension\n");
88 return 1;
89 }
90
Andy Green775884e2011-03-06 13:32:53 +000091 break;
92
Andy Green4739e5c2011-01-22 12:51:57 +000093 default:
94 break;
95 }
96
97 return 0;
98}
99
100
101/* lws-mirror_protocol */
102
Andy Green4739e5c2011-01-22 12:51:57 +0000103
104static int
Andy Green62c54d22011-02-14 09:14:25 +0000105callback_lws_mirror(struct libwebsocket_context * this,
106 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +0000107 enum libwebsocket_callback_reasons reason,
108 void *user, void *in, size_t len)
109{
Andy Green90c7cbc2011-01-27 06:26:52 +0000110 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
111 LWS_SEND_BUFFER_POST_PADDING];
112 int l;
113
Andy Green4739e5c2011-01-22 12:51:57 +0000114 switch (reason) {
115
Andy Greenb3ae0a32011-02-14 20:25:43 +0000116 case LWS_CALLBACK_CLOSED:
Andy Green4084af12011-05-24 22:06:17 +0100117 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED\n");
118 wsi_mirror = NULL;
Andy Greenb3ae0a32011-02-14 20:25:43 +0000119 break;
120
Andy Green90c7cbc2011-01-27 06:26:52 +0000121 case LWS_CALLBACK_CLIENT_ESTABLISHED:
122
123 /*
124 * start the ball rolling,
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000125 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
Andy Green90c7cbc2011-01-27 06:26:52 +0000126 */
127
Andy Green62c54d22011-02-14 09:14:25 +0000128 libwebsocket_callback_on_writable(this, wsi);
Andy Green90c7cbc2011-01-27 06:26:52 +0000129 break;
130
Andy Green4739e5c2011-01-22 12:51:57 +0000131 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +0000132/* fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
133 break;
134
135 case LWS_CALLBACK_CLIENT_WRITEABLE:
136
137 l = sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING],
138 "c #%06X %d %d %d;",
139 (int)random() & 0xffffff,
140 (int)random() % 500,
141 (int)random() % 250,
142 (int)random() % 24);
143
144 libwebsocket_write(wsi,
Andy Green990d5062011-01-30 21:04:24 +0000145 &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
Andy Green90c7cbc2011-01-27 06:26:52 +0000146
147 /* get notified as soon as we can write again */
148
Andy Green62c54d22011-02-14 09:14:25 +0000149 libwebsocket_callback_on_writable(this, wsi);
Andy Green90c7cbc2011-01-27 06:26:52 +0000150
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000151 /*
152 * without at least this delay, we choke the browser
153 * and the connection stalls, despite we now take care about
154 * flow control
155 */
156
Andy Green90c7cbc2011-01-27 06:26:52 +0000157 usleep(200);
Andy Green4739e5c2011-01-22 12:51:57 +0000158 break;
159
160 default:
161 break;
162 }
163
164 return 0;
165}
166
167
168/* list of supported protocols and callbacks */
169
170static struct libwebsocket_protocols protocols[] = {
Peter Hinz56885f32011-03-02 22:03:47 +0000171 {
172 "dumb-increment-protocol",
173 callback_dumb_increment,
174 0,
Andy Green4739e5c2011-01-22 12:51:57 +0000175 },
Peter Hinz56885f32011-03-02 22:03:47 +0000176 {
177 "lws-mirror-protocol",
178 callback_lws_mirror,
179 0,
Andy Green4739e5c2011-01-22 12:51:57 +0000180 },
Peter Hinz56885f32011-03-02 22:03:47 +0000181 { /* end of list */
182 NULL,
183 NULL,
184 0
Andy Green4739e5c2011-01-22 12:51:57 +0000185 }
186};
187
188static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000189 { "help", no_argument, NULL, 'h' },
190 { "port", required_argument, NULL, 'p' },
191 { "ssl", no_argument, NULL, 's' },
Andy Green990d5062011-01-30 21:04:24 +0000192 { "killmask", no_argument, NULL, 'k' },
Andy Greenbfb051f2011-02-09 08:49:14 +0000193 { "version", required_argument, NULL, 'v' },
Andy Green775884e2011-03-06 13:32:53 +0000194 { "undeflated", no_argument, NULL, 'u' },
Andy Green7448c7e2011-05-24 22:06:17 +0100195 { "nomux", no_argument, NULL, 'n' },
Andy Green4739e5c2011-01-22 12:51:57 +0000196 { NULL, 0, 0, 0 }
197};
198
199
200int main(int argc, char **argv)
201{
202 int n = 0;
203 int port = 7681;
204 int use_ssl = 0;
205 struct libwebsocket_context *context;
Andy Green1efb63c2011-02-06 17:42:06 +0000206 const char *address;
Andy Green4739e5c2011-01-22 12:51:57 +0000207 struct libwebsocket *wsi_dumb;
Andy Greenbfb051f2011-02-09 08:49:14 +0000208 int ietf_version = -1; /* latest */
Andy Green4084af12011-05-24 22:06:17 +0100209 int mirror_lifetime = 0;
Andy Green90c7cbc2011-01-27 06:26:52 +0000210
Andy Green4739e5c2011-01-22 12:51:57 +0000211 fprintf(stderr, "libwebsockets test client\n"
212 "(C) Copyright 2010 Andy Green <andy@warmcat.com> "
213 "licensed under LGPL2.1\n");
214
215 if (argc < 2)
216 goto usage;
217
Andy Green4739e5c2011-01-22 12:51:57 +0000218 while (n >= 0) {
Andy Green7448c7e2011-05-24 22:06:17 +0100219 n = getopt_long(argc, argv, "nuv:khsp:", options, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000220 if (n < 0)
221 continue;
222 switch (n) {
223 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000224 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000225 break;
226 case 'p':
227 port = atoi(optarg);
228 break;
Andy Green990d5062011-01-30 21:04:24 +0000229 case 'k':
230 opts = LWS_WRITE_CLIENT_IGNORE_XOR_MASK;
231 break;
Andy Greenbfb051f2011-02-09 08:49:14 +0000232 case 'v':
233 ietf_version = atoi(optarg);
234 break;
Andy Green775884e2011-03-06 13:32:53 +0000235 case 'u':
236 deny_deflate = 1;
237 break;
Andy Green7448c7e2011-05-24 22:06:17 +0100238 case 'n':
239 deny_mux = 1;
240 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000241 case 'h':
242 goto usage;
243 }
244 }
245
Andy Green1efb63c2011-02-06 17:42:06 +0000246 if (optind >= argc)
247 goto usage;
248
249 address = argv[optind];
250
Andy Green4739e5c2011-01-22 12:51:57 +0000251 /*
252 * create the websockets context. This tracks open connections and
253 * knows how to route any traffic and which protocol version to use,
254 * and if each connection is client or server side.
255 *
256 * For this client-only demo, we tell it to not listen on any port.
257 */
258
Andy Green32375b72011-02-19 08:32:53 +0000259 context = libwebsocket_create_context(CONTEXT_PORT_NO_LISTEN, NULL,
Andy Green4cd87a02011-03-06 13:15:32 +0000260 protocols, libwebsocket_internal_extensions,
261 NULL, NULL, -1, -1, 0);
Andy Green4739e5c2011-01-22 12:51:57 +0000262 if (context == NULL) {
263 fprintf(stderr, "Creating libwebsocket context failed\n");
264 return 1;
265 }
266
267
268 /* create a client websocket using dumb increment protocol */
269
Andy Green90c7cbc2011-01-27 06:26:52 +0000270 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green1efb63c2011-02-06 17:42:06 +0000271 "/", argv[optind], argv[optind],
Andy Greenbfb051f2011-02-09 08:49:14 +0000272 protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
Andy Green4739e5c2011-01-22 12:51:57 +0000273
274 if (wsi_dumb == NULL) {
275 fprintf(stderr, "libwebsocket dumb connect failed\n");
276 return -1;
277 }
278
Andy Green4739e5c2011-01-22 12:51:57 +0000279 fprintf(stderr, "Websocket connections opened\n");
280
281 /*
282 * sit there servicing the websocket context to handle incoming
283 * packets, and drawing random circles on the mirror protocol websocket
284 */
285
286 n = 0;
Andy Green4084af12011-05-24 22:06:17 +0100287 while (n >= 0 && !was_closed) {
Andy Green90c7cbc2011-01-27 06:26:52 +0000288 n = libwebsocket_service(context, 1000);
Andy Green4739e5c2011-01-22 12:51:57 +0000289
Andy Green4084af12011-05-24 22:06:17 +0100290 if (wsi_mirror == NULL) {
291
292 /* create a client websocket using mirror protocol */
293
294 wsi_mirror = libwebsocket_client_connect(context, address, port,
295 use_ssl, "/", argv[optind], argv[optind],
296 protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
297
298 if (wsi_mirror == NULL) {
299 fprintf(stderr, "libwebsocket dumb connect failed\n");
300 return -1;
301 }
302
303 mirror_lifetime = 10 + (random() & 1023);
304
305 fprintf(stderr, "opened mirror connection with %d lifetime\n", mirror_lifetime);
306
307 } else {
308
309 mirror_lifetime--;
310 if (mirror_lifetime == 0) {
311 fprintf(stderr, "closing mirror session\n");
312 libwebsocket_close_and_free_session(context,
313 wsi_mirror, LWS_CLOSE_STATUS_GOINGAWAY);
314
315 /*
316 * wsi_mirror will get set to NULL in
317 * callback when close completes
318 */
319 }
320 }
321 }
322
Andy Greenb3ae0a32011-02-14 20:25:43 +0000323 fprintf(stderr, "Exiting\n");
324
Andy Green6964bb52011-01-23 16:50:33 +0000325 libwebsocket_context_destroy(context);
326
Andy Green4739e5c2011-01-22 12:51:57 +0000327 return 0;
328
329usage:
330 fprintf(stderr, "Usage: libwebsockets-test-client "
331 "<server address> [--port=<p>] "
Andy Green5e1fa172011-02-10 09:07:05 +0000332 "[--ssl] [-k] [-v <ver>]\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000333 return 1;
334}