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
|
#include <time.h>
#include <glob.h>
#include "tools.h"
#include "recordings.h"
#include "epg_events.h"
#include "setup.h"
using namespace std;
namespace vdrlive
{
/*
* -------------------------------------------------------------------------
* EpgInfo
* -------------------------------------------------------------------------
*/
EpgInfo::EpgInfo(const std::string& id, const std::string& caption) :
m_eventId(id),
m_caption(caption)
{
}
EpgInfo::~EpgInfo()
{
}
const std::string EpgInfo::CurrentTime(const char* format) const
{
return FormatDateTime(format, time(0));
}
const string EpgInfo::StartTime(const char* format) const
{
time_t start = GetStartTime();
return start ? FormatDateTime(format, start) : "";
}
const string EpgInfo::EndTime(const char* format) const
{
time_t end = GetEndTime();
return end ? FormatDateTime(format, end) : "";
}
int EpgInfo::Elapsed() const
{
time_t end_time = GetEndTime();
time_t start_time = GetStartTime();
if (end_time > start_time) {
time_t now = time(0);
if ((start_time <= now) && (now <= end_time)) {
return 100 * (now - start_time) / (end_time - start_time);
}
}
return -1;
}
/*
* -------------------------------------------------------------------------
* EpgEvent
* -------------------------------------------------------------------------
*/
EpgEvent::EpgEvent(const std::string& id, const cEvent* event, const char* channelName) :
EpgInfo(id, channelName),
m_event(event)
{
}
EpgEvent::~EpgEvent()
{
}
/*
* -------------------------------------------------------------------------
* EpgString
* -------------------------------------------------------------------------
*/
EpgString::EpgString(const string& id, const string& caption, const string& info) :
EpgInfo(id, caption),
m_info(info)
{
}
EpgString::~EpgString()
{
}
const string EpgString::Title() const
{
return m_info;
}
const string EpgString::ShortDescr() const
{
return "";
}
const string EpgString::LongDescr() const
{
return "";
}
// virtual const std::string Archived() const { return std::string(); }
time_t EpgString::GetStartTime() const
{
return time(0);
}
time_t EpgString::GetEndTime() const
{
return time(0);
}
/*
* -------------------------------------------------------------------------
* EpgRecording
* -------------------------------------------------------------------------
*/
EpgRecording::EpgRecording(const string& recid, const cRecording* recording, const char* caption) :
EpgInfo(recid, (caption != 0) ? caption : ""),
m_recording(recording),
m_ownCaption(caption != 0),
m_checkedArchived(false),
m_archived()
{
}
EpgRecording::~EpgRecording()
{
m_recording = 0;
}
const string EpgRecording::Caption() const
{
if (m_ownCaption) {
return EpgInfo::Caption();
}
if (!m_recording) {
return "";
}
return Name();
}
const string EpgRecording::Title() const
{
if (!m_recording) {
return "";
}
const cRecordingInfo* info = m_recording->Info();
return (info && info->Title()) ? info->Title() : Name();
}
const string EpgRecording::ShortDescr() const
{
const cRecordingInfo* info = m_recording ? m_recording->Info() : 0;
return (info && info->ShortText()) ? info->ShortText() : "";
}
const string EpgRecording::LongDescr() const
{
const cRecordingInfo* info = m_recording ? m_recording->Info() : 0;
return (info && info->Description()) ? info->Description() : "";
}
const string EpgRecording::Archived() const
{
if (!m_checkedArchived) {
if (m_recording) {
m_archived = RecordingsManager::GetArchiveDescr(m_recording);
m_checkedArchived = true;
}
}
return m_archived;
}
time_t EpgRecording::GetStartTime() const
{
return m_recording ? m_recording->start : 0;
}
time_t EpgRecording::GetEndTime() const
{
return m_recording ? m_recording->start : 0;
}
const string EpgRecording::Name() const
{
string name(m_recording->Name());
size_t index = name.find_last_of('~');
if (index != string::npos) {
name = name.substr(index+1);
}
return name;
}
/*
* -------------------------------------------------------------------------
* EpgEvents
* -------------------------------------------------------------------------
*/
EpgEvents::EpgEvents()
{
}
EpgEvents::~EpgEvents()
{
}
string EpgEvents::GetDomId(const tChannelID& chanId, const tEventID& eId)
{
string channelId(chanId.ToString());
string eventId("event_");
replace(channelId.begin(), channelId.end(), '.', 'p');
replace(channelId.begin(), channelId.end(), '-', 'm');
eventId += channelId;
eventId += '_';
eventId += lexical_cast<std::string>(eId);
return eventId;
}
EpgInfoPtr EpgEvents::CreateEpgInfo(const std::string& epgid, const cSchedules* schedules)
{
const string eventStr("event_");
size_t delimPos = epgid.find_last_of('_');
string cIdStr = epgid.substr(eventStr.length(), delimPos - eventStr.length());
replace(cIdStr.begin(), cIdStr.end(), 'm', '-');
replace(cIdStr.begin(), cIdStr.end(), 'p', '.');
const string eIdStr = epgid.substr(delimPos+1);
const string errorInfo(tr("Epg error"));
tEventID eventId = lexical_cast<tEventID>(eIdStr);
tChannelID channelId = tChannelID::FromString(cIdStr.c_str());
const cChannel* channel = Channels.GetByChannelID(channelId);
if (!channel) {
return CreateEpgInfo(epgid, errorInfo, tr("Wrong channel id"));
}
const cSchedule* schedule = schedules->GetSchedule(channel);
if (!schedule) {
return CreateEpgInfo(epgid, errorInfo, tr("Channel has no schedule"));
}
const cEvent* event = schedule->GetEvent(eventId);
if (!event) {
return CreateEpgInfo(epgid, errorInfo, tr("wrong event id"));
}
return CreateEpgInfo(channel, event, epgid.c_str());
}
EpgInfoPtr EpgEvents::CreateEpgInfo(const cChannel* chan, const cEvent* event, const char* idOverride)
{
string domId(idOverride ? idOverride : GetDomId(chan->GetChannelID(), event->EventID()));
return EpgInfoPtr(new EpgEvent(domId, event, chan->Name()));
}
EpgInfoPtr EpgEvents::CreateEpgInfo(const string& recid, const cRecording* recording, const char* caption)
{
return EpgInfoPtr(new EpgRecording(recid, recording, caption));
}
EpgInfoPtr EpgEvents::CreateEpgInfo(const std::string& id, const std::string& caption, const std::string& info)
{
return EpgInfoPtr(new EpgString(id, caption, info));
}
list<string> EpgEvents::EpgImages(const std::string& epgid)
{
list<string> images;
size_t delimPos = epgid.find_last_of('_');
string imageId = epgid.substr(delimPos+1);
imageId = imageId.substr(0, imageId.size()-1); // tvm2vdr seems always to use one digit less
const string filemask(LiveSetup().GetEpgImageDir() + "/" + imageId + "*.*");
glob_t globbuf;
globbuf.gl_offs = 0;
if (!LiveSetup().GetEpgImageDir().empty() && glob(filemask.c_str(), GLOB_DOOFFS, NULL, &globbuf) == 0)
{
for(int i=0; i<(int)globbuf.gl_pathc; i++)
{
const string imagefile(globbuf.gl_pathv[i]);
size_t delimPos = imagefile.find_last_of('/');
images.push_back(imagefile.substr(delimPos+1));
}
globfree(&globbuf);
}
return images;
}
}; // namespace vdrlive
|