vdr/vdr.c

448 lines
16 KiB
C
Raw Normal View History

2000-02-19 13:36:48 +01:00
/*
2000-04-24 09:46:05 +02:00
* vdr.c: Video Disk Recorder main program
2000-02-19 13:36:48 +01:00
*
* Copyright (C) 2000 Klaus Schmidinger
2001-08-03 14:18:08 +02:00
*
2000-02-19 13:36:48 +01:00
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
2001-08-03 14:18:08 +02:00
*
2000-02-19 13:36:48 +01:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2001-08-03 14:18:08 +02:00
*
2000-02-19 13:36:48 +01:00
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* Or, point your browser to http://www.gnu.org/copyleft/gpl.html
2001-08-03 14:18:08 +02:00
*
2000-02-19 13:36:48 +01:00
* The author can be reached at kls@cadsoft.de
*
* The project's page is at http://www.cadsoft.de/people/kls/vdr
*
2001-08-06 16:19:20 +02:00
* $Id: vdr.c 1.61 2001/08/05 16:15:51 kls Exp $
2000-02-19 13:36:48 +01:00
*/
2000-07-23 15:01:31 +02:00
#include <getopt.h>
#include <signal.h>
2000-07-23 15:01:31 +02:00
#include <stdlib.h>
2000-07-23 15:36:43 +02:00
#include <unistd.h>
2000-02-19 13:36:48 +01:00
#include "config.h"
2000-05-01 16:29:46 +02:00
#include "dvbapi.h"
2001-08-06 16:19:20 +02:00
#ifdef DVDSUPPORT
2001-08-03 14:18:08 +02:00
#include "dvd.h"
2001-08-06 16:19:20 +02:00
#endif //DVDSUPPORT
2000-11-11 10:39:27 +01:00
#include "i18n.h"
2000-02-19 13:36:48 +01:00
#include "interface.h"
#include "menu.h"
#include "recording.h"
2000-02-19 13:36:48 +01:00
#include "tools.h"
#include "videodir.h"
2000-02-19 13:36:48 +01:00
2000-07-15 12:39:20 +02:00
#ifdef REMOTE_KBD
2000-02-19 13:36:48 +01:00
#define KEYS_CONF "keys-pc.conf"
#else
#define KEYS_CONF "keys.conf"
#endif
2001-02-11 14:53:44 +01:00
#define ACTIVITYTIMEOUT 60 // seconds before starting housekeeping
static int Interrupted = 0;
static void SignalHandler(int signum)
{
if (signum != SIGPIPE)
Interrupted = signum;
signal(signum, SignalHandler);
}
2001-02-24 16:18:43 +01:00
static void Watchdog(int signum)
{
// Something terrible must have happened that prevented the 'alarm()' from
// being called in time, so let's get out of here:
esyslog(LOG_ERR, "PANIC: watchdog timer expired - exiting!");
exit(1);
}
2000-02-19 13:36:48 +01:00
int main(int argc, char *argv[])
{
2000-07-23 15:01:31 +02:00
// Command line options:
#define DEFAULTSVDRPPORT 2001
2001-02-24 16:18:43 +01:00
#define DEFAULTWATCHDOG 0 // seconds
2000-07-23 15:01:31 +02:00
int SVDRPport = DEFAULTSVDRPPORT;
const char *ConfigDirectory = NULL;
2000-07-23 15:36:43 +02:00
bool DaemonMode = false;
2001-02-24 16:18:43 +01:00
int WatchdogTimeout = DEFAULTWATCHDOG;
2001-03-31 10:32:58 +02:00
char *Terminal = NULL;
2000-07-23 15:01:31 +02:00
static struct option long_options[] = {
2001-06-24 17:42:19 +02:00
{ "audio", required_argument, NULL, 'a' },
2001-02-24 16:18:43 +01:00
{ "config", required_argument, NULL, 'c' },
{ "daemon", no_argument, NULL, 'd' },
{ "device", required_argument, NULL, 'D' },
{ "help", no_argument, NULL, 'h' },
{ "log", required_argument, NULL, 'l' },
{ "port", required_argument, NULL, 'p' },
{ "video", required_argument, NULL, 'v' },
2001-08-03 14:18:08 +02:00
{ "dvd", required_argument, NULL, 'V' },
2001-02-24 16:18:43 +01:00
{ "watchdog", required_argument, NULL, 'w' },
2001-03-31 10:32:58 +02:00
{ "terminal", required_argument, NULL, 't' },
2000-07-23 15:01:31 +02:00
{ 0 }
};
2001-08-03 14:18:08 +02:00
2000-07-23 15:01:31 +02:00
int c;
int option_index = 0;
2001-08-03 14:18:08 +02:00
while ((c = getopt_long(argc, argv, "a:c:dD:hl:p:v:V:w:t:", long_options, &option_index)) != -1) {
2000-07-23 15:01:31 +02:00
switch (c) {
2001-06-24 17:42:19 +02:00
case 'a': cDvbApi::SetAudioCommand(optarg);
break;
case 'c': ConfigDirectory = optarg;
break;
2000-07-23 15:36:43 +02:00
case 'd': DaemonMode = true; break;
2001-02-02 15:49:46 +01:00
case 'D': if (isnumber(optarg)) {
int n = atoi(optarg);
if (0 <= n && n < MAXDVBAPI) {
cDvbApi::SetUseDvbApi(n);
break;
}
}
fprintf(stderr, "vdr: invalid DVB device number: %s\n", optarg);
2001-04-01 11:18:28 +02:00
return 2;
2001-02-02 15:49:46 +01:00
break;
case 'h': printf("Usage: vdr [OPTION]\n\n" // for easier orientation, this is column 80|
2001-06-24 17:42:19 +02:00
" -a CMD, --audio=CMD send Dolby Digital audio to stdin of command CMD\n"
2001-02-24 16:18:43 +01:00
" -c DIR, --config=DIR read config files from DIR (default is to read them\n"
" from the video directory)\n"
" -h, --help display this help and exit\n"
" -d, --daemon run in daemon mode\n"
" -D NUM, --device=NUM use only the given DVB device (NUM = 0, 1, 2...)\n"
" there may be several -D options (default: all DVB\n"
" devices will be used)\n"
" -l LEVEL, --log=LEVEL set log level (default: 3)\n"
" 0 = no logging, 1 = errors only,\n"
" 2 = errors and info, 3 = errors, info and debug\n"
" -p PORT, --port=PORT use PORT for SVDRP (default: %d)\n"
" 0 turns off SVDRP\n"
2001-03-31 10:32:58 +02:00
" -v DIR, --video=DIR use DIR as video directory (default: %s)\n"
2001-08-03 14:18:08 +02:00
" -V DEV, --dvd=DEV use DEV as the DVD device (default: %s)\n"
2001-02-24 16:18:43 +01:00
" -w SEC, --watchdog=SEC activate the watchdog timer with a timeout of SEC\n"
" seconds (default: %d); '0' disables the watchdog\n"
2001-03-31 10:32:58 +02:00
" -t TTY, --terminal=TTY controlling tty\n"
2000-07-23 15:01:31 +02:00
"\n"
2000-07-28 13:44:31 +02:00
"Report bugs to <vdr-bugs@cadsoft.de>\n",
DEFAULTSVDRPPORT,
2001-02-24 16:18:43 +01:00
VideoDirectory,
2001-08-06 16:19:20 +02:00
#ifdef DVDSUPPORT
2001-08-03 14:18:08 +02:00
cDVD::DeviceName(),
2001-08-06 16:19:20 +02:00
#else
"no DVD support",
#endif //DVDSUPPORT
2001-02-24 16:18:43 +01:00
DEFAULTWATCHDOG
2000-07-23 15:01:31 +02:00
);
return 0;
break;
case 'l': if (isnumber(optarg)) {
int l = atoi(optarg);
if (0 <= l && l <= 3) {
SysLogLevel = l;
break;
}
}
fprintf(stderr, "vdr: invalid log level: %s\n", optarg);
2001-04-01 11:18:28 +02:00
return 2;
break;
2000-07-23 15:01:31 +02:00
case 'p': if (isnumber(optarg))
SVDRPport = atoi(optarg);
2000-07-23 15:01:31 +02:00
else {
fprintf(stderr, "vdr: invalid port number: %s\n", optarg);
2001-04-01 11:18:28 +02:00
return 2;
2000-07-23 15:01:31 +02:00
}
break;
2001-03-31 10:32:58 +02:00
case 't': Terminal = optarg;
break;
2000-07-28 13:44:31 +02:00
case 'v': VideoDirectory = optarg;
while (optarg && *optarg && optarg[strlen(optarg) - 1] == '/')
optarg[strlen(optarg) - 1] = 0;
2000-07-28 13:44:31 +02:00
break;
2001-08-06 16:19:20 +02:00
case 'V':
#ifdef DVDSUPPORT
cDVD::SetDeviceName(optarg);
2001-08-05 15:11:35 +02:00
if (!cDVD::DriveExists()) {
fprintf(stderr, "vdr: DVD drive not found: %s\n", optarg);
return 2;
}
2001-08-06 16:19:20 +02:00
#else
fprintf(stderr, "vdr: DVD support has not been compiled in!");
return 2;
#endif //DVDSUPPORT
2001-08-03 14:18:08 +02:00
break;
2001-02-24 16:18:43 +01:00
case 'w': if (isnumber(optarg)) {
int t = atoi(optarg);
if (t >= 0) {
WatchdogTimeout = t;
break;
}
}
fprintf(stderr, "vdr: invalid watchdog timeout: %s\n", optarg);
2001-04-01 11:18:28 +02:00
return 2;
2001-02-24 16:18:43 +01:00
break;
2001-04-01 11:18:28 +02:00
default: return 2;
2000-07-23 15:01:31 +02:00
}
}
// Log file:
2001-08-03 14:18:08 +02:00
if (SysLogLevel > 0)
openlog("vdr", LOG_PID | LOG_CONS, LOG_USER);
2000-07-23 15:36:43 +02:00
2000-07-28 13:44:31 +02:00
// Check the video directory:
if (!DirectoryOk(VideoDirectory, true)) {
2000-07-28 13:44:31 +02:00
fprintf(stderr, "vdr: can't access video directory %s\n", VideoDirectory);
2001-04-01 11:18:28 +02:00
return 2;
2000-07-28 13:44:31 +02:00
}
2000-07-23 15:36:43 +02:00
// Daemon mode:
if (DaemonMode) {
2000-09-20 16:49:49 +02:00
#if !defined(DEBUG_OSD) && !defined(REMOTE_KBD)
2000-07-23 15:36:43 +02:00
pid_t pid = fork();
if (pid < 0) {
2000-12-08 16:23:32 +01:00
fprintf(stderr, "%m\n");
esyslog(LOG_ERR, "ERROR: %m");
2001-04-01 11:18:28 +02:00
return 2;
2000-07-23 15:36:43 +02:00
}
if (pid != 0)
return 0; // initial program immediately returns
fclose(stdin);
fclose(stdout);
fclose(stderr);
#else
2000-09-20 16:49:49 +02:00
fprintf(stderr, "vdr: can't run in daemon mode with DEBUG_OSD or REMOTE_KBD on!\n");
2001-04-01 11:18:28 +02:00
return 2;
2000-07-23 15:36:43 +02:00
#endif
}
2001-03-31 10:32:58 +02:00
else if (Terminal) {
// Claim new controlling terminal
stdin = freopen(Terminal, "r", stdin);
stdout = freopen(Terminal, "w", stdout);
stderr = freopen(Terminal, "w", stderr);
}
2000-07-29 18:19:49 +02:00
isyslog(LOG_INFO, "VDR version %s started", VDRVERSION);
2000-02-19 13:36:48 +01:00
2000-07-23 15:01:31 +02:00
// Configuration data:
if (!ConfigDirectory)
ConfigDirectory = VideoDirectory;
Setup.Load(AddDirectory(ConfigDirectory, "setup.conf"));
Channels.Load(AddDirectory(ConfigDirectory, "channels.conf"));
Timers.Load(AddDirectory(ConfigDirectory, "timers.conf"));
2000-11-11 16:38:41 +01:00
Commands.Load(AddDirectory(ConfigDirectory, "commands.conf"));
2001-02-04 19:41:24 +01:00
#if defined(REMOTE_LIRC)
2000-07-15 16:35:18 +02:00
Keys.SetDummyValues();
2001-02-04 19:41:24 +01:00
#elif !defined(REMOTE_NONE)
2000-10-29 14:00:00 +01:00
bool KeysLoaded = Keys.Load(AddDirectory(ConfigDirectory, KEYS_CONF));
2000-07-15 12:39:20 +02:00
#endif
2000-02-19 13:36:48 +01:00
// DVB interfaces:
if (!cDvbApi::Init())
2001-04-01 11:18:28 +02:00
return 2;
2000-09-10 10:51:58 +02:00
cDvbApi::SetPrimaryDvbApi(Setup.PrimaryDVB);
Channels.SwitchTo(Setup.CurrentChannel);
2000-02-19 13:36:48 +01:00
cEITScanner EITScanner;
2000-10-29 14:00:00 +01:00
// User interface:
Interface = new cInterface(SVDRPport);
2001-02-04 19:41:24 +01:00
#if !defined(REMOTE_LIRC) && !defined(REMOTE_NONE)
2000-10-29 14:00:00 +01:00
if (!KeysLoaded)
Interface->LearnKeys();
#endif
2000-07-23 15:01:31 +02:00
// Signal handlers:
if (signal(SIGHUP, SignalHandler) == SIG_IGN) signal(SIGHUP, SIG_IGN);
if (signal(SIGINT, SignalHandler) == SIG_IGN) signal(SIGINT, SIG_IGN);
if (signal(SIGTERM, SignalHandler) == SIG_IGN) signal(SIGTERM, SIG_IGN);
if (signal(SIGPIPE, SignalHandler) == SIG_IGN) signal(SIGPIPE, SIG_IGN);
2001-02-24 16:18:43 +01:00
if (WatchdogTimeout > 0)
if (signal(SIGALRM, Watchdog) == SIG_IGN) signal(SIGALRM, SIG_IGN);
2000-07-23 15:01:31 +02:00
// Main program loop:
cOsdBase *Menu = NULL;
cReplayControl *ReplayControl = NULL;
2000-04-22 13:51:48 +02:00
int LastChannel = -1;
2000-11-05 18:39:17 +01:00
int PreviousChannel = cDvbApi::CurrentChannel();
2001-02-11 14:53:44 +01:00
time_t LastActivity = time(NULL);
2001-02-24 16:18:43 +01:00
int MaxLatencyTime = 0;
if (WatchdogTimeout > 0) {
dsyslog(LOG_INFO, "setting watchdog timer to %d seconds", WatchdogTimeout);
alarm(WatchdogTimeout); // Initial watchdog timer start
}
2000-02-19 13:36:48 +01:00
while (!Interrupted) {
// Handle emergency exits:
if (cThread::EmergencyExit()) {
esyslog(LOG_ERR, "emergency exit requested - shutting down");
break;
}
2001-02-24 16:18:43 +01:00
// Restart the Watchdog timer:
if (WatchdogTimeout > 0) {
int LatencyTime = WatchdogTimeout - alarm(WatchdogTimeout);
if (LatencyTime > MaxLatencyTime) {
MaxLatencyTime = LatencyTime;
dsyslog(LOG_INFO, "max. latency time %d seconds", MaxLatencyTime);
}
}
2000-04-22 13:51:48 +02:00
// Channel display:
if (!EITScanner.Active() && cDvbApi::CurrentChannel() != LastChannel) {
2000-09-09 14:57:43 +02:00
if (!Menu)
2000-11-05 18:39:17 +01:00
Menu = new cDisplayChannel(cDvbApi::CurrentChannel(), LastChannel > 0);
PreviousChannel = LastChannel;
2000-11-05 18:39:17 +01:00
LastChannel = cDvbApi::CurrentChannel();
2000-04-22 13:51:48 +02:00
}
2000-05-01 16:29:46 +02:00
// Timers and Recordings:
if (!Menu) {
2000-04-30 10:22:13 +02:00
cTimer *Timer = cTimer::GetMatch();
if (Timer) {
2000-05-01 16:29:46 +02:00
if (!cRecordControls::Start(Timer)) {
//TODO need to do something to prevent the timer from hitting over and over again...
}
}
2000-05-01 16:29:46 +02:00
cRecordControls::Process();
}
// User Input:
cOsdBase **Interact = Menu ? &Menu : (cOsdBase **)&ReplayControl;
eKeys key = Interface->GetKey(!*Interact || !(*Interact)->NeedsFastResponse());
if (NORMALKEY(key) != kNone)
EITScanner.Activity();
if (*Interact) {
switch ((*Interact)->ProcessKey(key)) {
case osMenu: DELETENULL(Menu);
2000-05-01 16:29:46 +02:00
Menu = new cMenuMain(ReplayControl);
break;
2000-05-27 16:10:47 +02:00
case osRecord: DELETENULL(Menu);
if (!cRecordControls::Start())
2000-11-11 10:39:27 +01:00
Interface->Error(tr("No free DVB device to record!"));
2000-05-27 16:10:47 +02:00
break;
case osRecordings:
DELETENULL(Menu);
DELETENULL(ReplayControl);
Menu = new cMenuRecordings;
break;
case osReplay: DELETENULL(Menu);
DELETENULL(ReplayControl);
ReplayControl = new cReplayControl;
break;
2001-08-06 16:19:20 +02:00
#ifdef DVDSUPPORT
2001-08-03 14:18:08 +02:00
case osDVD: DELETENULL(Menu);
DELETENULL(ReplayControl);
Menu = new cMenuDVD;
break;
2001-08-06 16:19:20 +02:00
#endif //DVDSUPPORT
2000-05-01 16:29:46 +02:00
case osStopReplay:
DELETENULL(*Interact);
DELETENULL(ReplayControl);
break;
2000-09-10 10:51:58 +02:00
case osSwitchDvb:
DELETENULL(*Interact);
2000-11-11 10:39:27 +01:00
Interface->Info(tr("Switching primary DVB..."));
2000-09-10 10:51:58 +02:00
cDvbApi::SetPrimaryDvbApi(Setup.PrimaryDVB);
break;
case osBack:
case osEnd: DELETENULL(*Interact);
break;
default: ;
}
2000-02-19 13:36:48 +01:00
}
else {
switch (key) {
// Toggle channels:
case k0:
2000-11-05 18:39:17 +01:00
if (PreviousChannel != cDvbApi::CurrentChannel())
Channels.SwitchTo(PreviousChannel);
break;
// Direct Channel Select:
case k1 ... k9:
if (!Interface->Recording())
Menu = new cDisplayChannel(key);
break;
2000-09-09 14:57:43 +02:00
// Left/Right rotates trough channel groups:
case kLeft|k_Repeat:
2000-09-09 14:57:43 +02:00
case kLeft:
case kRight|k_Repeat:
case kRight: if (!Interface->Recording()) {
2000-09-09 14:57:43 +02:00
int SaveGroup = CurrentGroup;
if (NORMALKEY(key) == kRight)
2001-08-03 14:18:08 +02:00
CurrentGroup = Channels.GetNextGroup(CurrentGroup) ;
2000-09-09 14:57:43 +02:00
else
CurrentGroup = Channels.GetPrevGroup(CurrentGroup < 1 ? 1 : CurrentGroup);
if (CurrentGroup < 0)
CurrentGroup = SaveGroup;
Menu = new cDisplayChannel(CurrentGroup, false, true);
2000-09-09 14:57:43 +02:00
}
break;
2000-04-22 13:51:48 +02:00
// Up/Down Channel Select:
case kUp|k_Repeat:
case kUp:
case kDown|k_Repeat:
case kDown: if (!Interface->Recording()) {
2000-11-05 18:39:17 +01:00
int n = cDvbApi::CurrentChannel() + (NORMALKEY(key) == kUp ? 1 : -1);
2000-09-09 14:57:43 +02:00
cChannel *channel = Channels.GetByNumber(n);
if (channel)
channel->Switch();
}
break;
2000-05-01 16:29:46 +02:00
// Menu Control:
case kMenu: Menu = new cMenuMain(ReplayControl); break;
2000-04-22 13:51:48 +02:00
// Viewing Control:
case kOk: LastChannel = -1; break; // forces channel display
default: break;
}
2000-02-19 13:36:48 +01:00
}
2000-12-28 12:57:16 +01:00
if (!Menu) {
EITScanner.Process();
2000-12-28 12:57:16 +01:00
cVideoCutter::Active();
}
2001-02-11 14:53:44 +01:00
if (!*Interact && !cRecordControls::Active()) {
if (time(NULL) - LastActivity > ACTIVITYTIMEOUT) {
RemoveDeletedRecordings();
LastActivity = time(NULL);
}
}
else
LastActivity = time(NULL);
}
if (Interrupted)
isyslog(LOG_INFO, "caught signal %d", Interrupted);
Setup.CurrentChannel = cDvbApi::CurrentChannel();
Setup.Save();
2000-12-28 12:57:16 +01:00
cVideoCutter::Stop();
2000-04-30 10:22:13 +02:00
delete Menu;
delete ReplayControl;
delete Interface;
2000-05-01 16:29:46 +02:00
cDvbApi::Cleanup();
2001-02-24 16:18:43 +01:00
if (WatchdogTimeout > 0)
dsyslog(LOG_INFO, "max. latency time %d seconds", MaxLatencyTime);
2000-04-16 13:54:16 +02:00
isyslog(LOG_INFO, "exiting");
if (SysLogLevel > 0)
closelog();
if (cThread::EmergencyExit()) {
esyslog(LOG_ERR, "emergency exit!");
return 1;
}
return 0;
2000-02-19 13:36:48 +01:00
}