removed unused code
[enigma2.git] / lib / service / iservice.h
1 #ifndef __lib_dvb_iservice_h
2 #define __lib_dvb_iservice_h
3
4 #include <lib/python/swig.h>
5 #include <lib/base/object.h>
6 #include <string>
7 #include <connection.h>
8 #include <list>
9
10 class eServiceReference
11 {
12 public:
13         enum
14         {
15                 idInvalid=-1,
16                 idStructure,    // service_id == 0 is root
17                 idDVB,
18                 idFile,
19                 idUser=0x1000
20         };
21         int type;
22
23         int flags; // flags will NOT be compared.
24         enum
25         {
26                 isDirectory=1,          // SHOULD enter  (implies mustDescent)
27                 mustDescent=2,          // cannot be played directly - often used with "isDirectory" (implies canDescent)
28                 /*
29                         for example:
30                                 normal services have none of them - they can be fed directly into the "play"-handler.
31                                 normal directories have both of them set - you cannot play a directory directly and the UI should descent into it.
32                                 playlists have "mustDescent", but not "isDirectory" - you don't want the user to browse inside the playlist (unless he really wants)
33                                 services with sub-services have none of them, instead the have the "canDecsent" flag (as all of the above)
34                 */
35                 canDescent=4,                   // supports enterDirectory/leaveDirectory
36                 flagDirectory=isDirectory|mustDescent|canDescent,
37                 shouldSort=8,                   // should be ASCII-sorted according to service_name. great for directories.
38                 hasSortKey=16,          // has a sort key in data[3]. not having a sort key implies 0.
39                 sort1=32                                        // sort key is 1 instead of 0
40         };
41
42         inline int getSortKey() const { return (flags & hasSortKey) ? data[3] : ((flags & sort1) ? 1 : 0); }
43
44         int data[8];
45         std::string path;
46
47 // only for override service names in bouquets or to give servicerefs a name which not have a
48 // real existing service ( for dvb eServiceDVB )
49         std::string name;
50
51         eServiceReference()
52                 : type(idInvalid), flags(0)
53         {
54         }
55
56         eServiceReference(int type, int flags)
57                 : type(type), flags(flags)
58         {
59                 memset(data, 0, sizeof(data));
60         }
61         eServiceReference(int type, int flags, int data0)
62                 : type(type), flags(flags)
63         {
64                 memset(data, 0, sizeof(data));
65                 data[0]=data0;
66         }
67         eServiceReference(int type, int flags, int data0, int data1)
68                 : type(type), flags(flags)
69         {
70                 memset(data, 0, sizeof(data));
71                 data[0]=data0;
72                 data[1]=data1;
73         }
74         eServiceReference(int type, int flags, int data0, int data1, int data2)
75                 : type(type), flags(flags)
76         {
77                 memset(data, 0, sizeof(data));
78                 data[0]=data0;
79                 data[1]=data1;
80                 data[2]=data2;
81         }
82         eServiceReference(int type, int flags, int data0, int data1, int data2, int data3)
83                 : type(type), flags(flags)
84         {
85                 memset(data, 0, sizeof(data));
86                 data[0]=data0;
87                 data[1]=data1;
88                 data[2]=data2;
89                 data[3]=data3;
90         }
91         eServiceReference(int type, int flags, int data0, int data1, int data2, int data3, int data4)
92                 : type(type), flags(flags)
93         {
94                 memset(data, 0, sizeof(data));
95                 data[0]=data0;
96                 data[1]=data1;
97                 data[2]=data2;
98                 data[3]=data3;
99                 data[4]=data4;
100         }
101         eServiceReference(int type, int flags, const std::string &path)
102                 : type(type), flags(flags), path(path)
103         {
104                 memset(data, 0, sizeof(data));
105         }
106         eServiceReference(const std::string &string);
107         std::string toString() const;
108         bool operator==(const eServiceReference &c) const
109         {
110                 if (type != c.type)
111                         return 0;
112                 return /* (flags == c.flags) && */ (memcmp(data, c.data, sizeof(int)*8)==0) && (path == c.path);
113         }
114         bool operator!=(const eServiceReference &c) const
115         {
116                 return !(*this == c);
117         }
118         bool operator<(const eServiceReference &c) const
119         {
120                 if (type < c.type)
121                         return 1;
122
123                 if (type > c.type)
124                         return 0;
125                         
126 /*              if (flags < c.flags)
127                         return 1;
128                 if (flags > c.flags)
129                         return 0; */
130
131                 int r=memcmp(data, c.data, sizeof(int)*8);
132                 if (r)
133                         return r < 0;
134                 return path < c.path;
135         }
136         operator bool() const
137         {
138                 return valid();
139         }
140         
141         int valid() const
142         {
143                 return type != idInvalid;
144         }
145 };
146
147 SWIG_ALLOW_OUTPUT_SIMPLE(eServiceReference);
148
149 typedef unsigned long long pts_t;
150
151         /* the reason we have the servicereference as additional argument is
152            that we don't have to create one object for every entry in a possibly
153            large list, provided that no state information is nessesary to deliver
154            the required information. Anyway - ref *must* be the same as the argument
155            to the info() or getIServiceInformation call! */
156
157         /* About the usage of SWIG_VOID:
158            SWIG_VOID(real_returntype_t) hides a return value from swig. This is used for
159            the "superflouus" RESULT return values.
160            
161            Python code has to check the returned pointer against 0. This works,
162            as all functions returning instances in smartpointers AND having a 
163            RESULT have to BOTH return non-zero AND set the pointer to zero.
164            
165            Python code thus can't check for the reason, but the reason isn't
166            user-servicable anyway. If you want to return a real reason which
167            goes beyong "it just doesn't work", use extra variables for this,
168            not the RESULT.
169            
170            Hide the result only if there is another way to check for failure! */
171            
172 class iStaticServiceInformation: public iObject
173 {
174 public:
175         virtual SWIG_VOID(RESULT) getName(const eServiceReference &ref, std::string &SWIG_OUTPUT)=0;
176         
177                 // doesn't need to be implemented, should return -1 then.
178         virtual int getLength(const eServiceReference &ref)=0;
179 };
180
181 TEMPLATE_TYPEDEF(ePtr<iStaticServiceInformation>, iStaticServiceInformationPtr);
182
183 class eServiceEvent;
184
185 TEMPLATE_TYPEDEF(ePtr<eServiceEvent>, eServiceEventPtr);
186
187 class iServiceInformation: public iObject
188 {
189 public:
190         virtual SWIG_VOID(RESULT) getName(std::string &SWIG_OUTPUT)=0;
191         virtual SWIG_VOID(RESULT) getEvent(ePtr<eServiceEvent> &SWIG_OUTPUT, int nownext);
192 };
193
194 TEMPLATE_TYPEDEF(ePtr<iServiceInformation>, iServiceInformationPtr);
195
196 class iPauseableService: public iObject
197 {
198 public:
199         virtual RESULT pause()=0;
200         virtual RESULT unpause()=0;
201 };
202
203 TEMPLATE_TYPEDEF(ePtr<iPauseableService>, iPauseableServicePtr);
204
205 class iSeekableService: public iObject
206 {
207 public:
208         virtual RESULT getLength(pts_t &SWIG_OUTPUT)=0;
209         virtual RESULT seekTo(pts_t to)=0;
210         virtual RESULT getPlayPosition(pts_t &SWIG_OUTPUT)=0;
211 };
212
213 TEMPLATE_TYPEDEF(ePtr<iSeekableService>, iSeekableServicePtr);
214
215 class iPlayableService: public iObject
216 {
217         friend class iServiceHandler;
218 public:
219         enum
220         {
221                 evStart,
222                 evEnd,
223                 
224                 evTuneFailed,
225                 // when iServiceInformation is implemented:
226                 evUpdatedEventInfo
227         };
228         virtual RESULT connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)=0;
229         virtual RESULT start()=0;
230         virtual RESULT stop()=0;
231         virtual SWIG_VOID(RESULT) seek(ePtr<iSeekableService> &SWIG_OUTPUT)=0;
232         virtual SWIG_VOID(RESULT) pause(ePtr<iPauseableService> &SWIG_OUTPUT)=0;
233         virtual SWIG_VOID(RESULT) info(ePtr<iServiceInformation> &SWIG_OUTPUT)=0;
234 };
235
236 TEMPLATE_TYPEDEF(ePtr<iPlayableService>, iPlayableServicePtr);
237
238 class iRecordableService: public iObject
239 {
240 public:
241         virtual RESULT prepare(const char *filename)=0;
242         virtual RESULT start()=0;
243         virtual RESULT stop()=0;
244 };
245
246 TEMPLATE_TYPEDEF(ePtr<iRecordableService>, iRecordableServicePtr);
247
248 // TEMPLATE_TYPEDEF(std::list<eServiceReference>, eServiceReferenceList);
249
250 class iListableService: public iObject
251 {
252 public:
253                 /* legacy interface: get a list */
254         virtual RESULT getContent(std::list<eServiceReference> &list)=0;
255         
256                 /* new, shiny interface: streaming. */
257         virtual SWIG_VOID(RESULT) getNext(eServiceReference &SWIG_OUTPUT)=0;
258         
259                 /* use this for sorting. output is not sorted because of either
260                  - performance reasons: the whole list must be buffered or
261                  - the interface would be restricted to a list. streaming
262                    (as well as a future "active" extension) won't be possible.
263                 */
264         virtual int compareLessEqual(const eServiceReference &, const eServiceReference &)=0;
265 };
266
267 TEMPLATE_TYPEDEF(ePtr<iListableService>, iListableServicePtr);
268
269         /* a helper class which can be used as argument to stl's sort(). */
270 class iListableServiceCompare
271 {
272         ePtr<iListableService> m_list;
273 public:
274         iListableServiceCompare(iListableService *list): m_list(list) { }
275         bool operator()(const eServiceReference &a, const eServiceReference &b)
276         {
277                 return m_list->compareLessEqual(a, b);
278         }
279 };
280
281 class iServiceOfflineOperations: public iObject
282 {
283 public:
284                 /* to delete a service, forever. */
285         virtual RESULT deleteFromDisk(int simulate=1)=0;
286         
287                 /* for transferring a service... */
288         virtual SWIG_VOID(RESULT) getListOfFilenames(std::list<std::string> &SWIG_OUTPUT)=0;
289         
290                 // TODO: additional stuff, like a conversion interface?
291 };
292
293 class iServiceHandler: public iObject
294 {
295 public:
296         virtual SWIG_VOID(RESULT) play(const eServiceReference &, ePtr<iPlayableService> &SWIG_OUTPUT)=0;
297         virtual SWIG_VOID(RESULT) record(const eServiceReference &, ePtr<iRecordableService> &SWIG_OUTPUT)=0;
298         virtual SWIG_VOID(RESULT) list(const eServiceReference &, ePtr<iListableService> &SWIG_OUTPUT)=0;
299         virtual SWIG_VOID(RESULT) info(const eServiceReference &, ePtr<iStaticServiceInformation> &SWIG_OUTPUT)=0;
300         virtual SWIG_VOID(RESULT) offlineOperations(const eServiceReference &, ePtr<iServiceOfflineOperations> &SWIG_OUTPUT)=0;
301 };
302
303 TEMPLATE_TYPEDEF(ePtr<iServiceHandler>, iServiceHandlerPtr);
304
305 #endif