您的位置:首页 > 其它

libwebsockets: Simple WebSocket server

2016-05-04 09:08 776 查看
http://usualcarrot.com/libwebsockets-simple-websocket-server

if you're trying to use libwebsockets you probably want to build your own awesome WebSocket
server.

I've already made a tutorial on how to make a web server using libwebsocket and finally now I'm going
to make a very simple WebSocket server. At first, I wanted to make just a "port" of my previous
tutorial on Node.js but this would be I think much more complicated and I wanted to keep this as simple as possible.

But still I recommend you to read the first tutorial about building a web server because there are
some insight of how does libwebsocket work and it'll be easier to understand what's going on here.

BTW, if you're looking for some more in-depth information on how WebSockets work I recommend this article Websockets
101.

So, to keep it very simple our WebSocket server will just respond to every request you send it reverse order. For example if we send "Hello, world!" it will respond "!dlrow ,olleH".


WebSocket server

The first part is very similar to the web server, but since we don't want to handle any HTTP requests the 
callback_http
 may be
stay empty.

 1 
 2 
 3 
 4 
 5 
 6 
 7 
 8 
 9 
 10 
 11 

#include <stdio.h>
#include <stdlib.h>
#include <libwebsockets.h>

static int callback_http(structlibwebsocket_context * this,
structlibwebsocket *wsi,
enumlibwebsocket_callback_reasons reason, void *user,
void *in, size_t len)
{
return 0;
}

The interesting part comes now. We need to handle each request send a response.

 1 
 2 
 3 
 4 
 5 
 6 
 7 
 8 
 9 
 10 
 11  12 
 13 
 14 
 15 
 16 
 17 
 18 
 19 
 20 
 21 
 22 
 23 
 24 
 25 
 26 
 27 
 28 
 29 
 30 
 31 
 32 
 33 
 34 
 35 
 36 
 37 
 38 
 39 
 40 
 41 
 42 
 43 
 44 
 45 
 46 
 47 
 48 
 49 
 50 
 51 

static int callback_dumb_increment(struct libwebsocket_context * this,
struct libwebsocket *wsi,
enum libwebsocket_callback_reasons reason,
void *user, void *in, size_t len)
{

switch (reason) {
case LWS_CALLBACK_ESTABLISHED: // just log message that someone is connecting
printf("connection established\n");
break;
case LWS_CALLBACK_RECEIVE: { // the funny part
// create a buffer to hold our response
// it has to have some pre and post padding. You don't need to care
// what comes there, libwebsockets will do everything for you. For more info see
// http://git.warmcat.com/cgi-bin/cgit/libwebsockets/tree/lib/libwebsockets.h#n597
unsigned char *buf = (unsigned char*) malloc(LWS_SEND_BUFFER_PRE_PADDING + len +
LWS_SEND_BUFFER_POST_PADDING);

int i;

// pointer to `void *in` holds the incomming request
// we're just going to put it in reverse order and put it in `buf` with
// correct offset. `len` holds length of the request.
for (i=0; i < len; i++) {
buf[LWS_SEND_BUFFER_PRE_PADDING + (len - 1) - i ] = ((char *) in)[i];
}

// log what we recieved and what we're going to send as a response.
// that disco syntax `%.*s` is used to print just a part of our buffer
// http://stackoverflow.com/questions/5189071/print-part-of-char-array
printf("received data: %s, replying: %.*s\n", (char *) in, (int) len,
buf + LWS_SEND_BUFFER_PRE_PADDING);

// send response
// just notice that we have to tell where exactly our response starts. That's
// why there's `buf[LWS_SEND_BUFFER_PRE_PADDING]` and how long it is.
// we know that our response has the same length as request because
// it's the same message in reverse order.
libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING], len, LWS_WRITE_TEXT);

// release memory back into the wild
free(buf);
break;
}
default:
break;
}

return 0;
}

I tried to comment the source code where I think it's appropriate. The most important method is `libwebsocket_write` and the way it send response back to the client.

Also `void *in` and `size_t len` which holds the request and its length respectively are worth mentioning.

In the next part we define all protocols we're using. The first protocol has to be HTTP, then we can put whatever we want. Pay attention to the WebSocket protocol name.

 1 
 2 
 3 
 4 
 5 
 6 
 7 
 8 
 9 
 10 
 11  12 
 13 
 14 
 15 
 16 
 17 

static struct libwebsocket_protocols protocols[] = {
/* first protocol must always be HTTP handler */
{
"http-only",   // name
callback_http, // callback
0              // per_session_data_size
},
{
"dumb-increment-protocol", // protocol name - very important!
callback_dumb_increment,   // callback
0                          // we don't use any per session data

},
{
NULL, NULL, 0   /* End of list */
}
};

The W3C official WebSocket definition says that 
WebSocket
 constructor
takes two arguments. WebSocket server URL and some optional protocol name (or subprotocol if you want). I didn't know what is the second argument for until I started using libwebsockets. For us the protocol name is 
dumb-increment-protocol 
and
we'll use it later in the JavaScript part.

The rest is the same like in the web server tutorial.

 1 
 2 
 3 
 4 
 5 
 6 
 7 
 8 
 9 
 10 
 11  12 
 13 
 14 
 15 
 16 
 17 
 18 
 19 
 20 
 21 
 22 
 23 
 24 
 25 
 26 
 27 
 28 
 29 
 30 
 31 
 32 
 33 
 34 
 35 
 36 

int main(void) {
// server url will be http://localhost:9000 int port = 9000;
const char *interface = NULL;
struct libwebsocket_context *context;
// we're not using ssl
const char *cert_path = NULL;
const char *key_path = NULL;
// no special options
int opts = 0;

// create libwebsocket context representing this server
context = libwebsocket_create_context(port, interface, protocols,
libwebsocket_internal_extensions,
cert_path, key_path, -1, -1, opts);

if (context == NULL) {
fprintf(stderr, "libwebsocket init failed\n");
return -1;
}

printf("starting server...\n");

// infinite loop, to end this server send SIGTERM. (CTRL+C)
while (1) {
libwebsocket_service(context, 50);
// libwebsocket_service will process all waiting events with their
// callback functions and then wait 50 ms.
// (this is a single threaded webserver and this will keep our server
// from generating load while there are not requests to process)
}

libwebsocket_context_destroy(context);

return 0;
}

At this moment you can compile and run the server (see compiling tutorial). You should
see something like this:
Compiled without SSL support, serving unencrypted
Listening on port 9000
starting server...


Frontend

Now it's finally time to write some JavaScript. In order to keep it very simple I'm putting everything in one HTML file:

I think it's obvious what it does and why. The most surprising part is probably:

new WebSocket('ws://127.0.0.1:9000', 'dumb-increment-protocol');


where 
dumb-increment-protocol
 is the subprotocol name that we specified in 
static
struct libwebsocket_protocols protocols[] = { … }
.

If you think about it, it means that one WebSocket server can run infinite number of different WebSocket protocols absolutely independent on each other on the same port. Well, that's interesting to me.

Now open the 
index.html
 and if connection to our WebSocket server was successful you should see green heading "WebSocket test"
like in the image bellow. Write some clever message in the input field and hit Enter. Our WebSocket server takes your message and sends it back. Also you should see log messages in the server's console too.



Complete source codes are as usually on gist.github.com, feel free to send pull requests if you find a bug or
of you have an idea how to make it even better!


Conclusion

So that's all for now. I believe it wasn't that horrible. I'll try to rewrite the Node.js &
WebSocket - Simple chat tutorial and put online some demo to proof that it really works :).

By the way, if you use libwebsockets for some real application say thank you tohttp://warmcat.com who created it.

One more thing, I discovered that there's a forked version of libwebsockets with some additional features.
I haven't tested it yet, but I will as soon as I can and I'll update this article with more info.

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: