change context creation params to struct
[platform/upstream/libwebsockets.git] / test-server / test-client.c
1 /*
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
28 #include "../lib/libwebsockets.h"
29
30 static unsigned int opts;
31 static int was_closed;
32 static int deny_deflate;
33 static int deny_mux;
34 static struct libwebsocket *wsi_mirror;
35
36 /*
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
42  *                              we are given
43  *
44  *  lws-mirror-protocol: draws random circles, which are mirrored on to every
45  *                              client (see them being drawn in every browser
46  *                              session also using the test server)
47  */
48
49 enum 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
61 static int
62 callback_dumb_increment(struct libwebsocket_context *this,
63                         struct libwebsocket *wsi,
64                         enum libwebsocket_callback_reasons reason,
65                                                void *user, void *in, size_t len)
66 {
67         switch (reason) {
68
69         case LWS_CALLBACK_CLOSED:
70                 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
71                 was_closed = 1;
72                 break;
73
74         case LWS_CALLBACK_CLIENT_RECEIVE:
75                 ((char *)in)[len] = '\0';
76                 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
77                 break;
78
79         /* because we are protocols[0] ... */
80
81         case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
82                 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
91                 break;
92
93         default:
94                 break;
95         }
96
97         return 0;
98 }
99
100
101 /* lws-mirror_protocol */
102
103
104 static int
105 callback_lws_mirror(struct libwebsocket_context *this,
106                         struct libwebsocket *wsi,
107                         enum libwebsocket_callback_reasons reason,
108                                                void *user, void *in, size_t len)
109 {
110         unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
111                                                   LWS_SEND_BUFFER_POST_PADDING];
112         int l = 0;
113         int n;
114
115         switch (reason) {
116
117         case LWS_CALLBACK_CLOSED:
118                 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED\n");
119                 wsi_mirror = NULL;
120                 break;
121
122         case LWS_CALLBACK_CLIENT_ESTABLISHED:
123
124                 /*
125                  * start the ball rolling,
126                  * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
127                  */
128
129                 libwebsocket_callback_on_writable(this, wsi);
130                 break;
131
132         case LWS_CALLBACK_CLIENT_RECEIVE:
133 /*              fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
134                 break;
135
136         case LWS_CALLBACK_CLIENT_WRITEABLE:
137
138                 for (n = 0; n < 1; n++)
139                         l += sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING + l],
140                                         "c #%06X %d %d %d;",
141                                         (int)random() & 0xffffff,
142                                         (int)random() % 500,
143                                         (int)random() % 250,
144                                         (int)random() % 24);
145
146                 libwebsocket_write(wsi,
147                    &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
148
149                 /* get notified as soon as we can write again */
150
151                 libwebsocket_callback_on_writable(this, wsi);
152                 break;
153
154         default:
155                 break;
156         }
157
158         return 0;
159 }
160
161
162 /* list of supported protocols and callbacks */
163
164 static struct libwebsocket_protocols protocols[] = {
165         {
166                 "dumb-increment-protocol",
167                 callback_dumb_increment,
168                 0,
169                 20,
170         },
171         {
172                 "lws-mirror-protocol",
173                 callback_lws_mirror,
174                 0,
175                 4096,
176         },
177         { NULL, NULL, 0, 0 } /* end */
178 };
179
180 static struct option options[] = {
181         { "help",       no_argument,            NULL, 'h' },
182         { "debug",      required_argument,      NULL, 'd' },
183         { "port",       required_argument,      NULL, 'p' },
184         { "ssl",        no_argument,            NULL, 's' },
185         { "version",    required_argument,      NULL, 'v' },
186         { "undeflated", no_argument,            NULL, 'u' },
187         { "nomux",      no_argument,            NULL, 'n' },
188         { "longlived",  no_argument,            NULL, 'l' },
189         { NULL, 0, 0, 0 }
190 };
191
192
193 int main(int argc, char **argv)
194 {
195         int n = 0;
196         int port = 7681;
197         int use_ssl = 0;
198         struct libwebsocket_context *context;
199         const char *address;
200         struct libwebsocket *wsi_dumb;
201         int ietf_version = -1; /* latest */
202         int mirror_lifetime = 0;
203         int longlived = 0;
204         struct lws_context_creation_info info;
205
206         memset(&info, 0, sizeof info);
207
208         fprintf(stderr, "libwebsockets test client\n"
209                         "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
210                                                     "licensed under LGPL2.1\n");
211
212         if (argc < 2)
213                 goto usage;
214
215         while (n >= 0) {
216                 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
217                 if (n < 0)
218                         continue;
219                 switch (n) {
220                 case 'd':
221                         lws_set_log_level(atoi(optarg), NULL);
222                         break;
223                 case 's':
224                         use_ssl = 2; /* 2 = allow selfsigned */
225                         break;
226                 case 'p':
227                         port = atoi(optarg);
228                         break;
229                 case 'l':
230                         longlived = 1;
231                         break;
232                 case 'v':
233                         ietf_version = atoi(optarg);
234                         break;
235                 case 'u':
236                         deny_deflate = 1;
237                         break;
238                 case 'n':
239                         deny_mux = 1;
240                         break;
241                 case 'h':
242                         goto usage;
243                 }
244         }
245
246         if (optind >= argc)
247                 goto usage;
248
249         address = argv[optind];
250
251         /*
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
259         info.port = CONTEXT_PORT_NO_LISTEN;
260         info.protocols = protocols;
261 #ifndef LWS_NO_EXTENSIONS
262         info.extensions = libwebsocket_internal_extensions;
263 #endif
264         info.gid = -1;
265         info.uid = -1;
266
267         context = libwebsocket_create_context(&info);
268         if (context == NULL) {
269                 fprintf(stderr, "Creating libwebsocket context failed\n");
270                 return 1;
271         }
272
273         /* create a client websocket using dumb increment protocol */
274
275         wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
276                         "/", argv[optind], argv[optind],
277                          protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
278
279         if (wsi_dumb == NULL) {
280                 fprintf(stderr, "libwebsocket dumb connect failed\n");
281                 return -1;
282         }
283
284         fprintf(stderr, "Websocket connections opened\n");
285
286         /*
287          * sit there servicing the websocket context to handle incoming
288          * packets, and drawing random circles on the mirror protocol websocket
289          */
290
291         n = 0;
292         while (n >= 0 && !was_closed) {
293                 n = libwebsocket_service(context, 1000);
294
295                 if (n < 0)
296                         continue;
297
298                 if (wsi_mirror == NULL) {
299
300                         /* create a client websocket using mirror protocol */
301
302                         wsi_mirror = libwebsocket_client_connect(context,
303                                 address, port, use_ssl,  "/",
304                                 argv[optind], argv[optind],
305                                 protocols[PROTOCOL_LWS_MIRROR].name,
306                                                                  ietf_version);
307
308                         if (wsi_mirror == NULL) {
309                                 fprintf(stderr, "libwebsocket "
310                                                       "dumb connect failed\n");
311                                 return -1;
312                         }
313
314                         mirror_lifetime = 10 + (random() & 1023);
315                         /* useful to test single connection stability */
316                         if (longlived)
317                                 mirror_lifetime += 50000;
318
319                         fprintf(stderr, "opened mirror connection with "
320                                              "%d lifetime\n", mirror_lifetime);
321
322                 } else {
323
324                         mirror_lifetime--;
325                         if (mirror_lifetime == 0) {
326                                 fprintf(stderr, "closing mirror session\n");
327                                 libwebsocket_close_and_free_session(context,
328                                         wsi_mirror, LWS_CLOSE_STATUS_GOINGAWAY);
329
330                                 /*
331                                  * wsi_mirror will get set to NULL in
332                                  * callback when close completes
333                                  */
334                         }
335                 }
336         }
337
338         fprintf(stderr, "Exiting\n");
339
340         libwebsocket_context_destroy(context);
341
342         return 0;
343
344 usage:
345         fprintf(stderr, "Usage: libwebsockets-test-client "
346                                 "<server address> [--port=<p>] "
347                                 "[--ssl] [-k] [-v <ver>] "
348                                 "[-d <log bitfield>] [-l]\n");
349         return 1;
350 }