-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtools.c
233 lines (216 loc) · 7.14 KB
/
tools.c
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
/*
* tools.c: The 'EnigmaNG' VDR skin
*
* See the README file for copyright information and how to reach the author.
*
*/
#include "common.h"
#include <sstream>
#include <string.h>
#include "tools.h"
#define AUX_HEADER_EPGSEARCH "EPGSearch: "
#define AUX_TAGS_EPGSEARCH_START "<epgsearch>"
#define AUX_TAGS_EPGSEARCH_ITEM_1A_START "<channel>"
#define AUX_TAGS_EPGSEARCH_ITEM_1A_END "</channel>"
#define AUX_TAGS_EPGSEARCH_ITEM_2A_START "<searchtimer>"
#define AUX_TAGS_EPGSEARCH_ITEM_2A_END "</searchtimer>"
#define AUX_TAGS_EPGSEARCH_ITEM_3A_START "<Search timer>"
#define AUX_TAGS_EPGSEARCH_ITEM_3A_END "</Search timer>"
#define AUX_TAGS_EPGSEARCH_ITEM_1B_START "<update>"
#define AUX_TAGS_EPGSEARCH_ITEM_1B_END "</update>"
#define AUX_TAGS_EPGSEARCH_ITEM_2B_START "<eventid>"
#define AUX_TAGS_EPGSEARCH_ITEM_2B_END "</eventid>"
#define AUX_TAGS_EPGSEARCH_END "</epgsearch>"
#define AUX_HEADER_VDRADMIN "VDRAdmin-AM: "
#define AUX_TAGS_VDRADMIN_START "<vdradmin-am>"
#define AUX_TAGS_VDRADMIN_ITEM1_START "<pattern>"
#define AUX_TAGS_VDRADMIN_ITEM1_END "</pattern>"
#define AUX_TAGS_VDRADMIN_END "</vdradmin-am>"
#define AUX_HEADER_PIN "Protected: "
#define AUX_TAGS_PIN_START "<pin-plugin>"
#define AUX_TAGS_PIN_ITEM1_START "<protected>"
#define AUX_TAGS_PIN_ITEM1_END "</protected>"
#define AUX_TAGS_PIN_END "</pin-plugin>"
std::string parseaux(const char *aux)
{
bool founditem = false;
std::stringstream sstrReturn;
const char *start, *end;
// check if egpsearch
start = strcasestr(aux, AUX_TAGS_EPGSEARCH_START);
end = strcasestr(aux, AUX_TAGS_EPGSEARCH_END);
if (start && end) {
// add header
sstrReturn << AUX_HEADER_EPGSEARCH;
// parse first item
const char *tmp;
if ((tmp = strcasestr(start, AUX_TAGS_EPGSEARCH_ITEM_1A_START)) != NULL) {
if (tmp < end) {
tmp += strlen(AUX_TAGS_EPGSEARCH_ITEM_1A_START);
const char *tmp2;
if ((tmp2 = strcasestr(tmp, AUX_TAGS_EPGSEARCH_ITEM_1A_END)) != NULL) {
// add channel
sstrReturn << tr("Channel:") << " " << std::string(tmp, tmp2 - tmp);
founditem = true;
} else {
founditem = false;
}
}
}
if (founditem) { // Channel tag found
// parse second item
if ((tmp = strcasestr(start, AUX_TAGS_EPGSEARCH_ITEM_2A_START)) != NULL) {
if (tmp < end) {
tmp += strlen(AUX_TAGS_EPGSEARCH_ITEM_2A_START);
const char *tmp2;
if ((tmp2 = strcasestr(tmp, AUX_TAGS_EPGSEARCH_ITEM_2A_END)) != NULL) {
// add separator
if (founditem) {
sstrReturn << ", ";
}
// add search item
sstrReturn << tr("Search pattern:") << " " << std::string(tmp, tmp2 - tmp);
founditem = true;
} else {
founditem = false;
}
}
} else {
// parse second item
if ((tmp = strcasestr(start, AUX_TAGS_EPGSEARCH_ITEM_3A_START)) != NULL) {
if (tmp < end) {
tmp += strlen(AUX_TAGS_EPGSEARCH_ITEM_3A_START);
const char *tmp2;
if ((tmp2 = strcasestr(tmp, AUX_TAGS_EPGSEARCH_ITEM_3A_END)) != NULL) {
// add separator
if (founditem) {
sstrReturn << ", ";
}
// add search item
sstrReturn << tr("Search pattern:") << " " << std::string(tmp, tmp2 - tmp);
founditem = true;
} else {
founditem = false;
}
}
}
}
}
// timer check?
if ((tmp = strcasestr(start, AUX_TAGS_EPGSEARCH_ITEM_1B_START)) != NULL) {
if (tmp < end) {
tmp += strlen(AUX_TAGS_EPGSEARCH_ITEM_1B_START);
const char *tmp2;
if ((tmp2 = strcasestr(tmp, AUX_TAGS_EPGSEARCH_ITEM_1B_END)) != NULL) {
if (std::string(tmp, tmp2 - tmp) != "0") {
// add separator
if (founditem) {
sstrReturn << ", ";
}
// add search item
sstrReturn << tr("Timer check");
// parse second item
if ((tmp = strcasestr(start, AUX_TAGS_EPGSEARCH_ITEM_2B_START)) != NULL) {
if (tmp < end) {
tmp += strlen(AUX_TAGS_EPGSEARCH_ITEM_2B_START);
const char *tmp3;
if ((tmp3 = strcasestr(tmp, AUX_TAGS_EPGSEARCH_ITEM_2B_END)) != NULL) {
// add separator
if (founditem) {
sstrReturn << ", ";
}
// add search item
sstrReturn << "eventid=" << std::string(tmp, tmp3 - tmp);
}
}
}
} else {
if (founditem) {
sstrReturn << ", ";
}
sstrReturn << tr("No timer check");
}
founditem = true;
} else {
founditem = false;
}
}
}
// use old syntax
if (!founditem) {
start += strlen(AUX_HEADER_EPGSEARCH);
sstrReturn << std::string(start, end - start);
}
sstrReturn << std::endl;
}
// check if VDRAdmin-AM
start = strcasestr(aux, AUX_TAGS_VDRADMIN_START);
end = strcasestr(aux, AUX_TAGS_VDRADMIN_END);
if (start && end) {
// add header
sstrReturn << AUX_HEADER_VDRADMIN;
// parse first item
const char *tmp;
if ((tmp = strcasestr(start, AUX_TAGS_VDRADMIN_ITEM1_START)) != NULL) {
if (tmp < end) {
tmp += strlen(AUX_TAGS_VDRADMIN_ITEM1_START);
const char *tmp2;
if ((tmp2 = strcasestr(tmp, AUX_TAGS_VDRADMIN_ITEM1_END)) != NULL) {
// add search item
sstrReturn << std::string(tmp, tmp2 - tmp) << std::endl;
}
}
}
}
// check if pin
start = strcasestr(aux, AUX_TAGS_PIN_START);
end = strcasestr(aux, AUX_TAGS_PIN_END);
if (start && end) {
// add header
sstrReturn << AUX_HEADER_PIN;
// parse first item
const char *tmp;
if ((tmp = strcasestr(start, AUX_TAGS_PIN_ITEM1_START)) != NULL) {
if (tmp < end) {
tmp += strlen(AUX_TAGS_PIN_ITEM1_START);
const char *tmp2;
if ((tmp2 = strcasestr(tmp, AUX_TAGS_PIN_ITEM1_END)) != NULL) {
// add search item
sstrReturn << std::string(tmp, tmp2 - tmp) << std::endl;
}
}
}
}
if (!sstrReturn.str().empty())
return sstrReturn.str();
return std::string(aux);
}
bool ischaracters(const char *str, const char *mask)
{
bool match = true;
const char *p = str;
for (; *p; ++p) {
const char *m = mask;
bool tmp = false;
for (; *m; ++m) {
if (*p == *m)
tmp = true;
}
match = match && tmp;
}
return match;
}
std::string ExtractAttribute(const char* evDescription, const char* name)
{
std::string attribute;
if (!evDescription || !name) return attribute;
std::string description(evDescription);
size_t apos = description.find(name);
if (apos != std::string::npos) {
apos += strlen(name);
size_t npos = description.find('\n', apos);
attribute = description.substr(apos, npos - apos);
}
return attribute;
}
// vim:et:sw=2:ts=2: