Device Emulation (contd.): Add buttons (and their implementation) for resolve/clear device neighbors to the port stats window

This commit is contained in:
Srivats P 2016-03-09 21:20:11 +05:30
parent e7571b2022
commit d55f44cab2
5 changed files with 143 additions and 0 deletions

View File

@ -1061,6 +1061,78 @@ _exit:
delete controller;
}
void PortGroup::resolveDeviceNeighbors(QList<uint> *portList)
{
qDebug("In %s", __FUNCTION__);
if (state() != QAbstractSocket::ConnectedState)
return;
if ((portList == NULL) || (portList->size() == 0))
goto _exit;
{
OstProto::PortIdList *portIdList = new OstProto::PortIdList;
OstProto::Ack *ack = new OstProto::Ack;
PbRpcController *controller = new PbRpcController(portIdList, ack);
for (int i = 0; i < portList->size(); i++)
{
OstProto::PortId *portId = portIdList->add_port_id();
portId->set_id(portList->at(i));
}
serviceStub->resolveDeviceNeighbors(controller, portIdList, ack,
NewCallback(this, &PortGroup::processResolveDeviceNeighborsAck,
controller));
}
_exit:
return;
}
void PortGroup::processResolveDeviceNeighborsAck(PbRpcController *controller)
{
qDebug("In %s", __FUNCTION__);
delete controller;
}
void PortGroup::clearDeviceNeighbors(QList<uint> *portList)
{
qDebug("In %s", __FUNCTION__);
if (state() != QAbstractSocket::ConnectedState)
return;
if ((portList == NULL) || (portList->size() == 0))
goto _exit;
{
OstProto::PortIdList *portIdList = new OstProto::PortIdList;
OstProto::Ack *ack = new OstProto::Ack;
PbRpcController *controller = new PbRpcController(portIdList, ack);
for (int i = 0; i < portList->size(); i++)
{
OstProto::PortId *portId = portIdList->add_port_id();
portId->set_id(portList->at(i));
}
serviceStub->clearDeviceNeighbors(controller, portIdList, ack,
NewCallback(this, &PortGroup::processClearDeviceNeighborsAck,
controller));
}
_exit:
return;
}
void PortGroup::processClearDeviceNeighborsAck(PbRpcController *controller)
{
qDebug("In %s", __FUNCTION__);
delete controller;
}
void PortGroup::getPortStats()
{
//qDebug("In %s", __FUNCTION__);

View File

@ -140,6 +140,11 @@ public:
void viewCapture(QList<uint> *portList = NULL);
void processViewCaptureAck(PbRpcController *controller);
void resolveDeviceNeighbors(QList<uint> *portList = NULL);
void processResolveDeviceNeighborsAck(PbRpcController *controller);
void clearDeviceNeighbors(QList<uint> *portList = NULL);
void processClearDeviceNeighborsAck(PbRpcController *controller);
void getPortStats();
void processPortStatsList();
void clearPortStats(QList<uint> *portList = NULL);

View File

@ -148,6 +148,36 @@ void PortStatsWindow::on_tbViewCapture_clicked()
}
}
void PortStatsWindow::on_tbResolveNeighbors_clicked()
{
QList<PortStatsModel::PortGroupAndPortList> portList;
// Get selected ports
model->portListFromIndex(selectedColumns(), portList);
// Resolve ARP/ND for selected ports, portgroup by portgroup
for (int i = 0; i < portList.size(); i++)
{
pgl->portGroupByIndex(portList.at(i).portGroupId).
resolveDeviceNeighbors(&portList[i].portList);
}
}
void PortStatsWindow::on_tbClearNeighbors_clicked()
{
QList<PortStatsModel::PortGroupAndPortList> portList;
// Get selected ports
model->portListFromIndex(selectedColumns(), portList);
// Clear ARP/ND for ports, portgroup by portgroup
for (int i = 0; i < portList.size(); i++)
{
pgl->portGroupByIndex(portList.at(i).portGroupId).
clearDeviceNeighbors(&portList[i].portList);
}
}
void PortStatsWindow::on_tbClear_clicked()
{
QList<PortStatsModel::PortGroupAndPortList> portList;

View File

@ -50,6 +50,9 @@ private slots:
void on_tbClear_clicked();
void on_tbClearAll_clicked();
void on_tbResolveNeighbors_clicked();
void on_tbClearNeighbors_clicked();
void on_tbFilter_clicked();
private:

View File

@ -141,6 +141,39 @@
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="tbResolveNeighbors" >
<property name="toolTip" >
<string>Resolve Neighbors</string>
</property>
<property name="statusTip" >
<string>Resolve Device Neighbors on selected port(s)</string>
</property>
<property name="text" >
<string>Resolve Neighbors</string>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="tbClearNeighbors" >
<property name="toolTip" >
<string>Clear Neighbors</string>
</property>
<property name="statusTip" >
<string>Clear Device Neighbors on selected port(s)</string>
</property>
<property name="text" >
<string>Clear Neighbors</string>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line2" >
<property name="orientation" >
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item>
<spacer>
<property name="orientation" >