From: Felix Domke Date: Thu, 29 Sep 2005 22:07:36 +0000 (+0000) Subject: swig: some more simplifying magic X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=2a6cdce89409dc0275e23523c3807972a82f2cf7 swig: some more simplifying magic --- diff --git a/Navigation.py b/Navigation.py index 5fe2651..03a1c61 100644 --- a/Navigation.py +++ b/Navigation.py @@ -57,9 +57,11 @@ class Navigation: return self.pnav.enqueueService(ref) def getCurrentService(self): - service = iPlayableServicePtr() - if self.pnav.getCurrentService(service): + service = self.pnav.getCurrentService() + + if service is None: return None + return service def getPlaylist(self): diff --git a/ServiceReference.py b/ServiceReference.py index c4c2f46..14ac5b2 100644 --- a/ServiceReference.py +++ b/ServiceReference.py @@ -10,17 +10,14 @@ class ServiceReference(eServiceReference): self.ref = ref def getStaticServiceInformation(self): - info = iStaticServiceInformationPtr() - if NavigationInstance.instance.ServiceHandler.info(self.ref, info): - info = None - return info + return NavigationInstance.instance.ServiceHandler.info(self.ref) def __str__(self): return self.ref.toString() def getServiceName(self): info = self.getStaticServiceInformation() - if not info: + if info is not None: return None return info.getName(self.ref) diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 79f9296..8b918bf 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -83,9 +83,10 @@ extern PSignal1 &keyPressedSignal(); %feature("ref") iObject "$this->AddRef(); eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); " %feature("unref") iObject "$this->Release(); eDebug(\"Release! %s:%d\", __FILE__, __LINE__); " + /* this magic allows smartpointer to be used as OUTPUT arguments, i.e. call-by-reference-styled return value. */ -%define %typemap_output_ptr(Type) +%define %typemap_output_simple(Type) %typemap(in,numinputs=0) Type *OUTPUT ($*1_ltype temp), Type &OUTPUT ($*1_ltype temp) "$1 = new Type;"; @@ -95,7 +96,17 @@ extern PSignal1 &keyPressedSignal(); "$result = t_output_helper($result, (SWIG_NewPointerObj((void*)($1), $1_descriptor, 1)));" %enddef -%newobject eDebugClassPtr::operator->; +%define %typemap_output_ptr(Type) + %typemap(in,numinputs=0) Type *OUTPUT ($*1_ltype temp), + Type &OUTPUT ($*1_ltype temp) + "$1 = new Type;"; + %fragment("t_out_helper"{Type},"header", + fragment="t_output_helper") {} + %typemap(argout,fragment="t_out_helper"{Type}) Type *OUTPUT, Type &OUTPUT + // generate None if smartpointer is NULL + "$result = t_output_helper($result, ((*$1) ? SWIG_NewPointerObj((void*)($1), $1_descriptor, 1) : (Py_INCREF(Py_None), Py_None)));" +%enddef + #define DEBUG %include "typemaps.i" diff --git a/lib/python/swig.h b/lib/python/swig.h index ae0bfd0..23ce9aa 100644 --- a/lib/python/swig.h +++ b/lib/python/swig.h @@ -6,10 +6,13 @@ %template(y) x; \ typedef x y; \ %typemap_output_ptr(x); +#define SWIG_ALLOW_OUTPUT_SIMPLE(x) %typemap_output_simple(x); #else #define TEMPLATE_TYPEDEF(x, y) typedef x y +#define SWIG_ALLOW_OUTPUT_SIMPLE(x) #endif + #ifdef SWIG #define SWIG_INPUT INPUT #define SWIG_OUTPUT OUTPUT diff --git a/lib/service/iservice.h b/lib/service/iservice.h index 62be26c..54d7b11 100644 --- a/lib/service/iservice.h +++ b/lib/service/iservice.h @@ -131,10 +131,17 @@ public: } operator bool() const { + return valid(); + } + + int valid() const + { return type != idInvalid; } }; +SWIG_ALLOW_OUTPUT_SIMPLE(eServiceReference); + typedef unsigned long long pts_t; /* the reason we have the servicereference as additional argument is @@ -171,6 +178,8 @@ TEMPLATE_TYPEDEF(ePtr, iStaticServiceInformationPtr); class eServiceEvent; +TEMPLATE_TYPEDEF(ePtr, eServiceEventPtr); + class iServiceInformation: public iObject { public: @@ -245,6 +254,18 @@ public: TEMPLATE_TYPEDEF(ePtr, iListableServicePtr); +class iServiceOfflineOperations: public iObject +{ +public: + /* to delete a service, forever. */ + virtual RESULT deleteFromDisk(int simulate=1)=0; + + /* for transferring a service... */ + virtual SWIG_VOID(RESULT) getListOfFilenames(std::list &SWIG_OUTPUT)=0; + + // TODO: additional stuff, like a conversion interface? +}; + class iServiceHandler: public iObject { public: @@ -252,6 +273,7 @@ public: virtual SWIG_VOID(RESULT) record(const eServiceReference &, ePtr &SWIG_OUTPUT)=0; virtual SWIG_VOID(RESULT) list(const eServiceReference &, ePtr &SWIG_OUTPUT)=0; virtual SWIG_VOID(RESULT) info(const eServiceReference &, ePtr &SWIG_OUTPUT)=0; + virtual SWIG_VOID(RESULT) offlineOperations(const eServiceReference &, ePtr &SWIG_OUTPUT)=0; }; TEMPLATE_TYPEDEF(ePtr, iServiceHandlerPtr);