diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-26 14:38:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-26 14:38:46 +0200 |
commit | 5f7e788ae8bf187760bbc122bac1221d7e62af6a (patch) | |
tree | 9596771729425accb3314ecf424e2feec1865597 | |
parent | e789efcb963aa1db9517dbe4c3652b5186e530ce (diff) | |
download | vdr-5f7e788ae8bf187760bbc122bac1221d7e62af6a.tar.gz vdr-5f7e788ae8bf187760bbc122bac1221d7e62af6a.tar.bz2 |
Improved deleting expired single shot timers1.3.45
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | timers.c | 15 | ||||
-rw-r--r-- | timers.h | 3 |
3 files changed, 18 insertions, 3 deletions
@@ -4452,3 +4452,6 @@ Video Disk Recorder Revision History - The 'running status' of EPG events is now only set to SI::RunningStatusNotRunning for events before the present event. - Fixed some #include sequences. +- Single shot VPS timers are now only considered 'expired' if their associated + EPG event has been explicitly set to SI::RunningStatusNotRunning. +- The check for timers to be deleted is now done only every 30 seconds. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.c 1.54 2006/03/25 12:43:59 kls Exp $ + * $Id: timers.c 1.55 2006/03/26 14:38:46 kls Exp $ */ #include "timers.h" @@ -12,6 +12,7 @@ #include "channels.h" #include "device.h" #include "i18n.h" +#include "libsi/si.h" #include "remote.h" // IMPORTANT NOTE: in the 'sscanf()' calls there is a blank after the '%d' @@ -409,7 +410,13 @@ int cTimer::Matches(const cEvent *Event, int *Overlap) const bool cTimer::Expired(void) const { - return IsSingleEvent() && !Recording() && StopTime() + EXPIRELATENCY <= time(NULL); + if (IsSingleEvent() && !Recording() && StopTime() + EXPIRELATENCY <= time(NULL)) { + if (HasFlags(tfVps) && event && event->Vps()) + return event->RunningStatus() == SI::RunningStatusNotRunning; + else + return true; + } + return false; } time_t cTimer::StartTime(void) const @@ -578,6 +585,7 @@ cTimers::cTimers(void) state = 0; beingEdited = 0;; lastSetEvents = 0; + lastDeleteExpired = 0; } cTimer *cTimers::GetTimer(cTimer *Timer) @@ -673,6 +681,8 @@ void cTimers::SetEvents(void) void cTimers::DeleteExpired(void) { + if (time(NULL) - lastDeleteExpired < 30) + return; cTimer *ti = First(); while (ti) { cTimer *next = Next(ti); @@ -683,4 +693,5 @@ void cTimers::DeleteExpired(void) } ti = next; } + lastDeleteExpired = time(NULL); } @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 1.26 2006/02/25 15:05:09 kls Exp $ + * $Id: timers.h 1.27 2006/03/26 14:38:46 kls Exp $ */ #ifndef __TIMERS_H @@ -101,6 +101,7 @@ private: int state; int beingEdited; time_t lastSetEvents; + time_t lastDeleteExpired; public: cTimers(void); cTimer *GetTimer(cTimer *Timer); |