summaryrefslogtreecommitdiff
path: root/lib/epgservice.h
blob: a63ed569407965a74bbf8df816de973a1aff4e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/*
 * epgservice.h
 *
 * See the README file for copyright information and how to reach the author.
 *
 */

#ifndef __EPGSERVICE_H
#define __EPGSERVICE_H

#include <list>

#include "common.h"

#define EPG_PLUGIN_SEM_KEY 0x3db00001

//***************************************************************************
// Globals
//***************************************************************************

typedef unsigned long long tEventId;

enum EpgServiceMisc
{
   sizeMaxParameterValue = 150   // should match the field size in parameters table
};

enum FieldFilter
{
   ffAll         = 0xFFFF,
   ffEpgd        = 1,
   ffEpgHttpd    = 2,
   ffEpg2Vdr     = 4,
   ffScraper2Vdr = 8,

   ffCount = 5
};

struct FieldFilterDef
{
   int filter;
   const char* name;
};

const char* toName(FieldFilter f);
int toFieldFilter(const char* name);

enum SearchFields
{
   sfNone               = 0,  // off
   sfTitle              = 1,
   sfFolge              = 2,
   sfDescription        = 4
};

enum SearchMode
{
   smExact = 1,
   smRegexp,
   smLike,
   smContained
};

enum TimerNamingMode
{
   tnmDefault   = 0,     // naming would done by VDR

   // naming of following modes handled by recording.py an can 'configured' there

   tnmAuto        = 1,   // autodetect if 'constabel', 'serie' or 'normal movie'
   tnmConstabel   = 2,   // naming in constabel series style with season, number, ..
   tnmSerie       = 3,   // series style, like Title/Subtitle
   tnmCategorized = 4,   // sorted in sub folders which are auto-named by category
   tnmUser        = 5,   // user defined mode 'to be implemented in recording.py'
   tnmTemplate    = 6    // Templating mode

};

enum RecordingState
{
   rsFinished  = 'F',
   rsRecording = 'R',
   rsDeleted   = 'D'
};

enum TimerState
{
   tsUnknown  = 'U',
   tsPending  = 'P',
   tsRunning  = 'R',    // timer is recording
   tsFinished = 'F',
   tsDeleted  = 'D',
   tsError    = 'E',
   tsIgnore   = '-'     // ignore in timer menu -> already tooked 'any-VDR' timer
};

const char* toName(TimerState s);

enum TimerAction
{
   taCreate   = 'C',
   taModify   = 'M',
   taAdjust   = 'J',
   taDelete   = 'D',
   taAssumed  = 'A',
   taFailed   = 'F',
   taReject   = 'T'
};

enum TimerType
{
   ttRecord = 'R',   // Aufnahme-Timer
   ttView   = 'V',   // Umschalt-Timer
   ttSearch = 'S'    // Such-Timer
};

const char* toName(TimerAction a, int nice = no);

enum TimerDoneState
{
   tdsTimerRequested     = 'Q',  // timer already requested by epgd/webif
   tdsTimerCreated       = 'C',  // timer created by VDR
   tdsTimerCreateFailed  = 'f',  // create/delete of timer failed by VDR

   tdsRecordingDone      = 'R',  // Recording finished successfull
   tdsRecordingFailed    = 'F',  // Recording failed

   tdsTimerDeleted       = 'D',  // timer deleted by user
   tdsTimerRejected      = 'J'   // timer rejected due to user action or timer conflict, ...
};

enum UserMask
{
   umNone            = 0x0,

   umNologin         = 0x1,   // the right without a session

   umConfig          = 0x2,
   umConfigEdit      = 0x4,
   umConfigUsers     = 0x8,

   umFree1           = 0x10,
   umFree2           = 0x20,

   umTimer           = 0x40,
   umTimerEdit       = 0x80,
   umSearchTimer     = 0x100,
   umSearchTimerEdit = 0x200,

   umFree3           = 0x400,
   umFree4           = 0x800,

   umFsk             = 0x1000,

   umFree5           = 0x2000,
   umFree6           = 0x4000,

   umRecordings      = 0x8000,
   umRecordingsEdit  = 0x10000,

   umAll             = 0xFFFFFFFF & ~umNologin
};

int hasUserMask(unsigned int rights, UserMask mask);

//***************************************************************************
// cEpgdState
//***************************************************************************

class cEpgdState
{
   public:

      enum State
      {
         esUnknown = na,

         esInit,
         esStandby,
         esStopped,

         // handler pause on this states!

         esBusy,
         esBusyEvents = esBusy,
         esBusyMatch,
         esBusyScraping,

         // handler don't pause on this states!

         esBusyImages,

         esCount
      };

      static const char* toName(State s);
      static State toState(const char* name);
      static int isValid(State s) { return s > esUnknown && s < esCount; }

      static const char* states[];
};

typedef cEpgdState Es;

//***************************************************************************
// cEventState
//***************************************************************************

class cEventState
{
   public:

      enum State
      {
         // add to VDRs EPG => wird von allen VDR angezeigt

         usActive      = 'A', // => Aktiv
         usLink        = 'L', // => DVB Event welches auf ein externes zeigt
         usPassthrough = 'P', // => Durchgeleitetes Event: vdr:000

         // remove from VDRs EPG => Löschsignal wird an alle vdr gesendet

         usChanged     = 'C', // => war mal aktiv wurde jedoch später zum Target,seine eigene ID muss also aus dem epg gelöscht werden. C ist also eine Ausprägung von T
         usDelete      = 'D', // => Sender oder Providerseitig gelöscht
         usRemove      = 'R', // => von uns gelöscht weil wir uns für ein anderes Event entschieden haben, zB eins mit Bildern oder Serieninformationen.

         // don't care for VDRs EPG => werden von den VDRs nicht beachtet und nicht mal gesehen.

         usInactive    = 'I', // => inaktiv
         usTarget      = 'T', // => verknüftes Event zum Link, wird unter seiner ID mithilfe des Link im vdr geführt
         usMergeSpare  = 'S'  // => ersatzevent welches für Multimerge ur Verfügung steht
      };

      // get lists for SQL 'in' statements

      static const char* getDeletable()      { return "'A','L','P','R','I'"; }     // epg plugins
      static const char* getNeeded()         { return "'A','L','P','C','D','R'"; } // epg2vdr
      static const char* getVisible()        { return "'A','L','P'"; }             // epghttpd

      // checks

      static int isNeeded(char c)            { return strchr("ALPCDR", c) != 0; }  // epgd2vdr
      static int isRemove(char c)            { return strchr("CDR", c) != 0; }     // epgd2vdr

};

typedef cEventState Us;   // remove later, not uses anymore

//***************************************************************************
// cUserTimes
//***************************************************************************

class cUserTimes
{
   public:

      enum Mode
      {
         mUnknown = na,
         mNow,
         mNext,
         mTime,
         mSearch
      };

      struct UserTime
      {
         UserTime(const char* strTime, const char* strTitle = 0)
         {
            highlighted = yes;
            mode = mUnknown;
            *hhmmStr = 0;
            title = 0;
            hhmm = 0;
            search = 0;
            setTime(strTime, strTitle);
         }

         UserTime(const UserTime& cp)
         {
            highlighted = cp.highlighted;
            mode = cp.mode;
            hhmm = cp.hhmm;
            strcpy(hhmmStr, cp.hhmmStr);
            title = strdup(cp.title);
            search = cp.search ? strdup(cp.search) : 0;
         }

         ~UserTime()  { free(title); free(search); }

         void setTime(const char* strTime, const char* strTitle)
         {
            hhmm = 0;
            *hhmmStr = 0;

            if (strTime[0] == '!')
            {
               highlighted = no;
               strTime++;
            }

            if (strchr(strTime, ':'))
            {
               hhmm = atoi(strTime) * 100 + atoi(strchr(strTime, ':')+1);
               sprintf(hhmmStr, "%02d:%02d", hhmm / 100, hhmm % 100);
               mode = mTime;
            }
            else if (*strTime == '@')
            {
               highlighted = no;

               if (strcmp(strTime, "@Now") == 0)
                  mode = mNow;
               else if (strcmp(strTime, "@Next") == 0)
                  mode = mNext;
               else
                  mode = mSearch;
            }

            // title

            free(title);
            title = 0;

            if (!isEmpty(strTitle))
               title = strdup(strTitle);
            else if (!isEmpty(hhmmStr))
               asprintf(&title, "%02d:%02d", hhmm / 100, hhmm % 100);

            // search

            if (*strTime == '@')
            {
               free(search);
               search = strdup(strTime+1);
            }
         }

         int getHHMM()            const { return hhmm; }
         const char* getHHMMStr() const { return hhmmStr; }
         const char* getTitle()   const { return title; }
         const char* getSearch()  const { return search; }
         int getMode()            const { return mode; }
         const char* getHelpKey() const { return title; }
         int isHighlighted()      const { return highlighted; }

         time_t getTime()
         {
            struct tm tmnow;
            time_t now = time(0);

            localtime_r(&now, &tmnow);
            tmnow.tm_hour = hhmm / 100;
            tmnow.tm_min = hhmm % 100;
            tmnow.tm_sec = 0;

            time_t ltime = mktime(&tmnow);

            if (ltime < time(0)-tmeSecondsPerHour)
               ltime += tmeSecondsPerDay;

            return ltime;
         }

         int mode;
         int highlighted;
         char* title;
         char* search;
         int hhmm;
         char hhmmStr[5+TB];
      };

      cUserTimes()
      {
         clear();
         it = times.end();
      }

      void clear()
      {
         times.clear();
      }

      void add(const char* strTime, const char* strTitle = 0)
      {
         UserTime ut(strTime, strTitle);
         times.push_back(ut);
      }

      UserTime* first()
      {
         it = times.begin();

         if (it == times.end())
            return 0;

         return &(*it);
      }

      UserTime* next()
      {
         if (it == times.end())
            it = times.begin();
         else
            it++;

         if (it == times.end())
            it = times.begin();

         return &(*it);
      }

      UserTime* getFirst()
      {
         std::list<UserTime>::iterator i;

         i = times.begin();

         return &(*i);
      }

      UserTime* getNext()
      {
         std::list<UserTime>::iterator i = it;

         if (i == times.end())
            i = times.begin();
         else
            i++;

         if (i == times.end())
            i = times.begin();

         return &(*i);
      }

      UserTime* current() { return &(*it); }

   private:

      std::list<UserTime>::iterator it;
      std::list<UserTime> times;
};

//***************************************************************************
// EPG Services
//***************************************************************************

#define EPG2VDR_UUID_SERVICE	"epg2vdr-UuidService-v1.0"

struct Epg2vdr_UUID_v1_0
{
   const char* uuid;
};

#define MYSQL_INIT_EXIT	"Mysql_Init_Exit-v1.0"

enum MysqlInitExitAction
{
   mieaInit = 0,
   mieaExit = 1
};

struct Mysql_Init_Exit_v1_0
{
   MysqlInitExitAction action;
};

#endif // __EPGSERVICE_H