2016-11-17 10:14:34 -06:00
|
|
|
/*
|
|
|
|
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/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PCAP_RX_STATS_H
|
|
|
|
#define _PCAP_RX_STATS_H
|
|
|
|
|
|
|
|
#include "streamstats.h"
|
|
|
|
|
2019-08-10 02:46:18 -05:00
|
|
|
#include "pcapsession.h"
|
2016-11-17 10:14:34 -06:00
|
|
|
|
2023-06-17 00:58:38 -05:00
|
|
|
#include <QMutex>
|
|
|
|
|
2023-03-31 06:25:03 -05:00
|
|
|
class StreamTiming;
|
|
|
|
|
2019-08-10 02:46:18 -05:00
|
|
|
class PcapRxStats: public PcapSession
|
2016-11-17 10:14:34 -06:00
|
|
|
{
|
|
|
|
public:
|
2023-06-17 00:58:38 -05:00
|
|
|
PcapRxStats(const char *device, int id);
|
2016-11-17 10:14:34 -06:00
|
|
|
pcap_t* handle();
|
|
|
|
void run();
|
|
|
|
bool start();
|
|
|
|
bool stop();
|
|
|
|
bool isRunning();
|
2017-01-09 07:27:38 -06:00
|
|
|
bool isDirectional();
|
2016-11-17 10:14:34 -06:00
|
|
|
|
2023-06-17 00:58:38 -05:00
|
|
|
void updateRxStreamStats(StreamStats &streamStats); // Reset on read
|
2016-11-17 10:14:34 -06:00
|
|
|
private:
|
|
|
|
enum State {
|
|
|
|
kNotStarted,
|
|
|
|
kRunning,
|
|
|
|
kFinished
|
|
|
|
};
|
|
|
|
|
|
|
|
QString device_;
|
2023-06-17 00:58:38 -05:00
|
|
|
StreamStats streamStats_;
|
|
|
|
QMutex streamStatsLock_;
|
2016-11-17 10:14:34 -06:00
|
|
|
volatile bool stop_;
|
|
|
|
volatile State state_;
|
2017-01-09 07:27:38 -06:00
|
|
|
bool isDirectional_;
|
2023-02-08 04:48:02 -06:00
|
|
|
|
2023-03-31 06:28:52 -05:00
|
|
|
int portId_;
|
2023-03-31 06:25:03 -05:00
|
|
|
|
|
|
|
StreamTiming *timing_{nullptr};
|
2016-11-17 10:14:34 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|