-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathclient.cpp
More file actions
150 lines (130 loc) · 3.11 KB
/
client.cpp
File metadata and controls
150 lines (130 loc) · 3.11 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
#include <assert.h>
#include <stdint.h>
#include <stdlib.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>
#define PORT 2203
static void msg(const char *msg) {
fprintf(stderr, "%s\n", msg);
}
static void die(const char *msg) {
int err = errno;
fprintf(stderr, "[%d] %s\n", err, msg);
abort();
}
static int32_t read_full(int fd, char *buf, size_t n) {
while (n > 0) {
ssize_t rv = read(fd, buf, n);
if (rv <= 0) {
return -1; // error, or unexpected EOF
}
assert((size_t)rv <= n);
n -= (size_t)rv;
buf += rv;
}
return 0;
}
static int32_t write_all(int fd, const char *buf, size_t n) {
while (n > 0) {
ssize_t rv = write(fd, buf, n);
if (rv <= 0) {
return -1; // error
}
assert((size_t)rv <= n);
n -= (size_t)rv;
buf += rv;
}
return 0;
}
const size_t k_max_msg = 4096;
// the `query` function was simply splited into `send_req` and `read_res`.
static int32_t send_req(int fd, std::vector<std::string> &cmd) {
uint32_t len=4;
for(const std::string &s:cmd){
len+= 4+s.size();
}
if (len > k_max_msg) {
return -1;
}
char wbuf[4+k_max_msg];
memcpy(&wbuf[0],&len,4);
uint32_t n=cmd.size();
memcpy(&wbuf[4],&n,4);
uint32_t curr=8;
for(const std::string &s:cmd){
uint32_t p=s.size();
memcpy(&wbuf[curr],&p,4);
memcpy(&wbuf[curr+4],s.data(),s.size());
curr+=4+s.size();
}
return write_all(fd,wbuf,4+len);
}
static int32_t read_res(int fd) {
// 4 bytes header
char rbuf[4+k_max_msg];
errno = 0;
int32_t err = read_full(fd, &rbuf[0], 4);
if (err) {
if (errno == 0) {
msg("EOF");
} else {
msg("read() error");
}
return err;
}
uint32_t len = 0;
memcpy(&len,rbuf, 4); // assume little endian
if (len > k_max_msg) {
msg("too long");
return -1;
}
err = read_full(fd, &rbuf[4], len);
if (err) {
msg("read() error");
return err;
}
uint32_t rescode=0;
if(len<4){
msg("bad response");
return -1;
}
memcpy(&rescode,&rbuf[4],4);
printf("server says: [%u] %.*s\n",rescode,len-4,&rbuf[8]);
return 0;
}
int main(int argc, char **argv) {
int fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0) {
die("socket()");
}
struct sockaddr_in addr = {};
addr.sin_family = AF_INET;
addr.sin_port = ntohs(PORT);
addr.sin_addr.s_addr = ntohl(INADDR_LOOPBACK); // 127.0.0.1
int rv = connect(fd, (const struct sockaddr *)&addr, sizeof(addr));
if (rv) {
die("connect");
}
std::vector<std::string> cmd;
for(int i=1;i<argc;i++){
cmd.push_back(argv[i]);
}
int32_t err=send_req(fd,cmd);
if(err){
goto L_DONE;
}
err=read_res(fd);
if(err){
goto L_DONE;
}
L_DONE:
close(fd);
return 0;
}