summaryrefslogtreecommitdiff
path: root/source.h
blob: 0d1c4e8a042b1a1484a1c3638b404a5bc99507c6 (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
/*
 * source.h: A plugin for the Video Disk Recorder
 *
 * See the README file for copyright information and how to reach the author.
 *
 */

#ifndef __source_h
#define __source_h

#include <vdr/tools.h>

#include "maps.h"
#include "import.h"
#include "parse.h"

#define EPGSOURCES "/var/lib/epgsources" // NEVER (!) CHANGE THIS

#define EITSOURCE "EIT"

class cEPGChannel : public cListObject
{
private:
    bool inuse;
    const char *name;
public:
    cEPGChannel(const char *Name, bool InUse=false);
    ~cEPGChannel();
    virtual int Compare(const cListObject &ListObject) const;
    bool InUse()
    {
        return inuse;
    }
    void SetUsage(bool InUse)
    {
        inuse=InUse;
    }
    const char *Name()
    {
        return name;
    }
};

class cEPGChannels : public cList<cEPGChannel> {};

class cImport;

class cEPGSource : public cListObject
{
private:
    const char *name;
    const char *confdir;
    const char *epgfile;
    const char *pin;
    int loglen;
    cParse *parse;
    cImport *import;
    bool ready2parse;
    bool usepipe;
    bool needpin;
    bool running;
    bool upstartdone;
    bool disabled;
    int daysinadvance;
    int exec_upstart;
    int exec_weekday;
    int exec_time;
    int daysmax;
    time_t lastexec;
    int lastretcode;
    void add2Log(const char prefix, const char *line);
    bool ReadConfig();
    int ReadOutput(char *&result, size_t &l);
    cEPGChannels channels;
public:
    cEPGSource(const char *Name,const char *ConfDir,const char *EPGFile,
               cEPGMappings *Maps, cTEXTMappings *Texts);
    ~cEPGSource();
    int Execute(cEPGExecutor &myExecutor);
    int Import(cEPGExecutor &myExecutor);
    bool RunItNow();
    time_t NextRunTime();
    void Store(void);
    void ChangeChannelSelection(int *Selection);
    char *Log;
    bool Disabled()
    {
        return disabled;
    }
    void Disable()
    {
        disabled=true;
    }
    void Enable()
    {
        disabled=false;
    }
    cEPGChannels *ChannelList()
    {
        return &channels;
    }
    int LastRetCode()
    {
        return lastretcode;
    }
    int ExecTime()
    {
        return exec_time;
    }
    int ExecWeekDay()
    {
        return exec_weekday;
    }
    int ExecUpStart()
    {
        return exec_upstart;
    }
    int DaysMax()
    {
        return daysmax;
    }
    int DaysInAdvance()
    {
        return daysinadvance;
    }
    bool NeedPin()
    {
        return needpin;
    }
    const char *EPGFile()
    {
        return epgfile;
    }
    const char *Name()
    {
        return name;
    }
    const char *Pin()
    {
        return pin;
    }
    void ChangeExec(int UpStart, int Time, int WeekDay)
    {
        exec_upstart=UpStart;
        exec_time=Time;
        exec_weekday=WeekDay;
    }
    void ChangeDaysInAdvance(int NewDaysInAdvance)
    {
        daysinadvance=NewDaysInAdvance;
    }
    void ChangePin(const char *NewPin)
    {
        if (pin) free((void *) pin);
        pin=strdup(NewPin);
    }
    time_t LastExecution()
    {
        return lastexec;
    }
    void Dlog(const char *format, ...);
    void Elog(const char *format, ...);
    void Ilog(const char *format, ...);
    bool Active()
    {
        return running;
    }
};

class cEPGSources : public cList<cEPGSource>
{
public:
    void ReadIn(const char *ConfDir, const char *EpgFile, cEPGMappings *EPGMappings,
                cTEXTMappings *TextMappings, const char *SourceOrder, bool Reload=false);
    bool RunItNow();
    time_t NextRunTime();
    bool Exists(const char *Name);
    cEPGSource *GetSource(const char *Name);
    int GetSourceIdx(const char *Name);
    void Remove();
};

class cEPGExecutor : public cThread
{
private:
    cEPGSources *sources;
public:
    cEPGExecutor(cEPGSources *Sources);
    bool StillRunning()
    {
        return Running();
    }
    void Stop()
    {
        Cancel(3);
    }
    virtual void Action();
};

#endif