introduce struct libwebsocket_extension
[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
33 /*
34  * This demo shows how to connect multiple websockets simultaneously to a
35  * websocket server (there is no restriction on their having to be the same
36  * server just it simplifies the demo).
37  *
38  *  dumb-increment-protocol:  we connect to the server and print the number
39  *                              we are given
40  *
41  *  lws-mirror-protocol: draws random circles, which are mirrored on to every
42  *                              client (see them being drawn in every browser
43  *                              session also using the test server)
44  */
45
46 enum demo_protocols {
47
48         PROTOCOL_DUMB_INCREMENT,
49         PROTOCOL_LWS_MIRROR,
50
51         /* always last */
52         DEMO_PROTOCOL_COUNT
53 };
54
55
56 /* dumb_increment protocol */
57
58 static int
59 callback_dumb_increment(struct libwebsocket_context * this,
60                         struct libwebsocket *wsi,
61                         enum libwebsocket_callback_reasons reason,
62                                                void *user, void *in, size_t len)
63 {
64         switch (reason) {
65
66         case LWS_CALLBACK_CLIENT_RECEIVE:
67                 ((char *)in)[len] = '\0';
68                 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
69                 break;
70
71         default:
72                 break;
73         }
74
75         return 0;
76 }
77
78
79 /* lws-mirror_protocol */
80
81
82 static int
83 callback_lws_mirror(struct libwebsocket_context * this,
84                         struct libwebsocket *wsi,
85                         enum libwebsocket_callback_reasons reason,
86                                                void *user, void *in, size_t len)
87 {
88         unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
89                                                   LWS_SEND_BUFFER_POST_PADDING];
90         int l;
91
92         switch (reason) {
93
94         case LWS_CALLBACK_CLOSED:
95                 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
96                 was_closed = 1;
97                 break;
98
99         case LWS_CALLBACK_CLIENT_ESTABLISHED:
100
101                 /*
102                  * start the ball rolling,
103                  * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
104                  */
105
106                 libwebsocket_callback_on_writable(this, wsi);
107                 break;
108
109         case LWS_CALLBACK_CLIENT_RECEIVE:
110 /*              fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
111                 break;
112
113         case LWS_CALLBACK_CLIENT_WRITEABLE:
114
115                 l = sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING],
116                                         "c #%06X %d %d %d;",
117                                         (int)random() & 0xffffff,
118                                         (int)random() % 500,
119                                         (int)random() % 250,
120                                         (int)random() % 24);
121
122                 libwebsocket_write(wsi,
123                    &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
124
125                 /* get notified as soon as we can write again */
126
127                 libwebsocket_callback_on_writable(this, wsi);
128
129                 /*
130                  * without at least this delay, we choke the browser
131                  * and the connection stalls, despite we now take care about
132                  * flow control
133                  */
134
135                 usleep(200);
136                 break;
137
138         default:
139                 break;
140         }
141
142         return 0;
143 }
144
145
146 /* list of supported protocols and callbacks */
147
148 static struct libwebsocket_protocols protocols[] = {
149         {
150                 "dumb-increment-protocol",
151                 callback_dumb_increment,
152                 0,
153         },
154         {
155                 "lws-mirror-protocol",
156                 callback_lws_mirror,
157                 0,
158         },
159         {  /* end of list */
160                 NULL,
161                 NULL,
162                 0
163         }
164 };
165
166 static struct option options[] = {
167         { "help",       no_argument,            NULL, 'h' },
168         { "port",       required_argument,      NULL, 'p' },
169         { "ssl",        no_argument,            NULL, 's' },
170         { "killmask",   no_argument,            NULL, 'k' },
171         { "version",    required_argument,      NULL, 'v' },
172         { NULL, 0, 0, 0 }
173 };
174
175
176 int main(int argc, char **argv)
177 {
178         int n = 0;
179         int port = 7681;
180         int use_ssl = 0;
181         struct libwebsocket_context *context;
182         const char *address;
183         struct libwebsocket *wsi_dumb;
184         struct libwebsocket *wsi_mirror;
185         int ietf_version = -1; /* latest */
186
187         fprintf(stderr, "libwebsockets test client\n"
188                         "(C) Copyright 2010 Andy Green <andy@warmcat.com> "
189                                                     "licensed under LGPL2.1\n");
190
191         if (argc < 2)
192                 goto usage;
193
194         while (n >= 0) {
195                 n = getopt_long(argc, argv, "v:khsp:", options, NULL);
196                 if (n < 0)
197                         continue;
198                 switch (n) {
199                 case 's':
200                         use_ssl = 2; /* 2 = allow selfsigned */
201                         break;
202                 case 'p':
203                         port = atoi(optarg);
204                         break;
205                 case 'k':
206                         opts = LWS_WRITE_CLIENT_IGNORE_XOR_MASK;
207                         break;
208                 case 'v':
209                         ietf_version = atoi(optarg);
210                         break;
211                 case 'h':
212                         goto usage;
213                 }
214         }
215
216         if (optind >= argc)
217                 goto usage;
218
219         address = argv[optind];
220
221         /*
222          * create the websockets context.  This tracks open connections and
223          * knows how to route any traffic and which protocol version to use,
224          * and if each connection is client or server side.
225          *
226          * For this client-only demo, we tell it to not listen on any port.
227          */
228
229         context = libwebsocket_create_context(CONTEXT_PORT_NO_LISTEN, NULL,
230                                               protocols, NULL,
231                                               NULL, NULL, -1, -1, 0);
232         if (context == NULL) {
233                 fprintf(stderr, "Creating libwebsocket context failed\n");
234                 return 1;
235         }
236
237
238         /* create a client websocket using dumb increment protocol */
239
240         wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
241                         "/", argv[optind], argv[optind],
242                          protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
243
244         if (wsi_dumb == NULL) {
245                 fprintf(stderr, "libwebsocket dumb connect failed\n");
246                 return -1;
247         }
248
249         /* create a client websocket using mirror protocol */
250
251         wsi_mirror = libwebsocket_client_connect(context, address, port,
252              use_ssl,  "/", argv[optind], argv[optind],
253                              protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
254
255         if (wsi_mirror == NULL) {
256                 fprintf(stderr, "libwebsocket dumb connect failed\n");
257                 return -1;
258         }
259
260         fprintf(stderr, "Websocket connections opened\n");
261
262         /*
263          * sit there servicing the websocket context to handle incoming
264          * packets, and drawing random circles on the mirror protocol websocket
265          */
266
267         n = 0;
268         while (n >= 0 && !was_closed)
269                 n = libwebsocket_service(context, 1000);
270
271         fprintf(stderr, "Exiting\n");
272
273         libwebsocket_context_destroy(context);
274
275         return 0;
276
277 usage:
278         fprintf(stderr, "Usage: libwebsockets-test-client "
279                                              "<server address> [--port=<p>] "
280                                              "[--ssl] [-k] [-v <ver>]\n");
281         return 1;
282 }