ostinato/server/pcaptxstats.cpp

102 lines
2.3 KiB
C++

/*
Copyright (C) 2016 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 "pcaptxstats.h"
#include "statstuple.h"
PcapTxStats::PcapTxStats()
{
txThreadStats_ = NULL;
stats_ = new AbstractPort::PortStats;
usingInternalStats_ = true;
usingSignedStreams_ = false;
stop_ = false;
}
PcapTxStats::~PcapTxStats()
{
if (usingInternalStats_)
delete stats_;
}
void PcapTxStats::setTxThreadStats(StatsTuple *stats)
{
txThreadStats_ = stats;
}
void PcapTxStats::useExternalStats(AbstractPort::PortStats *stats)
{
if (usingInternalStats_)
delete stats_;
stats_ = stats;
usingInternalStats_ = false;
}
void PcapTxStats::useSignedStreams(bool enable)
{
usingSignedStreams_ = enable;
}
void PcapTxStats::start()
{
QThread::start();
while (!isRunning())
QThread::msleep(10);
}
void PcapTxStats::stop()
{
stop_ = true;
while (isRunning())
QThread::msleep(10);
}
void PcapTxStats::run()
{
Q_ASSERT(txThreadStats_);
qDebug("txStats: collection start");
while (1) {
stats_->txPkts = txThreadStats_->pkts;
stats_->txBytes = txThreadStats_->bytes;
// XXX: If port uses signed streams, we assume that all packets
// sent by txThread are signed packets => this requires us to
// set sign tx stats equal to tx stats followed by a clear stats
// whenever this setting changes
if (usingSignedStreams_) {
stats_->sign.txPkts = txThreadStats_->pkts;
stats_->sign.txBytes = txThreadStats_->bytes;
}
if (stop_)
break;
QThread::msleep(1000);
}
stop_ = false;
qDebug("txStats: collection end");
}