From 2a6cdce89409dc0275e23523c3807972a82f2cf7 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 29 Sep 2005 22:07:36 +0000 Subject: swig: some more simplifying magic --- lib/python/enigma_python.i | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'lib/python/enigma_python.i') diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 79f9296e..8b918bf0 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" -- cgit v1.2.3