blob: 9a092fac9d73465120c72079ddd1097e97dc3cc2 (
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
|
/*
* epgclone.c: EpgClone list item
*
* See the README file for copyright information and how to reach the author.
*
*/
#include <stdlib.h>
#include <string.h>
#include "epgclone.h"
/* Global instance */
cEpgfixerList<cEpgClone, cEvent> EpgfixerEpgClones;
cEpgClone::cEpgClone()
{
dest_num = 0;
dest_str = NULL;
}
cEpgClone::~cEpgClone()
{
free(dest_str);
}
void cEpgClone::CloneEvent(cEvent *Source, cEvent *Dest) {
Dest->SetEventID(Source->EventID());
Dest->SetTableID(Source->TableID());
Dest->SetVersion(Source->Version());
Dest->SetRunningStatus(Source->RunningStatus());
Dest->SetTitle(Source->Title());
Dest->SetShortText(Source->ShortText());
Dest->SetDescription(Source->Description());
cComponents *components = new cComponents();
if (Source->Components()) {
for (int i = 0; i < Source->Components()->NumComponents(); ++i)
components->SetComponent(i, Source->Components()->Component(i)->ToString());
}
Dest->SetComponents(components);
uchar contents[MaxEventContents];
for (int i = 0; i < MaxEventContents; ++i)
contents[i] = Source->Contents(i);
Dest->SetContents(contents);
Dest->SetParentalRating(Source->ParentalRating());
Dest->SetStartTime(Source->StartTime());
Dest->SetDuration(Source->Duration());
Dest->SetVps(Source->Vps());
if (Source->Seen())
Dest->SetSeen();
tChannelID channelID;
if (dest_num)
channelID = Channels.GetByNumber(dest_num)->GetChannelID();
else
channelID.FromString(dest_str);
AddEvent(Dest, channelID);
}
bool cEpgClone::Apply(cEvent *Event)
{
if (Event && enabled && IsActive(Event->ChannelID())) {
cEvent *event = new cEvent(Event->EventID());
CloneEvent(Event, event);
return true;
}
return false;
}
void cEpgClone::SetFromString(char *s, bool Enabled)
{
dest_num = 0;
FREE(dest_str);
Free();
cListItem::SetFromString(s, Enabled);
if (enabled) {
char *p = (s[0] == '!') ? s + 1 : s;
char *f = strchr(p, '=');
if (f) {
*f = 0;
if (atoi(f + 1))
dest_num = atoi(f + 1);
else
dest_str = strdup(f + 1);
numchannels = LoadChannelsFromString(p);
}
}
}
|