2004-12-30 23:43:55 +01:00
|
|
|
/*
|
|
|
|
* streamdev.c: A plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
2008-04-29 09:00:57 +02:00
|
|
|
* $Id: streamdev-server.c,v 1.7.2.1 2008/04/29 07:00:57 schmirl Exp $
|
2004-12-30 23:43:55 +01:00
|
|
|
*/
|
|
|
|
|
2007-02-19 13:08:16 +01:00
|
|
|
#include <getopt.h>
|
2004-12-30 23:43:55 +01:00
|
|
|
#include "streamdev-server.h"
|
|
|
|
#include "server/setup.h"
|
|
|
|
#include "server/server.h"
|
|
|
|
#include "server/suspend.h"
|
2007-02-19 13:08:16 +01:00
|
|
|
#include "remux/extern.h"
|
2004-12-30 23:43:55 +01:00
|
|
|
#include "i18n.h"
|
|
|
|
|
2008-04-07 16:27:27 +02:00
|
|
|
#if VDRVERSNUM < 10400
|
|
|
|
#error "VDR-1.4.0 or greater is required"
|
|
|
|
#endif
|
|
|
|
|
2004-12-30 23:43:55 +01:00
|
|
|
const char *cPluginStreamdevServer::DESCRIPTION = "VDR Streaming Server";
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
cPluginStreamdevServer::cPluginStreamdevServer(void)
|
|
|
|
{
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
cPluginStreamdevServer::~cPluginStreamdevServer()
|
|
|
|
{
|
2008-04-29 09:00:57 +02:00
|
|
|
free(opt_remux);
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
const char *cPluginStreamdevServer::Description(void)
|
|
|
|
{
|
2004-12-30 23:43:55 +01:00
|
|
|
return tr(DESCRIPTION);
|
|
|
|
}
|
|
|
|
|
2007-02-19 13:08:16 +01:00
|
|
|
const char *cPluginStreamdevServer::CommandLineHelp(void)
|
|
|
|
{
|
|
|
|
// return a string that describes all known command line options.
|
|
|
|
return " -r <CMD>, --remux=<CMD> Define an external command for remuxing.\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginStreamdevServer::ProcessArgs(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// implement command line argument processing here if applicable.
|
|
|
|
static const struct option long_options[] = {
|
|
|
|
{ "remux", required_argument, NULL, 'r' },
|
|
|
|
{ NULL, 0, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
int c;
|
|
|
|
while((c = getopt_long(argc, argv, "r:", long_options, NULL)) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'r':
|
2008-04-29 09:00:57 +02:00
|
|
|
if (opt_remux)
|
|
|
|
free(opt_remux);
|
|
|
|
opt_remux = strdup(optarg);
|
2007-02-19 13:08:16 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
bool cPluginStreamdevServer::Start(void)
|
|
|
|
{
|
2004-12-30 23:43:55 +01:00
|
|
|
i18n_name = Name();
|
|
|
|
RegisterI18n(Phrases);
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
if (!StreamdevHosts.Load(STREAMDEVHOSTSPATH, true, true)) {
|
|
|
|
esyslog("streamdev-server: error while loading %s", STREAMDEVHOSTSPATH);
|
2007-04-16 13:01:02 +02:00
|
|
|
fprintf(stderr, "streamdev-server: error while loading %s\n", STREAMDEVHOSTSPATH);
|
2005-05-09 22:22:29 +02:00
|
|
|
if (access(STREAMDEVHOSTSPATH, F_OK) != 0) {
|
2004-12-30 23:43:55 +01:00
|
|
|
fprintf(stderr, " Please install streamdevhosts.conf into the path "
|
|
|
|
"printed above. Without it\n"
|
2005-05-09 22:22:29 +02:00
|
|
|
" no client will be able to access your streaming-"
|
|
|
|
"server. An example can be\n"
|
|
|
|
" found together with this plugin's sources.\n");
|
|
|
|
}
|
2004-12-30 23:43:55 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-04-29 09:00:57 +02:00
|
|
|
if (!opt_remux)
|
|
|
|
opt_remux = strdup(DEFAULT_EXTERNREMUX);
|
2004-12-30 23:43:55 +01:00
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
cStreamdevServer::Initialize();
|
2004-12-30 23:43:55 +01:00
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
return true;
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
void cPluginStreamdevServer::Stop(void)
|
|
|
|
{
|
|
|
|
cStreamdevServer::Destruct();
|
|
|
|
}
|
|
|
|
|
2006-07-05 22:36:58 +02:00
|
|
|
cString cPluginStreamdevServer::Active(void)
|
2005-05-09 22:22:29 +02:00
|
|
|
{
|
2006-07-05 22:36:58 +02:00
|
|
|
if (cStreamdevServer::Active())
|
|
|
|
{
|
2006-11-24 12:45:36 +01:00
|
|
|
static const char *Message = NULL;
|
|
|
|
if (!Message) Message = tr("Streaming active");
|
|
|
|
return Message;
|
2006-07-05 22:36:58 +02:00
|
|
|
}
|
|
|
|
return NULL;
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
const char *cPluginStreamdevServer::MainMenuEntry(void)
|
|
|
|
{
|
2004-12-30 23:43:55 +01:00
|
|
|
if (StreamdevServerSetup.SuspendMode == smOffer && !cSuspendCtl::IsActive())
|
|
|
|
return tr("Suspend Live TV");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
cOsdObject *cPluginStreamdevServer::MainMenuAction(void)
|
|
|
|
{
|
2004-12-30 23:43:55 +01:00
|
|
|
cControl::Launch(new cSuspendCtl);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
cMenuSetupPage *cPluginStreamdevServer::SetupMenu(void)
|
|
|
|
{
|
|
|
|
return new cStreamdevServerMenuSetupPage;
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
bool cPluginStreamdevServer::SetupParse(const char *Name, const char *Value)
|
|
|
|
{
|
|
|
|
return StreamdevServerSetup.SetupParse(Name, Value);
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
VDRPLUGINCREATOR(cPluginStreamdevServer); // Don't touch this!
|