1 #ifndef __lib_dvb_iservice_h
2 #define __lib_dvb_iservice_h
4 #include <lib/python/swig.h>
5 #include <lib/python/python.h>
6 #include <lib/base/object.h>
8 #include <connection.h>
13 class eServiceReference
19 idStructure, // service_id == 0 is root
28 isDirectory=1, // SHOULD enter (implies mustDescent)
29 mustDescent=2, // cannot be played directly - often used with "isDirectory" (implies canDescent)
32 normal services have none of them - they can be fed directly into the "play"-handler.
33 normal directories have both of them set - you cannot play a directory directly and the UI should descent into it.
34 playlists have "mustDescent", but not "isDirectory" - you don't want the user to browse inside the playlist (unless he really wants)
35 services with sub-services have none of them, instead the have the "canDecsent" flag (as all of the above)
37 canDescent=4, // supports enterDirectory/leaveDirectory
38 flagDirectory=isDirectory|mustDescent|canDescent,
39 shouldSort=8, // should be ASCII-sorted according to service_name. great for directories.
40 hasSortKey=16, // has a sort key in data[3]. not having a sort key implies 0.
41 sort1=32, // sort key is 1 instead of 0
42 isMarker=64, // Marker
43 isGroup=128 // is a group of services
45 int flags; // flags will NOT be compared.
47 inline int getSortKey() const { return (flags & hasSortKey) ? data[3] : ((flags & sort1) ? 1 : 0); }
53 std::string getPath() { return path; }
54 void setPath( const std::string &n ) { path=n; }
56 unsigned int getUnsignedData(unsigned int num) const
58 if ( num < sizeof(data)/sizeof(int) )
63 int getData(unsigned int num) const
65 if ( num < sizeof(data)/sizeof(int) )
70 void setUnsignedData(unsigned int num, unsigned int val)
72 if ( num < sizeof(data)/sizeof(int) )
76 void setData(unsigned int num, int val)
78 if ( num < sizeof(data)/sizeof(int) )
82 // only for override service names in bouquets or to give servicerefs a name which not have a
83 // real existing service ( for dvb eServiceDVB )
87 std::string getName() const { return name; }
88 void setName( const std::string &n ) { name=n; }
91 : type(idInvalid), flags(0)
93 memset(data, 0, sizeof(data));
96 eServiceReference(int type, int flags)
97 : type(type), flags(flags)
99 memset(data, 0, sizeof(data));
101 eServiceReference(int type, int flags, int data0)
102 : type(type), flags(flags)
104 memset(data, 0, sizeof(data));
107 eServiceReference(int type, int flags, int data0, int data1)
108 : type(type), flags(flags)
110 memset(data, 0, sizeof(data));
114 eServiceReference(int type, int flags, int data0, int data1, int data2)
115 : type(type), flags(flags)
117 memset(data, 0, sizeof(data));
122 eServiceReference(int type, int flags, int data0, int data1, int data2, int data3)
123 : type(type), flags(flags)
125 memset(data, 0, sizeof(data));
131 eServiceReference(int type, int flags, int data0, int data1, int data2, int data3, int data4)
132 : type(type), flags(flags)
134 memset(data, 0, sizeof(data));
141 operator bool() const
146 eServiceReference(int type, int flags, const std::string &path)
147 : type(type), flags(flags), path(path)
149 memset(data, 0, sizeof(data));
151 eServiceReference(const std::string &string);
152 std::string toString() const;
153 std::string toCompareString() const;
154 bool operator==(const eServiceReference &c) const
158 return (memcmp(data, c.data, sizeof(int)*8)==0) && (path == c.path);
160 bool operator!=(const eServiceReference &c) const
162 return !(*this == c);
164 bool operator<(const eServiceReference &c) const
172 int r=memcmp(data, c.data, sizeof(int)*8);
175 return path < c.path;
180 return type != idInvalid;
184 SWIG_ALLOW_OUTPUT_SIMPLE(eServiceReference);
186 extern PyObject *New_eServiceReference(const eServiceReference &ref); // defined in enigma_python.i
189 #ifdef PYTHON_REFCOUNT_DEBUG
190 inline ePyObject Impl_New_eServiceReference(const char* file, int line, const eServiceReference &ref)
192 return ePyObject(New_eServiceReference(ref), file, line);
194 #define NEW_eServiceReference(ref) Impl_New_eServiceReference(__FILE__, __LINE__, ref)
196 inline ePyObject Impl_New_eServiceReference(const eServiceReference &ref)
198 return New_eServiceReference(ref);
200 #define NEW_eServiceReference(ref) Impl_New_eServiceReference(ref)
204 typedef long long pts_t;
206 /* the reason we have the servicereference as additional argument is
207 that we don't have to create one object for every entry in a possibly
208 large list, provided that no state information is nessesary to deliver
209 the required information. Anyway - ref *must* be the same as the argument
210 to the info() or getIServiceInformation call! */
212 /* About the usage of SWIG_VOID:
213 SWIG_VOID(real_returntype_t) hides a return value from swig. This is used for
214 the "superflouus" RESULT return values.
216 Python code has to check the returned pointer against 0. This works,
217 as all functions returning instances in smartpointers AND having a
218 RESULT have to BOTH return non-zero AND set the pointer to zero.
220 Python code thus can't check for the reason, but the reason isn't
221 user-servicable anyway. If you want to return a real reason which
222 goes beyong "it just doesn't work", use extra variables for this,
225 Hide the result only if there is another way to check for failure! */
229 SWIG_IGNORE(iStaticServiceInformation);
230 class iStaticServiceInformation: public iObject
233 iStaticServiceInformation();
234 ~iStaticServiceInformation();
237 virtual SWIG_VOID(RESULT) getName(const eServiceReference &ref, std::string &SWIG_OUTPUT)=0;
239 // doesn't need to be implemented, should return -1 then.
240 virtual int getLength(const eServiceReference &ref);
241 virtual SWIG_VOID(RESULT) getEvent(const eServiceReference &ref, ePtr<eServiceEvent> &SWIG_OUTPUT, time_t start_time=-1);
242 // returns true when not implemented
243 virtual int isPlayable(const eServiceReference &ref, const eServiceReference &ignore, bool simulate=false);
245 virtual int getInfo(const eServiceReference &ref, int w);
246 virtual std::string getInfoString(const eServiceReference &ref,int w);
247 virtual PyObject *getInfoObject(const eServiceReference &ref, int w);
249 virtual int setInfo(const eServiceReference &ref, int w, int v);
250 virtual int setInfoString(const eServiceReference &ref, int w, const char *v);
252 SWIG_TEMPLATE_TYPEDEF(ePtr<iStaticServiceInformation>, iStaticServiceInformationPtr);
254 class iServiceInformation_ENUMS
257 iServiceInformation_ENUMS();
258 ~iServiceInformation_ENUMS();
262 sIsCrypted, /* is encrypted (no indication if decrypt was possible) */
263 sAspect, /* aspect ratio: 0=4:3, 1=16:9, 2=whatever we need */
264 sFrameRate, /* frame rate */
265 sProgressive, /* 0 = interlaced, 1 = progressive */
266 sIsMultichannel, /* multichannel *available* (probably not selected) */
268 /* "user serviceable info" - they are not reliable. Don't use them for anything except the service menu!
269 that's also the reason why they are so globally defined.
270 again - if somebody EVER tries to use this information for anything else than simply displaying it,
271 i will change this to return a user-readable text like "zero x zero three three" (and change the
272 exact spelling in every version) to stop that! */
288 sTimeCreate, /* unix time or string */
292 sVideoType, /* MPEG2 MPEG4 */
294 sTags, /* space seperated list of tags */
296 sDVBState, /* states as defined in pmt handler (as events there) */
301 sTransponderData, /* transponderdata as python dict */
321 sTagAlbumVolumeNumber,
322 sTagAlbumVolumeCount,
370 /* some words to structs like struct iServiceInformation_ENUMS
371 For some classes we need in python just the SmartPointer Variants.
372 So we prevent building wrapper classes for the non smart pointer classes with the SWIG_IGNORE makro.
373 But now we have the problem that swig do not export enums for smart pointer classes (i dont know why).
374 So we move all enum's to own classes (with _ENUMS as name ending) and let our real
375 class inherit from the *_ENUMS class. This *_ENUMS classes are normally exportet via swig to python.
376 But in the python code we doesn't like to write iServiceInformation_ENUMS.sVideoType....
377 we like to write iServiceInformation.sVideoType.
378 So until swig have no Solution for this Problem we call in lib/python/Makefile.am a python script named
379 enigma_py_patcher.py to remove the "_ENUMS" strings in enigma.py at all needed locations. */
381 SWIG_IGNORE(iServiceInformation);
382 class iServiceInformation: public iServiceInformation_ENUMS, public iObject
385 iServiceInformation();
386 ~iServiceInformation();
389 virtual SWIG_VOID(RESULT) getName(std::string &SWIG_OUTPUT)=0;
390 virtual SWIG_VOID(RESULT) getEvent(ePtr<eServiceEvent> &SWIG_OUTPUT, int nownext);
392 virtual int getInfo(int w);
393 virtual std::string getInfoString(int w);
394 virtual PyObject *getInfoObject(int w);
396 virtual int setInfo(int w, int v);
397 virtual int setInfoString(int w, const char *v);
399 SWIG_TEMPLATE_TYPEDEF(ePtr<iServiceInformation>, iServiceInformationPtr);
401 class iFrontendInformation_ENUMS
404 iFrontendInformation_ENUMS();
405 ~iFrontendInformation_ENUMS();
419 SWIG_IGNORE(iFrontendInformation);
420 class iFrontendInformation: public iFrontendInformation_ENUMS, public iObject
423 iFrontendInformation();
424 ~iFrontendInformation();
427 virtual int getFrontendInfo(int w)=0;
428 virtual PyObject *getFrontendData()=0;
429 virtual PyObject *getFrontendStatus()=0;
430 virtual PyObject *getTransponderData(bool original)=0;
431 virtual PyObject *getAll(bool original)=0; // a sum of getFrontendData/Status/TransponderData
433 SWIG_TEMPLATE_TYPEDEF(ePtr<iFrontendInformation>, iFrontendInformationPtr);
435 SWIG_IGNORE(iPauseableService);
436 class iPauseableService: public iObject
444 /* this will set the *state* directly. So just call a SINGLE function of those at a time. */
445 virtual RESULT pause()=0;
446 virtual RESULT unpause()=0;
449 virtual RESULT setSlowMotion(int ratio=0)=0;
450 virtual RESULT setFastForward(int ratio=0)=0;
452 SWIG_TEMPLATE_TYPEDEF(ePtr<iPauseableService>, iPauseableServicePtr);
454 class iSeekableService_ENUMS
457 iSeekableService_ENUMS();
458 ~iSeekableService_ENUMS();
461 enum { dirForward = +1, dirBackward = -1 };
464 SWIG_IGNORE(iSeekableService);
465 class iSeekableService: public iSeekableService_ENUMS, public iObject
472 virtual RESULT getLength(pts_t &SWIG_OUTPUT)=0;
473 virtual RESULT seekTo(pts_t to)=0;
474 virtual RESULT seekRelative(int direction, pts_t to)=0;
475 virtual RESULT getPlayPosition(pts_t &SWIG_OUTPUT)=0;
476 /* if you want to do several seeks in a row, you can enable the trickmode.
477 audio will be switched off, sync will be disabled etc. */
478 virtual RESULT setTrickmode(int trick=0)=0;
479 virtual RESULT isCurrentlySeekable()=0;
480 virtual RESULT seekChapter(int) { return -1; }
481 virtual RESULT seekTitle(int) { return -1; }
483 SWIG_TEMPLATE_TYPEDEF(ePtr<iSeekableService>, iSeekableServicePtr);
485 struct iAudioTrackInfo
488 std::string m_description;
489 std::string m_language; /* iso639 */
490 int m_pid; /* for association with the stream. */
492 std::string getDescription() { return m_description; }
493 std::string getLanguage() { return m_language; }
494 int getPID() { return m_pid; }
496 SWIG_ALLOW_OUTPUT_SIMPLE(iAudioTrackInfo);
498 SWIG_IGNORE(iAudioTrackSelection);
499 class iAudioTrackSelection: public iObject
502 iAudioTrackSelection();
503 ~iAudioTrackSelection();
506 virtual int getNumberOfTracks()=0;
507 virtual RESULT selectTrack(unsigned int i)=0;
508 virtual SWIG_VOID(RESULT) getTrackInfo(struct iAudioTrackInfo &SWIG_OUTPUT, unsigned int n)=0;
509 virtual int getCurrentTrack()=0;
511 SWIG_TEMPLATE_TYPEDEF(ePtr<iAudioTrackSelection>, iAudioTrackSelectionPtr);
513 class iAudioChannelSelection_ENUMS
516 iAudioChannelSelection_ENUMS();
517 ~iAudioChannelSelection_ENUMS();
520 enum { LEFT, STEREO, RIGHT };
523 SWIG_IGNORE(iAudioChannelSelection);
524 class iAudioChannelSelection: public iAudioChannelSelection_ENUMS, public iObject
527 iAudioChannelSelection();
528 ~iAudioChannelSelection();
531 virtual int getCurrentChannel()=0;
532 virtual RESULT selectChannel(int i)=0;
534 SWIG_TEMPLATE_TYPEDEF(ePtr<iAudioChannelSelection>, iAudioChannelSelectionPtr);
536 SWIG_IGNORE(iAudioDelay);
537 class iAudioDelay: public iObject
544 virtual int getAC3Delay()=0;
545 virtual int getPCMDelay()=0;
546 virtual void setAC3Delay(int)=0;
547 virtual void setPCMDelay(int)=0;
549 SWIG_TEMPLATE_TYPEDEF(ePtr<iAudioDelay>, iAudioDelayPtr);
551 class iRdsDecoder_ENUMS
555 ~iRdsDecoder_ENUMS();
558 enum { RadioText, RtpText };
561 SWIG_IGNORE(iRdsDecoder);
562 class iRdsDecoder: public iObject, public iRdsDecoder_ENUMS
569 virtual std::string getText(int x=RadioText)=0;
570 virtual void showRassSlidePicture()=0;
571 virtual void showRassInteractivePic(int page, int subpage)=0;
572 virtual SWIG_PYOBJECT(ePyObject) getRassInteractiveMask()=0;
574 SWIG_TEMPLATE_TYPEDEF(ePtr<iRdsDecoder>, iRdsDecoderPtr);
576 SWIG_IGNORE(iSubserviceList);
577 class iSubserviceList: public iObject
584 virtual int getNumberOfSubservices()=0;
585 virtual SWIG_VOID(RESULT) getSubservice(eServiceReference &SWIG_OUTPUT, unsigned int n)=0;
587 SWIG_TEMPLATE_TYPEDEF(ePtr<iSubserviceList>, iSubserviceListPtr);
589 SWIG_IGNORE(iTimeshiftService);
590 class iTimeshiftService: public iObject
594 ~iTimeshiftService();
597 virtual RESULT startTimeshift()=0;
598 virtual RESULT stopTimeshift(bool swToLive=true)=0;
599 virtual RESULT setNextPlaybackFile(const char *fn)=0; // not needed by our internal timeshift.. but external plugin...
601 virtual int isTimeshiftActive()=0;
602 /* this essentially seeks to the relative end of the timeshift buffer */
603 virtual RESULT activateTimeshift()=0;
605 SWIG_TEMPLATE_TYPEDEF(ePtr<iTimeshiftService>, iTimeshiftServicePtr);
607 /* not related to eCueSheet */
609 class iCueSheet_ENUMS
616 enum { cutIn = 0, cutOut = 1, cutMark = 2 };
619 SWIG_IGNORE(iCueSheet);
620 class iCueSheet: public iCueSheet_ENUMS, public iObject
627 /* returns a list of (pts, what)-tuples */
628 virtual PyObject *getCutList() = 0;
629 virtual void setCutList(SWIG_PYOBJECT(ePyObject) list) = 0;
630 virtual void setCutListEnable(int enable) = 0;
632 SWIG_TEMPLATE_TYPEDEF(ePtr<iCueSheet>, iCueSheetPtr);
637 SWIG_IGNORE(iSubtitleOutput);
638 class iSubtitleOutput: public iObject
641 virtual RESULT enableSubtitles(eWidget *parent, SWIG_PYOBJECT(ePyObject) entry)=0;
642 virtual RESULT disableSubtitles(eWidget *parent)=0;
643 virtual PyObject *getSubtitleList()=0;
644 virtual PyObject *getCachedSubtitle()=0;
646 SWIG_TEMPLATE_TYPEDEF(ePtr<iSubtitleOutput>, iSubtitleOutputPtr);
648 SWIG_IGNORE(iMutableServiceList);
649 class iMutableServiceList: public iObject
652 iMutableServiceList();
653 ~iMutableServiceList();
657 virtual RESULT flushChanges()=0;
658 /* adds a service to a list */
659 virtual RESULT addService(eServiceReference &ref, eServiceReference before=eServiceReference())=0;
660 /* removes a service from a list */
661 virtual RESULT removeService(eServiceReference &ref)=0;
662 /* moves a service in a list, only if list suppports a specific sort method. */
663 /* pos is the new, absolute position from 0..size-1 */
664 virtual RESULT moveService(eServiceReference &ref, int pos)=0;
665 /* set name of list, for bouquets this is the visible bouquet name */
666 virtual RESULT setListName(const std::string &name)=0;
668 SWIG_TEMPLATE_TYPEDEF(ePtr<iMutableServiceList>, iMutableServiceListPtr);
670 SWIG_IGNORE(iListableService);
671 class iListableService: public iObject
679 /* legacy interface: get a list */
680 virtual RESULT getContent(std::list<eServiceReference> &list, bool sorted=false)=0;
682 virtual PyObject *getContent(const char* format, bool sorted=false)=0;
684 /* new, shiny interface: streaming. */
685 virtual SWIG_VOID(RESULT) getNext(eServiceReference &SWIG_OUTPUT)=0;
687 /* use this for sorting. output is not sorted because of either
688 - performance reasons: the whole list must be buffered or
689 - the interface would be restricted to a list. streaming
690 (as well as a future "active" extension) won't be possible.
692 virtual int compareLessEqual(const eServiceReference &, const eServiceReference &)=0;
694 virtual SWIG_VOID(RESULT) startEdit(ePtr<iMutableServiceList> &SWIG_OUTPUT)=0;
696 SWIG_TEMPLATE_TYPEDEF(ePtr<iListableService>, iListableServicePtr);
699 /* a helper class which can be used as argument to stl's sort(). */
700 class iListableServiceCompare
702 ePtr<iListableService> m_list;
704 iListableServiceCompare(iListableService *list): m_list(list) { }
705 bool operator()(const eServiceReference &a, const eServiceReference &b)
707 return m_list->compareLessEqual(a, b);
712 SWIG_IGNORE(iServiceOfflineOperations);
713 class iServiceOfflineOperations: public iObject
716 iServiceOfflineOperations();
717 ~iServiceOfflineOperations();
720 /* to delete a service, forever. */
721 virtual RESULT deleteFromDisk(int simulate=1)=0;
723 /* for transferring a service... */
724 virtual SWIG_VOID(RESULT) getListOfFilenames(std::list<std::string> &SWIG_OUTPUT)=0;
726 /* a blocking call to reindex a file */
727 virtual int reindex() = 0;
729 // TODO: additional stuff, like a conversion interface?
731 SWIG_TEMPLATE_TYPEDEF(ePtr<iServiceOfflineOperations>, iServiceOfflineOperationsPtr);
733 SWIG_IGNORE(iStreamableService);
734 class iStreamableService: public iObject
737 iStreamableService();
738 ~iStreamableService();
743 "pids": [(x,type),(y,type),(z,type),..],
746 with type being "video", "audio", "pmt", "pat"...
748 virtual PyObject *getStreamingData()=0;
750 SWIG_TEMPLATE_TYPEDEF(ePtr<iStreamableService>, iStreamableServicePtr);
752 SWIG_IGNORE(iStreamedService);
753 class iStreamedService: public iObject
760 virtual PyObject *getBufferCharge()=0;
761 virtual int setBufferSize(int size)=0;
763 SWIG_TEMPLATE_TYPEDEF(ePtr<iStreamedService>, iStreamedServicePtr);
765 class iServiceKeys_ENUMS
768 iServiceKeys_ENUMS();
769 ~iServiceKeys_ENUMS();
782 SWIG_IGNORE(iServiceKeys);
783 class iServiceKeys: public iServiceKeys_ENUMS, public iObject
790 virtual SWIG_VOID(RESULT) keyPressed(int key)=0;
792 SWIG_TEMPLATE_TYPEDEF(ePtr<iServiceKeys>, iServiceKeysPtr);
794 class iPlayableService_ENUMS
797 iPlayableService_ENUMS();
798 ~iPlayableService_ENUMS();
802 /* these first two events are magical, and should only
803 be generated if you know what you're doing. */
810 /* when iServiceInformation is implemented:*/
814 /* when seek() is implemented: */
815 evSeekableStatusChanged, /* for example when timeshifting */
818 evSOF, /* bounced against start of file (when seeking backwards) */
820 /* when cueSheet is implemented */
823 /* when rdsDecoder is implemented */
827 /* Radio Screenshow Support */
828 evUpdatedRassSlidePic,
829 evUpdatedRassInteractivePicMask,
832 evVideoFramerateChanged,
833 evVideoProgressiveChanged,
843 SWIG_IGNORE(iPlayableService);
844 class iPlayableService: public iPlayableService_ENUMS, public iObject
850 friend class iServiceHandler;
853 virtual RESULT connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)=0;
855 virtual RESULT start()=0;
856 virtual RESULT stop()=0;
857 /* might have to be changed... */
858 virtual RESULT setTarget(int target)=0;
859 virtual SWIG_VOID(RESULT) seek(ePtr<iSeekableService> &SWIG_OUTPUT)=0;
860 virtual SWIG_VOID(RESULT) pause(ePtr<iPauseableService> &SWIG_OUTPUT)=0;
861 virtual SWIG_VOID(RESULT) info(ePtr<iServiceInformation> &SWIG_OUTPUT)=0;
862 virtual SWIG_VOID(RESULT) audioTracks(ePtr<iAudioTrackSelection> &SWIG_OUTPUT)=0;
863 virtual SWIG_VOID(RESULT) audioChannel(ePtr<iAudioChannelSelection> &SWIG_OUTPUT)=0;
864 virtual SWIG_VOID(RESULT) subServices(ePtr<iSubserviceList> &SWIG_OUTPUT)=0;
865 virtual SWIG_VOID(RESULT) frontendInfo(ePtr<iFrontendInformation> &SWIG_OUTPUT)=0;
866 virtual SWIG_VOID(RESULT) timeshift(ePtr<iTimeshiftService> &SWIG_OUTPUT)=0;
867 virtual SWIG_VOID(RESULT) cueSheet(ePtr<iCueSheet> &SWIG_OUTPUT)=0;
868 virtual SWIG_VOID(RESULT) subtitle(ePtr<iSubtitleOutput> &SWIG_OUTPUT)=0;
869 virtual SWIG_VOID(RESULT) audioDelay(ePtr<iAudioDelay> &SWIG_OUTPUT)=0;
870 virtual SWIG_VOID(RESULT) rdsDecoder(ePtr<iRdsDecoder> &SWIG_OUTPUT)=0;
871 virtual SWIG_VOID(RESULT) stream(ePtr<iStreamableService> &SWIG_OUTPUT)=0;
872 virtual SWIG_VOID(RESULT) streamed(ePtr<iStreamedService> &SWIG_OUTPUT)=0;
873 virtual SWIG_VOID(RESULT) keys(ePtr<iServiceKeys> &SWIG_OUTPUT)=0;
875 SWIG_TEMPLATE_TYPEDEF(ePtr<iPlayableService>, iPlayableServicePtr);
877 class iRecordableService_ENUMS
880 iRecordableService_ENUMS();
881 ~iRecordableService_ENUMS();
898 errOpenRecordFile=-1,
899 errNoDemuxAvailable=-2,
900 errNoTsRecorderAvailable=-3,
903 errMisconfiguration = -256,
904 errNoResources = -257,
908 SWIG_IGNORE(iRecordableService);
909 class iRecordableService: public iRecordableService_ENUMS, public iObject
912 iRecordableService();
913 ~iRecordableService();
917 virtual RESULT connectEvent(const Slot2<void,iRecordableService*,int> &event, ePtr<eConnection> &connection)=0;
919 virtual SWIG_VOID(RESULT) getError(int &SWIG_OUTPUT)=0;
920 virtual RESULT prepare(const char *filename, time_t begTime=-1, time_t endTime=-1, int eit_event_id=-1, const char *name=0, const char *descr=0, const char *tags=0)=0;
921 virtual RESULT prepareStreaming()=0;
922 virtual RESULT start(bool simulate=false)=0;
923 virtual RESULT stop()=0;
924 virtual SWIG_VOID(RESULT) frontendInfo(ePtr<iFrontendInformation> &SWIG_OUTPUT)=0;
925 virtual SWIG_VOID(RESULT) stream(ePtr<iStreamableService> &SWIG_OUTPUT)=0;
926 virtual SWIG_VOID(RESULT) subServices(ePtr<iSubserviceList> &SWIG_OUTPUT)=0;
928 SWIG_TEMPLATE_TYPEDEF(ePtr<iRecordableService>, iRecordableServicePtr);
930 extern PyObject *New_iRecordableServicePtr(const ePtr<iRecordableService> &ref); // defined in enigma_python.i
932 inline PyObject *PyFrom(ePtr<iRecordableService> &c)
934 return New_iRecordableServicePtr(c);
938 #ifdef PYTHON_REFCOUNT_DEBUG
939 inline ePyObject Impl_New_iRecordableServicePtr(const char* file, int line, const ePtr<iRecordableService> &ptr)
941 return ePyObject(New_iRecordableServicePtr(ptr), file, line);
943 #define NEW_iRecordableServicePtr(ptr) Impl_New_iRecordableServicePtr(__FILE__, __LINE__, ptr)
945 inline ePyObject Impl_New_iRecordableServicePtr(const ePtr<iRecordableService> &ptr)
947 return New_iRecordableServicePtr(ptr);
949 #define NEW_iRecordableServicePtr(ptr) Impl_New_iRecordableServicePtr(ptr)
953 SWIG_IGNORE(iServiceHandler);
954 class iServiceHandler: public iObject
961 virtual SWIG_VOID(RESULT) play(const eServiceReference &, ePtr<iPlayableService> &SWIG_OUTPUT)=0;
962 virtual SWIG_VOID(RESULT) record(const eServiceReference &, ePtr<iRecordableService> &SWIG_OUTPUT)=0;
963 virtual SWIG_VOID(RESULT) list(const eServiceReference &, ePtr<iListableService> &SWIG_OUTPUT)=0;
964 virtual SWIG_VOID(RESULT) info(const eServiceReference &, ePtr<iStaticServiceInformation> &SWIG_OUTPUT)=0;
965 virtual SWIG_VOID(RESULT) offlineOperations(const eServiceReference &, ePtr<iServiceOfflineOperations> &SWIG_OUTPUT)=0;
967 SWIG_TEMPLATE_TYPEDEF(ePtr<iServiceHandler>, iServiceHandlerPtr);