-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscannerwindow.cpp
129 lines (117 loc) · 4.01 KB
/
scannerwindow.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
#include "ui_scannerwindow.h"
#include "logger.hpp"
#include "main.hpp"
#include "scannerwindow.h"
ScannerWindow::ScannerWindow(QWidget *parent) : QWidget(parent), ui(new Ui::ScannerWindow)
{
ui->setupUi(this);
connect(this, SIGNAL(ScanIsDone()), this, SLOT(on_scanIsDone()));
connect(this, SIGNAL(ScanIsRun()), this, SLOT(on_scanIsRun()));
for(int i=0; i<QNetworkInterface::allAddresses().count(); i++)
{
QHostAddress addr=QNetworkInterface::allAddresses().at(i);
if(!addr.isLoopback() && !addr.isNull())
{
ui->knownIPcomboBox->addItem(addr.toString());
}
}
}
ScannerWindow::~ScannerWindow()
{
delete ui;
}
void ScannerWindow::keyPressEvent(QKeyEvent *event)
{
switch(event->key())
{
case Qt::Key_Escape:
{
this->hide();
}break;
}
}
void ScannerWindow::updateDeviceList(ASICDevice *device)
{
Devices.removeOne(device);
device->Stop();
device->SetNetworkRequestTimeout(5000);
gMainWindow->DefaultASICTable->AddDevice(device);
ui->ipList->addItem(device->Address().toString());
ui->progressBar->setValue(ui->progressBar->value()+1);
if(Devices.isEmpty())
{
emit(ScanIsDone());
}
}
void ScannerWindow::clearUpDeviceList(ASICDevice *device)
{
disconnect(device, 0, 0, 0);
Devices.removeOne(device);
device->Stop();
device->Abort();
device->deleteLater();
ui->progressBar->setValue(ui->progressBar->value()+1);
if(Devices.isEmpty())
{
emit(ScanIsDone());
}
}
void ScannerWindow::on_scanIsDone()
{
gAppLogger->Log("ScannerWindow::on_scanIsDone()", LOG_DEBUG);
ui->progressBar->setValue(0);
ui->scanButton->setEnabled(1);
ui->stopButton->setEnabled(0);
}
void ScannerWindow::on_scanIsRun()
{
gAppLogger->Log("ScannerWindow::on_scanIsRun()", LOG_DEBUG);
ui->progressBar->setValue(0);
ui->scanButton->setEnabled(0);
ui->stopButton->setEnabled(1);
}
void ScannerWindow::on_knownIPcomboBox_currentIndexChanged(int index)
{
Q_UNUSED(index)
if(4!=ui->knownIPcomboBox->currentText().split(".").count())
{
return;
}
ui->ipFrom->setText(ui->knownIPcomboBox->currentText().split(".").at(0)+"."+
ui->knownIPcomboBox->currentText().split(".").at(1)+"."+
ui->knownIPcomboBox->currentText().split(".").at(2)+".2");
ui->ipTo->setText(ui->knownIPcomboBox->currentText().split(".").at(0)+"."+
ui->knownIPcomboBox->currentText().split(".").at(1)+"."+
ui->knownIPcomboBox->currentText().split(".").at(2)+".254");
}
void ScannerWindow::on_scanButton_clicked()
{
gAppLogger->Log("ScannerWindow::on_scanButton_clicked()", LOG_DEBUG);
quint32 address;
QHostAddress AddrFrom(ui->ipFrom->text()), AddrTo(ui->ipTo->text());
emit(ScanIsRun());
Devices.clear();
ui->ipList->clear();
ui->progressBar->setMaximum(AddrTo.toIPv4Address()-AddrFrom.toIPv4Address());
for(address=AddrFrom.toIPv4Address(); address<=AddrTo.toIPv4Address(); address++)
{
ASICDevice *newDevice=new ASICDevice;
newDevice->SetAddress(QHostAddress(address));
newDevice->SetUserName(ui->username->text());
newDevice->SetPassword(ui->password->text());
newDevice->SetAPIPort(static_cast<quint16>(ui->apiPort->text().toUInt()));
newDevice->SetWebPort(static_cast<quint16>(ui->webPort->text().toUInt()));
Devices.append(newDevice);
connect(newDevice, SIGNAL(DeviceExists(ASICDevice *)), this, SLOT(updateDeviceList(ASICDevice *)));
connect(newDevice, SIGNAL(DeviceError(ASICDevice *)), this, SLOT(clearUpDeviceList(ASICDevice *)));
newDevice->Check();
}
}
void ScannerWindow::on_stopButton_clicked()
{
gAppLogger->Log("ScannerWindow::on_stopButton_clicked()", LOG_DEBUG);
while(Devices.count())
{
clearUpDeviceList(Devices.last());
}
}