vdr-plugin-iptv/statistics.h

75 lines
1.4 KiB
C
Raw Normal View History

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.
*
2007-10-08 18:24:48 +02:00
* $Id: statistics.h,v 1.7 2007/10/08 16:24:48 rahrenbe Exp $
2007-10-05 21:00:44 +02:00
*/
#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
#include "statisticif.h"
// Section statistics
class cIptvSectionStatistics : public cIptvStatisticIf {
public:
cIptvSectionStatistics();
virtual ~cIptvSectionStatistics();
cString GetStatistic();
2007-10-08 18:24:48 +02:00
protected:
void AddStatistic(long Bytes, long Calls);
private:
2007-10-08 18:24:48 +02:00
long filteredData;
long numberOfCalls;
cTimeMs timer;
2007-10-08 18:24:48 +02:00
cMutex mutex;
2007-10-05 21:00:44 +02:00
};
// Device statistics
class cIptvDeviceStatistics : public cIptvStatisticIf {
public:
cIptvDeviceStatistics();
virtual ~cIptvDeviceStatistics();
cString GetStatistic();
2007-10-05 21:00:44 +02:00
protected:
2007-10-08 18:24:48 +02:00
void AddStatistic(long Bytes, u_short pid, long payload);
2007-10-05 21:00:44 +02:00
private:
struct pidStruct {
u_short pid;
long DataAmount;
};
2007-10-08 00:54:09 +02:00
pidStruct mostActivePids[IPTV_STATS_ACTIVE_PIDS_COUNT];
2007-10-08 18:24:48 +02:00
long dataBytes;
cTimeMs timer;
2007-10-08 18:24:48 +02:00
cMutex mutex;
2007-10-08 18:24:48 +02:00
private:
static int SortPids(const void* data1, const void* data2);
2007-10-05 21:00:44 +02:00
};
// Streamer statistics
class cIptvStreamerStatistics : public cIptvStatisticIf {
public:
cIptvStreamerStatistics();
virtual ~cIptvStreamerStatistics();
cString GetStatistic();
2007-10-08 18:24:48 +02:00
protected:
void AddStatistic(long Bytes);
private:
2007-10-08 18:24:48 +02:00
long dataBytes;
cTimeMs timer;
2007-10-08 18:24:48 +02:00
cMutex mutex;
2007-10-05 21:00:44 +02:00
};
#endif // __IPTV_STATISTICS_H