some more work on plugin manager
[enigma2.git] / lib / dvb / dvb.h
1 #ifndef __dvb_dvb_h
2 #define __dvb_dvb_h
3
4 #ifndef SWIG
5
6 #include <lib/base/ebase.h>
7 #include <lib/base/filepush.h>
8 #include <lib/base/elock.h>
9 #include <lib/dvb/idvb.h>
10 #include <lib/dvb/demux.h>
11 #include <lib/dvb/frontend.h>
12 #include <lib/dvb/tstools.h>
13 #include <lib/dvb/esection.h>
14 #include <connection.h>
15
16 #include <dvbsi++/service_description_section.h>
17
18 class eDVBChannel;
19
20         /* we do NOT handle resource conflicts here. instead, the allocateChannel
21            fails, and the application has to see why the channel is allocated
22            (and how to deallocate it). */
23 class iDVBAdapter;
24
25 class eDVBRegisteredFrontend: public iObject, public Object
26 {
27         DECLARE_REF(eDVBRegisteredFrontend);
28         ePtr<eTimer> disable;
29         void closeFrontend()
30         {
31                 if (!m_inuse && m_frontend->closeFrontend()) // frontend busy
32                         disable->start(60000, true);  // retry close in 60secs
33         }
34 public:
35         Signal0<void> stateChanged;
36         eDVBRegisteredFrontend(eDVBFrontend *fe, iDVBAdapter *adap)
37                 :disable(eTimer::create(eApp)), m_adapter(adap), m_frontend(fe), m_inuse(0)
38         {
39                 CONNECT(disable->timeout, eDVBRegisteredFrontend::closeFrontend);
40         }
41         void dec_use()
42         {
43                 if (!--m_inuse)
44                 {
45                         /* emit */ stateChanged();
46                         disable->start(3000, true);
47                 }
48         }
49         void inc_use()
50         {
51                 if (++m_inuse == 1)
52                 {
53                         m_frontend->openFrontend();
54                         /* emit */ stateChanged();
55                 }
56         }
57         iDVBAdapter *m_adapter;
58         ePtr<eDVBFrontend> m_frontend;
59         int m_inuse;
60 };
61
62 struct eDVBRegisteredDemux
63 {
64         DECLARE_REF(eDVBRegisteredDemux);
65 public:
66         iDVBAdapter *m_adapter;
67         ePtr<eDVBDemux> m_demux;
68         int m_inuse;
69         eDVBRegisteredDemux(eDVBDemux *demux, iDVBAdapter *adap): m_adapter(adap), m_demux(demux), m_inuse(0) { }
70 };
71
72 class eDVBAllocatedFrontend
73 {
74         DECLARE_REF(eDVBAllocatedFrontend);
75 public:
76         
77         eDVBAllocatedFrontend(eDVBRegisteredFrontend *fe);
78         ~eDVBAllocatedFrontend();
79         eDVBFrontend &get() { return *m_fe->m_frontend; }
80         operator eDVBRegisteredFrontend*() { return m_fe; }
81         operator eDVBFrontend*() { return m_fe->m_frontend; }
82
83 private:
84         eDVBRegisteredFrontend *m_fe;
85 };
86
87 class eDVBAllocatedDemux
88 {
89         DECLARE_REF(eDVBAllocatedDemux);
90 public:
91         
92         eDVBAllocatedDemux(eDVBRegisteredDemux *demux);
93         ~eDVBAllocatedDemux();
94         eDVBDemux &get() { return *m_demux->m_demux; }
95         operator eDVBRegisteredDemux*() { return m_demux; }
96         operator eDVBDemux*() { return m_demux->m_demux; }
97         
98 private:
99         eDVBRegisteredDemux *m_demux;
100 };
101
102 class iDVBAdapter: public iObject
103 {
104 public:
105         virtual int getNumDemux() = 0;
106         virtual RESULT getDemux(ePtr<eDVBDemux> &demux, int nr) = 0;
107         
108         virtual int getNumFrontends() = 0;
109         virtual RESULT getFrontend(ePtr<eDVBFrontend> &fe, int nr, bool simulate=false) = 0;
110 };
111
112 class eDVBAdapterLinux: public iDVBAdapter
113 {
114         DECLARE_REF(eDVBAdapterLinux);
115 public:
116         eDVBAdapterLinux(int nr);
117
118         int getNumDemux();
119         RESULT getDemux(ePtr<eDVBDemux> &demux, int nr);
120         
121         int getNumFrontends();
122         RESULT getFrontend(ePtr<eDVBFrontend> &fe, int nr, bool simulate=false);
123         
124         static int exist(int nr);
125 private:
126         int m_nr;
127         eSmartPtrList<eDVBFrontend> m_frontend, m_simulate_frontend;
128         eSmartPtrList<eDVBDemux>    m_demux;
129 };
130 #endif // SWIG
131
132 SWIG_IGNORE(eDVBResourceManager);
133 class eDVBResourceManager: public iObject, public Object
134 {
135         DECLARE_REF(eDVBResourceManager);
136         int avail, busy;
137
138         enum { DM7025, DM800, DM500HD, DM8000 };
139
140         int m_boxtype;
141
142         eSmartPtrList<iDVBAdapter> m_adapter;
143         eSmartPtrList<eDVBRegisteredDemux> m_demux;
144         eSmartPtrList<eDVBRegisteredFrontend> m_frontend, m_simulate_frontend;
145         void addAdapter(iDVBAdapter *adapter);
146
147         struct active_channel
148         {
149                 eDVBChannelID m_channel_id;
150                         /* we don't hold a reference here. */
151                 eDVBChannel *m_channel;
152                 
153                 active_channel(const eDVBChannelID &chid, eDVBChannel *ch) : m_channel_id(chid), m_channel(ch) { }
154         };
155         
156         std::list<active_channel> m_active_channels, m_active_simulate_channels;
157         
158         ePtr<iDVBChannelList> m_list;
159         ePtr<iDVBSatelliteEquipmentControl> m_sec;
160         static eDVBResourceManager *instance;
161         
162         friend class eDVBChannel;
163         RESULT addChannel(const eDVBChannelID &chid, eDVBChannel *ch);
164         RESULT removeChannel(eDVBChannel *ch);
165
166         Signal1<void,eDVBChannel*> m_channelAdded;
167
168         eUsePtr<iDVBChannel> m_cached_channel;
169         Connection m_cached_channel_state_changed_conn;
170         ePtr<eTimer> m_releaseCachedChannelTimer;
171         void DVBChannelStateChanged(iDVBChannel*);
172         void feStateChanged();
173 #ifndef SWIG
174 public:
175 #endif
176         void releaseCachedChannel();
177         eDVBResourceManager();
178         virtual ~eDVBResourceManager();
179
180         RESULT setChannelList(iDVBChannelList *list);
181         RESULT getChannelList(ePtr<iDVBChannelList> &list);
182         
183         enum {
184                         /* errNoFrontend = -1 replaced by more spcific messages */
185                 errNoDemux    = -2,
186                 errChidNotFound = -3,
187                 errNoChannelList = -4,
188                 errChannelNotInList = -5,
189                 errAllSourcesBusy = -6,
190                 errNoSourceFound = -7,
191         };
192         
193         RESULT connectChannelAdded(const Slot1<void,eDVBChannel*> &channelAdded, ePtr<eConnection> &connection);
194         int canAllocateChannel(const eDVBChannelID &channelid, const eDVBChannelID &ignore, bool simulate=false);
195
196                 /* allocate channel... */
197         RESULT allocateChannel(const eDVBChannelID &channelid, eUsePtr<iDVBChannel> &channel, bool simulate=false);
198         RESULT allocatePVRChannel(eUsePtr<iDVBPVRChannel> &channel);
199         static RESULT getInstance(ePtr<eDVBResourceManager> &);
200
201                         /* allocates a frontend able to tune to frontend paramters 'feperm'.
202                            the frontend must be tuned lateron. there is no guarante
203                            that tuning will succeed - it just means that if this frontend
204                            can't tune, no other frontend could do it.
205
206                            there might be a priority given to certain frontend/chid
207                            combinations. this will be evaluated here. */
208         RESULT allocateFrontend(ePtr<eDVBAllocatedFrontend> &fe, ePtr<iDVBFrontendParameters> &feparm, bool simulate=false);
209
210         RESULT allocateFrontendByIndex(ePtr<eDVBAllocatedFrontend> &fe, int slot_index);
211                         /* allocate a demux able to filter on the selected frontend. */
212         RESULT allocateDemux(eDVBRegisteredFrontend *fe, ePtr<eDVBAllocatedDemux> &demux, int &cap);
213 #ifdef SWIG
214 public:
215 #endif
216         int canAllocateFrontend(ePtr<iDVBFrontendParameters> &feparm, bool simulate=false);
217         bool canMeasureFrontendInputPower();
218         PSignal1<void,int> frontendUseMaskChanged;
219         SWIG_VOID(RESULT) allocateRawChannel(eUsePtr<iDVBChannel> &SWIG_OUTPUT, int slot_index);
220         PyObject *setFrontendSlotInformations(SWIG_PYOBJECT(ePyObject) list);
221 };
222 SWIG_TEMPLATE_TYPEDEF(ePtr<eDVBResourceManager>, eDVBResourceManager);
223 SWIG_EXTEND(ePtr<eDVBResourceManager>,
224         static ePtr<eDVBResourceManager> getInstance()
225         {
226                 extern ePtr<eDVBResourceManager> NewResourceManagerPtr(void);
227                 return NewResourceManagerPtr();
228         }
229 );
230
231 #ifndef SWIG
232
233 class eDVBChannelFilePush;
234
235         /* iDVBPVRChannel includes iDVBChannel. don't panic. */
236 class eDVBChannel: public iDVBPVRChannel, public iFilePushScatterGather, public Object
237 {
238         DECLARE_REF(eDVBChannel);
239         friend class eDVBResourceManager;
240 public:
241         eDVBChannel(eDVBResourceManager *mgr, eDVBAllocatedFrontend *frontend);
242         virtual ~eDVBChannel();
243
244                 /* only for managed channels - effectively tunes to the channelid. should not be used... */
245                 /* cannot be used for PVR channels. */
246         RESULT setChannel(const eDVBChannelID &id, ePtr<iDVBFrontendParameters> &feparam);
247         eDVBChannelID getChannelID() { return m_channel_id; }
248
249         RESULT connectStateChange(const Slot1<void,iDVBChannel*> &stateChange, ePtr<eConnection> &connection);
250         RESULT connectEvent(const Slot2<void,iDVBChannel*,int> &eventChange, ePtr<eConnection> &connection);
251         
252         RESULT getState(int &state);
253
254         RESULT setCIRouting(const eDVBCIRouting &routing);
255         RESULT getDemux(ePtr<iDVBDemux> &demux, int cap);
256         RESULT getFrontend(ePtr<iDVBFrontend> &frontend);
257         RESULT getCurrentFrontendParameters(ePtr<iDVBFrontendParameters> &param);
258
259                 /* iDVBPVRChannel */
260         RESULT playFile(const char *file);
261         void stopFile();
262         
263         void setCueSheet(eCueSheet *cuesheet);
264         
265         RESULT getLength(pts_t &len);
266         RESULT getCurrentPosition(iDVBDemux *decoding_demux, pts_t &pos, int mode);
267
268         int getUseCount() { return m_use_count; }
269
270         RESULT requestTsidOnid(ePyObject callback);
271 private:
272         ePtr<eDVBAllocatedFrontend> m_frontend;
273         ePtr<eDVBAllocatedDemux> m_demux, m_decoder_demux;
274         
275         ePtr<iDVBFrontendParameters> m_current_frontend_parameters;
276         eDVBChannelID m_channel_id;
277         Signal1<void,iDVBChannel*> m_stateChanged;
278         Signal2<void,iDVBChannel*,int> m_event;
279         int m_state;
280
281                         /* for channel list */
282         ePtr<eDVBResourceManager> m_mgr;
283         
284         void frontendStateChanged(iDVBFrontend*fe);
285         ePtr<eConnection> m_conn_frontendStateChanged;
286         
287                 /* for PVR playback */
288         eDVBChannelFilePush *m_pvr_thread;
289         void pvrEvent(int event);
290         
291         int m_pvr_fd_dst;
292         eDVBTSTools m_tstools;
293         
294         ePtr<eCueSheet> m_cue;
295         
296         void cueSheetEvent(int event);
297         ePtr<eConnection> m_conn_cueSheetEvent;
298         int m_skipmode_m, m_skipmode_n, m_skipmode_frames, m_skipmode_frames_remainder;
299         
300         std::list<std::pair<off_t, off_t> > m_source_span;
301         void getNextSourceSpan(off_t current_offset, size_t bytes_read, off_t &start, size_t &size);
302         void flushPVR(iDVBDemux *decoding_demux=0);
303         
304         eSingleLock m_cuesheet_lock;
305
306         friend class eUsePtr<eDVBChannel>;
307                 /* use count */
308         oRefCount m_use_count;
309         void AddUse();
310         void ReleaseUse();
311
312                 /* for tsid/onid read */
313         ePyObject m_tsid_onid_callback;
314         ePtr<iDVBDemux> m_tsid_onid_demux;
315         ePtr<eTable<ServiceDescriptionSection> > m_SDT;
316         void SDTready(int err);
317 };
318 #endif // SWIG
319
320 #endif