-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqqServer.cpp
433 lines (378 loc) · 9.66 KB
/
qqServer.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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<unistd.h>
#include<netinet/in.h>
#include<arpa/inet.h>
#include<sys/socket.h>
#include<pthread.h>
#include<time.h>
#include<iostream>
#include<map>
using namespace std;
struct user_psd
{
char name[50];
char password[50];
};
class qqServer {
public:
int m_listenfd;
int m_clientfd[10];//save client's socketfd interact with server
int m_clientfd_c[10];//for recv message
int m_clientfd_f[10];
FILE *userInfo;
map<string,int> onlineUser;//
map<string,int> onlineUser_f;
qqServer();
void start();
void login(int fd,int fd_c,int fd_f);
bool check(string name);
bool check(string name,string psd);
bool InitServer(int port);
bool Accept();
//void *pth_main(void *arg);
int Send(const void *buf,const int buflen);
int Recv(void *buf,const int buflen);
~qqServer();
};
struct param{
int fd;
int fd_c;
int fd_f;
int id;
qqServer *serv;
};
void *pth_main(void *arg);
int main(int argc,char *argv[])
{
qqServer server;
if(server.InitServer(atoi(argv[1]))==false){
printf("server initiate fail.\n"); return -1;
}
server.Accept();
}
qqServer::qqServer(){
m_listenfd=0;
//m_clientfd=0;
userInfo = fopen("userInfo.txt","a+");
}
qqServer::~qqServer(){
if(m_listenfd!=0) close(m_listenfd);
//if(m_clientfd!=0) close(m_clientfd);
}
void qqServer::start(){
}
void qqServer::login(int fd,int fd_c,int fd_f){
char buf[1024];
int cltfd=fd;
int cltfd_c=fd_c;
int cltfd_f=fd_f;
//skip while when login success
string username,password;
while(1){
//recv username and password
memset(buf,0,sizeof(buf));
sprintf(buf,"username:");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
username=buf;
memset(buf,0,sizeof(buf));
sprintf(buf,"password:");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
password=buf;
//create a new user and save it
if(!check(username)){
memset(buf,0,sizeof(buf));
sprintf(buf,"This username not exits!Do you want to build one?[y/n]");
send(cltfd,buf,strlen(buf),0);
string choose;
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
choose=buf;
if(choose=="y"||choose=="Y"){
user_psd newInfo;
string newUsername,newPassword;
memset(buf,0,sizeof(buf));
sprintf(buf,"new username:");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
newUsername=buf;
while(check(newUsername)){
memset(buf,0,sizeof(buf));
sprintf(buf,"This name already exits.\nChoose another one:");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
newUsername=buf;
}
memset(buf,0,sizeof(buf));
sprintf(buf,"password:");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
newPassword=buf;
//save
strcpy(newInfo.name,newUsername.c_str());
strcpy(newInfo.password,newPassword.c_str());
fseek(userInfo,0,SEEK_END);
fwrite(&newInfo,1,sizeof(newInfo),userInfo);
//send create success
memset(buf,0,sizeof(buf));
sprintf(buf,"Create success!");
send(cltfd,buf,strlen(buf),0);
}else{
continue;
}
}else if(!check(username,password)){
while(!check(username,password)){
memset(buf,0,sizeof(buf));
sprintf(buf,"password is wrong\nplease try again:");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
//strcpy(password.c_str(),buf);
password=buf;
}
memset(buf,0,sizeof(buf));
sprintf(buf,"login success");
send(cltfd,buf,strlen(buf),0);
//save user to online list
onlineUser[username]=cltfd_c;
onlineUser_f[username]=cltfd_f;
cout<<username<<" login"<<endl;
break;
}else{
memset(buf,0,sizeof(buf));
sprintf(buf,"login success");
send(cltfd,buf,strlen(buf),0);
onlineUser[username]=cltfd_c;
onlineUser_f[username]=cltfd_f;
cout<<username<<" login"<<endl;
break;
}
}
//after login success
while(1){
string cmd;
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
cmd=buf;
if(cmd=="list"){
auto it=onlineUser.begin();
while(it!=onlineUser.end()){
memset(buf,0,sizeof(buf));
if(it->first==username){
string temp=username+"(you) ";
strcpy(buf,temp.c_str());
}else{
string temp1=it->first+" ";
strcpy(buf,temp1.c_str());
}
send(cltfd,buf,strlen(buf),0);
it++;
}
sleep(1);
memset(buf,0,sizeof(buf));
strcpy(buf,"finish");
send(cltfd,buf,strlen(buf),0);
continue;
}
if(cmd=="logoff"){
onlineUser.erase(username);
cout<<username<<" logoff"<<endl;
return;
}
if(cmd=="chat"){
string sendTo;
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
sendTo=buf;
while(!onlineUser.count(sendTo)){
memset(buf,0,sizeof(buf));
sprintf(buf,"This user is not online,please choose another one.\nWho do you to chat with?(type user's name):");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
sendTo=buf;
}
int sendToClientfd=onlineUser[sendTo];
memset(buf,0,sizeof(buf));
sprintf(buf,"Now you can send massage!(type \"quit\" to leave.)\n");
send(cltfd,buf,strlen(buf),0);
string message;
while(1){
/*memset(buf,0,sizeof(buf));
sprintf(buf,"send:");
send(cltfd,buf,strlen(buf),0);*/
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
if(!strcmp(buf,"quit")){
break;
}
message=buf;
/*if(message=="quit"){
cout<<"quiting";
break;
}*/
message = "from "+username+":"+message;
memset(buf,0,sizeof(buf));
strcpy(buf,message.c_str());
send(sendToClientfd,buf,strlen(buf),0);
}
continue;
}
if(cmd=="send"){
string sendTo;
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
sendTo=buf;
while(!onlineUser.count(sendTo)){
memset(buf,0,sizeof(buf));
sprintf(buf,"This user is not online,please choose another one.\nWho do you to chat with?(type user's name):");
send(cltfd,buf,strlen(buf),0);
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
sendTo=buf;
}
int sendToClientfd_f=onlineUser_f[sendTo];
memset(buf,0,sizeof(buf));
sprintf(buf,"Type file path.\n");
send(cltfd,buf,strlen(buf),0);
//recv file path
string filePath;
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
filePath=buf;
//reply ok
memset(buf,0,sizeof(buf));
sprintf(buf,"ok");
send(cltfd,buf,strlen(buf),0);
//send sender's name
memset(buf,0,sizeof(buf));
strcpy(buf,username.c_str());
send(sendToClientfd_f,buf,strlen(buf),0);
//recv ok
memset(buf,0,sizeof(buf));
recv(sendToClientfd_f,buf,sizeof(buf),0);
//send reciever file name
string file;
int pos=filePath.rfind('/');
if(pos==-1){
file=filePath;
}else{
file=filePath.substr(pos+1);
}
memset(buf,0,sizeof(buf));
strcpy(buf,file.c_str());
send(sendToClientfd_f,buf,strlen(buf),0);
cout<<file<<endl;
//recv ok
memset(buf,0,sizeof(buf));
recv(sendToClientfd_f,buf,sizeof(buf),0);
//send file content
//sleep(1);
int i=0;
while(1){
memset(buf,0,sizeof(buf));
recv(cltfd,buf,sizeof(buf),0);
//cout<<(i++)<<buf;
if(!strcmp(buf,"success")){
sleep(1);
//cout<<"send success"<<endl;
memset(buf,0,sizeof(buf));
sprintf(buf,"success");
send(sendToClientfd_f,buf,strlen(buf),0);
break;
}
send(sendToClientfd_f,buf,strlen(buf),0);
}
//cout<<"send success!";
}
}
}
bool qqServer::check(string name){
rewind(userInfo);
user_psd info;
while(1){
if(fread(&info,1,sizeof(info),userInfo)==0) break;
if(strcmp(info.name,name.c_str())==0) return true;
}
return false;
}
bool qqServer::check(string name,string psd){
rewind(userInfo);
user_psd info;
while(1){
if(fread(&info,1,sizeof(info),userInfo)==0) break;
if(strcmp(info.name,name.c_str())==0&&strcmp(info.password,psd.c_str())==0) return true;
}
return false;
}
bool qqServer::InitServer(int port){
m_listenfd = socket(AF_INET,SOCK_STREAM,0);
if(m_listenfd==-1){
cout<<"socket";
m_listenfd=0; return false;
}
sockaddr_in servaddr;
memset(&servaddr,0,sizeof(servaddr));
servaddr.sin_family=AF_INET;
servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
servaddr.sin_port=htons(port);
if(bind(m_listenfd,(sockaddr *)&servaddr,sizeof(servaddr))!=0){
cout<<"bind";close(m_listenfd); m_listenfd=0; return false;
}
if(listen(m_listenfd,5) != 0){
cout<<"liten";close(m_listenfd); m_listenfd=0; return false;
}
return true;
}
bool qqServer::Accept(){
int i=0;
while(1){
if( (m_clientfd[i]=accept(m_listenfd,0,0))<=0 ) return false;
if( (m_clientfd_c[i]=accept(m_listenfd,0,0))<=0 ) return false;
if( (m_clientfd_f[i]=accept(m_listenfd,0,0))<=0 ) return false;
pthread_t pthid;
param param1;
param1.fd=m_clientfd[i];
param1.fd_c=m_clientfd_c[i];
param1.fd_f=m_clientfd_f[i];
param1.id=i;
param1.serv=this;
if(pthread_create(&pthid,NULL,pth_main,¶m1)!=0){
printf("pthread_crate failed\n"); return false;
}
}
}
void *pth_main(void *arg){
param tmp=*(param*)arg;
int clientfd=tmp.fd;
int clientfd_c=tmp.fd_c;
int clientfd_f=tmp.fd_f;
int client_id=tmp.id;
qqServer *serv=tmp.serv;
char cmd_buf[100];
string cmd;
while(1){
memset(cmd_buf,0,sizeof(cmd_buf));
recv(clientfd,cmd_buf,sizeof(cmd_buf),0);
//strcpy(cmd,cmd_buf);
cmd=cmd_buf;
if(cmd=="login"){
serv->login(clientfd,clientfd_c,clientfd_f);
continue;
}
}
}
int qqServer::Send(const void *buf,const int buflen){
//return send(m_clientfd,buf,buflen,0);
}
int qqServer::Recv(void *buf,const int buflen){
//return recv(m_clientfd,buf,buflen,0);
}