forked from ithewei/libhv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
websocket_server_test.cpp
95 lines (86 loc) · 2.39 KB
/
websocket_server_test.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* websocket server
*
* @build make examples
* @server bin/websocket_server_test 9999
* @client bin/websocket_client_test ws://127.0.0.1:9999/
* @js html/websocket_client.html
*
*/
#include "WebSocketServer.h"
#include "EventLoop.h"
#include "htime.h"
#include "hssl.h"
/*
* #define TEST_WSS 1
*
* @build ./configure --with-openssl && make clean && make
*
* @server bin/websocket_server_test 9999
*
* @client bin/websocket_client_test ws://127.0.0.1:9999/
* bin/websocket_client_test wss://127.0.0.1:10000/
*
*/
#define TEST_WSS 0
using namespace hv;
class MyContext {
public:
MyContext() {
timerID = INVALID_TIMER_ID;
}
~MyContext() {
}
int handleMessage(const std::string& msg) {
printf("onmessage: %s\n", msg.c_str());
return msg.size();
}
TimerID timerID;
};
int main(int argc, char** argv) {
if (argc < 2) {
printf("Usage: %s port\n", argv[0]);
return -10;
}
int port = atoi(argv[1]);
WebSocketService ws;
ws.onopen = [](const WebSocketChannelPtr& channel, const std::string& url) {
printf("onopen: GET %s\n", url.c_str());
MyContext* ctx = channel->newContext<MyContext>();
// send(time) every 1s
ctx->timerID = setInterval(1000, [channel](TimerID id) {
char str[DATETIME_FMT_BUFLEN] = {0};
datetime_t dt = datetime_now();
datetime_fmt(&dt, str);
channel->send(str);
});
};
ws.onmessage = [](const WebSocketChannelPtr& channel, const std::string& msg) {
MyContext* ctx = channel->getContext<MyContext>();
ctx->handleMessage(msg);
};
ws.onclose = [](const WebSocketChannelPtr& channel) {
printf("onclose\n");
MyContext* ctx = channel->getContext<MyContext>();
if (ctx->timerID != INVALID_TIMER_ID) {
killTimer(ctx->timerID);
}
channel->deleteContext<MyContext>();
};
websocket_server_t server;
server.port = port;
#if TEST_WSS
server.https_port = port + 1;
hssl_ctx_init_param_t param;
memset(¶m, 0, sizeof(param));
param.crt_file = "cert/server.crt";
param.key_file = "cert/server.key";
if (hssl_ctx_init(¶m) == NULL) {
fprintf(stderr, "SSL certificate verify failed!\n");
return -20;
}
#endif
server.ws = &ws;
websocket_server_run(&server);
return 0;
}