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>
16 #include <dvbsi++/service_description_section.h>
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). */
25 class eDVBRegisteredFrontend: public iObject, public Object
27 DECLARE_REF(eDVBRegisteredFrontend);
31 if (!m_inuse && m_frontend->closeFrontend()) // frontend busy
32 disable->start(60000, true); // retry close in 60secs
35 Signal0<void> stateChanged;
36 eDVBRegisteredFrontend(eDVBFrontend *fe, iDVBAdapter *adap)
37 :disable(eTimer::create(eApp)), m_adapter(adap), m_frontend(fe), m_inuse(0)
39 CONNECT(disable->timeout, eDVBRegisteredFrontend::closeFrontend);
45 /* emit */ stateChanged();
46 disable->start(3000, true);
53 m_frontend->openFrontend();
54 /* emit */ stateChanged();
57 iDVBAdapter *m_adapter;
58 ePtr<eDVBFrontend> m_frontend;
62 struct eDVBRegisteredDemux
64 DECLARE_REF(eDVBRegisteredDemux);
66 iDVBAdapter *m_adapter;
67 ePtr<eDVBDemux> m_demux;
69 eDVBRegisteredDemux(eDVBDemux *demux, iDVBAdapter *adap): m_adapter(adap), m_demux(demux), m_inuse(0) { }
72 class eDVBAllocatedFrontend
74 DECLARE_REF(eDVBAllocatedFrontend);
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; }
84 eDVBRegisteredFrontend *m_fe;
87 class eDVBAllocatedDemux
89 DECLARE_REF(eDVBAllocatedDemux);
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; }
99 eDVBRegisteredDemux *m_demux;
102 class iDVBAdapter: public iObject
105 virtual int getNumDemux() = 0;
106 virtual RESULT getDemux(ePtr<eDVBDemux> &demux, int nr) = 0;
108 virtual int getNumFrontends() = 0;
109 virtual RESULT getFrontend(ePtr<eDVBFrontend> &fe, int nr, bool simulate=false) = 0;
112 class eDVBAdapterLinux: public iDVBAdapter
114 DECLARE_REF(eDVBAdapterLinux);
116 eDVBAdapterLinux(int nr);
119 RESULT getDemux(ePtr<eDVBDemux> &demux, int nr);
121 int getNumFrontends();
122 RESULT getFrontend(ePtr<eDVBFrontend> &fe, int nr, bool simulate=false);
124 static int exist(int nr);
127 eSmartPtrList<eDVBFrontend> m_frontend, m_simulate_frontend;
128 eSmartPtrList<eDVBDemux> m_demux;
132 SWIG_IGNORE(eDVBResourceManager);
133 class eDVBResourceManager: public iObject, public Object
135 DECLARE_REF(eDVBResourceManager);
138 enum { DM7025, DM800, DM500HD, DM800SE, DM8000 };
142 eSmartPtrList<iDVBAdapter> m_adapter;
143 eSmartPtrList<eDVBRegisteredDemux> m_demux;
144 eSmartPtrList<eDVBRegisteredFrontend> m_frontend, m_simulate_frontend;
145 void addAdapter(iDVBAdapter *adapter);
147 struct active_channel
149 eDVBChannelID m_channel_id;
150 /* we don't hold a reference here. */
151 eDVBChannel *m_channel;
153 active_channel(const eDVBChannelID &chid, eDVBChannel *ch) : m_channel_id(chid), m_channel(ch) { }
156 std::list<active_channel> m_active_channels, m_active_simulate_channels;
158 ePtr<iDVBChannelList> m_list;
159 ePtr<iDVBSatelliteEquipmentControl> m_sec;
160 static eDVBResourceManager *instance;
162 friend class eDVBChannel;
163 RESULT addChannel(const eDVBChannelID &chid, eDVBChannel *ch);
164 RESULT removeChannel(eDVBChannel *ch);
166 Signal1<void,eDVBChannel*> m_channelAdded;
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();
176 void releaseCachedChannel();
177 eDVBResourceManager();
178 virtual ~eDVBResourceManager();
180 RESULT setChannelList(iDVBChannelList *list);
181 RESULT getChannelList(ePtr<iDVBChannelList> &list);
184 /* errNoFrontend = -1 replaced by more spcific messages */
186 errChidNotFound = -3,
187 errNoChannelList = -4,
188 errChannelNotInList = -5,
189 errAllSourcesBusy = -6,
190 errNoSourceFound = -7,
193 RESULT connectChannelAdded(const Slot1<void,eDVBChannel*> &channelAdded, ePtr<eConnection> &connection);
194 int canAllocateChannel(const eDVBChannelID &channelid, const eDVBChannelID &ignore, bool simulate=false);
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> &);
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.
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);
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);
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);
222 SWIG_TEMPLATE_TYPEDEF(ePtr<eDVBResourceManager>, eDVBResourceManager);
223 SWIG_EXTEND(ePtr<eDVBResourceManager>,
224 static ePtr<eDVBResourceManager> getInstance()
226 extern ePtr<eDVBResourceManager> NewResourceManagerPtr(void);
227 return NewResourceManagerPtr();
233 class eDVBChannelFilePush;
235 /* iDVBPVRChannel includes iDVBChannel. don't panic. */
236 class eDVBChannel: public iDVBPVRChannel, public iFilePushScatterGather, public Object
238 DECLARE_REF(eDVBChannel);
239 friend class eDVBResourceManager;
241 eDVBChannel(eDVBResourceManager *mgr, eDVBAllocatedFrontend *frontend);
242 virtual ~eDVBChannel();
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; }
249 RESULT connectStateChange(const Slot1<void,iDVBChannel*> &stateChange, ePtr<eConnection> &connection);
250 RESULT connectEvent(const Slot2<void,iDVBChannel*,int> &eventChange, ePtr<eConnection> &connection);
252 RESULT getState(int &state);
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> ¶m);
260 RESULT playFile(const char *file);
263 void setCueSheet(eCueSheet *cuesheet);
265 RESULT getLength(pts_t &len);
266 RESULT getCurrentPosition(iDVBDemux *decoding_demux, pts_t &pos, int mode);
268 int getUseCount() { return m_use_count; }
270 RESULT requestTsidOnid(ePyObject callback);
273 ePtr<eDVBAllocatedFrontend> m_frontend;
274 ePtr<eDVBAllocatedDemux> m_demux, m_decoder_demux;
276 ePtr<iDVBFrontendParameters> m_current_frontend_parameters;
277 eDVBChannelID m_channel_id;
278 Signal1<void,iDVBChannel*> m_stateChanged;
279 Signal2<void,iDVBChannel*,int> m_event;
282 /* for channel list */
283 ePtr<eDVBResourceManager> m_mgr;
285 void frontendStateChanged(iDVBFrontend*fe);
286 ePtr<eConnection> m_conn_frontendStateChanged;
288 /* for PVR playback */
289 eDVBChannelFilePush *m_pvr_thread;
290 void pvrEvent(int event);
293 eDVBTSTools m_tstools;
295 ePtr<eCueSheet> m_cue;
297 void cueSheetEvent(int event);
298 ePtr<eConnection> m_conn_cueSheetEvent;
299 int m_skipmode_m, m_skipmode_n, m_skipmode_frames, m_skipmode_frames_remainder;
301 std::list<std::pair<off_t, off_t> > m_source_span;
302 void getNextSourceSpan(off_t current_offset, size_t bytes_read, off_t &start, size_t &size);
303 void flushPVR(iDVBDemux *decoding_demux=0);
305 eSingleLock m_cuesheet_lock;
307 friend class eUsePtr<eDVBChannel>;
309 oRefCount m_use_count;
313 /* for tsid/onid read */
314 ePyObject m_tsid_onid_callback;
315 ePtr<iDVBDemux> m_tsid_onid_demux;
316 ePtr<eTable<ServiceDescriptionSection> > m_SDT;
317 void SDTready(int err);