-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsocket.io_base.c
168 lines (138 loc) · 4.45 KB
/
socket.io_base.c
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <fcntl.h>
#include <ctype.h>
#include <stdbool.h>
#include <errno.h>
#include <uuid/uuid.h>
#include "socket_io.h"
#include "endpoint.h"
#include "transports.h"
#include "safe_mem.h"
config *global_config;
void handle_disconnected(client_t *client);
void init_config() {
GKeyFile *keyfile;
GKeyFileFlags flags;
GError *error = NULL;
keyfile = g_key_file_new();
flags = G_KEY_FILE_KEEP_COMMENTS | G_KEY_FILE_KEEP_TRANSLATIONS;
if (!g_key_file_load_from_file (keyfile, "server.ini", flags, &error)) {
log_fatal("%s\n", "the server.ini not found !");
return;
}
global_config = malloc(sizeof(config));
global_config->transports = g_key_file_get_string(keyfile, "global", "transports", NULL);
global_config->heartbeat_timeout = g_key_file_get_integer(keyfile, "global", "heartbeat_timeout", 60);
global_config->close_timeout = g_key_file_get_integer(keyfile, "global", "close_timeout", 60);
global_config->server_close_timeout = g_key_file_get_integer(keyfile, "global", "server_close_timeout", 5);
global_config->heartbeat_interval = g_key_file_get_integer(keyfile, "global", "heartbeat_interval", NULL);
global_config->static_path = g_key_file_get_string(keyfile, "global", "static_path", NULL);
}
char *gen_uuid(char *uuidBuff) {
uuid_t uuid;
int result = uuid_generate_time_safe(uuid);
if (result) {
log_debug("uuid not generated safely");
}
uuid_unparse(uuid, uuidBuff);
return uuidBuff;
}
void handle_disconnected(client_t *client) {
if (client == NULL) {
log_warn("the client is NULL !");
return;
}
http_parser *parser = &client->parser;
if (parser == NULL) {
return;
}
if (parser && parser->method == HTTP_POST) {
log_warn("parser && parser->method == HTTP_POST is true!");
return;
}
transport_info *trans_info = &client->trans_info;
if (trans_info == NULL) {
log_fatal("the trans_info is NULL !\n");
return;
}
char *sessionid = trans_info->sessionid;
if (sessionid == NULL) {
log_warn("handle_disconnected's the sessionid is NULL");
return;
}
session_t *session = store_lookup(sessionid);
if (session == NULL) {
log_warn("handle_disconnected's the session is NULL");
return;
}
session->state = DISCONNECTED_STATE;
// something need to handle on_disconnected event ...
if (session->endpoint) {
endpoint_implement *endpoint_impl = endpoints_get(session->endpoint);
if (endpoint_impl) {
endpoint_impl->on_disconnect(sessionid, NULL);
} else {
log_warn("the endpoint_impl is null !\n");
}
}
// set timeout for delete the session
transports_fn *trans_fn = get_transport_fn(client);
if (trans_fn) {
trans_fn->end_connect(sessionid);
} else {
log_warn("Got NO transport struct !\n");
}
}
void free_client(struct ev_loop *loop, client_t *client) {
if (client == NULL) {
printf("free_res the clientent is NULL !!!!!!\n");
return;
}
ev_io_stop(loop, &client->ev_read);
ev_timer *timer = &client->timeout;
if (timer != NULL && (timer->data != NULL)) {
ev_timer_stop(loop, timer);
}
http_parser *parser = &client->parser;
if (parser && parser->method == HTTP_GET) {
transport_info *trans_info = &client->trans_info;
if (trans_info->sessionid) {
session_t *session = store_lookup(trans_info->sessionid);
if (session != NULL) {
session->client = NULL;
}
}
}
client->data = NULL;
close(client->fd);
if (client)
free(client);
}
void free_res(struct ev_loop *loop, ev_io *w) {
ev_io_stop(EV_A_ w);
client_t *cli = w->data;
free_client(loop, cli);
}
void on_close(client_t *client) {
free_client(ev_default_loop(0), client);
}
void write_output(client_t *client, char *msg, void (*fn)(client_t *client)) {
if (client == NULL) {
log_error("the client is NULL !");
return;
}
if (msg) {
ssize_t write_len = write(client->fd, msg, strlen(msg));
if (write_len == -1) {
log_warn("write failed(errno = %d): %s", errno, strerror(errno));
}
}else{
log_warn("the msg is NULL with file id = %d", client->fd);
}
if (fn) {
fn(client);
}
}