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
|
#include <lib/base/eerror.h>
#include <lib/base/object.h>
#include <string>
#include <errno.h>
#include <lib/service/servicefs.h>
#include <lib/service/service.h>
#include <lib/service/servicedvb.h>
#include <lib/base/init_num.h>
#include <lib/base/init.h>
#include <dirent.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
class eStaticServiceFSInformation: public iStaticServiceInformation
{
DECLARE_REF(eStaticServiceFSInformation);
public:
RESULT getName(const eServiceReference &ref, std::string &name);
int getLength(const eServiceReference &ref) { return -1; }
};
DEFINE_REF(eStaticServiceFSInformation);
RESULT eStaticServiceFSInformation::getName(const eServiceReference &ref, std::string &name)
{
name = ref.path;
return 0;
}
// eServiceFactoryFS
eServiceFactoryFS::eServiceFactoryFS()
{
ePtr<eServiceCenter> sc;
eServiceCenter::getPrivInstance(sc);
if (sc)
{
std::list<std::string> extensions;
sc->addServiceFactory(eServiceFactoryFS::id, this, extensions);
}
m_service_information = new eStaticServiceFSInformation();
}
eServiceFactoryFS::~eServiceFactoryFS()
{
ePtr<eServiceCenter> sc;
eServiceCenter::getPrivInstance(sc);
if (sc)
sc->removeServiceFactory(eServiceFactoryFS::id);
}
DEFINE_REF(eServiceFactoryFS)
// iServiceHandler
RESULT eServiceFactoryFS::play(const eServiceReference &ref, ePtr<iPlayableService> &ptr)
{
ptr=0;
return -1;
}
RESULT eServiceFactoryFS::record(const eServiceReference &ref, ePtr<iRecordableService> &ptr)
{
ptr=0;
return -1;
}
RESULT eServiceFactoryFS::list(const eServiceReference &ref, ePtr<iListableService> &ptr)
{
ptr = new eServiceFS(ref.path.c_str(), ref.getName().length() ? ref.getName().c_str() : 0);
return 0;
}
RESULT eServiceFactoryFS::info(const eServiceReference &ref, ePtr<iStaticServiceInformation> &ptr)
{
ptr = m_service_information;
return 0;
}
RESULT eServiceFactoryFS::offlineOperations(const eServiceReference &, ePtr<iServiceOfflineOperations> &ptr)
{
ptr = 0;
return -1;
}
// eServiceFS
DEFINE_REF(eServiceFS);
eServiceFS::eServiceFS(const char *path, const char *additional_extensions): path(path)
{
m_list_valid = 0;
if (additional_extensions)
{
size_t slen=strlen(additional_extensions);
char buf[slen+1];
char *tmp=0, *cmds = buf;
memcpy(buf, additional_extensions, slen+1);
// strip spaces at beginning
while(cmds[0] == ' ')
{
++cmds;
--slen;
}
// strip spaces at the end
while(slen && cmds[slen-1] == ' ')
{
cmds[slen-1] = 0;
--slen;
}
if (slen)
{
if (*cmds)
{
int id;
char buf2[16];
while(1)
{
tmp = strchr(cmds, ' ');
if (tmp)
*tmp = 0;
if (strstr(cmds, "0x"))
{
if (sscanf(cmds, "0x%x:%s", &id, buf2) == 2)
m_additional_extensions[id].push_back(buf2);
else
eDebug("parse additional_extension (%s) failed", cmds);
}
else
{
if (sscanf(cmds, "%d:%s", &id, buf2) == 2)
m_additional_extensions[id].push_back(buf2);
else
eDebug("parse additional_extension (%s) failed", cmds);
}
if (!tmp)
break;
cmds = tmp+1;
while (*cmds && *cmds == ' ')
++cmds;
}
}
}
}
}
eServiceFS::~eServiceFS()
{
}
int lower(char c)
{
return std::tolower(static_cast<unsigned char>(c));
}
RESULT eServiceFS::getContent(std::list<eServiceReference> &list, bool sorted)
{
DIR *d=opendir(path.c_str());
if (!d)
return -errno;
while (dirent *e=readdir(d))
{
if (!(strcmp(e->d_name, ".") && strcmp(e->d_name, "..")))
continue;
std::string filename;
filename = path;
filename += e->d_name;
struct stat s;
if (::stat(filename.c_str(), &s) < 0)
continue;
if (S_ISDIR(s.st_mode))
filename += "/";
if (S_ISDIR(s.st_mode))
{
eServiceReference service(eServiceFactoryFS::id,
eServiceReference::isDirectory|
eServiceReference::canDescent|eServiceReference::mustDescent|
eServiceReference::shouldSort|eServiceReference::sort1,
filename);
service.data[0] = 1;
list.push_back(service);
} else
{
size_t e = filename.rfind('.');
if (e != std::string::npos && e+1 < filename.length())
{
std::string extension = filename.substr(e+1);
std::transform(extension.begin(), extension.end(), extension.begin(), lower);
int type = getServiceTypeForExtension(extension);
if (type == -1)
{
ePtr<eServiceCenter> sc;
eServiceCenter::getPrivInstance(sc);
type = sc->getServiceTypeForExtension(extension);
}
if (type != -1)
{
eServiceReference service(type,
0,
filename);
service.data[0] = 0;
list.push_back(service);
}
}
}
}
closedir(d);
if (sorted)
list.sort(iListableServiceCompare(this));
return 0;
}
// The first argument of this function is a format string to specify the order and
// the content of the returned list
// useable format options are
// R = Service Reference (as swig object .. this is very slow)
// S = Service Reference (as python string object .. same as ref.toString())
// C = Service Reference (as python string object .. same as ref.toCompareString())
// N = Service Name (as python string object)
// when exactly one return value per service is selected in the format string,
// then each value is directly a list entry
// when more than one value is returned per service, then the list is a list of
// python tuples
// unknown format string chars are returned as python None values !
PyObject *eServiceFS::getContent(const char* format, bool sorted)
{
ePyObject ret;
std::list<eServiceReference> tmplist;
int retcount=1;
if (!format || !(retcount=strlen(format)))
format = "R"; // just return service reference swig object ...
if (!getContent(tmplist, sorted))
{
int services=tmplist.size();
ePtr<iStaticServiceInformation> sptr;
eServiceCenterPtr service_center;
if (strchr(format, 'N'))
eServiceCenter::getPrivInstance(service_center);
ret = PyList_New(services);
std::list<eServiceReference>::iterator it(tmplist.begin());
for (int cnt=0; cnt < services; ++cnt)
{
eServiceReference &ref=*it++;
ePyObject tuple = retcount > 1 ? PyTuple_New(retcount) : ePyObject();
for (int i=0; i < retcount; ++i)
{
ePyObject tmp;
switch(format[i])
{
case 'R': // service reference (swig)object
tmp = NEW_eServiceReference(ref);
break;
case 'C': // service reference compare string
tmp = PyString_FromString(ref.toCompareString().c_str());
break;
case 'S': // service reference string
tmp = PyString_FromString(ref.toString().c_str());
break;
case 'N': // service name
if (service_center)
{
service_center->info(ref, sptr);
if (sptr)
{
std::string name;
sptr->getName(ref, name);
if (name.length())
tmp = PyString_FromString(name.c_str());
}
}
if (!tmp)
tmp = PyString_FromString("<n/a>");
break;
default:
if (tuple)
{
tmp = Py_None;
Py_INCREF(Py_None);
}
break;
}
if (tmp)
{
if (tuple)
PyTuple_SET_ITEM(tuple, i, tmp);
else
PyList_SET_ITEM(ret, cnt, tmp);
}
}
if (tuple)
PyList_SET_ITEM(ret, cnt, tuple);
}
}
return ret ? (PyObject*)ret : (PyObject*)PyList_New(0);
}
RESULT eServiceFS::getNext(eServiceReference &ptr)
{
if (!m_list_valid)
{
m_list_valid = 1;
int res = getContent(m_list);
if (res)
return res;
}
if (!m_list.size())
{
ptr = eServiceReference();
return -ERANGE;
}
ptr = m_list.front();
m_list.pop_front();
return 0;
}
int eServiceFS::compareLessEqual(const eServiceReference &a, const eServiceReference &b)
{
/* directories first */
if ((a.flags & ~b.flags) & eServiceReference::isDirectory)
return 1;
else if ((~a.flags & b.flags) & eServiceReference::isDirectory)
return 0;
/* sort by filename */
else
return a.path < b.path;
}
RESULT eServiceFS::startEdit(ePtr<iMutableServiceList> &res)
{
res = 0;
return -1;
}
int eServiceFS::getServiceTypeForExtension(const char *str)
{
for (std::map<int, std::list<std::string> >::iterator sit(m_additional_extensions.begin()); sit != m_additional_extensions.end(); ++sit)
{
for (std::list<std::string>::iterator eit(sit->second.begin()); eit != sit->second.end(); ++eit)
{
if (*eit == str)
return sit->first;
}
}
return -1;
}
int eServiceFS::getServiceTypeForExtension(const std::string &str)
{
return getServiceTypeForExtension(str.c_str());
}
eAutoInitPtr<eServiceFactoryFS> init_eServiceFactoryFS(eAutoInitNumbers::service+1, "eServiceFactoryFS");
|