mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
91 lines
1.7 KiB
C++
91 lines
1.7 KiB
C++
/*
|
|
* statistics.h: IPTV plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
* $Id: statistics.h,v 1.10 2007/10/11 23:06:49 rahrenbe Exp $
|
|
*/
|
|
|
|
#ifndef __IPTV_STATISTICS_H
|
|
#define __IPTV_STATISTICS_H
|
|
|
|
#include <vdr/thread.h>
|
|
|
|
#include "statisticif.h"
|
|
|
|
// Section statistics
|
|
class cIptvSectionStatistics : public cIptvStatisticIf {
|
|
public:
|
|
cIptvSectionStatistics();
|
|
virtual ~cIptvSectionStatistics();
|
|
cString GetStatistic();
|
|
|
|
protected:
|
|
void AddStatistic(long Bytes, long Calls);
|
|
|
|
private:
|
|
long filteredData;
|
|
long numberOfCalls;
|
|
cTimeMs timer;
|
|
cMutex mutex;
|
|
};
|
|
|
|
// Pid statistics
|
|
class cIptvPidStatistics : public cIptvStatisticIf {
|
|
public:
|
|
cIptvPidStatistics();
|
|
virtual ~cIptvPidStatistics();
|
|
cString GetStatistic();
|
|
|
|
protected:
|
|
void AddStatistic(u_short Pid, long Payload);
|
|
|
|
private:
|
|
struct pidStruct {
|
|
u_short pid;
|
|
long DataAmount;
|
|
};
|
|
pidStruct mostActivePids[IPTV_STATS_ACTIVE_PIDS_COUNT];
|
|
cTimeMs timer;
|
|
cMutex mutex;
|
|
|
|
private:
|
|
static int SortPids(const void* data1, const void* data2);
|
|
};
|
|
|
|
// Streamer statistics
|
|
class cIptvStreamerStatistics : public cIptvStatisticIf {
|
|
public:
|
|
cIptvStreamerStatistics();
|
|
virtual ~cIptvStreamerStatistics();
|
|
cString GetStatistic();
|
|
|
|
protected:
|
|
void AddStatistic(long Bytes);
|
|
|
|
private:
|
|
long dataBytes;
|
|
cTimeMs timer;
|
|
cMutex mutex;
|
|
};
|
|
|
|
// Buffer statistics
|
|
class cIptvBufferStatistics : public cIptvStatisticIf {
|
|
public:
|
|
cIptvBufferStatistics();
|
|
virtual ~cIptvBufferStatistics();
|
|
cString GetStatistic();
|
|
|
|
protected:
|
|
void AddStatistic(long Bytes, long Used);
|
|
|
|
private:
|
|
long dataBytes;
|
|
long freeSpace;
|
|
long usedSpace;
|
|
cTimeMs timer;
|
|
cMutex mutex;
|
|
};
|
|
|
|
#endif // __IPTV_STATISTICS_H
|