2015-04-16 11:50:07 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2010 Srivats P.
|
|
|
|
|
|
|
|
This file is part of "Ostinato"
|
|
|
|
|
|
|
|
This is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "portstatswindow.h"
|
2015-05-06 11:10:55 -05:00
|
|
|
|
2015-04-16 11:50:07 -05:00
|
|
|
#include "portstatsfilterdialog.h"
|
2015-05-06 11:10:55 -05:00
|
|
|
#include "portstatsmodel.h"
|
|
|
|
#include "portstatsproxymodel.h"
|
2016-11-24 10:14:38 -06:00
|
|
|
#include "streamstatsmodel.h"
|
|
|
|
#include "streamstatswindow.h"
|
2015-05-06 11:10:55 -05:00
|
|
|
#include "settings.h"
|
2015-04-16 11:50:07 -05:00
|
|
|
|
2016-11-24 10:14:38 -06:00
|
|
|
#include <QDockWidget>
|
2015-05-06 11:10:55 -05:00
|
|
|
#include <QHeaderView>
|
2016-11-24 10:14:38 -06:00
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
extern QMainWindow *mainWindow;
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
PortStatsWindow::PortStatsWindow(PortGroupList *pgl, QWidget *parent)
|
2015-05-06 11:10:55 -05:00
|
|
|
: QWidget(parent), proxyStatsModel(NULL)
|
2015-04-16 11:50:07 -05:00
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
|
|
|
this->pgl = pgl;
|
|
|
|
model = pgl->getPortStatsModel();
|
2015-05-06 11:10:55 -05:00
|
|
|
|
|
|
|
proxyStatsModel = new PortStatsProxyModel(this);
|
|
|
|
if (proxyStatsModel) {
|
|
|
|
proxyStatsModel->setSourceModel(model);
|
|
|
|
tvPortStats->setModel(proxyStatsModel);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
tvPortStats->setModel(model);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
tvPortStats->verticalHeader()->setHighlightSections(false);
|
|
|
|
tvPortStats->verticalHeader()->setDefaultSectionSize(
|
|
|
|
tvPortStats->verticalHeader()->minimumSectionSize());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PortStatsWindow::~PortStatsWindow()
|
|
|
|
{
|
2015-05-06 11:10:55 -05:00
|
|
|
delete proxyStatsModel;
|
2015-04-16 11:50:07 -05:00
|
|
|
}
|
|
|
|
|
2015-05-06 11:10:55 -05:00
|
|
|
/* ------------- SLOTS (public) -------------- */
|
|
|
|
|
|
|
|
void PortStatsWindow::showMyReservedPortsOnly(bool enabled)
|
|
|
|
{
|
|
|
|
if (!proxyStatsModel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (enabled) {
|
|
|
|
QString rx(appSettings->value(kUserKey, kUserDefaultValue).toString());
|
|
|
|
proxyStatsModel->setFilterRegExp(QRegExp::escape(rx));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
proxyStatsModel->setFilterRegExp(QRegExp(".*")); // match all
|
|
|
|
}
|
2015-04-16 11:50:07 -05:00
|
|
|
|
2015-05-06 11:10:55 -05:00
|
|
|
/* ------------- SLOTS (private) -------------- */
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbStartTransmit_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2015-05-06 11:10:55 -05:00
|
|
|
model->portListFromIndex(selectedColumns(), pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
startTx(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStopTransmit_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2015-05-06 11:10:55 -05:00
|
|
|
model->portListFromIndex(selectedColumns(), pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
stopTx(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStartCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2015-05-06 11:10:55 -05:00
|
|
|
model->portListFromIndex(selectedColumns(), pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
startCapture(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStopCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2015-05-06 11:10:55 -05:00
|
|
|
model->portListFromIndex(selectedColumns(), pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
stopCapture(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbViewCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2015-05-06 11:10:55 -05:00
|
|
|
model->portListFromIndex(selectedColumns(), pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
viewCapture(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 09:50:11 -06:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbClear_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
|
|
|
|
// Get selected ports
|
2015-05-06 11:10:55 -05:00
|
|
|
model->portListFromIndex(selectedColumns(), portList);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
clearPortStats(&portList[i].portList);
|
2016-11-28 08:49:17 -06:00
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
clearStreamStats(&portList[i].portList);
|
2015-04-16 11:50:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-07 08:26:32 -05:00
|
|
|
// 'All' => all ports currently visible, not all ports in all portgroups
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbClearAll_clicked()
|
|
|
|
{
|
2015-05-07 08:26:32 -05:00
|
|
|
QAbstractItemModel *mdl = tvPortStats->model();
|
|
|
|
QModelIndexList shownColumns;
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
|
|
|
|
// Find the 'visible' columns
|
|
|
|
for(int vi = 0; vi < mdl->columnCount(); vi++) {
|
|
|
|
int li = tvPortStats->horizontalHeader()->logicalIndex(vi);
|
|
|
|
if (!tvPortStats->isColumnHidden(li)) {
|
|
|
|
shownColumns.append(mdl->index(0, li));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get ports corresponding to the shown columns
|
|
|
|
model->portListFromIndex(shownColumns, portList);
|
|
|
|
|
|
|
|
// Clear shown ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
2015-04-16 11:50:07 -05:00
|
|
|
{
|
2015-05-07 08:26:32 -05:00
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId)
|
|
|
|
.clearPortStats(&portList[i].portList);
|
2016-11-28 08:49:17 -06:00
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId)
|
|
|
|
.clearStreamStats(&portList[i].portList);
|
2015-04-16 11:50:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 10:14:38 -06:00
|
|
|
void PortStatsWindow::on_tbGetStreamStats_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
StreamStatsModel *streamStatsModel;
|
|
|
|
|
|
|
|
// Get selected ports
|
|
|
|
model->portListFromIndex(selectedColumns(), portList);
|
|
|
|
|
|
|
|
if (portList.size()) {
|
2016-11-27 01:09:37 -06:00
|
|
|
QDockWidget *dock = new QDockWidget(mainWindow);
|
2016-11-24 10:14:38 -06:00
|
|
|
streamStatsModel = new StreamStatsModel(dock);
|
|
|
|
dock->setWidget(new StreamStatsWindow(streamStatsModel, dock));
|
2016-11-27 01:09:37 -06:00
|
|
|
dock->setWindowTitle(dock->widget()->windowTitle());
|
2016-11-24 10:14:38 -06:00
|
|
|
dock->setObjectName("streamStatsDock");
|
|
|
|
dock->setAttribute(Qt::WA_DeleteOnClose);
|
2016-11-27 01:09:37 -06:00
|
|
|
QDockWidget *statsDock = mainWindow->findChild<QDockWidget*>(
|
|
|
|
"statsDock");
|
2016-11-24 10:14:38 -06:00
|
|
|
mainWindow->addDockWidget(Qt::BottomDockWidgetArea, dock);
|
2016-11-27 01:09:37 -06:00
|
|
|
mainWindow->tabifyDockWidget(statsDock, dock);
|
|
|
|
dock->show();
|
|
|
|
dock->raise();
|
2016-11-24 10:14:38 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get stream stats for selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
|
|
|
{
|
|
|
|
PortGroup &pg = pgl->portGroupByIndex(portList.at(i).portGroupId);
|
|
|
|
if (pg.getStreamStats(&portList[i].portList)) {
|
|
|
|
connect(&pg,SIGNAL(streamStatsReceived(
|
|
|
|
quint32, const OstProto::StreamStatsList*)),
|
|
|
|
streamStatsModel, SLOT(appendStreamStatsList(
|
|
|
|
quint32, const OstProto::StreamStatsList*)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbFilter_clicked()
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
QList<uint> currentColumns, newColumns;
|
|
|
|
PortStatsFilterDialog dialog;
|
2015-05-07 08:26:32 -05:00
|
|
|
QAbstractItemModel *mdl = tvPortStats->model();
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// create the input list for the filter dialog -
|
|
|
|
// list of logical-indexes ordered by their current visual indexes
|
2015-05-06 11:10:55 -05:00
|
|
|
for(int vi = 0; vi < mdl->columnCount(); vi++) {
|
2015-04-16 11:50:07 -05:00
|
|
|
int li = tvPortStats->horizontalHeader()->logicalIndex(vi);
|
|
|
|
if (!tvPortStats->isColumnHidden(li)) {
|
|
|
|
currentColumns.append(li);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// return list from the filter dialog -
|
|
|
|
// list of logical-indexes ordered by their new visual indexes
|
2015-05-06 11:10:55 -05:00
|
|
|
newColumns = dialog.getItemList(&ok, mdl, Qt::Horizontal, currentColumns);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
QHeaderView *hv = tvPortStats->horizontalHeader();
|
|
|
|
|
|
|
|
// hide/show sections first ...
|
2015-05-06 11:10:55 -05:00
|
|
|
for(int li = 0; li < mdl->columnCount(); li++)
|
2015-04-16 11:50:07 -05:00
|
|
|
tvPortStats->setColumnHidden(li, !newColumns.contains(li));
|
|
|
|
|
|
|
|
// ... then for the 'shown' columns, set the visual index
|
|
|
|
for(int vi = 0; vi < newColumns.size(); vi++)
|
|
|
|
hv->moveSection(hv->visualIndex(newColumns.at(vi)), vi);
|
|
|
|
}
|
|
|
|
}
|
2015-05-06 11:10:55 -05:00
|
|
|
|
|
|
|
/* ------------ Private Methods -------------- */
|
|
|
|
|
|
|
|
QModelIndexList PortStatsWindow::selectedColumns()
|
|
|
|
{
|
|
|
|
QModelIndexList indexList =
|
|
|
|
tvPortStats->selectionModel()->selectedColumns();
|
|
|
|
QModelIndexList sourceIndexList;
|
|
|
|
|
|
|
|
if (!proxyStatsModel)
|
|
|
|
return indexList;
|
|
|
|
|
|
|
|
foreach(QModelIndex index, indexList)
|
|
|
|
sourceIndexList.append(proxyStatsModel->mapToSource(index));
|
|
|
|
|
|
|
|
return sourceIndexList;
|
|
|
|
}
|