5ec7010c51
Tx/Rx stream stats related threads no longer have a direct reference to the port's stream stats - instead they have their own copy that they keep and return (in a reset-on-read fashion) when asked for. Each copy also has it's own lock to prevent contention for read/update/clear. PcapPort now fetches Tx(Transmitter) and Rx(Poller) stats on demand and updates the port's stream stats - under protection of a lock.
68 lines
2.0 KiB
C++
68 lines
2.0 KiB
C++
/*
|
|
Copyright (C) 2010-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/>
|
|
*/
|
|
|
|
#ifndef _PCAP_TRANSMITTER_H
|
|
#define _PCAP_TRANSMITTER_H
|
|
|
|
#include "abstractport.h"
|
|
#include "pcaptxstats.h"
|
|
#include "pcaptxthread.h"
|
|
#include "statstuple.h"
|
|
|
|
class PcapTransmitter : QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
PcapTransmitter(const char *device);
|
|
~PcapTransmitter();
|
|
|
|
bool setRateAccuracy(AbstractPort::Accuracy accuracy);
|
|
bool setStreamStatsTracking(bool enable);
|
|
void adjustRxStreamStats(bool enable);
|
|
void updateTxRxStreamStats(StreamStats &streamStats); // Reset on read
|
|
|
|
void clearPacketList();
|
|
void loopNextPacketSet(qint64 size, qint64 repeats,
|
|
long repeatDelaySec, long repeatDelayNsec);
|
|
bool appendToPacketList(long sec, long usec, const uchar *packet,
|
|
int length);
|
|
void setPacketListLoopMode(bool loop, quint64 secDelay, quint64 nsecDelay);
|
|
bool setPacketListTtagMarkers(QList<uint> markers, uint repeatInterval);
|
|
|
|
void setHandle(pcap_t *handle);
|
|
void useExternalStats(AbstractPort::PortStats *stats);
|
|
|
|
void start();
|
|
void stop();
|
|
bool isRunning();
|
|
double lastTxDuration();
|
|
private slots:
|
|
void updateTxThreadStreamStats();
|
|
private:
|
|
StreamStats streamStats_;
|
|
QMutex streamStatsLock_;
|
|
PcapTxThread txThread_;
|
|
PcapTxStats txStats_;
|
|
StatsTuple stats_;
|
|
bool adjustRxStreamStats_;
|
|
};
|
|
|
|
#endif
|
|
|