-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcTCPClient_V2.h
More file actions
288 lines (238 loc) · 5.54 KB
/
cTCPClient_V2.h
File metadata and controls
288 lines (238 loc) · 5.54 KB
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
#pragma once
#include <arpa/inet.h>
#include <cerrno>
#include <condition_variable>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <functional>
#include <mutex>
#include <queue>
#include <string>
#include <thread>
#include <utility>
#include <vector>
#include <sys/socket.h>
#include <unistd.h>
#include "cBaseWorker_V2.h"
class TCPClient_V2 : public cBaseWorker_V2
{
public:
using Buffer = std::vector<std::uint8_t>;
using DataCallback = std::function<void(const Buffer &)>;
TCPClient_V2(
std::string name,
std::string serverAddress,
std::uint16_t port,
DataCallback receiveCallback = {})
: cBaseWorker_V2(std::move(name)),
m_serverAddress(std::move(serverAddress)),
m_port(port),
m_receiveCallback(std::move(receiveCallback))
{
}
~TCPClient_V2() noexcept override
{
(void)stopThread();
closeSocket();
clearOutboundQueue();
}
[[nodiscard]] bool send(Buffer data)
{
if (data.empty() || !isRunning())
{
return false;
}
{
std::lock_guard<std::mutex> lock(m_outboundMutex);
m_outboundQueue.push(std::move(data));
}
m_outboundCondition.notify_one();
return true;
}
[[nodiscard]] bool send(const void *data, std::size_t size)
{
if ((data == nullptr) || (size == 0U))
{
return false;
}
Buffer buffer(size);
std::memcpy(buffer.data(), data, size);
return send(std::move(buffer));
}
[[nodiscard]] bool send(const std::string &text)
{
return send(text.data(), text.size());
}
protected:
bool preRun() override
{
clearOutboundQueue();
const int socketFd = ::socket(AF_INET, SOCK_STREAM, 0);
if (socketFd < 0)
{
return false;
}
m_socket.store(socketFd, std::memory_order_release);
sockaddr_in serverAddr{};
serverAddr.sin_family = AF_INET;
serverAddr.sin_port = htons(m_port);
if (::inet_pton(AF_INET, m_serverAddress.c_str(), &serverAddr.sin_addr) <= 0)
{
closeSocket();
return false;
}
if (::connect(socketFd, reinterpret_cast<sockaddr *>(&serverAddr), sizeof(serverAddr)) < 0)
{
closeSocket();
return false;
}
return true;
}
void run() override
{
std::thread readThread(&TCPClient_V2::readLoop, this);
std::thread writeThread(&TCPClient_V2::writeLoop, this);
if (readThread.joinable())
{
readThread.join();
}
requestStop();
m_outboundCondition.notify_all();
if (writeThread.joinable())
{
writeThread.join();
}
}
void stopTriggered() override
{
closeSocket();
clearOutboundQueue();
m_outboundCondition.notify_all();
}
private:
static constexpr std::size_t kReadBufferSize = 4096U;
void readLoop() noexcept
{
try
{
Buffer buffer(kReadBufferSize);
while (continueRunning())
{
const int socketFd = m_socket.load(std::memory_order_acquire);
if (socketFd < 0)
{
break;
}
const auto bytesRead = ::recv(socketFd, buffer.data(), buffer.size(), 0);
if (bytesRead > 0)
{
updateHeartbeat();
if (m_receiveCallback)
{
Buffer payload(
buffer.begin(),
buffer.begin() + static_cast<std::size_t>(bytesRead));
m_receiveCallback(payload);
}
continue;
}
if ((bytesRead < 0) && (errno == EINTR))
{
continue;
}
requestStop();
break;
}
}
catch (...)
{
requestStop();
}
}
void writeLoop() noexcept
{
try
{
while (continueRunning())
{
Buffer payload;
{
std::unique_lock<std::mutex> lock(m_outboundMutex);
m_outboundCondition.wait(
lock,
[this]()
{
return stopRequested() || !m_outboundQueue.empty();
});
if (stopRequested())
{
break;
}
payload = std::move(m_outboundQueue.front());
m_outboundQueue.pop();
}
if (!sendAll(payload))
{
requestStop();
break;
}
updateHeartbeat();
}
}
catch (...)
{
requestStop();
}
}
[[nodiscard]] bool sendAll(const Buffer &payload) noexcept
{
std::size_t totalSent = 0U;
while (totalSent < payload.size())
{
const int socketFd = m_socket.load(std::memory_order_acquire);
if (socketFd < 0)
{
return false;
}
const auto bytesSent = ::send(
socketFd,
payload.data() + totalSent,
payload.size() - totalSent,
0);
if (bytesSent > 0)
{
totalSent += static_cast<std::size_t>(bytesSent);
continue;
}
if ((bytesSent < 0) && (errno == EINTR))
{
continue;
}
return false;
}
return true;
}
void clearOutboundQueue() noexcept
{
std::lock_guard<std::mutex> lock(m_outboundMutex);
std::queue<Buffer> emptyQueue;
m_outboundQueue.swap(emptyQueue);
}
void closeSocket() noexcept
{
const int socketFd = m_socket.exchange(-1, std::memory_order_acq_rel);
if (socketFd >= 0)
{
::shutdown(socketFd, SHUT_RDWR);
::close(socketFd);
}
}
std::string m_serverAddress;
std::uint16_t m_port{0U};
DataCallback m_receiveCallback;
std::atomic<int> m_socket{-1};
std::mutex m_outboundMutex;
std::condition_variable m_outboundCondition;
std::queue<Buffer> m_outboundQueue;
};