2007-10-05 21:00:44 +02:00
|
|
|
/*
|
|
|
|
* statistics.c: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
2007-10-07 21:29:09 +02:00
|
|
|
* $Id: statistics.c,v 1.8 2007/10/07 19:29:09 ajhseppa Exp $
|
2007-10-05 21:00:44 +02:00
|
|
|
*/
|
|
|
|
|
2007-10-07 21:06:33 +02:00
|
|
|
#include <limits.h>
|
|
|
|
|
2007-10-05 21:00:44 +02:00
|
|
|
#include "common.h"
|
|
|
|
#include "statistics.h"
|
2007-10-07 21:06:33 +02:00
|
|
|
#include "config.h"
|
2007-10-05 21:00:44 +02:00
|
|
|
|
|
|
|
// Section statistic class
|
|
|
|
cIptvSectionStatistics::cIptvSectionStatistics()
|
2007-10-07 00:15:02 +02:00
|
|
|
: filteredData(0),
|
2007-10-07 21:06:33 +02:00
|
|
|
numberOfCalls(0),
|
|
|
|
timer()
|
2007-10-05 21:00:44 +02:00
|
|
|
{
|
2007-10-06 00:23:56 +02:00
|
|
|
//debug("cIptvSectionStatistics::cIptvSectionStatistics()\n");
|
2007-10-05 21:00:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cIptvSectionStatistics::~cIptvSectionStatistics()
|
|
|
|
{
|
2007-10-06 00:23:56 +02:00
|
|
|
//debug("cIptvSectionStatistics::~cIptvSectionStatistics()\n");
|
2007-10-05 21:00:44 +02:00
|
|
|
}
|
|
|
|
|
2007-10-07 21:06:33 +02:00
|
|
|
cString cIptvSectionStatistics::GetStatistic()
|
2007-10-05 21:00:44 +02:00
|
|
|
{
|
|
|
|
debug("cIptvSectionStatistics::GetStatistic()\n");
|
2007-10-07 21:06:33 +02:00
|
|
|
uint64_t elapsed = timer.Elapsed();
|
|
|
|
timer.Set();
|
2007-10-07 12:13:45 +02:00
|
|
|
// Prevent a divide-by-zero error
|
|
|
|
elapsed ? : elapsed = 1;
|
2007-10-07 21:06:33 +02:00
|
|
|
float divider = elapsed / 1000;
|
|
|
|
char unit[] = { ' ', 'B', '/', 's', '\0' };
|
|
|
|
if (IptvConfig.GetStatsInKilos()) {
|
|
|
|
divider *= KILOBYTE(1);
|
|
|
|
unit[0] = 'k';
|
|
|
|
}
|
|
|
|
if (!IptvConfig.GetStatsInBytes()) {
|
2007-10-07 21:29:09 +02:00
|
|
|
divider /= sizeof(unsigned short) * 8;
|
2007-10-07 21:06:33 +02:00
|
|
|
unit[1] = 'b';
|
|
|
|
}
|
2007-10-07 00:15:02 +02:00
|
|
|
long tmpFilteredData = filteredData;
|
|
|
|
long tmpNumberOfCalls = numberOfCalls;
|
2007-10-05 21:00:44 +02:00
|
|
|
filteredData = numberOfCalls = 0;
|
2007-10-07 12:13:45 +02:00
|
|
|
return cString::sprintf("Filtered data: %ld %s\nData packets passed: %ld\n", (long)(tmpFilteredData / divider), unit, tmpNumberOfCalls);
|
2007-10-05 21:00:44 +02:00
|
|
|
}
|
|
|
|
|
2007-10-07 00:15:02 +02:00
|
|
|
// --- cIptvDeviceStatistics -------------------------------------------------
|
|
|
|
|
2007-10-05 21:00:44 +02:00
|
|
|
// Device statistic class
|
|
|
|
cIptvDeviceStatistics::cIptvDeviceStatistics()
|
2007-10-07 21:06:33 +02:00
|
|
|
: dataBytes(0),
|
|
|
|
timer()
|
2007-10-05 21:00:44 +02:00
|
|
|
{
|
|
|
|
debug("cIptvDeviceStatistics::cIptvDeviceStatistics()\n");
|
|
|
|
memset(mostActivePids, '\0', sizeof(mostActivePids));
|
|
|
|
}
|
|
|
|
|
|
|
|
cIptvDeviceStatistics::~cIptvDeviceStatistics()
|
|
|
|
{
|
|
|
|
debug("cIptvDeviceStatistics::~cIptvDeviceStatistics()\n");
|
|
|
|
}
|
|
|
|
|
2007-10-07 21:06:33 +02:00
|
|
|
cString cIptvDeviceStatistics::GetStatistic()
|
2007-10-05 21:00:44 +02:00
|
|
|
{
|
|
|
|
debug("cIptvDeviceStatistics::GetStatistic()\n");
|
2007-10-07 00:15:02 +02:00
|
|
|
pidStruct tmpMostActivePids[10];
|
|
|
|
long tmpDataBytes = dataBytes;
|
2007-10-07 21:06:33 +02:00
|
|
|
uint64_t elapsed = timer.Elapsed();
|
|
|
|
timer.Set();
|
2007-10-07 12:13:45 +02:00
|
|
|
// Prevent a divide-by-zero error
|
|
|
|
elapsed ? : elapsed = 1;
|
2007-10-07 21:06:33 +02:00
|
|
|
float divider = elapsed / 1000;
|
|
|
|
char unit[] = { ' ', 'B', '/', 's', '\0' };
|
|
|
|
if (IptvConfig.GetStatsInKilos()) {
|
|
|
|
divider *= KILOBYTE(1);
|
|
|
|
unit[0] = 'k';
|
|
|
|
}
|
|
|
|
if (!IptvConfig.GetStatsInBytes()) {
|
2007-10-07 21:29:09 +02:00
|
|
|
divider /= sizeof(unsigned short) * 8;
|
2007-10-07 21:06:33 +02:00
|
|
|
unit[1] = 'b';
|
|
|
|
}
|
2007-10-05 21:00:44 +02:00
|
|
|
dataBytes = 0;
|
2007-10-07 00:15:02 +02:00
|
|
|
memcpy(&tmpMostActivePids, &mostActivePids, sizeof(tmpMostActivePids));
|
2007-10-05 21:00:44 +02:00
|
|
|
memset(&mostActivePids, '\0', sizeof(mostActivePids));
|
2007-10-07 12:13:45 +02:00
|
|
|
return cString::sprintf("Stream data bytes: %ld %s\n"
|
2007-10-07 21:06:33 +02:00
|
|
|
" 1. Active Pid: %d %ld %s\n"
|
|
|
|
" 2. Active Pid: %d %ld %s\n"
|
|
|
|
" 3. Active Pid: %d %ld %s\n"
|
|
|
|
" 4. Active Pid: %d %ld %s\n"
|
|
|
|
" 5. Active Pid: %d %ld %s\n",
|
2007-10-07 12:13:45 +02:00
|
|
|
(long)(tmpDataBytes / divider), unit,
|
|
|
|
tmpMostActivePids[0].pid, (long)(tmpMostActivePids[0].DataAmount / divider), unit,
|
|
|
|
tmpMostActivePids[1].pid, (long)(tmpMostActivePids[1].DataAmount / divider), unit,
|
|
|
|
tmpMostActivePids[2].pid, (long)(tmpMostActivePids[2].DataAmount / divider), unit,
|
|
|
|
tmpMostActivePids[3].pid, (long)(tmpMostActivePids[3].DataAmount / divider), unit,
|
|
|
|
tmpMostActivePids[4].pid, (long)(tmpMostActivePids[4].DataAmount / divider), unit);
|
2007-10-05 21:00:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int SortFunc(const void* data1, const void* data2)
|
|
|
|
{
|
2007-10-06 00:23:56 +02:00
|
|
|
//debug("cIptvDeviceStatistics::SortFunc()\n");
|
2007-10-05 21:00:44 +02:00
|
|
|
pidStruct *comp1 = (pidStruct*)data1;
|
|
|
|
pidStruct *comp2 = (pidStruct*)data2;
|
|
|
|
if (comp1->DataAmount > comp2->DataAmount)
|
|
|
|
return -1;
|
2007-10-07 10:46:34 +02:00
|
|
|
if (comp1->DataAmount < comp2->DataAmount)
|
|
|
|
return 1;
|
2007-10-05 21:00:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cIptvDeviceStatistics::UpdateActivePids(u_short pid, long payload)
|
|
|
|
{
|
2007-10-06 00:23:56 +02:00
|
|
|
//debug("cIptvDeviceStatistics::UpdateActivePids()\n");
|
2007-10-05 21:00:44 +02:00
|
|
|
const int numberOfElements = sizeof(mostActivePids) / sizeof(pidStruct);
|
|
|
|
// If our statistic already is in the array, update it and quit
|
|
|
|
for (int i = 0; i < numberOfElements; ++i) {
|
2007-10-07 00:15:02 +02:00
|
|
|
if (mostActivePids[i].pid == pid) {
|
|
|
|
mostActivePids[i].DataAmount += payload;
|
|
|
|
// Now re-sort the array and quit
|
|
|
|
qsort(&mostActivePids, numberOfElements, sizeof(pidStruct), SortFunc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2007-10-05 21:00:44 +02:00
|
|
|
// Apparently our pid isn't in the array. Replace the last element with this
|
|
|
|
// one if new payload is greater
|
|
|
|
if (mostActivePids[numberOfElements - 1].DataAmount < payload) {
|
2007-10-07 00:15:02 +02:00
|
|
|
mostActivePids[numberOfElements - 1].pid = pid;
|
|
|
|
mostActivePids[numberOfElements - 1].DataAmount = payload;
|
2007-10-06 00:30:14 +02:00
|
|
|
// Re-sort
|
|
|
|
qsort(&mostActivePids, numberOfElements, sizeof(pidStruct), SortFunc);
|
|
|
|
}
|
2007-10-05 21:00:44 +02:00
|
|
|
}
|
|
|
|
|
2007-10-07 00:15:02 +02:00
|
|
|
// --- cIptvStreamerStatistics -----------------------------------------------
|
2007-10-05 21:00:44 +02:00
|
|
|
|
|
|
|
// Streamer statistic class
|
|
|
|
cIptvStreamerStatistics::cIptvStreamerStatistics()
|
2007-10-07 21:06:33 +02:00
|
|
|
: dataBytes(0),
|
|
|
|
timer()
|
2007-10-05 21:00:44 +02:00
|
|
|
{
|
|
|
|
debug("cIptvStreamerStatistics::cIptvStreamerStatistics()\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
cIptvStreamerStatistics::~cIptvStreamerStatistics()
|
|
|
|
{
|
|
|
|
debug("cIptvStreamerStatistics::~cIptvStreamerStatistics()\n");
|
|
|
|
}
|
|
|
|
|
2007-10-07 21:06:33 +02:00
|
|
|
cString cIptvStreamerStatistics::GetStatistic()
|
2007-10-05 21:00:44 +02:00
|
|
|
{
|
|
|
|
debug("cIptvStreamerStatistics::GetStatistic()\n");
|
2007-10-07 21:06:33 +02:00
|
|
|
uint64_t elapsed = timer.Elapsed();
|
|
|
|
timer.Set();
|
2007-10-07 12:13:45 +02:00
|
|
|
// Prevent a divide-by-zero error
|
|
|
|
elapsed ? : elapsed = 1;
|
2007-10-07 21:06:33 +02:00
|
|
|
float divider = elapsed / 1000;
|
|
|
|
char unit[] = { ' ', 'B', '/', 's', '\0' };
|
|
|
|
if (IptvConfig.GetStatsInKilos()) {
|
|
|
|
divider *= KILOBYTE(1);
|
|
|
|
unit[0] = 'k';
|
|
|
|
}
|
|
|
|
if (!IptvConfig.GetStatsInBytes()) {
|
2007-10-07 21:29:09 +02:00
|
|
|
divider /= sizeof(unsigned short) * 8;
|
2007-10-07 21:06:33 +02:00
|
|
|
unit[1] = 'b';
|
|
|
|
}
|
2007-10-07 12:13:45 +02:00
|
|
|
long tmpDataBytes = (long)(dataBytes / divider);
|
2007-10-05 21:00:44 +02:00
|
|
|
dataBytes = 0;
|
2007-10-07 12:13:45 +02:00
|
|
|
return cString::sprintf("Stream data bytes: %ld %s\n", tmpDataBytes, unit);
|
2007-10-05 21:00:44 +02:00
|
|
|
}
|