summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2017-03-30 15:25:20 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2017-03-30 15:25:20 +0200
commit112bfa589791ab19627a43bed989b1fa2a4667b4 (patch)
tree0750f62dbd44a21a6cd0cae56996700554e4b39e /timers.c
parentda105e3bdaca4c9edd824dbf66012ff1cc9f20cb (diff)
downloadvdr-112bfa589791ab19627a43bed989b1fa2a4667b4.tar.gz
vdr-112bfa589791ab19627a43bed989b1fa2a4667b4.tar.bz2
The functionality of HandleRemoteModifications() has been moved to timers.[ch]
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c68
1 files changed, 67 insertions, 1 deletions
diff --git a/timers.c b/timers.c
index 5bc11036..917be80c 100644
--- a/timers.c
+++ b/timers.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.c 4.7 2016/12/23 09:48:39 kls Exp $
+ * $Id: timers.c 4.8 2017/03/30 15:08:11 kls Exp $
*/
#include "timers.h"
@@ -955,6 +955,72 @@ void cTimers::TriggerRemoteTimerPoll(const char *ServerName)
}
}
+static bool RemoteTimerError(const cTimer *Timer, cString *Msg)
+{
+ if (Msg)
+ *Msg = cString::sprintf("%s %d@%s!", tr("Error while accessing remote timer"), Timer->Id(), Timer->Remote());
+ return false; // convenience return code
+}
+
+bool HandleRemoteTimerModifications(cTimer *NewTimer, cTimer *OldTimer, cString *Msg)
+{
+ cStringList Response;
+ if (!NewTimer) {
+ if (OldTimer) { // timer shall be deleted from remote machine
+ if (OldTimer->Remote() && OldTimer->Id()) {
+ if (!ExecSVDRPCommand(OldTimer->Remote(), cString::sprintf("DELT %d", OldTimer->Id()), &Response) || SVDRPCode(Response[0]) != 250)
+ return RemoteTimerError(OldTimer, Msg);
+ }
+ isyslog("deleted timer %s", *OldTimer->ToDescr());
+ }
+ }
+ else if (!OldTimer || OldTimer->Local() || !OldTimer->Id()) {
+ if (NewTimer->Local()) { // timer stays local, nothing to do
+ if (OldTimer && OldTimer->Id())
+ isyslog("modified timer %s", *NewTimer->ToDescr());
+ else
+ isyslog("added timer %s", *NewTimer->ToDescr());
+ }
+ else { // timer is new, or moved from local to remote
+ if (!ExecSVDRPCommand(NewTimer->Remote(), cString::sprintf("NEWT %s", *NewTimer->ToText(true)), &Response) || SVDRPCode(Response[0]) != 250)
+ return RemoteTimerError(NewTimer, Msg);
+ int RemoteId = atoi(SVDRPValue(Response[0]));
+ if (RemoteId <= 0)
+ return RemoteTimerError(NewTimer, Msg);
+ NewTimer->SetId(RemoteId);
+ if (OldTimer && OldTimer->Id()) {
+ isyslog("moved timer %d to %s", OldTimer->Id(), *NewTimer->ToDescr());
+ }
+ else
+ isyslog("added timer %s", *NewTimer->ToDescr());
+ }
+ }
+ else if (NewTimer->Local()) { // timer is moved from remote to local
+ if (!ExecSVDRPCommand(OldTimer->Remote(), cString::sprintf("DELT %d", OldTimer->Id()), &Response) || SVDRPCode(Response[0]) != 250)
+ return RemoteTimerError(OldTimer, Msg);
+ NewTimer->SetId(cTimers::NewTimerId());
+ NewTimer->ClrFlags(tfRecording); // in case it was recording on the remote machine
+ isyslog("moved timer %d@%s to %s", OldTimer->Id(), OldTimer->Remote(), *NewTimer->ToDescr());
+ }
+ else if (strcmp(OldTimer->Remote(), NewTimer->Remote()) == 0) { // timer stays remote on same machine
+ if (!ExecSVDRPCommand(OldTimer->Remote(), cString::sprintf("MODT %d %s", OldTimer->Id(), *NewTimer->ToText(true)), &Response) || SVDRPCode(Response[0]) != 250)
+ return RemoteTimerError(NewTimer, Msg);
+ isyslog("modified timer %s", *NewTimer->ToDescr());
+ }
+ else { // timer is moved from one remote machine to an other
+ if (!ExecSVDRPCommand(NewTimer->Remote(), cString::sprintf("NEWT %s", *NewTimer->ToText(true)), &Response) || SVDRPCode(Response[0]) != 250)
+ return RemoteTimerError(NewTimer, Msg);
+ int RemoteId = atoi(SVDRPValue(Response[0]));
+ if (RemoteId <= 0)
+ return RemoteTimerError(NewTimer, Msg);
+ NewTimer->SetId(RemoteId);
+ if (!ExecSVDRPCommand(OldTimer->Remote(), cString::sprintf("DELT %d", OldTimer->Id()), &Response) || SVDRPCode(Response[0]) != 250)
+ return RemoteTimerError(OldTimer, Msg);
+ isyslog("moved timer %d@%s to %s", OldTimer->Id(), OldTimer->Remote(), *NewTimer->ToDescr());
+ }
+ return true;
+}
+
// --- cSortedTimers ---------------------------------------------------------
static int CompareTimers(const void *a, const void *b)