-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTcpSocket.cpp
More file actions
238 lines (215 loc) · 6.06 KB
/
Copy pathTcpSocket.cpp
File metadata and controls
238 lines (215 loc) · 6.06 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
#include "TcpSocket.h"
#include "Core/Logger.h"
#include "Network/PacketEvent.hpp"
#include <asio.hpp>
namespace sh::network
{
struct TcpSocket::Impl
{
asio::ip::tcp::socket socket;
};
TcpSocket::TcpSocket(const NetworkContext& ctx)
{
asio::io_context& ioCtx = *reinterpret_cast<asio::io_context*>(ctx.GetNativeHandle());
asio::ip::tcp::socket socket{ ioCtx };
asio::error_code ec;
socket.open(asio::ip::tcp::v4(), ec);
if (ec)
SH_ERROR_FORMAT("open failed: {}", ec.message());
else
impl = std::make_unique<Impl>(Impl{ std::move(socket) });
header.fill(0);
}
TcpSocket::TcpSocket(TcpSocket&& other) noexcept :
impl(std::move(other.impl)),
ip(std::move(other.ip)),
port(other.port),
header(other.header),
body(std::move(other.body)),
sendQueue(std::move(other.sendQueue)),
receivedQueue(std::move(other.receivedQueue))
{
}
TcpSocket::~TcpSocket()
{
if (impl != nullptr)
impl->socket.close();
}
SH_NET_API auto TcpSocket::operator=(TcpSocket&& other) noexcept -> TcpSocket&
{
if (this == &other)
return *this;
impl = std::move(other.impl);
ip = std::move(other.ip);
port = other.port;
header = other.header;
body = std::move(other.body);
sendQueue = std::move(other.sendQueue);
receivedQueue = std::move(other.receivedQueue);
return *this;
}
SH_NET_API void TcpSocket::Connect(const std::string& ip, uint16_t port)
{
this->ip = ip;
this->port = port;
asio::ip::tcp::endpoint endPoint{ asio::ip::make_address(this->ip), this->port };
impl->socket.async_connect(endPoint,
[this](asio::error_code ec)
{
if (ec)
SH_ERROR_FORMAT("Failed to connect: {}", ec.message());
else
ReadHeader();
}
);
}
SH_NET_API void TcpSocket::Send(const Packet& packet)
{
const std::vector<uint8_t> data(core::Json::to_bson(packet.Serialize()));
const uint32_t len = static_cast<uint32_t>(data.size());
std::vector<uint8_t> sendData;
// 헤더에 리틀엔디안으로 데이터 길이 기록
sendData.resize(4 + data.size());
sendData[0] = (len >> 0) & 0xFF;
sendData[1] = (len >> 8) & 0xFF;
sendData[2] = (len >> 16) & 0xFF;
sendData[3] = (len >> 24) & 0xFF;
// Body에 데이터 기록
std::memcpy(sendData.data() + 4, data.data(), data.size());
std::lock_guard<std::mutex> lock{ mu };
bool bWasEmpty = sendQueue.empty();
sendQueue.push_back(std::move(sendData));
if (bWasEmpty)
WriteNext();
}
SH_NET_API void TcpSocket::SendBlocking(const Packet& packet)
{
const std::vector<uint8_t> data(core::Json::to_bson(packet.Serialize()));
const uint32_t len = static_cast<uint32_t>(data.size());
std::vector<uint8_t> sendData;
// 헤더에 리틀엔디안으로 데이터 길이 기록
sendData.resize(4 + data.size());
sendData[0] = (len >> 0) & 0xFF;
sendData[1] = (len >> 8) & 0xFF;
sendData[2] = (len >> 16) & 0xFF;
sendData[3] = (len >> 24) & 0xFF;
// Body에 데이터 기록
std::memcpy(sendData.data() + 4, data.data(), data.size());
std::error_code ec;
asio::write(impl->socket, asio::buffer(sendData), ec);
if (ec)
SH_INFO_FORMAT("Send failed: {} ({})", ec.message(), ec.value());
}
SH_NET_API void TcpSocket::Close()
{
impl->socket.close();
}
SH_NET_API void TcpSocket::ReadStart()
{
ReadHeader();
}
SH_NET_API void TcpSocket::SetReceiveQueue(const std::shared_ptr<MessageQueue>& msgQueue)
{
receivedQueue = msgQueue;
}
SH_NET_API auto TcpSocket::IsOpen() const -> bool
{
return impl != nullptr && impl->socket.is_open();
}
TcpSocket::TcpSocket(void* nativeSocketPtr)
{
auto socketPtr = reinterpret_cast<asio::ip::tcp::socket*>(nativeSocketPtr);
ip = socketPtr->remote_endpoint().address().to_string();
port = socketPtr->remote_endpoint().port();
impl = std::make_unique<Impl>(Impl{ std::move(*socketPtr) });
header.fill(0);
}
void TcpSocket::WriteNext()
{
asio::async_write(impl->socket, asio::buffer(sendQueue.front()),
[this](std::error_code ec, std::size_t)
{
if (ec)
{
SH_INFO_FORMAT("Send failed: {} ({})", ec.message(), ec.value());
return;
}
std::lock_guard<std::mutex> lock{ mu };
sendQueue.pop_front();
if (!sendQueue.empty())
WriteNext();
}
);
}
void TcpSocket::ReadHeader()
{
asio::async_read(impl->socket, asio::buffer(header),
[this](std::error_code ec, std::size_t)
{
if (ec)
{
SH_INFO_FORMAT("Read hedaer failed: {} ({})", ec.message(), ec.value());
return;
}
const uint32_t len =
(uint32_t)header[0] |
((uint32_t)header[1] << 8) |
((uint32_t)header[2] << 16) |
((uint32_t)header[3] << 24);
constexpr uint32_t kMaxPacket = 1 * 1024 * 1024;
if (len == 0 || len > kMaxPacket)
{
Close();
return;
}
body.resize(len);
ReadBody();
}
);
}
void TcpSocket::ReadBody()
{
asio::async_read(impl->socket, asio::buffer(body),
[this](std::error_code ec, std::size_t)
{
if (ec)
{
SH_INFO_FORMAT("Read body failed: {} ({})", ec.message(), ec.value());
return;
}
const core::Json json = core::Json::from_bson(body.data(), body.size(), true, true);
if (json.contains("id"))
{
static auto conatinerFactory = Packet::Factory::GetInstance();
auto packet = conatinerFactory->Create(json["id"]);
if (packet != nullptr)
{
packet->Deserialize(json);
asio::error_code err;
auto ep = impl->socket.remote_endpoint(err);
if (err)
{
SH_ERROR_FORMAT("{}", err.message());
}
else
{
PacketEvent evt{ packet.get(), ep.address().to_string(), static_cast<uint16_t>(ep.port()) };
bus.Publish(evt);
NetworkContext::Message message{};
message.senderIp = ep.address().to_string();
message.senderPort = static_cast<uint16_t>(ep.port());
message.packet = std::move(packet);
assert(receivedQueue.get() != nullptr);
receivedQueue.get()->Push(std::move(message));
}
}
else
SH_ERROR("An unregistered packet has been received!");
}
else
SH_ERROR("Error packet has been received! (No ID.)");
ReadHeader();
}
);
}
}//namespace