- fix: close source/dst after pvr playback
[enigma2.git] / lib / dvb / dvb.h
index a4652e81e8095792fbbce85a872aafcbbfa5b06d..d9f049eb9aebe0452e05b087d1f24370571d3814 100644 (file)
@@ -132,10 +132,14 @@ class eDVBResourceManager: public iObject
        ePtr<iDVBChannelList> m_list;
        ePtr<iDVBSatelliteEquipmentControl> m_sec;
        static eDVBResourceManager *instance;
-
+       
        friend class eDVBChannel;
        RESULT addChannel(const eDVBChannelID &chid, eDVBChannel *ch);
        RESULT removeChannel(eDVBChannel *ch);
+       
+       Signal1<void,eDVBChannel*> m_channelAdded;
+       Signal1<void,eDVBChannel*> m_channelRemoved;
+       Signal1<void,iDVBChannel*> m_channelRunning;
 public:
        eDVBResourceManager();
        virtual ~eDVBResourceManager();
@@ -152,13 +156,19 @@ public:
        };
        
                /* allocate channel... */
-       RESULT allocateChannel(const eDVBChannelID &channelid, ePtr<iDVBChannel> &channel);
-       RESULT allocateRawChannel(ePtr<iDVBChannel> &channel);
-       RESULT allocatePVRChannel(int caps);
+       RESULT allocateChannel(const eDVBChannelID &channelid, eUsePtr<iDVBChannel> &channel);
+       RESULT allocateRawChannel(eUsePtr<iDVBChannel> &channel);
+       RESULT allocatePVRChannel(eUsePtr<iDVBPVRChannel> &channel);
 
+       RESULT connectChannelAdded(const Slot1<void,eDVBChannel*> &channelAdded, ePtr<eConnection> &connection);
+       RESULT connectChannelRemoved(const Slot1<void,eDVBChannel*> &channelRemoved, ePtr<eConnection> &connection);
+       RESULT connectChannelRunning(const Slot1<void,iDVBChannel*> &channelRemoved, ePtr<eConnection> &connection);
 };
 
-class eDVBChannel: public iDVBChannel, public Object
+class eFilePushThread;
+
+       /* iDVBPVRChannel includes iDVBChannel. don't panic. */
+class eDVBChannel: public iDVBPVRChannel, public Object
 {
        DECLARE_REF(eDVBChannel);
 private:
@@ -175,19 +185,34 @@ private:
        
        void frontendStateChanged(iDVBFrontend*fe);
        ePtr<eConnection> m_conn_frontendStateChanged;
+       
+               /* for PVR playback */
+       eFilePushThread *m_pvr_thread;
+       int m_pvr_fd_src, m_pvr_fd_dst;
+
+       friend class eUsePtr<eDVBChannel>;
+               /* use count */
+       oRefCount m_use_count;
+       void AddUse();
+       void ReleaseUse();
 public:
        eDVBChannel(eDVBResourceManager *mgr, eDVBAllocatedFrontend *frontend, eDVBAllocatedDemux *demux);
        virtual ~eDVBChannel();
 
                /* only for managed channels - effectively tunes to the channelid. should not be used... */
+               /* cannot be used for PVR channels. */
        RESULT setChannel(const eDVBChannelID &id);
-       
+       eDVBChannelID getChannelID() { return m_channel_id; }
+
        RESULT connectStateChange(const Slot1<void,iDVBChannel*> &stateChange, ePtr<eConnection> &connection);
        RESULT getState(int &state);
 
        RESULT setCIRouting(const eDVBCIRouting &routing);
        RESULT getDemux(ePtr<iDVBDemux> &demux);
        RESULT getFrontend(ePtr<iDVBFrontend> &frontend);
+       
+               /* iDVBPVRChannel */
+       RESULT playFile(const char *file);
 };
 
 #endif