-
Notifications
You must be signed in to change notification settings - Fork 1
/
named-pipe-server.hpp
559 lines (495 loc) · 22.8 KB
/
named-pipe-server.hpp
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
/*
* simple-named-pipe-server - C++ server and client library Named Pipe
*
* Copyright (c) 2020 Elektro Yar. Email: git.electroyar@gmail.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef SIMPLE_NAMED_PIPE_SERVER_HPP_INCLUDED
#define SIMPLE_NAMED_PIPE_SERVER_HPP_INCLUDED
#include <iostream>
#include <windows.h>
#include <mutex>
#include <atomic>
#include <condition_variable>
#include <future>
#include <system_error>
#include <thread>
#include <list>
#include <vector>
#include <queue>
namespace SimpleNamedPipe {
/** \brief Класс сервера именованных каналов
*/
class NamedPipeServer {
private:
HANDLE pipe = INVALID_HANDLE_VALUE;
std::future<void> named_pipe_future; /**< Поток обработки новых подключений */
std::future<void> named_pipe_send_future; /**< Поток обработки исходящих сообщений */
std::mutex method_mutex;
std::condition_variable str_queue_check;
std::queue<std::string> str_queue;
std::mutex str_queue_mutex;
std::atomic<bool> is_reset; /**< Команда завершения работы */
std::atomic<bool> is_error; /**< Ошибка сервера */
// переменные для разблокировки ConnectNamedPipe
std::string connection_pipe_name;
std::mutex connection_pipe_name_mutex;
std::atomic<bool> is_connection;
/** \brief Класс настроек соединения
*/
class Config {
public:
std::string name; /**< Имя именованного канала */
size_t buffer_size; /**< Размер буфера для чтения и записи */
size_t timeout; /**< Время ожидания */
Config() :
name("server"),
buffer_size(2048),
timeout(50) {
};
} config; /**< Настройки сервера */
public:
/** \brief Класс соединения
*/
class Connection {
private:
HANDLE pipe = INVALID_HANDLE_VALUE; /**< хендлер именованного канала */
std::mutex pipe_mutex;
std::future<void> connection_future; /**< Поток обработки входящих сообщений */
std::atomic<bool> is_reset; /**< Команда завершения работы */
std::atomic<bool> is_error; /**< Состояние ошибки */
std::atomic<bool> is_close; /**< Флаг закрытия соединения */
std::function<void(Connection*)> &on_open;
std::function<void(Connection*, const std::string &in_message)> &on_message;
std::function<void(Connection*)> &on_close;
std::function<void(Connection*, const std::error_code &)> &on_error;
size_t buffer_size = 2048; /**< Размер буфера */
/** \brief Прочитать сообщение
*/
void read_message() noexcept {
if (is_error) {
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
return;
}
// проверяем наличие данных в кнале
DWORD bytes_to_read = 0;
BOOL success;
{
std::unique_lock<std::mutex> locker(pipe_mutex);
success = PeekNamedPipe(pipe, NULL, 0, NULL, &bytes_to_read, NULL);
}
DWORD err = GetLastError();
if(!success) {
// если соединение закрыто, вернется ERROR_PIPE_NOT_CONNECTED
if(err == ERROR_PIPE_NOT_CONNECTED) {
is_error = true;
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
return;
} else
if(err == ERROR_BROKEN_PIPE) {
is_error = true;
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
return;
}
}
if (bytes_to_read == 0) {
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
return;
}
std::vector<char> buffer(buffer_size);
DWORD bytes_read = 0;
{
std::unique_lock<std::mutex> locker(pipe_mutex);
success = ReadFile(
pipe,
&buffer[0],
std::min((size_t)bytes_to_read, buffer_size),
&bytes_read,
NULL);
}
err = GetLastError();
if(!success || bytes_read == 0) {
if(err == ERROR_BROKEN_PIPE) {
is_error = true;
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
return;
} else {
if(on_error != nullptr) {
on_error(this,std::error_code(static_cast<int>(GetLastError()), std::generic_category()));
}
}
is_error = true;
}
on_message(this, std::string(buffer.begin(),buffer.begin() + bytes_read));
}
public:
Connection(
const HANDLE _pipe,
std::function<void(Connection*)> &_on_open,
std::function<void(Connection*, const std::string &in_message)> &_on_message,
std::function<void(Connection*)> &_on_close,
std::function<void(Connection*, const std::error_code &)> &_on_error,
const size_t _buffer_size) :
pipe(_pipe),
on_open(_on_open),
on_message(_on_message),
on_close(_on_close),
on_error(_on_error),
buffer_size(_buffer_size) {
is_reset = false;
is_error = false;
is_close = false;
connection_future = std::async(std::launch::async,[this]() {
on_open(this);
while (!is_reset && !is_error) {
read_message();
}
on_close(this);
// очищаем буфер только когда соединение было закрыто не сбросом
{
std::lock_guard<std::mutex> locker(pipe_mutex);
if(pipe != INVALID_HANDLE_VALUE) {
if (!is_reset) FlushFileBuffers(pipe);
DisconnectNamedPipe(pipe);
CloseHandle(pipe);
pipe = INVALID_HANDLE_VALUE;
}
is_close = true;
}
});
}
~Connection() {
close();
std::shared_future<void> connection_share = connection_future.share();
if(connection_share.valid()) {
try {
connection_share.wait();
connection_share.get();
}
catch(...) {}
}
}
/** \brief Отправить сообщение
* \param out_message Сообщение
* \param callback Обратный вызов для ошибки
*/
void send(
const std::string &out_message,
const std::function<void(const std::error_code &ec)> &callback = nullptr) noexcept {
std::unique_lock<std::mutex> locker(pipe_mutex);
if (is_reset) return;
try {
if (is_error) {
if (callback) {
locker.unlock();
callback(std::error_code(static_cast<int>(GetLastError()), std::generic_category()));
locker.lock();
}
return;
}
if(pipe == INVALID_HANDLE_VALUE) return;
DWORD bytes_written = 0;
BOOL success = WriteFile(
pipe,
out_message.c_str(), // буфер для записи
out_message.size(), // количество байтов для записи
&bytes_written, // количество записанных байтов
NULL); // не перекрывается I/O
if (!success || out_message.size() != bytes_written) {
// ошибка записи, закрываем соединение
locker.unlock();
if (callback) {
callback(std::error_code(static_cast<int>(GetLastError()), std::generic_category()));
}
if (on_error) {
on_error(this,std::error_code(static_cast<int>(GetLastError()), std::generic_category()));
}
locker.lock();
CancelIo(pipe);
is_error = true;
}
}
catch(...) {
is_error = true;
}
}
/** \brief Закрыть соединение
*/
inline void close() noexcept {
is_reset = true;
}
/** \brief Проверить закрытие соединения
* \return Вернет true, если соединение закрыто
*/
inline bool check_close() noexcept {
return is_close;
}
inline HANDLE get_handle() noexcept {
std::lock_guard<std::mutex> lock(pipe_mutex);
return pipe;
}
};
inline void clear_connections() noexcept {
// удаляем потоки, где соединение закрыто
std::lock_guard<std::mutex> lock(connections_mutex);
if(connections.size() == 0) return;
auto it = connections.begin();
while(it != connections.end()) {
if(it->get()->check_close()) {
it = connections.erase(it);
continue;
}
it++;
}
}
inline void reset_connections() noexcept {
// удаляем потоки, где соединение закрыто
std::lock_guard<std::mutex> locker(connections_mutex);
if (connections.empty()) return;
auto it = connections.begin();
while(it != connections.end()) {
if(it->get()->check_close()) {
it->get()->close();
}
it++;
}
connections.clear();
}
private:
std::list<std::shared_ptr<Connection>> connections; /**< Список соединений */
std::mutex connections_mutex;
/** \brief Инициализировать сервер
*
* \param config Настройки сервера
* \return Вернет true, если инициализация прошла успешно
*/
bool init(Config &config) noexcept {
if (named_pipe_future.valid()) return false;
std::string pipename("\\\\.\\pipe\\");
if (config.name.find("\\") != std::string::npos) return false;
pipename += config.name;
if (pipename.length() > 256) return false;
/* запоминаем имя соединения */
{
std::lock_guard<std::mutex> lock(connection_pipe_name_mutex);
connection_pipe_name = pipename;
}
named_pipe_future = std::async(std::launch::async,[
this,
pipename,
config]() {
while(!is_reset) {
pipe = CreateNamedPipeA(
(LPCSTR)pipename.c_str(), // имя канала
PIPE_ACCESS_DUPLEX | // двунаправленный доступ
FILE_FLAG_OVERLAPPED,
PIPE_TYPE_MESSAGE | // message type pipe
PIPE_READMODE_MESSAGE | // message-read mode
PIPE_WAIT, // blocking mode
PIPE_UNLIMITED_INSTANCES, // max. instances
config.buffer_size, // output buffer size
config.buffer_size, // input buffer size
config.timeout, // client time-out
NULL); // default security attribute
if (pipe == INVALID_HANDLE_VALUE) {
// std::cerr << "NamedPipeServer::init(), CreateNamedPipeA failed, GLE=" << GetLastError() << std::endl;
is_error = true;
// удаляем потоки, где соединение закрыто
reset_connections();
return;
}
// устанавливем флаг соединения (необходим для хака во время остановки сервера)
is_connection = true;
// ждем соединения с сервером
BOOL named_pipe_connected = ConnectNamedPipe(pipe, NULL) ?
TRUE :
(GetLastError() == ERROR_PIPE_CONNECTED);
// снимаем флаг соединения (необходим для хака во время остановки сервера)
is_connection = false;
// если бы сброс, выходим
if (is_reset) {
reset_connections();
CloseHandle(pipe);
return;
}
if (named_pipe_connected) {
// создаем отдельный поток для приема и передачи сообщений
std::lock_guard<std::mutex> lock(connections_mutex);
connections.push_back(std::make_shared<Connection>(
pipe,
on_open,
on_message,
on_close,
on_error,
config.buffer_size));
} else {
CloseHandle(pipe);
}
// удаляем потоки, где соединение закрыто
clear_connections();
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
reset_connections();
});
named_pipe_send_future = std::async(std::launch::async,[this]() {
while (!is_reset) {
std::queue<std::string> messages_queue;
{
std::unique_lock<std::mutex> locker(str_queue_mutex);
str_queue_check.wait(locker, [this](){return !str_queue.empty() || is_reset;});
if (is_reset) return;
std::swap(str_queue, messages_queue);
}
if (messages_queue.empty()) {
std::this_thread::yield();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
continue;
}
while (!messages_queue.empty()) {
std::string out_message = messages_queue.front();
messages_queue.pop();
std::lock_guard<std::mutex> locker(connections_mutex);
auto it = connections.begin();
while (it != connections.end()) {
if (!it->get()->check_close()) {
it->get()->send(out_message);
}
it++;
}
}
}
});
return true;
}
public:
std::function<void(Connection*)> on_open;
std::function<void(Connection*, const std::string &in_message)> on_message;
std::function<void(Connection*)> on_close;
std::function<void(Connection*, const std::error_code &)> on_error;
/** \brief Конструктор класса сервера именованных каналов
*
* \param name Имя именованного канала
* \param buffer_size Размер буфера для чтения и записи
* \param timeout Время ожидания
*/
NamedPipeServer(
const std::string &name,
const size_t buffer_size = 2048,
const size_t timeout = 0) {
is_reset = false;
is_error = false;
is_connection = false;
config.name = name;
config.buffer_size = buffer_size;
config.timeout = timeout;
}
/** \brief Запустить сервер
*/
inline bool start() noexcept {
std::lock_guard<std::mutex> lock(method_mutex);
is_reset = false;
return init(config);
}
/** \brief Остановить сервер
*/
inline void stop() noexcept {
std::lock_guard<std::mutex> lock(method_mutex);
is_reset = true;
if (is_connection) {
// применяем лайфхак, чтобы разблочить функцию ConnectNamedPipe
HANDLE hack_pipe;
{
std::lock_guard<std::mutex> lock(connection_pipe_name_mutex);
hack_pipe = CreateFile(
(LPCSTR)connection_pipe_name.c_str(), // имя канала
GENERIC_READ | // read and write access
GENERIC_WRITE,
0, // no sharing
NULL, // default security attributes
OPEN_EXISTING, // opens existing pipe
0, // default attributes
NULL); // no template file
}
if(hack_pipe != INVALID_HANDLE_VALUE) {
CloseHandle(pipe);
}
}
std::shared_future<void> named_pipe_share = named_pipe_future.share();
if(named_pipe_share.valid()) {
try {
named_pipe_share.wait();
named_pipe_share.get();
}
catch(...) {}
}
str_queue_check.notify_one();
std::shared_future<void> named_pipe_send_share = named_pipe_send_future.share();
if(named_pipe_send_share.valid()) {
try {
named_pipe_send_share.wait();
named_pipe_send_share.get();
}
catch(...) {}
}
reset_connections();
}
/** \brief Проверить наличие ошибки
* \return Вернет true, если есть ошибка
*/
inline bool check_error() noexcept {
return is_error;
}
/** \brief Отправить сообщение всем клиента
* \param out_message Сообщение
* \return Вернет true, если было хотя бы одно отправление
*/
inline bool send_all(const std::string &out_message) noexcept {
if (get_connections() == 0) return false;
std::unique_lock<std::mutex> locker(str_queue_mutex);
str_queue.push(out_message);
str_queue_check.notify_one();
return true;
}
~NamedPipeServer() {
stop();
}
/** \brief Получить количество соединений
* \return Количество соединений
*/
inline size_t get_connections() noexcept {
size_t counter = 0;
std::lock_guard<std::mutex> locker(connections_mutex);
if (connections.empty()) return counter;
for (auto it : connections) {
if(!it->check_close()) {
++counter;
}
}
return counter;
};
};
}
#endif // SIMPLE_NAMED_PIPE_SERVER_HPP_INCLUDED