-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.cpp
336 lines (297 loc) · 10 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
#include "client.h"
#include <QDebug>
#include <QStringList>
#include <QTcpSocket>
#include <QDataStream>
#include <QVector>
#include <QMessageBox>
#include <QFile>
#include <QDir>
#define ALIVE_TIME 60000
const QString client::constNameUnknown = QString(".Unknown");
int client::countClient=0;
client::client(int desc, server *serv, QObject *parent)
{
//храниим указатель на объект-сервер
_serv = serv;
//клиент не прошел авторизацию
_isAutched = false;
_name = constNameUnknown;
//размер принимаемого блока 0
_blockSize = 0;
//создаем сокет
_sok = new QTcpSocket(this);
//устанавливаем дескриптор из incomingConnection()
_sok->setSocketDescriptor(desc);
timer=new QTimer();
timer->start(ALIVE_TIME);
//подключаем сигналы
connect(timer,SIGNAL(timeout()),this,SLOT(alive()));
connect(_sok, SIGNAL(connected()), this, SLOT(onConnect()));
connect(_sok, SIGNAL(disconnected()), this, SLOT(onDisconnect()));
connect(_sok, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
connect(_sok, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(onError(QAbstractSocket::SocketError)));
qDebug() << "Client connected" << desc;
}
client::client(QTcpSocket *sok, server *serv, QObject *parent)
{
//храниим указатель на объект-сервер
_serv = serv;
//клиент не прошел авторизацию
_isAutched = false;
_name = constNameUnknown;
//размер принимаемого блока 0
_blockSize = 0;
//создаем сокет
_sok = sok;
timer=new QTimer();
timer->start(ALIVE_TIME);
//устанавливаем дескриптор из incomingConnection()
//_sok->setSocketDescriptor(desc);
//подключаем сигналы
connect(timer,SIGNAL(timeout()),this,SLOT(alive()));
connect(_sok, SIGNAL(connected()), this, SLOT(onConnect()));
connect(_sok, SIGNAL(disconnected()), this, SLOT(onDisconnect()));
connect(_sok, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
connect(_sok, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(onError(QAbstractSocket::SocketError)));
qDebug() << "Client connected" << _sok->socketDescriptor();
}
void client::write(QByteArray &block)
{
_sok->write(block);
}
void client::doSendUsersOnline() const
{
QByteArray block;
QDataStream out(&block, QIODevice::WriteOnly);
// out << (quint16)0;
// out << comUsersOnline;
QStringList l = _serv->getUsersOnline();
// QString s;
// for (int i = 0; i < l.length(); ++i)
// if (l.at(i) != _name)
// s += l.at(i)+(QString)",";
// s.remove(s.length()-1, 1);
qDebug()<<l;
for(int i=0;i<l.length();++i)
{
out.device()->seek(0);
out << (quint16)0;
out << (quint8)12;
out << l.at(i);
out.device()->seek(0);
out << (quint16)(block.size() - sizeof(quint16));
_sok->write(block);
block.clear();
}
qDebug() << "Send user list to" << _name << ":" ;
}
client::~client()
{
}
void client::close()
{
_sok->close();
}
void client::alive()
{
qDebug()<<"Alive timer "<<ALIVE_TIME;
if(keepAlive)
{
keepAlive=false;
qDebug()<<"alive is false, warning";
}
else{
_sok->close();
qDebug()<<"alive is true, close connectoin";
}
}
void client::onConnect()
{
}
void client::onConnectSoket()
{
QByteArray block;
QDataStream out(&block, QIODevice::WriteOnly);
out << (quint16)0 << (quint8)20 << "это другой текст";
out.device()->seek(0);
out << (quint16)(block.size() - sizeof(quint16));
soket->write(block);
}
void client::onDisconnect()
{
qDebug() << "Client disconnected";
_sok->close();
deleteLater();
//delete this;
countClient--;
emit removeUser(this);
emit removeUserFromGui(_name);
}
void client::onReadyRead()
{
keepAlive=true;
if(_serv->running){
QDataStream in(_sok);
QString temp;
while(!in.atEnd())
{
if(_blockSize==0){
if (_sok->bytesAvailable() < (int)sizeof(quint16))
return;
in >> _blockSize;
qDebug()<<"Полученно------------";
qDebug()<<"размер"<<_blockSize;
}
if (_sok->bytesAvailable() < _blockSize)
return;
else
_blockSize = 0;
quint8 command;
in >> command;
qDebug()<<"команда"<<command;
switch (command)
{
case 10:
keepAlive=true;
in>>temp;
_serv->sendKeepAlive(_sok);
qDebug()<<"client is alive";
break;
case 0:
in>>temp;
qDebug()<<"текст"<<temp;
_serv->sendToUser((quint8) 0,(QString)"connect accept",_sok);
break;
case 1:
in>> temp;
qDebug()<<temp;
//_name=temp;
if (!_serv->isNameValid(temp))
{
//отправляем ошибку
qDebug()<<"имя не валидно";
_serv->sendToUser((quint8) 1,(QString)"Имя пользователя не подходит",_sok);
_sok->close();
return;
}
qDebug()<<"имя валидно";
if (_serv->isNameUsed(temp))
{
//отправляем ошибку
// doSendCommand(comErrNameUsed);
qDebug()<<"имя занято";
_serv->sendToUser((quint8) 1,(QString)"Имя пользователя занято",_sok);
_sok->close();
return;
}
qDebug()<<"имя свободно";
//авторизация пройдена
countClient++;
_name=temp;
_isAutched=true;
{
QFile file(QDir::currentPath()+"/motd.txt");
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
qDebug()<<"file motd.txt not found";
}
else{
QByteArray total;
QByteArray line;
while (!file.atEnd()) {
line = file.read(1024);
total.append(line);
}
_serv->sendToUser((quint8) 2,(QString)"System>"+QString(total),_sok);
}
}
//отправляем клиенту список онлай пользователей
doSendUsersOnline();
emit addUserToGui(temp);
//говорим всем что пользователь вошел
_serv->sendJoinNewUser(_name);
_serv->sendListRoom(_sok);
break;
case 20:
{
in>>temp;
qDebug()<<temp;
_serv->sendTextMessToAll(_name,temp);
emit messageToGui(_name,temp);
break;
}
case 21:
{
QVector <int> vec;
vec.resize(0);
in>>vec;
qDebug()<<vec;
emit sendCrypt(_name+">",vec);
QString mes;
mes=_serv->dencrypt(vec);
emit messageToGui(_name,mes);
break;
}
case 25:
{
in>>temp;
qDebug()<<temp;
qDebug()<<_sok->localAddress()<<_sok->localPort();
qDebug()<<_sok->peerAddress()<<_sok->peerPort();
_serv->sendToUser((quint8)25,QString::number(_sok->peerPort()),_sok);
// QByteArray block;
// QDataStream out(&block, QIODevice::WriteOnly);
// out << (quint16)0 << (quint8)20 << "это другой текст";
// out.device()->seek(0);
// out << (quint16)(block.size() - sizeof(quint16));
// soket->write(block);
}
case 30:
{
in>>temp;
qDebug()<<temp;
_serv->sendOpenUdp(temp);
_serv->sendOpenUdp(_name);
emit newWait(_name,temp);
//_serv->voipServ->waitRead();
break;
}
}
}
}
}
void client::sendAddr(QHostAddress addr, quint16 port)
{
QByteArray block;
QDataStream out(&block, QIODevice::WriteOnly);
out << (quint16)0 << (quint8)32 << addr<<port;
out.device()->seek(0);
out << (quint16)(block.size() - sizeof(quint16));
_sok->write(block);
qDebug()<<"отправлено"<<32<<" "<<addr<<port;
}
void client::init()
{
countClient=0;
}
void client::onError(QAbstractSocket::SocketError socketError) const
{
switch (socketError) {
case QAbstractSocket::RemoteHostClosedError:
break;
case QAbstractSocket::HostNotFoundError:
qDebug()<<tr("Хост не найден. Пожалуйста проверьте "
"настройки сервера.");
break;
case QAbstractSocket::ConnectionRefusedError:
qDebug()<<tr("The connection was refused by the peer. "
"Убедитесь, что сервер запущен "
"и провельте адресс сервера и порт. "
"settings are correct.");
break;
default:
qDebug()<<tr("The following error occurred: %1.")
.arg(soket->errorString());
}
}