-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.cpp
397 lines (359 loc) · 10.9 KB
/
client.cpp
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#include "client.h"
#define BIG_BLOCKSIZE 1024
// TODO
// uploading
// delete sessions
Client::Client(std::shared_ptr<MyServerSocket> _sock,
boost::filesystem::path _wdir):
sock(std::move(_sock)), _finish(0),fs(_wdir), st(ASCII)
{
datasock = 0;
accept();
}
void Client::finish_translation(){
int res = fut.get();
Logger& logs = Logger::Instance();
logs.Log("translation finished \n");
deleteDatasock();
if(res){
char msg[]= "501 send failed \r\n";
logs.Log("translation failed\n");
std::vector<char> cmd(msg,msg + sizeof(msg));
(*sock).msend(cmd);
} else {
char msg[]= "226 send,ok\r\n";
logs.Log("translation ok\n");
std::vector<char> cmd(msg,msg + sizeof(msg));
(*sock).msend(cmd);
}
}
void Client::pwd(std::string & strres){
std::cout << "pwd gotten" << std::endl;
std::string msg = boost::str(boost::format("257 \"%s\"\r\n")%fs.pwd());
std::vector<char> cmd(msg.begin(),msg.end());
(*sock).msend(cmd);
}
void Client::store(std::string & strres){
std::cout << "store gotten" << std::endl;
std::string inpPath(strres.begin()+ 4, strres.end());
boost::trim_left(inpPath);
boost::trim_right(inpPath);
std::shared_ptr<std::fstream> results;
try{
results = fs.newfile(inpPath);
} catch(std::exception& e){
std::cout << e.what() << std::endl;
char msg[] = "501\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
return;
}
std::string msg = storefile(results);
std::vector<char> cmd(msg.begin(),msg.end());
(*sock).msend(cmd);
}
void Client::cwd(std::string & strres){
std::cout << "cwd gotten" << std::endl;
char msg[] = "250 dir changed\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
std::string inpPath(strres.begin()+ 4, strres.end());
boost::trim_left(inpPath);
boost::trim_right(inpPath);
try{
fs.cd(inpPath);
} catch(std::exception& e){
std::cout << e.what();
char msg[] = "501\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
return;
}
(*sock).msend(cmd);
}
void Client::mkd(std::string & strres){
std::cout << "mkd gotten" << std::endl;
char msg[] = "257 dir created\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
std::string inpPath(strres.begin()+ 4, strres.end());
boost::trim_left(inpPath);
boost::trim_right(inpPath);
try{
fs.mkdir(inpPath);
} catch(std::exception& e){
char msg[] = "501\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
return;
}
(*sock).msend(cmd);
}
void Client::rmd(std::string & strres){
std::cout << "rmd gotten" << std::endl;
std::string inpPath(strres.begin()+ 4, strres.end());
boost::trim_left(inpPath);
boost::trim_right(inpPath);
unsigned int res = 0;
try{
res = fs.rmdir(inpPath);
} catch(std::exception& e){
char msg[] = "501\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
return;
}
std::string rstr = boost::str(boost::format("%u files deleted\r\n")%res);
std::vector<char> cmd(rstr.begin(), rstr.end());
(*sock).msend(cmd);
}
std::string Client::sendfile(std::shared_ptr<std::fstream>& results){
std::string msg = "150 BINARY\r\n";
switch (st) {
case ASCII:
fut = std::future<int>( std::async(std::launch::async,tcpConSFileA,datasock,results));
msg = "150 ASCII\r\n";
break;
case BINARY:
fut = std::future<int>( std::async(std::launch::async,tcpConSFileB,datasock,results));
break;
default:
msg = "500 ERROR\r\n";
break;
}
return msg;
}
std::string Client::storefile(std::shared_ptr<std::fstream>& results){
std::string msg = "150 BINARY\r\n";
switch (st) {
case ASCII:
fut = std::future<int>( std::async(std::launch::async,tcpConGFileA,datasock,results));
msg = "150 ASCII\r\n";
break;
case BINARY:
fut = std::future<int>( std::async(std::launch::async,tcpConGFileB,datasock,results));
break;
default:
msg = "500 ERROR\r\n";
break;
}
return msg;
}
void Client::retr(std::string & strres){
std::cout << "retr gotten" << std::endl;
std::string inpPath(strres.begin()+ 4, strres.end());
boost::trim_left(inpPath);
boost::trim_right(inpPath);
std::shared_ptr<std::fstream> results;
try{
results = fs.file(inpPath);
} catch(std::exception& e){
std::cout << e.what();
char msg[] = "501\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
return;
}
std::string msg = sendfile(results);
std::vector<char> cmd(msg.begin(),msg.end());
(*sock).msend(cmd);
}
void Client::list(std::string & strres){
std::cout << "list gotten" << std::endl;
char msg[] = "150\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
std::string inpPath(strres.begin()+ 4, strres.end());
boost::trim_left(inpPath);
boost::trim_right(inpPath);
std::string resultls;
try{
resultls = fs.ls(inpPath);
} catch(std::exception& e){
char msg[] = "501\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
return;
}
std::cout<<resultls<<std::endl;
std::cout <<"inputed path is"<<inpPath<<std::endl;
std::vector<char> cmd2(resultls.begin(),resultls.end());
fut = std::future<int>(std::async(std::launch::async,tcpConS,datasock,cmd2));
(*sock).msend(cmd);
}
void Client::port(std::string & strres){
std::regex nums("[0-9]{1,3}");
auto beg = std::regex_iterator<std::string::iterator>(strres.begin(),strres.end(),nums);
for(auto i = beg; i != std::regex_iterator<std::string::iterator>(); i++) {
std::cout<< i->str() <<" ";
}
const char* ip[4];
auto it = beg;
std::string ips;
for(int i = 0; i < 4; i++){
//ip[i] = static_cast<char>(std::stoi((*it).str()));
//ip[i] = (*it).str().c_str();
ips += (*it).str();
ips += '.';
it++;
}
ips.pop_back();
//std::string ips = boost::str(boost::format("%s.%s.%s.%s")%ip[0]%ip[1]%ip[2]%ip[3]);
int port = std::stoi((*it).str()) * 256;
it++;
port += std::stoi((*it).str());
char* msg = "200 PORT command successful. Consider using PASV\r\n";
createDatasock();
try{
datasock->mconnect(const_cast<char*>(ips.c_str()),port);
}catch(std::exception &e){
std::cout<<e.what();
msg = "501 \r\n";
}
std::cout << "port gotten" << std::endl;
std::vector<char> cmd(msg,msg+51);
(*sock).msend(cmd);
std::cout << "port gotten" << std::endl;
}
void Client::quit(std::string & strres){
_finish = 1;
}
void Client::user(std::string & strres){
std::cout << "user gotten" << std::endl;
char msg[] = "331 username accepted\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
}
void Client::type(std::string & strres){
std::cout << "Type" << std::endl;
std::cout << "list gotten" << std::endl;
std::string inpT(strres.begin()+ 4, strres.end());
boost::trim_left(inpT);
boost::trim_right(inpT);
std::string msg = "501 mod error\r\n";
if(!inpT.compare(std::string("A"))){
st = ASCII;
msg = "200 mod changed\r\n";
}
if(!inpT.compare(std::string("I"))){
st = BINARY;
msg = "200 mod changed\r\n";
}
std::vector<char> cmd(msg.begin(),msg.end());
(*sock).msend(cmd);
}
void Client::pass(std::string & strres){
std::cout << "pass gotten" << std::endl;
char msg[] = "230 Login Ok\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
}
void Client::syst(std::string& strres){
std::cout << "SYST gotten" << std::endl;
char msg[] = "215 UNIX Type: L8 \r Remote system type is UNIX. \r Using binary mode to transfer files.\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
}
void Client::accept(){
char msg[] = "220\r\n";
Logger& logs = Logger::Instance();
logs.Log("new client accepted");
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
}
void Client::createDatasock(){
deleteDatasock();
Logger& logs = Logger::Instance();
logs.Debug("datasock created \n");
datasock = std::shared_ptr<MyServerSocket> (new MyServerSocket());
}
void Client::deleteDatasock(){
Logger& logs = Logger::Instance();
logs.Debug("datasock reseted \n ");
if (datasock){
datasock.reset();
}
datasock = 0;
}
bool Client::finish() {
return _finish;
}
void Client::execCmd() {
if((fut.valid()&&(fut.wait_for(std::chrono::seconds(0))==std::future_status::ready))){
finish_translation();
return;
}
std::vector<char> res = (*sock).mrecv();
std::string strres(res.begin(), res.end());
std::cout << strres;
Logger& logs = Logger::Instance();
logs.Log(strres);
std::regex user("(USER )(.*)\\r\\n");
if (std::regex_match(strres,user)) {
this->user(strres);
return;
}
std::regex pass("(PASS )(.*)\\r\\n");
if (std::regex_match(strres,pass)) {
this->pass(strres);
return;
}
std::regex pwd("PWD\\r\\n");
if (std::regex_match(strres,pwd)) {
this->pwd(strres);
return;
}
std::regex syst("SYST\\r\\n");
if (std::regex_match(strres,syst)) {
this->syst(strres);
return;
}
std::regex port("PORT ([0-9]{1,3},){5}([0-9]{1,3})\\r\\n");
if (std::regex_match(strres,port)) {
this->port(strres);
return;
}
std::regex list("(LIST)(.*)\\r\\n");
if (std::regex_match(strres,list)) {
this->list(strres);
return;
}
std::regex cwd("(CWD)(.*)\\r\\n");
if (std::regex_match(strres,cwd)) {
this->cwd(strres);
return;
}
std::regex mkd("(MKD)(.*)\\r\\n");
if (std::regex_match(strres,mkd)) {
this->mkd(strres);
return;
}
std::regex rmd("(RMD)(.*)\\r\\n");
if (std::regex_match(strres,rmd)) {
this->rmd(strres);
return;
}
std::regex retr("(RETR)(.*)\\r\\n");
if (std::regex_match(strres,retr)) {
this->retr(strres);
return;
}
std::regex type ("(TYPE)(.*)\\r\\n");
if (std::regex_match(strres,type)) {
this->type(strres);
return;
}
std::regex quit ("QUIT\\r\\n");
if (std::regex_match(strres,quit)) {
this->quit(strres);
return;
}
std::regex store ("(STOR)(.*)\\r\\n");
if (std::regex_match(strres,store)) {
this->store(strres);
return;
}
char msg[] = "500\r\n";
std::vector<char> cmd(msg,msg+sizeof(msg));
(*sock).msend(cmd);
}
bool Client::hasCmd() {
return ((sock->hasData())||(fut.valid()&&(fut.wait_for(std::chrono::seconds(0))==std::future_status::ready)));
}