2007-10-05 21:00:44 +02:00
|
|
|
/*
|
|
|
|
* statistics.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_STATISTICS_H
|
|
|
|
#define __IPTV_STATISTICS_H
|
|
|
|
|
2007-10-08 18:24:48 +02:00
|
|
|
#include <vdr/thread.h>
|
|
|
|
|
2007-10-05 21:00:44 +02:00
|
|
|
// Section statistics
|
2008-01-19 22:08:02 +01:00
|
|
|
class cIptvSectionStatistics {
|
2007-10-05 21:00:44 +02:00
|
|
|
public:
|
|
|
|
cIptvSectionStatistics();
|
|
|
|
virtual ~cIptvSectionStatistics();
|
2008-01-19 22:08:02 +01:00
|
|
|
cString GetSectionStatistic();
|
2007-10-07 21:06:33 +02:00
|
|
|
|
2007-10-08 18:24:48 +02:00
|
|
|
protected:
|
2008-01-19 22:08:02 +01:00
|
|
|
void AddSectionStatistic(long Bytes, long Calls);
|
2007-10-08 18:24:48 +02:00
|
|
|
|
2007-10-07 21:06:33 +02:00
|
|
|
private:
|
2007-10-08 18:24:48 +02:00
|
|
|
long filteredData;
|
|
|
|
long numberOfCalls;
|
2007-10-07 21:06:33 +02:00
|
|
|
cTimeMs timer;
|
2007-10-08 18:24:48 +02:00
|
|
|
cMutex mutex;
|
2007-10-05 21:00:44 +02:00
|
|
|
};
|
|
|
|
|
2007-10-10 00:12:17 +02:00
|
|
|
// Pid statistics
|
2008-01-19 22:08:02 +01:00
|
|
|
class cIptvPidStatistics {
|
2007-10-05 21:00:44 +02:00
|
|
|
public:
|
2007-10-10 00:12:17 +02:00
|
|
|
cIptvPidStatistics();
|
|
|
|
virtual ~cIptvPidStatistics();
|
2008-01-19 22:08:02 +01:00
|
|
|
cString GetPidStatistic();
|
2007-10-05 21:00:44 +02:00
|
|
|
|
|
|
|
protected:
|
2008-01-19 22:08:02 +01:00
|
|
|
void AddPidStatistic(u_short Pid, long Payload);
|
2007-10-05 21:00:44 +02:00
|
|
|
|
|
|
|
private:
|
2007-10-08 14:25:30 +02:00
|
|
|
struct pidStruct {
|
|
|
|
u_short pid;
|
|
|
|
long DataAmount;
|
|
|
|
};
|
2007-10-08 00:54:09 +02:00
|
|
|
pidStruct mostActivePids[IPTV_STATS_ACTIVE_PIDS_COUNT];
|
2007-10-07 21:06:33 +02:00
|
|
|
cTimeMs timer;
|
2007-10-08 18:24:48 +02:00
|
|
|
cMutex mutex;
|
2007-10-08 14:25:30 +02:00
|
|
|
|
2007-10-08 18:24:48 +02:00
|
|
|
private:
|
2007-10-08 14:25:30 +02:00
|
|
|
static int SortPids(const void* data1, const void* data2);
|
2007-10-05 21:00:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Streamer statistics
|
2008-01-19 22:08:02 +01:00
|
|
|
class cIptvStreamerStatistics {
|
2007-10-05 21:00:44 +02:00
|
|
|
public:
|
|
|
|
cIptvStreamerStatistics();
|
|
|
|
virtual ~cIptvStreamerStatistics();
|
2008-01-19 22:08:02 +01:00
|
|
|
cString GetStreamerStatistic();
|
2007-10-07 21:06:33 +02:00
|
|
|
|
2007-10-08 18:24:48 +02:00
|
|
|
protected:
|
2008-01-19 22:08:02 +01:00
|
|
|
void AddStreamerStatistic(long Bytes);
|
2007-10-08 18:24:48 +02:00
|
|
|
|
2007-10-07 21:06:33 +02:00
|
|
|
private:
|
2007-10-08 18:24:48 +02:00
|
|
|
long dataBytes;
|
2007-10-07 21:06:33 +02:00
|
|
|
cTimeMs timer;
|
2007-10-08 18:24:48 +02:00
|
|
|
cMutex mutex;
|
2007-10-05 21:00:44 +02:00
|
|
|
};
|
|
|
|
|
2007-10-09 19:58:17 +02:00
|
|
|
// Buffer statistics
|
2008-01-19 22:08:02 +01:00
|
|
|
class cIptvBufferStatistics {
|
2007-10-09 19:58:17 +02:00
|
|
|
public:
|
|
|
|
cIptvBufferStatistics();
|
|
|
|
virtual ~cIptvBufferStatistics();
|
2008-01-19 22:08:02 +01:00
|
|
|
cString GetBufferStatistic();
|
2007-10-09 19:58:17 +02:00
|
|
|
|
|
|
|
protected:
|
2008-01-19 22:08:02 +01:00
|
|
|
void AddBufferStatistic(long Bytes, long Used);
|
2007-10-09 19:58:17 +02:00
|
|
|
|
|
|
|
private:
|
2007-10-10 00:12:17 +02:00
|
|
|
long dataBytes;
|
2007-10-09 19:58:17 +02:00
|
|
|
long freeSpace;
|
|
|
|
long usedSpace;
|
|
|
|
cTimeMs timer;
|
|
|
|
cMutex mutex;
|
|
|
|
};
|
|
|
|
|
2007-10-05 21:00:44 +02:00
|
|
|
#endif // __IPTV_STATISTICS_H
|