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