mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
VDR developer version 1.7.39 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.39.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.38-1.7.39.diff MD5 checksums: 3f0681f4aa6bd8deffc8208c40d34d2d vdr-1.7.39.tar.bz2 1c13a683694c6c3c52444c1689477876 vdr-1.7.38-1.7.39.diff WARNING: ======== This is a developer version. Even though I use it in my productive environment. I strongly recommend that you only use it under controlled conditions and for testing and debugging. Approaching version 2.0.0: ========================== If all goes well, there will be just one more developer version after this one, and then it's going to be version 2.0.0. From the HISTORY file: - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Updated the Polish OSD texts (thanks to Marek Nazarko). - Modified handling user inactivity in the shutdown handler to avoid a problem in case the system time is changed after VDR has been started (thanks to Udo Richter, reported by Sören Moch). - Updated the Czech OSD texts (thanks to Ales Jurik). - Changed the template for PLGCFG to $(CONFDIR)/plugins.mk (thanks to Ville Skyttä). - Updated the Swedish OSD texts (thanks to Richard Lithvall). - Now clearing device bondings for devices that don't provide DVB-S in the Setup/LNB menu (reported by Juergen Lock). - Fixed a possible deadlock in handling the tuners of bonded devices (thanks to Juergen Lock). - Improved working around the broken driver values for SNR in case of a "TT-budget S2-3200" receiving DVB-S2. - The demos in the "osddemo" plugin can now also be ended with the "Back" key. - Fixed flashing OSD in "high level OSD" mode of the TT S2-6400 in case a menu is open while subtitles are being displayed. - Fixed stuttering or asynchronous audio after changing the audio track. This is done by doing a "jump" to the current position, which clears all buffers. However, this only works with TS recordings. With PES recordings it causes a segfault - haven't been able to figure out why. - Added a manual page for 'svdrpsend' (thanks to Tobias Grimm). - Fixed immediately disappearing subtitle track menu in "high level OSD" mode of the TT S2-6400 when selecting "No subtitles". - Updated the French OSD texts (thanks to Bernard Jaulin). - Updated the Dutch OSD texts (thanks to Carel Willemse). - Removed all "fuzzy" translations from the files ar.po, hu_HU.po and sr_SR.po, because more often than not they are just wrong. - Now calling DeviceClear() in cTransfer::Receive() if the output device blocks, instead of not retrying for 10 seconds (reported by Andreas Mair, with help from Oliver Endriss). - Updated the Spanish OSD texts (thanks to Luca Olivetti). - Updated the Hungarian language texts (thanks to István Füley). - Changed the calls to Skins.QueueMessage() in vdr.c that are related to reporting the status of the editing process back to Skins.Message() in order to have them appear immediately. - When sorting recordings by name, folders are now always at the top of the list. - Updated the Russian OSD texts (thanks to Oleg Roitburd).
270 lines
7.2 KiB
C
270 lines
7.2 KiB
C
/*
|
|
* shutdown.c: Handling of shutdown and inactivity
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* Original version written by Udo Richter <udo_richter@gmx.de>.
|
|
*
|
|
* $Id: shutdown.c 2.1 2013/02/18 10:33:26 kls Exp $
|
|
*/
|
|
|
|
#include "shutdown.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include "channels.h"
|
|
#include "config.h"
|
|
#include "cutter.h"
|
|
#include "i18n.h"
|
|
#include "interface.h"
|
|
#include "menu.h"
|
|
#include "plugin.h"
|
|
#include "timers.h"
|
|
#include "tools.h"
|
|
|
|
cShutdownHandler ShutdownHandler;
|
|
|
|
cCountdown::cCountdown(void)
|
|
{
|
|
timeout = 0;
|
|
counter = 0;
|
|
timedOut = false;
|
|
message = NULL;
|
|
}
|
|
|
|
void cCountdown::Start(const char *Message, int Seconds)
|
|
{
|
|
timeout = time(NULL) + Seconds;
|
|
counter = -1;
|
|
timedOut = false;
|
|
message = Message;
|
|
Update();
|
|
}
|
|
|
|
void cCountdown::Cancel(void)
|
|
{
|
|
if (timeout) {
|
|
timeout = 0;
|
|
timedOut = false;
|
|
Skins.Message(mtStatus, NULL);
|
|
}
|
|
}
|
|
|
|
bool cCountdown::Done(void)
|
|
{
|
|
if (timedOut) {
|
|
Cancel();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool cCountdown::Update(void)
|
|
{
|
|
if (timeout) {
|
|
int NewCounter = (timeout - time(NULL) + 9) / 10;
|
|
if (NewCounter <= 0)
|
|
timedOut = true;
|
|
if (counter != NewCounter) {
|
|
counter = NewCounter;
|
|
char time[10];
|
|
snprintf(time, sizeof(time), "%d:%d0", counter > 0 ? counter / 6 : 0, counter > 0 ? counter % 6 : 0);
|
|
cString Message = cString::sprintf(message, time);
|
|
Skins.Message(mtStatus, Message);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
cShutdownHandler::cShutdownHandler(void)
|
|
{
|
|
activeTimeout = 0;
|
|
retry = 0;
|
|
shutdownCommand = NULL;
|
|
exitCode = -1;
|
|
emergencyExitRequested = false;
|
|
}
|
|
|
|
cShutdownHandler::~cShutdownHandler()
|
|
{
|
|
free(shutdownCommand);
|
|
}
|
|
|
|
void cShutdownHandler::RequestEmergencyExit(void)
|
|
{
|
|
if (Setup.EmergencyExit) {
|
|
esyslog("initiating emergency exit");
|
|
emergencyExitRequested = true;
|
|
Exit(1);
|
|
}
|
|
else
|
|
dsyslog("emergency exit request ignored according to setup");
|
|
}
|
|
|
|
void cShutdownHandler::CheckManualStart(int ManualStart)
|
|
{
|
|
time_t Delta = Setup.NextWakeupTime ? Setup.NextWakeupTime - time(NULL) : 0;
|
|
|
|
if (!Setup.NextWakeupTime || abs(Delta) > ManualStart) {
|
|
// Apparently the user started VDR manually
|
|
dsyslog("assuming manual start of VDR");
|
|
// Set inactive after MinUserInactivity
|
|
SetUserInactiveTimeout();
|
|
}
|
|
else {
|
|
// Set inactive from now on
|
|
dsyslog("scheduled wakeup time in %ld minutes, assuming automatic start of VDR", Delta / 60);
|
|
SetUserInactiveTimeout(-3, true);
|
|
}
|
|
}
|
|
|
|
void cShutdownHandler::SetShutdownCommand(const char *ShutdownCommand)
|
|
{
|
|
free(shutdownCommand);
|
|
shutdownCommand = ShutdownCommand ? strdup(ShutdownCommand) : NULL;
|
|
}
|
|
|
|
void cShutdownHandler::CallShutdownCommand(time_t WakeupTime, int Channel, const char *File, bool UserShutdown)
|
|
{
|
|
time_t Delta = WakeupTime ? WakeupTime - time(NULL) : 0;
|
|
cString cmd = cString::sprintf("%s %ld %ld %d \"%s\" %d", shutdownCommand, WakeupTime, Delta, Channel, *strescape(File, "\\\"$"), UserShutdown);
|
|
isyslog("executing '%s'", *cmd);
|
|
int Status = SystemExec(cmd, true);
|
|
if (!WIFEXITED(Status) || WEXITSTATUS(Status))
|
|
esyslog("SystemExec() failed with status %d", Status);
|
|
else {
|
|
Setup.NextWakeupTime = WakeupTime; // Remember this wakeup time for comparison on reboot
|
|
Setup.Save();
|
|
}
|
|
}
|
|
|
|
void cShutdownHandler::SetUserInactiveTimeout(int Seconds, bool Force)
|
|
{
|
|
if (!Setup.MinUserInactivity && !Force) {
|
|
activeTimeout = 0;
|
|
return;
|
|
}
|
|
if (Seconds >= 0)
|
|
activeTimeout = time(NULL) + Seconds;
|
|
else if (Seconds == -1)
|
|
activeTimeout = time(NULL) + Setup.MinUserInactivity * 60;
|
|
else if (Seconds == -2)
|
|
activeTimeout = 0;
|
|
else if (Seconds == -3)
|
|
activeTimeout = 1;
|
|
}
|
|
|
|
bool cShutdownHandler::ConfirmShutdown(bool Interactive)
|
|
{
|
|
if (!Interactive && !cRemote::Enabled())
|
|
return false;
|
|
|
|
if (!shutdownCommand) {
|
|
if (Interactive)
|
|
Skins.Message(mtError, tr("Can't shutdown - option '-s' not given!"));
|
|
return false;
|
|
}
|
|
if (cCutter::Active()) {
|
|
if (!Interactive || !Interface->Confirm(tr("Editing - shut down anyway?")))
|
|
return false;
|
|
}
|
|
|
|
cTimer *timer = Timers.GetNextActiveTimer();
|
|
time_t Next = timer ? timer->StartTime() : 0;
|
|
time_t Delta = timer ? Next - time(NULL) : 0;
|
|
|
|
if (cRecordControls::Active() || (Next && Delta <= 0)) {
|
|
// VPS recordings in timer end margin may cause Delta <= 0
|
|
if (!Interactive || !Interface->Confirm(tr("Recording - shut down anyway?")))
|
|
return false;
|
|
}
|
|
else if (Next && Delta <= Setup.MinEventTimeout * 60) {
|
|
// Timer within Min Event Timeout
|
|
if (!Interactive)
|
|
return false;
|
|
cString buf = cString::sprintf(tr("Recording in %ld minutes, shut down anyway?"), Delta / 60);
|
|
if (!Interface->Confirm(buf))
|
|
return false;
|
|
}
|
|
|
|
if (cPluginManager::Active(Interactive ? tr("shut down anyway?") : NULL))
|
|
return false;
|
|
|
|
cPlugin *Plugin = cPluginManager::GetNextWakeupPlugin();
|
|
Next = Plugin ? Plugin->WakeupTime() : 0;
|
|
Delta = Next ? Next - time(NULL) : 0;
|
|
if (Next && Delta <= Setup.MinEventTimeout * 60) {
|
|
// Plugin wakeup within Min Event Timeout
|
|
if (!Interactive)
|
|
return false;
|
|
cString buf = cString::sprintf(tr("Plugin %s wakes up in %ld min, continue?"), Plugin->Name(), Delta / 60);
|
|
if (!Interface->Confirm(buf))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool cShutdownHandler::ConfirmRestart(bool Interactive)
|
|
{
|
|
if (cCutter::Active()) {
|
|
if (!Interactive || !Interface->Confirm(tr("Editing - restart anyway?")))
|
|
return false;
|
|
}
|
|
|
|
cTimer *timer = Timers.GetNextActiveTimer();
|
|
time_t Next = timer ? timer->StartTime() : 0;
|
|
time_t Delta = timer ? Next - time(NULL) : 0;
|
|
|
|
if (cRecordControls::Active() || (Next && Delta <= 0)) {
|
|
// VPS recordings in timer end margin may cause Delta <= 0
|
|
if (!Interactive || !Interface->Confirm(tr("Recording - restart anyway?")))
|
|
return false;
|
|
}
|
|
|
|
if (cPluginManager::Active(Interactive ? tr("restart anyway?") : NULL))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool cShutdownHandler::DoShutdown(bool Force)
|
|
{
|
|
time_t Now = time(NULL);
|
|
cTimer *timer = Timers.GetNextActiveTimer();
|
|
cPlugin *Plugin = cPluginManager::GetNextWakeupPlugin();
|
|
|
|
time_t Next = timer ? timer->StartTime() : 0;
|
|
time_t NextPlugin = Plugin ? Plugin->WakeupTime() : 0;
|
|
if (NextPlugin && (!Next || Next > NextPlugin)) {
|
|
Next = NextPlugin;
|
|
timer = NULL;
|
|
}
|
|
time_t Delta = Next ? Next - Now : 0;
|
|
|
|
if (Next && Delta < Setup.MinEventTimeout * 60) {
|
|
if (!Force)
|
|
return false;
|
|
Delta = Setup.MinEventTimeout * 60;
|
|
Next = Now + Delta;
|
|
timer = NULL;
|
|
dsyslog("reboot at %s", *TimeToString(Next));
|
|
}
|
|
|
|
if (Next && timer) {
|
|
dsyslog("next timer event at %s", *TimeToString(Next));
|
|
CallShutdownCommand(Next, timer->Channel()->Number(), timer->File(), Force);
|
|
}
|
|
else if (Next && Plugin) {
|
|
CallShutdownCommand(Next, 0, Plugin->Name(), Force);
|
|
dsyslog("next plugin wakeup at %s", *TimeToString(Next));
|
|
}
|
|
else
|
|
CallShutdownCommand(Next, 0, "", Force); // Next should always be 0 here. Just for safety, pass it.
|
|
|
|
return true;
|
|
}
|