load and save cutlists
[enigma2.git] / lib / service / servicedvb.h
index 44d920f8d9ef771c9f919ead65e63c046bf8cad4..2785ce2a567bae6993371af2d9fe6177747e283a 100644 (file)
@@ -6,6 +6,7 @@
 
 #include <lib/dvb/pmt.h>
 #include <lib/dvb/eit.h>
+#include <lib/base/filepush.h>
 
 class eServiceFactoryDVB: public iServiceHandler
 {
@@ -32,7 +33,8 @@ class eDVBServiceList: public iListableService, public iMutableServiceList
 DECLARE_REF(eDVBServiceList);
 public:
        virtual ~eDVBServiceList();
-       RESULT getContent(std::list<eServiceReference> &list);
+       RESULT getContent(std::list<eServiceReference> &list, bool sorted=false);
+       RESULT getContent(PyObject *list, bool sorted=false);
        RESULT getNext(eServiceReference &ptr);
        int compareLessEqual(const eServiceReference &a, const eServiceReference &b);
        
@@ -41,6 +43,7 @@ public:
        RESULT addService(eServiceReference &ref);
        RESULT removeService(eServiceReference &ref);
        RESULT moveService(eServiceReference &ref, int pos);
+       RESULT setListName(const std::string &name);
 private:
        RESULT startQuery();
        eServiceReference m_parent;
@@ -54,7 +57,9 @@ private:
 
 class eDVBServicePlay: public iPlayableService, public iPauseableService, 
                public iSeekableService, public Object, public iServiceInformation, 
-               public iAudioTrackSelection
+               public iAudioTrackSelection, public iFrontendStatusInformation,
+               public iSubserviceList, public iTimeshiftService,
+               public iCueSheet
 {
 DECLARE_REF(eDVBServicePlay);
 public:
@@ -68,16 +73,25 @@ public:
        RESULT pause(ePtr<iPauseableService> &ptr);
        RESULT info(ePtr<iServiceInformation> &ptr);
        RESULT audioTracks(ePtr<iAudioTrackSelection> &ptr);
+       RESULT frontendStatusInfo(ePtr<iFrontendStatusInformation> &ptr);
+       RESULT subServices(ePtr<iSubserviceList> &ptr);
+       RESULT timeshift(ePtr<iTimeshiftService> &ptr);
+       RESULT cueSheet(ePtr<iCueSheet> &ptr);
        
+
                // iPauseableService
        RESULT pause();
        RESULT unpause();
-       
+       RESULT setSlowMotion(int ratio);
+       RESULT setFastForward(int ratio);
+       
                // iSeekableService
        RESULT getLength(pts_t &len);
        RESULT seekTo(pts_t to);
        RESULT seekRelative(int direction, pts_t to);
        RESULT getPlayPosition(pts_t &pos);
+       RESULT setTrickmode(int trick=0);
+       RESULT isCurrentlySeekable();
 
                // iServiceInformation
        RESULT getName(std::string &name);
@@ -90,6 +104,23 @@ public:
        RESULT selectTrack(unsigned int i);
        RESULT getTrackInfo(struct iAudioTrackInfo &, unsigned int n);
 
+               // iFrontendStatusInformation
+       int getFrontendInfo(int w);
+
+               // iSubserviceList
+       int getNumberOfSubservices();
+       RESULT getSubservice(eServiceReference &subservice, unsigned int n);
+
+               // iTimeshiftService
+       RESULT startTimeshift();
+       RESULT stopTimeshift();
+       int isTimeshiftActive();
+       RESULT activateTimeshift();
+
+               // iCueSheet
+       PyObject *getCutList();
+       void setCutList(PyObject *);
+       
 private:
        friend class eServiceFactoryDVB;
        eServiceReference m_reference;
@@ -98,7 +129,8 @@ private:
        
        ePtr<iTSMPEGDecoder> m_decoder;
        
-       eDVBServicePMTHandler m_service_handler;
+               /* in timeshift mode, we essentially have two channels, and thus pmt handlers. */
+       eDVBServicePMTHandler m_service_handler, m_service_handler_timeshift;
        eDVBServiceEITHandler m_event_handler;
        
        eDVBServicePlay(const eServiceReference &ref, eDVBService *service);
@@ -106,12 +138,52 @@ private:
        void gotNewEvent();
        
        void serviceEvent(int event);
+       void serviceEventTimeshift(int event);
        Signal2<void,iPlayableService*,int> m_event;
        
-       int m_is_pvr, m_is_paused;
+       int m_is_pvr, m_is_paused, m_timeshift_enabled, m_timeshift_active;
+       
+       std::string m_timeshift_file;
+       int m_timeshift_fd;
+       
+       ePtr<iDVBDemux> m_decode_demux;
        
        int m_current_audio_stream;
        int selectAudioStream(int n);
+       
+       ePtr<iDVBTSRecorder> m_record;
+       std::set<int> m_pids_active;
+
+       void updateTimeshiftPids();
+       void switchToLive();
+       void switchToTimeshift();
+       
+       void updateDecoder();
+       
+       int m_skipmode;
+       
+       ePtr<eCueSheet> m_cue;
+       
+       struct cueEntry
+       {
+               pts_t where;
+               unsigned int what;
+               
+               bool operator < (const struct cueEntry &o) const
+               {
+                       return what < o.what;
+               }
+               cueEntry(const pts_t &where, unsigned int what) :
+                       where(where), what(what)
+               {
+               }
+       };
+       
+       std::multiset<cueEntry> m_cue_entries;
+       int m_cuesheet_changed;
+       
+       void loadCuesheet();
+       void saveCuesheet();
 };
 
 #endif