-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscannerwindow.cpp
161 lines (147 loc) · 4.45 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
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
#include "scannerwindow.h"
#include "ui_scannerwindow.h"
#include "configurationholder.h"
#include "logger.hpp"
#include "main.hpp"
ScannerWindow::ScannerWindow(QWidget *parent) : QWidget(parent), ui(new Ui::ScannerWindow)
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
pIsBusy=false;
pHostsToScan=new QVector <ASICDevice *>;
ui->setupUi(this);
connect(this, SIGNAL(ScanIsDone()), this, SLOT(on_scanIsDone()));
connect(this, SIGNAL(ScanIsRun()), this, SLOT(on_scanIsRun()));
connect(this, SIGNAL(ScanProgress(int)), ui->progressBar, SLOT(setValue(int)));
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()
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
delete ui;
}
void ScannerWindow::keyPressEvent(QKeyEvent *event)
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
switch(event->key())
{
case Qt::Key_Escape:
{
this->hide();
}break;
}
}
void ScannerWindow::updateDeviceList(ASICDevice *device)
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
gLogger->Log(device->Address.toString().toStdString(), LOG_DEBUG);
disconnect(device, nullptr, nullptr, nullptr);
emit(DeviceFound(device));
ui->ipList->addItem(device->Address.toString());
}
void ScannerWindow::clearUpDeviceList(ASICDevice *device)
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
gLogger->Log(device->Address.toString().toStdString(), LOG_DEBUG);
disconnect(device, nullptr, nullptr, nullptr);
device->deleteLater();
}
void ScannerWindow::on_scanIsDone()
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
ui->apiScanButton->setEnabled(1);
}
void ScannerWindow::on_scanIsRun()
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
ui->apiScanButton->setEnabled(0);
}
void ScannerWindow::ScanDevices(QVector <ASICDevice *> *devices)
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
int progress=0;
if(pIsBusy)
{
return;
}
pIsBusy=true;
pStopScan=false;
emit(ScanIsRun());
if(devices->isEmpty())
{
gLogger->Log("Host list is empty =/", LOG_NOTICE);
emit(ScanIsDone());
return;
}
emit(ScanProgress(progress));
for(ASICDevice *device : *devices)
{
while(ASICDevice::ActiveThreadsNum>gAppConfig->ActiveThreadsMaxNum)
{
QApplication::processEvents();
}
if(pStopScan)
{
disconnect(device, nullptr, nullptr, nullptr);
device->deleteLater();
}
else
{
device->SendCommand(QByteArray("summary"));
device->SendCommand(QByteArray("stats"));
}
emit(ScanProgress(++progress));
}
while(ASICDevice::ActiveThreadsNum)
{
QApplication::processEvents();
}
pIsBusy=false;
emit(ScanIsDone());
}
void ScannerWindow::on_apiScanButton_clicked()
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
ui->ipList->clear();
pHostsToScan->clear();
QHostAddress AddrFrom(ui->ipFrom->text()), AddrTo(ui->ipTo->text());
for(quint32 address=AddrFrom.toIPv4Address(); address<=AddrTo.toIPv4Address(); address++)
{
ASICDevice *newDevice=new ASICDevice;
newDevice->Address=QHostAddress(address);
newDevice->UserName=ui->username->text();
newDevice->Password=ui->password->text();
newDevice->APIPort=static_cast<quint16>(ui->apiPort->text().toUInt());
connect(newDevice, &ASICDevice::SocketConnected, this, &ScannerWindow::updateDeviceList);
connect(newDevice, &ASICDevice::SocketError, this, &ScannerWindow::clearUpDeviceList);
pHostsToScan->append(newDevice);
}
ui->progressBar->setMaximum(pHostsToScan->size());
ScanDevices(pHostsToScan);
}
void ScannerWindow::on_stopScanButton_clicked()
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
pStopScan=true;
}
void ScannerWindow::on_knownIPcomboBox_currentIndexChanged(int index)
{
gLogger->Log("ScannerWindow::"+string(__FUNCTION__), LOG_DEBUG);
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");
}