-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtcpclient.cc
225 lines (180 loc) · 4.52 KB
/
tcpclient.cc
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
#include "tcpclient.hpp"
class TcpClient::TcpClientPrivate
{
public:
explicit TcpClientPrivate(TcpClient *q)
: q_ptr(q)
{}
TcpClient *q_ptr;
std::string host = {};
int port = 0;
CURL *curl = nullptr;
CURLcode res = CURLE_OK;
bool connected = false;
};
TcpClient::TcpClient()
: d_ptr(std::make_unique<TcpClientPrivate>(this))
{}
TcpClient::TcpClient(const std::string &host, int port)
: d_ptr(std::make_unique<TcpClientPrivate>(this))
{
d_ptr->host = host;
d_ptr->port = port;
}
TcpClient::~TcpClient()
{
disconnect();
}
auto TcpClient::connect() -> bool
{
if (d_ptr->connected) {
return true;
}
d_ptr->curl = curl_easy_init();
if (d_ptr->curl == nullptr) {
return false;
}
curl_easy_setopt(d_ptr->curl, CURLOPT_URL, d_ptr->host.c_str());
curl_easy_setopt(d_ptr->curl, CURLOPT_PORT, d_ptr->port);
curl_easy_setopt(d_ptr->curl, CURLOPT_TCP_NODELAY, 1L);
curl_easy_setopt(d_ptr->curl, CURLOPT_TCP_KEEPALIVE, 1L);
curl_easy_setopt(d_ptr->curl, CURLOPT_TCP_KEEPIDLE, 120L);
curl_easy_setopt(d_ptr->curl, CURLOPT_TCP_KEEPINTVL, 60L);
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
curl_easy_cleanup(d_ptr->curl);
d_ptr->curl = nullptr;
return false;
}
d_ptr->connected = true;
return d_ptr->connected;
}
auto TcpClient::connect(const std::string &host, int port) -> bool
{
d_ptr->host = host;
d_ptr->port = port;
return connect();
}
void TcpClient::disconnect()
{
if (!d_ptr->connected) {
return;
}
curl_easy_cleanup(d_ptr->curl);
d_ptr->curl = nullptr;
d_ptr->connected = false;
}
void TcpClient::send(const std::string &data)
{
if (!d_ptr->connected) {
return;
}
curl_easy_setopt(d_ptr->curl, CURLOPT_POSTFIELDS, data.c_str());
curl_easy_setopt(d_ptr->curl, CURLOPT_POSTFIELDSIZE, data.size());
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
disconnect();
return;
}
}
void TcpClient::send(const std::vector<char> &data)
{
if (!d_ptr->connected) {
return;
}
curl_easy_setopt(d_ptr->curl, CURLOPT_POSTFIELDS, data.data());
curl_easy_setopt(d_ptr->curl, CURLOPT_POSTFIELDSIZE, data.size());
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
disconnect();
return;
}
}
void TcpClient::send(const char *data, size_t size)
{
if (!d_ptr->connected) {
return;
}
curl_easy_setopt(d_ptr->curl, CURLOPT_POSTFIELDS, data);
curl_easy_setopt(d_ptr->curl, CURLOPT_POSTFIELDSIZE, size);
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
disconnect();
return;
}
}
auto TcpClient::recv() -> std::string
{
if (!d_ptr->connected) {
return std::string();
}
std::string data;
curl_easy_setopt(d_ptr->curl, CURLOPT_WRITEDATA, &data);
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
disconnect();
return std::string();
}
return data;
}
auto TcpClient::recv(size_t size) -> std::string
{
if (!d_ptr->connected) {
return std::string();
}
std::string data;
data.resize(size);
curl_easy_setopt(d_ptr->curl, CURLOPT_WRITEDATA, &data);
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
disconnect();
return std::string();
}
return data;
}
auto TcpClient::recv(std::vector<char> &data) -> size_t
{
if (!d_ptr->connected) {
return 0;
}
curl_easy_setopt(d_ptr->curl, CURLOPT_WRITEDATA, &data);
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
disconnect();
return 0;
}
return data.size();
}
auto TcpClient::recv(char *data, size_t size) -> size_t
{
if (!d_ptr->connected) {
return 0;
}
curl_easy_setopt(d_ptr->curl, CURLOPT_WRITEDATA, data);
d_ptr->res = curl_easy_perform(d_ptr->curl);
if (d_ptr->res != CURLE_OK) {
disconnect();
return 0;
}
return size;
}
auto TcpClient::getHost() const -> std::string
{
return d_ptr->host;
}
auto TcpClient::getPort() const -> int
{
return d_ptr->port;
}
auto TcpClient::isConnected() const -> bool
{
return d_ptr->connected;
}
auto TcpClient::getLastError() const -> CURLcode
{
return d_ptr->res;
}
auto TcpClient::getLastErrorString() const -> std::string
{
return curl_easy_strerror(d_ptr->res);
}