-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex_server.cpp
133 lines (105 loc) · 3.44 KB
/
ex_server.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
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
// SPDX-License-Identifier: MIT
#include "../../sockets.h"
#include <cstdlib>
#include <vector>
volatile sig_atomic_t interruption = 0;
static void handle(SOCKETS &sockets);
void interruption_handler(int) {
interruption = 1;
}
int main(int argc, char **argv) {
static constexpr const char *SERVER_PORT = "4000";
std::signal(SIGINT, interruption_handler);
SOCKETS sockets;
printf("Initializing networking using SOCKETS v%s.\n", SOCKETS::VERSION);
sockets.set_logger(
[](SOCKETS::SESSION, const char *txt) noexcept {
printf("Sockets: %s\n", txt);
}
);
if (!sockets.init()) {
printf("%s\n", "Failed to initialize sockets.");
return EXIT_FAILURE;
}
SOCKETS::SESSION session{
sockets.listen(
SERVER_PORT,
AF_UNSPEC, // Accept connections from any address family.
{
SO_REUSEADDR, // Allow instantaneous server restarting.
SO_REUSEPORT // Allow multiple listeners on the same port.
}
)
};
if (session.valid) {
constexpr int timeout_ms = 3000;
printf(
"Listening for TCP connections on %s:%s.\n",
sockets.get_host(session.id), sockets.get_port(session.id)
);
while (!sockets.next_error(timeout_ms)) {
if (sockets.idle()) {
printf(
"Nothing happened in the last %d seconds.\n",
timeout_ms / 1000
);
}
else {
handle(sockets);
}
if (interruption) {
printf("Shutting down due to interruption.\n");
break;
}
}
if (sockets.last_error() != SOCKETS::NO_ERROR) {
printf(
"Error serving the sockets (%s).\n",
sockets.to_string(sockets.last_error())
);
}
sockets.disconnect(session.id);
}
sockets.deinit();
return EXIT_SUCCESS;
}
static void handle(SOCKETS &sockets) {
SOCKETS::ALERT alert;
std::vector<uint8_t> buffer;
while ((alert = sockets.next_alert()).valid) {
size_t sid = alert.session;
switch (alert.event) {
case SOCKETS::CONNECTION: {
printf(
"New connection from %s:%s (session %lu).\n",
sockets.get_host(sid), sockets.get_port(sid), sid
);
sockets.writef(
sid, "Hello, %s:%s!\n",
sockets.get_host(sid), sockets.get_port(sid)
);
continue;
}
case SOCKETS::DISCONNECTION: {
printf(
"Disconnected %s:%s (session %lu).\n",
sockets.get_host(sid), sockets.get_port(sid), sid
);
continue;
}
case SOCKETS::INCOMING: {
buffer.resize(
std::max(buffer.capacity(), sockets.get_incoming_size(sid))
);
size_t count = sockets.read(sid, buffer.data(), buffer.size());
printf(
"Received %lu byte%s from session %lu.\n",
count, count == 1 ? "" : "s", sid
);
sockets.write(sid, buffer.data(), count);
continue;
}
default: continue;
}
}
}