summaryrefslogtreecommitdiffstats
path: root/kaffeine/src/input/dvb/plugins/epg/kaffeinedvbevents.h
blob: c81e1a4da61ce756672a82f57d0fa0c7d7f9b131 (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
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
/*
 * kaffeinedvbevents.h
 *
 * Copyright (C) 2003-2007 Christophe Thommeret <hftom@free.fr>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef KAFFEINEDVBEVENTS_H
#define KAFFEINEDVBEVENTS_H

#include <tqtimer.h>
#include <tqmutex.h>
#include <tqfile.h>
#include <tqobject.h>

#include <kparts/part.h>

#include "kaffeinedvbsection.h"



class ShortEvent
{

public:

	ShortEvent();
	~ShortEvent();

	TQString name;
	TQString text;
};

class EventDesc
{

public:

	EventDesc();
	~EventDesc();

	TQString source;
	unsigned char tid;
	unsigned short sid;
	unsigned short tsid;
	unsigned short nid;
	unsigned char sn;
	unsigned char lsn;
	unsigned short eid;
	unsigned char running;
	TQDateTime startDateTime;
	TQTime duration;
	TQPtrList<ShortEvent> shortEvents;
	TQPtrList<TQString> extEvents;
	TQString title;
	TQString subtitle;
	unsigned int loop;
};



class EventSid
{
public:
	EventSid( int s );
	~EventSid();
	int getSid() { return sid; }
	void lock() { mutex.lock(); }
	void unlock() { mutex.unlock(); }
	TQPtrList<EventDesc> *getEvents() { return &events; }
	EventDesc *getEventDesc( int n );
	int getNDesc() { return events.count(); }
	void remove( EventDesc *d );
private:
	TQMutex mutex;
	int sid;
	TQPtrList<EventDesc> events;
};



class EventTsid
{
public:
	EventTsid( int n, int t );
	~EventTsid();
	int getTsid() { return tsid; }
	int getNid() { return nid; }
	EventSid *getEventSid( int sid );
	EventSid *getNEventSid( int n );
	int getNSid() { return sidList.count(); }
	EventDesc *getEventDesc( int sid, int n );
private:
	TQMutex mutex;
	int tsid, nid;
	TQPtrList<EventSid> sidList;
};



class EventSource
{
public:
	EventSource( TQString src );
	~EventSource();
	EventSid *getEventSid( int nid, int tsid, int sid );
	EventTsid *getNEventTsid( int n );
	int getNTsid() { return tsidList.count(); }
	EventDesc *getEventDesc( int nid, int tsid, int sid, int n );
	TQString getSource() { return source; }
private:
	TQMutex mutex;
	TQString source;
	TQPtrList<EventTsid> tsidList;
};



class EventTable : public TQObject, public TQThread
{
	Q_OBJECT
  
public:
	EventTable();
	~EventTable();
	EventSource *getEventSource( TQString src );
	EventDesc *getEventDesc( TQString src, int nid, int tsid, int sid, int n );
	EventSource *getNEventSource( int n );
	int getNSource() { return srcList.count(); }
	void doClean( bool b );
	void saveEpg();
	void loadEpg();
protected:
	virtual void run();
private:
	bool validString( TQFile &f, EventDesc *d, int len, int buflen, int nev );
	TQMutex mutex;
	TQPtrList<EventSource> srcList;
	TQTimer cleanTimer;
	bool epgLoaded;
private slots:
	void setClean();
};



class KDE_EXPORT KaffeineEpgPlugin : public KParts::Part,  public KaffeineDVBsection
{
	Q_OBJECT
  
public:
	KaffeineEpgPlugin( TQObject* parent, const char* name );
	virtual ~KaffeineEpgPlugin();
	virtual bool go( TQString /*src*/, int /*freqKhz*/ ) { return false; }
	virtual void stop() {}
	void setTable( EventTable *table ) { events = table; }

protected:
	bool safeLen( unsigned char* buf );

	unsigned char secbuf[4096];
	int readSize;
	EventTable *events;
};

#endif /* KAFFEINEDVBEVENTS_H */