-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient.cpp
More file actions
331 lines (288 loc) · 6.07 KB
/
Copy pathclient.cpp
File metadata and controls
331 lines (288 loc) · 6.07 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
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
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/ip.h>
#include <string>
#include <vector>
#include <iostream>
#include <sstream>
#define DEFAULT_HOST "0.0.0.0"
#define DEFAULT_PORT 8080
const size_t kMaxArg = 4096;
enum class ResponseTag : uint32_t
{
TAG_NIL = 0, // nil
TAG_ERR = 1, // error code + msg
TAG_STR = 2, // string
TAG_INT = 3, // int64
TAG_DBL = 4, // double
TAG_ARR = 5, // array
};
enum class ErrorCode : uint32_t
{
ERR_UNKNOWN = 1, // unknown command
ERR_TOO_BIG = 2, // response too big
ERR_WRONG_ARGS_COUNT = 3, // wrong number of arguments
};
static void msg(const char *msg)
{
fprintf(stderr, "%s\n", msg);
}
static int32_t readFull(int fd, char *buf, size_t n)
{
while (n > 0)
{
ssize_t rv = read(fd, buf, n);
if (rv <= 0)
return -1;
assert((size_t)rv <= n);
n -= (size_t)rv;
buf += rv;
}
return 0;
}
static int32_t writeAll(int fd, const char *buf, size_t n)
{
while (n > 0)
{
ssize_t rv = write(fd, buf, n);
if (rv <= 0)
return -1;
assert((size_t)rv <= n);
n -= (size_t)rv;
buf += rv;
}
return 0;
}
static int32_t sendRequest(int fd, const std::vector<std::string> &cmd)
{
uint32_t len = 4;
for (const std::string &s : cmd)
len += 4 + s.size();
if (len > kMaxArg)
return -1;
char wbuf[4 + kMaxArg];
memcpy(&wbuf[0], &len, 4);
uint32_t n = (uint32_t)cmd.size();
memcpy(&wbuf[4], &n, 4);
size_t cur = 8;
for (const std::string &s : cmd)
{
uint32_t p = (uint32_t)s.size();
memcpy(&wbuf[cur], &p, 4);
memcpy(&wbuf[cur + 4], s.data(), s.size());
cur += 4 + s.size();
}
return writeAll(fd, wbuf, 4 + len);
}
static const char *getErrorName(uint32_t code)
{
switch (code)
{
case (uint32_t)ErrorCode::ERR_UNKNOWN:
return "ERR_UNKNOWN";
case (uint32_t)ErrorCode::ERR_TOO_BIG:
return "ERR_TOO_BIG";
case (uint32_t)ErrorCode::ERR_WRONG_ARGS_COUNT:
return "ERR_WRONG_ARGS_COUNT";
default:
return "UNKNOWN_ERROR";
}
}
static int32_t printResponse(const uint8_t *data, size_t size)
{
if (size < 1)
{
msg("bad response");
return -1;
}
switch (data[0])
{
case (uint32_t)ResponseTag::TAG_NIL:
printf("(nil)\n");
return 1;
case (uint32_t)ResponseTag::TAG_ERR:
if (size < 1 + 8)
{
msg("bad response");
return -1;
}
{
uint32_t code = 0;
uint32_t len = 0;
memcpy(&code, &data[1], 4);
memcpy(&len, &data[1 + 4], 4);
if (size < 1 + 8 + len)
{
msg("bad response");
return -1;
}
printf("(err) %s %.*s\n", getErrorName(code), len, &data[1 + 8]);
return 1 + 8 + len;
}
case (uint32_t)ResponseTag::TAG_STR:
if (size < 1 + 4)
{
msg("bad response");
return -1;
}
{
uint32_t len = 0;
memcpy(&len, &data[1], 4);
if (size < 1 + 4 + len)
{
msg("bad response");
return -1;
}
printf("(str) %.*s\n", len, &data[1 + 4]);
return 1 + 4 + len;
}
case (uint32_t)ResponseTag::TAG_INT:
if (size < 1 + 8)
{
msg("bad response");
return -1;
}
{
int64_t val = 0;
memcpy(&val, &data[1], 8);
printf("(int) %ld\n", val);
return 1 + 8;
}
case (uint32_t)ResponseTag::TAG_DBL:
if (size < 1 + 8)
{
msg("bad response");
return -1;
}
{
double val = 0;
memcpy(&val, &data[1], 8);
printf("(dbl) %g\n", val);
return 1 + 8;
}
case (uint32_t)ResponseTag::TAG_ARR:
if (size < 1 + 4)
{
msg("bad response");
return -1;
}
{
uint32_t len = 0;
memcpy(&len, &data[1], 4);
printf("(arr) len=%u\n", len);
size_t arr_bytes = 1 + 4;
for (uint32_t i = 0; i < len; i++)
{
int32_t rv = printResponse(&data[arr_bytes], size - arr_bytes);
if (rv < 0)
return rv;
arr_bytes += (size_t)rv;
}
printf("(arr) end\n");
return (int32_t)arr_bytes;
}
default:
msg("bad response");
return -1;
}
}
static int32_t read_res(int fd)
{
char buf[4 + kMaxArg + 1];
errno = 0;
int32_t err = readFull(fd, buf, 4);
if (err)
{
if (errno == 0)
msg("EOF");
else
msg("read() error");
return err;
}
uint32_t len = 0;
memcpy(&len, buf, 4);
if (len > kMaxArg)
{
msg("too long");
return -1;
}
err = readFull(fd, &buf[4], len);
if (err)
{
msg("read() error");
return err;
}
int32_t rv = printResponse((uint8_t *)&buf[4], len);
if (rv > 0 && (uint32_t)rv != len)
{
msg("bad response");
rv = -1;
}
return rv;
}
int main()
{
int fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0)
{
std::cout << "Failed to create socket" << std::endl;
return -1;
}
struct sockaddr_in addr = {};
addr.sin_family = AF_INET;
addr.sin_port = htons(DEFAULT_PORT);
addr.sin_addr.s_addr = inet_addr(DEFAULT_HOST);
int rv = connect(fd, (const struct sockaddr *)&addr, sizeof(addr));
if (rv)
{
close(fd);
std::cout << "Failed to connect to server" << std::endl;
return -1;
}
std::cout << "Connected to server\n";
std::cout << "redis> " << std::flush;
std::string line;
while (true)
{
if (!std::getline(std::cin, line))
break;
if (line == "quit" || line == "exit")
break;
if (line.empty())
{
std::cout << "redis> " << std::flush;
continue;
}
std::vector<std::string> cmd;
std::istringstream iss(line);
std::string token;
while (iss >> token)
cmd.push_back(token);
if (cmd.empty())
{
std::cout << "redis> " << std::flush;
continue;
}
int32_t err = sendRequest(fd, cmd);
if (err)
{
std::cout << "Failed to send request" << std::endl;
break;
}
err = read_res(fd);
if (err < 0)
{
std::cout << "Failed to read response" << std::endl;
break;
}
std::cout << "redis> " << std::flush;
}
close(fd);
return 0;
}