-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutbound.cpp
More file actions
428 lines (331 loc) · 9.96 KB
/
outbound.cpp
File metadata and controls
428 lines (331 loc) · 9.96 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
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
#include "outbound.h"
#include "ui_outbound.h"
#include <Qdebug>
#include <QStringList>
#include <QSqlDatabase>
#include <QSqlError>
#include <QSqlQuery>
#include <QMessageBox>
extern QSqlDatabase db;
extern QSqlQueryModel *model;
extern QSqlQuery query;
extern QString CabinetCommunicationIp;//主机柜IP
extern QString CabinetCommunicationId;//主机柜当前通信ID
Server *server;
QByteArray CabinetCommunicationCdata;
QByteArray CabinetCommunicationTdata;
outbound::outbound(QWidget *parent) :
QDialog(parent),
ui(new Ui::outbound)
{
setWindowFlags(Qt::FramelessWindowHint);
setAutoFillBackground(true);//必须有这条语句
setPalette(QPalette(QColor(145,145,145)));
ui->setupUi(this);
server = new Server(this);
timer=new QTimer(this);
server->listen(QHostAddress::Any, 1994);
connect(timer, SIGNAL(timeout()), this, SLOT(sendLoopMessage()));
timer->start(1);
socket = new QTcpSocket();
//连接信号槽
QObject::connect(socket, &QTcpSocket::readyRead, this, &outbound::socket_Read_Data);
QObject::connect(socket, &QTcpSocket::disconnected, this, &outbound::socket_Disconnected);
tableViewModel=new QStandardItemModel(this);
tableViewModel->setColumnCount(2);
tableViewModel->setHeaderData(0,Qt::Horizontal,QString::fromUtf8("IP"));
tableViewModel->setHeaderData(1,Qt::Horizontal,QString::fromUtf8("ID"));
ui->tableView->setModel(tableViewModel);
}
outbound::~outbound()
{
delete ui;
delete socket;
}
QString outbound::getHostIpAddress()
{
QString strIpAddress;
QList<QHostAddress> ipAddressesList = QNetworkInterface::allAddresses();
// 获取第一个本主机的IPv4地址
int nListSize = ipAddressesList.size();
for (int i = 0; i < nListSize; ++i)
{
if (ipAddressesList.at(i) != QHostAddress::LocalHost &&
ipAddressesList.at(i).toIPv4Address()) {
strIpAddress = ipAddressesList.at(i).toString();
break;
}
}
// 如果没有找到,则以本地IP地址为IP
if (strIpAddress.isEmpty())
strIpAddress = QHostAddress(QHostAddress::LocalHost).toString();
return strIpAddress;
}
void outbound::on_pushButton_clicked()
{
QString _ip = getHostIpAddress();
//qDebug>>_ip;
qDebug()<<_ip;
ui->lineEdit->setText(_ip);
}
void outbound::showConnection()//客户进入
{
count++;
//定义item
QStandardItem* item;
int _rowCount=tableViewModel->rowCount()-1;
if(_rowCount<0){
_rowCount=0;
}else{
_rowCount=tableViewModel->rowCount();
}
item = new QStandardItem(QString("%1").arg(server->socketList.last()));
tableViewModel->setItem(_rowCount,1,item);
ui->tableView->setModel(tableViewModel);
ui->tableView->show();
}
void outbound::showDisconnection(int socketDescriptor)//客户退出
{
count--;
/* remove disconnect socketdescriptor from list */
server->socketList.removeAll(socketDescriptor);
/* reload combobox */
tableViewModel->clear();//清空列表
QStandardItem* item = 0;
for (int i = 0; i < server->socketList.size(); i++) {
item = new QStandardItem(QString("%1").arg(server->socketList.at(i)));
tableViewModel->setItem(i,1,item);
}
ui->tableView->setModel(tableViewModel);
}
void outbound::sendMsg(QByteArray data, int id)//发送数据给指定一个客户
{
emit sendData(data, id);
}
void outbound::IPIDtableView(QString peerAddr)
{
QStandardItem* item;
QString IPP=peerAddr.section('|',0,0);
QString IDD=peerAddr.section('|',1);
//qDebug() <<"IPP:"<<IPP<<"IDD:"<<IDD;
for (int i = 0; i < server->socketList.size(); i++) {
QString IDDD=QString("%1").arg(server->socketList.at(i));
//QString nr = tableViewModel->data(index).toString();
//tem = new QStandardItem(IDDD);
//tableViewModel->setItem(i,1,item);
if(IDDD==IDD){
QModelIndex index = tableViewModel->index(i,0);//第I行第一列的数据
QString IPPP=tableViewModel->data(index).toString();
if(IPPP!=IPP)
{
item = new QStandardItem(IPP);
tableViewModel->setItem(i,0,item);
ui->tableView->setModel(tableViewModel);
}
return;
}
}
}
void outbound::revData(QString peerAddr, QByteArray data)//客户端数据到达
{
//QString msg;
qDebug() <<peerAddr<<":"<<data;
IPIDtableView(peerAddr);
QString CIP=peerAddr.section('|',0,0);//得到数据所属客户端IP
QString CID=peerAddr.section('|',1);
//qDebug() <<"CIP:" <<CIP<<"CID:" <<CID;
if(CIP==CabinetCommunicationIp)//如果是主机柜发来的
{
CabinetCommunicationId=CID;
if(data.size()>=3)
{
//QByteRef
QByteArray c;
c[0]=0xAA;
c[1]=0xAF;
if( data.count(c)>0)
{
//goto xtb;
}
}
CabinetCommunicationCdata+=data;
qDebug() <<"CabinetCommunicationCdata:"<<CabinetCommunicationCdata.toHex('/');
}
//xtb:
;
//qDebug() <<"IPP:"<<IPP<<"IDD:"<<IDD;
//msg = QString::fromLocal8Bit(data);
//peerAddr.insert(peerAddr.size(), ": ");
//msg.prepend(peerAddr);
//qDebug() << msg;
}
void outbound::sendLoopMessage()
{
if(CabinetCommunicationTdata.size()<=0)
{
return;
}
emit sendData(CabinetCommunicationTdata,CabinetCommunicationId.toInt());
qDebug()<<"T";
CabinetCommunicationTdata.clear();
}
void outbound::stopLoopSend()
{
timer->stop();
}
void outbound::on_pushButton_3_clicked()//刷新/查询
{
QString send="send";
qDebug()<<"刷新/查询";
int _row=ui->tableView->currentIndex().row();//选中
qDebug()<<"刷新/查询"<<_row;
if(_row==-1){
return;
}
QModelIndex index = tableViewModel->index(_row,1);
QString _id = tableViewModel->data(index).toString();
qDebug()<<"_id"<<_id;
sendMsg(send.toLocal8Bit(),_id.toInt());
}
/**********************************************客户端部分*******************************************************/
void outbound::onConnect_clicked(QString Connect)
{
if(Connect == tr("连接"))
{
QString IP;
int port=1994;
//获取IP地址
IP = ui->lineEdit_2->text();
//取消已有的连接
socket->abort();
//连接服务器
socket->connectToHost(IP, port);
//等待连接成功
if(!socket->waitForConnected(30000))
{
qDebug() << "Connection failed!";
return;
}
qDebug() << "Connect successfully!";
}
else
{
//断开连接
socket->disconnectFromHost();
qDebug() << "断开连接";
}
}
void outbound::socket_Read_Data()//服务器数据到达
{
QByteArray buffer;
//读取缓冲区数据
buffer = socket->readAll();
if(!buffer.isEmpty())
{
QString str = tr(buffer);
//qDebug() << buffer.data();
}
/*char *cbuf;
int i=socket->read(cbuf,1);
qDebug() <<i;
i=socket->read(cbuf,1);
qDebug() <<i;
i=socket->read(cbuf,1);
qDebug() <<i;*/
}
void outbound::socket_Disconnected()
{
//发送按键失能
qDebug() << "Disconnected!";
}
void outbound::on_pushButton_2_clicked()
{
onConnect_clicked("连接");
}
void outbound::on_pushButton_5_clicked()//设置主机柜IP
{
//查询有没有该条类型数据,有先删除再添加-----------------------
QString Qfind="SELECT * FROM socket WHERE type='cabinet'";
query = QSqlQuery(db);
if(!query.exec(Qfind))
{
qDebug()<<query.lastError();
}
else
{
QString ip="";
QString type="";
QString other="";
while(query.next())
{
ip = query.value(0).toString();
type = query.value(1).toString();
other = query.value(2).toString();
}
if(ip.isEmpty()||type.isEmpty()||other.isEmpty())
{
//QMessageBox::warning(this,"提示","还没有该数据");
//return;
}else {
query.prepare(QString("delete from socket where type = ?"));
query.addBindValue("cabinet");
if(! query.exec())
{
qDebug() << query.lastError();
}
else
{
//qDebug() << "inserted Wang!";
QMessageBox::warning(this,"提示","删除原来数据,添加新的数据");
}
}
}
//添加数据---------------------------------------
QString insert_buf;
insert_buf=QString("insert into socket values('%1','%2','%3')").arg(ui->lineEdit_4->text(),"cabinet","|");
//qDebug()<<insert_buf;
if(ui->lineEdit_4->text().isEmpty())
{
QMessageBox::warning(this,"Incomplete information","error");
return;
}
if(! query.exec(insert_buf))
{
qDebug() << query.lastError();
}
else
{
qDebug() << "inserted Wang!";
CabinetCommunicationIp=ui->lineEdit_4->text();
QMessageBox::warning(this,"提示","设置成功");
}
}
void outbound::on_pushButton_4_clicked()//查询主机柜IP
{
QString Qfind="SELECT * FROM socket WHERE type='cabinet'";
query = QSqlQuery(db);
if(!query.exec(Qfind))
{
qDebug()<<query.lastError();
}
else
{
QString ip="";
QString type="";
QString other="";
while(query.next())
{
ip = query.value(0).toString();
type = query.value(1).toString();
other = query.value(2).toString();
//qDebug()<<QString("用户名:%1,密码:%2,角色:%3").arg(u).arg(p).arg(s);
}
if(ip.isEmpty()||type.isEmpty()||other.isEmpty())
{
QMessageBox::warning(this,"提示","还没有该数据");
return;
}else {
ui->lineEdit_4->setText(ip);
}
}
}