blob: bdcc3b6b81dca98adc79c7add5de123b4febcc5f (
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
|
#ifndef DVBSIREADERHELPER_H
#define DVBSIREADERHELPER_H
#include "scripts.h"
#include "variables.h"
class RowProcessor;
class DvbSiReaderHelper {
public:
DvbSiReaderHelper(const ScriptNodePtr p);
~DvbSiReaderHelper();
const Variable demux;
const Variable timeout;
protected:
void openInput() const;
virtual void filterInput(int fd) const = 0;
void readTables(const RowProcessor *) const;
virtual bool parseInfoTable(const u_char *data, size_t len, const RowProcessor *) const = 0;
void closeInput() const;
typedef boost::shared_ptr<Glib::ustring> StrPtr;
static StrPtr convert(const char * txt, size_t len);
static const std::string ISO10646;
static const std::string EitEncoding;
static const std::string UTF8;
private:
mutable int fd_epg;
};
#endif
|