-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVoodoo.h
460 lines (364 loc) · 7.91 KB
/
Voodoo.h
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
#pragma once
#include <assert.h>
#include <any>
#include <functional>
#include <mutex>
#include <stdexcept>
#include <thread>
#include <SFML/Network.hpp>
namespace Voodoo {
/*
* ID class used for methods, interfaces and cleanup handlers
*/
class ID // FIXME: use lli::ID soon
{
private:
unsigned long long value;
public:
ID() : value(0) {}
ID(unsigned long long value) : value(value) {}
unsigned long long operator *() const { return value; }
bool operator < (const ID& other) const
{
return value < other.value;
}
bool operator !=(const ID& other) const
{
return value != other.value;
}
operator bool() const
{
return value != 0;
}
};
sf::Packet& operator <<(sf::Packet& packet, const ID& id);
sf::Packet& operator >>(sf::Packet& packet, ID& id);
/*
* Packet class holding our value type definition
*/
class Packet
{
public:
/*
* This defines the type of value for packet data
*/
typedef enum {
ID,
INT8,
UINT8,
INT16,
UINT16,
INT32,
UINT32,
INT64,
UINT64,
FLOAT32,
FLOAT64,
STRING,
DATA
} ValueType;
};
/*
* Base class for client and server classes
*/
class Host
{
private:
unsigned long long ids;
std::map<ID, std::function<std::any(std::vector<std::any>)>> methods;
std::map<ID, void*> interfaces;
public:
Host();
/*
* Generate a new ID for usage as method, interface or cleanup handler ID
*/
ID MakeID();
/*
* Register method for incoming calls. Generates a new ID using MakeID.
*/
ID Register(std::function<std::any(std::vector<std::any>)> handler);
void Unregister(ID id);
/*
* Register interface for later lookup as a resource being passed to a method.
*/
void RegisterInterface(ID id, void* _interface);
void UnregisterInterface(ID id);
void* LookupInterface(ID id);
/*
* Handle incoming call based on method ID.
*/
std::any Handle(ID id, std::vector<std::any> args);
protected:
/*
* Template function for data being appended to a packet
*
* Specializations will write type and value accordingly
*/
template <typename T>
void put_arg(sf::Packet& packet, T arg);
/*
* Append data to a packet.
*/
void any_to_packet(std::any value, sf::Packet& packet);
/*
* Get data from a packet.
*/
void get_values(sf::Packet& packet, std::vector<std::any>& values, size_t readStart = 0);
};
template <>
inline void Host::put_arg(sf::Packet& packet, ID arg)
{
packet << Packet::ID;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Int8 arg)
{
packet << Packet::INT8;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Uint8 arg)
{
packet << Packet::UINT8;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Int16 arg)
{
packet << Packet::INT16;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Uint16 arg)
{
packet << Packet::UINT16;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Int32 arg)
{
packet << Packet::INT32;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Uint32 arg)
{
packet << Packet::UINT32;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Int64 arg)
{
packet << Packet::INT64;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, sf::Uint64 arg)
{
packet << Packet::UINT64;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, unsigned long arg) // FIXME: check i386 case
{
packet << Packet::UINT64;
packet << (sf::Uint64)arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, float arg)
{
packet << Packet::FLOAT32;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, double arg)
{
packet << Packet::FLOAT64;
packet << arg;
}
template <>
inline void Host::put_arg(sf::Packet& packet, std::string arg)
{
packet << Packet::STRING;
packet << arg;
}
/*
* Server class for running the service on a TCP socket.
*/
class Server : public Host
{
private:
std::mutex lock;
sf::TcpListener listener;
sf::SocketSelector selector;
std::thread *acceptor;
std::vector<sf::TcpSocket*> clients;
bool running;
static thread_local sf::TcpSocket* current_client;
typedef std::function<void(void)> CleanupHandler;
std::map<sf::TcpSocket*, std::map<ID,CleanupHandler>> cleanups;
public:
Server();
~Server() noexcept(false);
/*
* Put server socket in listening mode and accept incoming connections in a thread.
*/
void Listen(int port = 5000);
/*
* Handle incoming calls on any connection.
*/
void Run();
/*
* Stop accepting new connections.
*/
void Stop();
/*
* Register cleanup handler for the current client being handled.
*/
void PushCleanup(ID cleanup_id, CleanupHandler handler);
void RemoveCleanup(ID cleanup_id);
private:
/*
* Run cleanup handlers for the specified socket.
*/
void cleanup(sf::TcpSocket* socket);
private:
/*
* Handle request (incoming call) and fill packet for reply.
*/
void dispatch(sf::Packet& request, sf::Packet& reply);
};
/*
* Client class for using the service via TCP socket.
*/
class Client : public Host
{
private:
sf::TcpSocket socket;
public:
Client();
/*
* Connect to server specified by host and port number.
*/
void Connect(std::string host = "127.0.0.1", int port = 5000);
/*
* Make a call to the server and return the reply as a vector.
*/
template <typename... Args>
std::vector<std::any> Call(ID method_id, Args&&... args)
{
sf::Packet request;
request << method_id;
/*
* Append all arguments to the request packet.
*/
(put_arg(request, std::forward<Args>(args)), ...);
socket.send(request);
/*
* Receive and parse the reply packet.
*/
sf::Packet reply;
socket.receive(reply);
std::vector<std::any> result;
get_values(reply, result);
return result;
}
/*
* Make a call to the server (with data buffer) and return the reply as a vector.
*/
template <typename... Args>
std::vector<std::any> Call2(ID method_id, const void* ptr, size_t length, Args&&... args)
{
sf::Packet request;
request << method_id;
/*
* Append all arguments to the request packet.
*/
(put_arg(request, std::forward<Args>(args)), ...);
/*
* Append data buffer to the request packet.
*/
request << Packet::DATA;
request.append(ptr, length);
socket.send(request);
/*
* Receive and parse the reply packet.
*/
sf::Packet reply;
socket.receive(reply);
std::vector<std::any> result;
get_values(reply, result);
return result;
}
};
/*
* Interface helper on client side.
*/
class InterfaceClient
{
protected:
Client& client;
ID method_id;
public:
typedef enum {
RELEASE
} Method;
protected:
InterfaceClient(Client& client, ID method_id);
~InterfaceClient();
public:
ID GetMethodID() const;
};
/*
* Interface helper on server side.
*/
template <typename IFace>
class InterfaceServer
{
protected:
Server& server;
ID method_id;
protected:
InterfaceServer(Server& server)
:
server(server)
{
method_id = server.Register([&server, this](std::vector<std::any> args) -> std::any
{
typename IFace::Method method = (typename IFace::Method)(std::any_cast<int>(args[0]));
/*
* Common handler for releasing the interface.
*/
if (method == IFace::RELEASE) {
server.RemoveCleanup(method_id);
delete this;
return 0;
}
/*
* Specific handlers for interface API.
*/
std::function<std::any(std::vector<std::any>)> handler = Lookup(method);
return handler(args);
});
server.RegisterInterface(method_id, this);
server.PushCleanup(method_id, [this]() {
delete this;
});
}
~InterfaceServer()
{
server.UnregisterInterface(method_id);
server.Unregister(method_id);
}
/*
* This method has to be implemented by each server side interface class for handling incoming calls.
*/
virtual std::function<std::any(std::vector<std::any>)> Lookup(typename IFace::Method method) const = 0;
public:
ID GetMethodID() const
{
return method_id;
}
};
}