2007-09-12 19:28:59 +02:00
|
|
|
/*
|
|
|
|
* iptv.c: A plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <vdr/plugin.h>
|
|
|
|
#include "common.h"
|
2007-09-15 17:38:38 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "setup.h"
|
2007-09-12 19:28:59 +02:00
|
|
|
#include "device.h"
|
|
|
|
|
2007-10-27 01:13:24 +02:00
|
|
|
#ifndef PLUGINPARAMPATCHVERSNUM
|
|
|
|
#error "You must apply the pluginparam patch for VDR!"
|
|
|
|
#endif
|
|
|
|
|
2008-03-27 21:27:26 +01:00
|
|
|
#if defined(APIVERSNUM) && APIVERSNUM < 10600
|
|
|
|
#error "VDR-1.6.0 API version or greater is required!"
|
2007-10-14 20:45:34 +02:00
|
|
|
#endif
|
|
|
|
|
2008-03-30 22:25:12 +02:00
|
|
|
static const char VERSION[] = "0.2.1";
|
2007-10-28 17:22:44 +01:00
|
|
|
static const char DESCRIPTION[] = trNOOP("Experience the IPTV");
|
2007-09-12 19:28:59 +02:00
|
|
|
|
|
|
|
class cPluginIptv : public cPlugin {
|
|
|
|
private:
|
|
|
|
unsigned int deviceCount;
|
2007-10-06 02:02:50 +02:00
|
|
|
int ParseFilters(const char *Value, int *Values);
|
2007-09-12 19:28:59 +02:00
|
|
|
public:
|
|
|
|
cPluginIptv(void);
|
|
|
|
virtual ~cPluginIptv();
|
|
|
|
virtual const char *Version(void) { return VERSION; }
|
|
|
|
virtual const char *Description(void) { return tr(DESCRIPTION); }
|
|
|
|
virtual const char *CommandLineHelp(void);
|
|
|
|
virtual bool ProcessArgs(int argc, char *argv[]);
|
|
|
|
virtual bool Initialize(void);
|
|
|
|
virtual bool Start(void);
|
|
|
|
virtual void Stop(void);
|
|
|
|
virtual void Housekeeping(void);
|
|
|
|
virtual void MainThreadHook(void);
|
|
|
|
virtual cString Active(void);
|
|
|
|
virtual time_t WakeupTime(void);
|
|
|
|
virtual const char *MainMenuEntry(void) { return NULL; }
|
|
|
|
virtual cOsdObject *MainMenuAction(void);
|
|
|
|
virtual cMenuSetupPage *SetupMenu(void);
|
|
|
|
virtual bool SetupParse(const char *Name, const char *Value);
|
|
|
|
virtual bool Service(const char *Id, void *Data = NULL);
|
|
|
|
virtual const char **SVDRPHelpPages(void);
|
|
|
|
virtual cString SVDRPCommand(const char *Command, const char *Option, int &ReplyCode);
|
|
|
|
};
|
|
|
|
|
|
|
|
cPluginIptv::cPluginIptv(void)
|
|
|
|
: deviceCount(1)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::cPluginIptv()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Initialize any member variables here.
|
|
|
|
// DON'T DO ANYTHING ELSE THAT MAY HAVE SIDE EFFECTS, REQUIRE GLOBAL
|
|
|
|
// VDR OBJECTS TO EXIST OR PRODUCE ANY OUTPUT!
|
|
|
|
}
|
|
|
|
|
|
|
|
cPluginIptv::~cPluginIptv()
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::~cPluginIptv()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Clean up after yourself!
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cPluginIptv::CommandLineHelp(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
debug("cPluginIptv::CommandLineHelp()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Return a string that describes all known command line options.
|
2007-10-20 19:26:46 +02:00
|
|
|
return " -d <num>, --devices=<number> number of devices to be created\n";
|
2007-09-12 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginIptv::ProcessArgs(int argc, char *argv[])
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
debug("cPluginIptv::ProcessArgs()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Implement command line argument processing here if applicable.
|
|
|
|
static const struct option long_options[] = {
|
2008-01-30 22:57:33 +01:00
|
|
|
{ "devices", required_argument, NULL, 'd' },
|
|
|
|
{ NULL }
|
|
|
|
};
|
2007-09-12 19:28:59 +02:00
|
|
|
|
|
|
|
int c;
|
2007-10-20 19:26:46 +02:00
|
|
|
while ((c = getopt_long(argc, argv, "d:", long_options, NULL)) != -1) {
|
2008-01-30 22:57:33 +01:00
|
|
|
switch (c) {
|
|
|
|
case 'd':
|
|
|
|
deviceCount = atoi(optarg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2007-09-12 19:28:59 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginIptv::Initialize(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
debug("cPluginIptv::Initialize()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Initialize any background activities the plugin shall perform.
|
2007-10-20 00:54:03 +02:00
|
|
|
IptvConfig.SetConfigDirectory(cPlugin::ConfigDirectory(PLUGIN_NAME_I18N));
|
2007-09-12 19:28:59 +02:00
|
|
|
return cIptvDevice::Initialize(deviceCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginIptv::Start(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
debug("cPluginIptv::Start()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Start any background activities the plugin shall perform.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPluginIptv::Stop(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
debug("cPluginIptv::Stop()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Stop any background activities the plugin is performing.
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPluginIptv::Housekeeping(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::Housekeeping()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Perform any cleanup or other regular tasks.
|
|
|
|
}
|
|
|
|
|
|
|
|
void cPluginIptv::MainThreadHook(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::MainThreadHook()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Perform actions in the context of the main program thread.
|
|
|
|
// WARNING: Use with great care - see PLUGINS.html!
|
|
|
|
}
|
|
|
|
|
|
|
|
cString cPluginIptv::Active(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::Active()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Return a message string if shutdown should be postponed
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
time_t cPluginIptv::WakeupTime(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::WakeupTime()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Return custom wakeup time for shutdown script
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
cOsdObject *cPluginIptv::MainMenuAction(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::MainMenuAction()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Perform the action when selected from the main VDR menu.
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cMenuSetupPage *cPluginIptv::SetupMenu(void)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
debug("cPluginIptv::SetupMenu()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Return a setup menu in case the plugin supports one.
|
2007-09-15 17:38:38 +02:00
|
|
|
return new cIptvPluginSetup();
|
2007-09-12 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
2007-10-06 02:02:50 +02:00
|
|
|
int cPluginIptv::ParseFilters(const char *Value, int *Filters)
|
|
|
|
{
|
|
|
|
debug("cPluginIptv::ParseFilters(): Value=%s\n", Value);
|
|
|
|
char buffer[256];
|
|
|
|
int n = 0;
|
|
|
|
while (Value && *Value && (n < SECTION_FILTER_TABLE_SIZE)) {
|
2008-01-30 22:57:33 +01:00
|
|
|
strn0cpy(buffer, Value, sizeof(buffer));
|
|
|
|
int i = atoi(buffer);
|
|
|
|
//debug("cPluginIptv::ParseFilters(): Filters[%d]=%d\n", n, i);
|
|
|
|
if (i >= 0)
|
|
|
|
Filters[n++] = i;
|
|
|
|
if ((Value = strchr(Value, ' ')) != NULL)
|
|
|
|
Value++;
|
|
|
|
}
|
2007-10-06 02:02:50 +02:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2007-09-12 19:28:59 +02:00
|
|
|
bool cPluginIptv::SetupParse(const char *Name, const char *Value)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
debug("cPluginIptv::SetupParse()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Parse your own setup parameters and store their values.
|
2007-09-16 15:38:20 +02:00
|
|
|
if (!strcasecmp(Name, "TsBufferSize"))
|
|
|
|
IptvConfig.SetTsBufferSize(atoi(Value));
|
|
|
|
else if (!strcasecmp(Name, "TsBufferPrefill"))
|
|
|
|
IptvConfig.SetTsBufferPrefillRatio(atoi(Value));
|
2007-10-20 19:26:46 +02:00
|
|
|
else if (!strcasecmp(Name, "ExtProtocolBasePort"))
|
|
|
|
IptvConfig.SetExtProtocolBasePort(atoi(Value));
|
2007-09-30 23:38:31 +02:00
|
|
|
else if (!strcasecmp(Name, "SectionFiltering"))
|
|
|
|
IptvConfig.SetSectionFiltering(atoi(Value));
|
2007-10-06 02:02:50 +02:00
|
|
|
else if (!strcasecmp(Name, "DisabledFilters")) {
|
2008-01-05 00:36:37 +01:00
|
|
|
int DisabledFilters[SECTION_FILTER_TABLE_SIZE];
|
2008-01-06 21:19:02 +01:00
|
|
|
for (unsigned int i = 0; i < ARRAY_SIZE(DisabledFilters); ++i)
|
2008-01-05 00:36:37 +01:00
|
|
|
DisabledFilters[i] = -1;
|
2008-01-19 17:51:59 +01:00
|
|
|
unsigned int DisabledFiltersCount = ParseFilters(Value, DisabledFilters);
|
2008-01-06 21:19:02 +01:00
|
|
|
for (unsigned int i = 0; i < DisabledFiltersCount; ++i)
|
2007-10-06 02:02:50 +02:00
|
|
|
IptvConfig.SetDisabledFilters(i, DisabledFilters[i]);
|
|
|
|
}
|
2007-09-15 17:38:38 +02:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
return true;
|
2007-09-12 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginIptv::Service(const char *Id, void *Data)
|
|
|
|
{
|
2007-09-15 17:02:33 +02:00
|
|
|
//debug("cPluginIptv::Service()\n");
|
2007-09-12 19:28:59 +02:00
|
|
|
// Handle custom service requests from other plugins
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char **cPluginIptv::SVDRPHelpPages(void)
|
|
|
|
{
|
2007-10-09 18:37:16 +02:00
|
|
|
debug("cPluginIptv::SVDRPHelpPages()\n");
|
|
|
|
static const char *HelpPages[] = {
|
2007-10-10 00:12:17 +02:00
|
|
|
"INFO [ <page> ]\n"
|
2007-10-09 18:37:16 +02:00
|
|
|
" Print IPTV device information and statistics.\n"
|
2007-10-10 00:12:17 +02:00
|
|
|
" The output can be narrowed using optional \"page\""
|
|
|
|
" option: 1=general 2=pids 3=section filters.\n",
|
|
|
|
"MODE\n"
|
|
|
|
" Toggles between bit or byte information mode.\n",
|
2007-10-09 18:37:16 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
return HelpPages;
|
2007-09-12 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cString cPluginIptv::SVDRPCommand(const char *Command, const char *Option, int &ReplyCode)
|
|
|
|
{
|
2007-10-06 22:57:53 +02:00
|
|
|
debug("cPluginIptv::SVDRPCommand(): Command=%s Option=%s\n", Command, Option);
|
|
|
|
if (strcasecmp(Command, "INFO") == 0) {
|
|
|
|
cIptvDevice *device = cIptvDevice::GetIptvDevice(cDevice::ActualDevice()->CardIndex());
|
2007-10-10 00:12:17 +02:00
|
|
|
if (device) {
|
|
|
|
int page = IPTV_DEVICE_INFO_ALL;
|
|
|
|
if (Option) {
|
|
|
|
page = atoi(Option);
|
|
|
|
if ((page < IPTV_DEVICE_INFO_ALL) || (page > IPTV_DEVICE_INFO_FILTERS))
|
|
|
|
page = IPTV_DEVICE_INFO_ALL;
|
|
|
|
}
|
|
|
|
return device->GetInformation(page);
|
|
|
|
}
|
2007-10-06 22:57:53 +02:00
|
|
|
else {
|
|
|
|
ReplyCode = 550; // Requested action not taken
|
|
|
|
return cString("IPTV information not available!");
|
|
|
|
}
|
|
|
|
}
|
2007-10-10 00:12:17 +02:00
|
|
|
else if (strcasecmp(Command, "MODE") == 0) {
|
|
|
|
unsigned int mode = !IptvConfig.GetUseBytes();
|
|
|
|
IptvConfig.SetUseBytes(mode);
|
|
|
|
return cString::sprintf("IPTV information mode is: %s\n", mode ? "bytes" : "bits");
|
|
|
|
}
|
2007-09-12 19:28:59 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
VDRPLUGINCREATOR(cPluginIptv); // Don't touch this!
|