mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
/*
|
|
* config.c: SAT>IP plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
*/
|
|
|
|
#include "discover.h"
|
|
#include "log.h"
|
|
#include "config.h"
|
|
|
|
cSatipConfig SatipConfig;
|
|
|
|
cSatipConfig::cSatipConfig(void)
|
|
: operatingModeM(eOperatingModeLow),
|
|
loggingModeM(eLoggingModeNormal),
|
|
eitScanM(1),
|
|
useBytesM(1)
|
|
{
|
|
for (unsigned int i = 0; i < ARRAY_SIZE(disabledSourcesM); ++i)
|
|
disabledSourcesM[i] = cSource::stNone;
|
|
for (unsigned int i = 0; i < ARRAY_SIZE(disabledFiltersM); ++i)
|
|
disabledFiltersM[i] = -1;
|
|
memset(configDirectoryM, 0, sizeof(configDirectoryM));
|
|
}
|
|
|
|
unsigned int cSatipConfig::GetDisabledSourcesCount(void) const
|
|
{
|
|
unsigned int n = 0;
|
|
while ((n < ARRAY_SIZE(disabledSourcesM) && (disabledSourcesM[n] != cSource::stNone)))
|
|
n++;
|
|
return n;
|
|
}
|
|
|
|
int cSatipConfig::GetDisabledSources(unsigned int indexP) const
|
|
{
|
|
return (indexP < ARRAY_SIZE(disabledSourcesM)) ? disabledSourcesM[indexP] : cSource::stNone;
|
|
}
|
|
|
|
void cSatipConfig::SetDisabledSources(unsigned int indexP, int sourceP)
|
|
{
|
|
if (indexP < ARRAY_SIZE(disabledSourcesM))
|
|
disabledSourcesM[indexP] = sourceP;
|
|
}
|
|
|
|
unsigned int cSatipConfig::GetDisabledFiltersCount(void) const
|
|
{
|
|
unsigned int n = 0;
|
|
while ((n < ARRAY_SIZE(disabledFiltersM) && (disabledFiltersM[n] != -1)))
|
|
n++;
|
|
return n;
|
|
}
|
|
|
|
int cSatipConfig::GetDisabledFilters(unsigned int indexP) const
|
|
{
|
|
return (indexP < ARRAY_SIZE(disabledFiltersM)) ? disabledFiltersM[indexP] : -1;
|
|
}
|
|
|
|
void cSatipConfig::SetDisabledFilters(unsigned int indexP, int numberP)
|
|
{
|
|
if (indexP < ARRAY_SIZE(disabledFiltersM))
|
|
disabledFiltersM[indexP] = numberP;
|
|
}
|
|
|
|
void cSatipConfig::SetConfigDirectory(const char *directoryP)
|
|
{
|
|
debug1("%s (%s)", __PRETTY_FUNCTION__, directoryP);
|
|
ERROR_IF(!realpath(directoryP, configDirectoryM), "Cannot canonicalize configuration directory");
|
|
}
|