[lua] updated docs for exceptions
added new examples (exception,embed2) update typmaps git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10300 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
13c0b040fc
commit
8350c724f5
18 changed files with 749 additions and 149 deletions
|
|
@ -15,6 +15,7 @@
|
|||
%include <luatypemaps.swg> /* The typemaps */
|
||||
%include <luaruntime.swg> /* The runtime stuff */
|
||||
|
||||
//%include <typemaps/swigmacros.swg>
|
||||
/* -----------------------------------------------------------------------------
|
||||
* constants typemaps
|
||||
* ----------------------------------------------------------------------------- */
|
||||
|
|
@ -154,51 +155,75 @@ Therefore currently its just enough to get a few test cases running ok
|
|||
note: if you wish to throw anything related to std::exception
|
||||
use %include <std_except.i> instead
|
||||
*/
|
||||
|
||||
// number as number+error
|
||||
%typemap(throws) int,unsigned int,signed int,
|
||||
long,unsigned long,signed long,
|
||||
short,unsigned short,signed short,
|
||||
bool,float,double,
|
||||
float,double,
|
||||
long long,unsigned long long,
|
||||
char, unsigned char, signed char,
|
||||
enum SWIGTYPE
|
||||
%{lua_pushfstring(L,"numeric exception:%f",(double)$1);SWIG_fail; %}
|
||||
unsigned char, signed char,
|
||||
int&,unsigned int&,signed int&,
|
||||
long&,unsigned long&,signed long&,
|
||||
short&,unsigned short&,signed short&,
|
||||
float&,double&,
|
||||
long long&,unsigned long long&,
|
||||
unsigned char&, signed char&
|
||||
%{lua_pushnumber(L,(lua_Number)$1);SWIG_fail; %}
|
||||
|
||||
%typemap(throws) bool,bool&
|
||||
%{lua_pushboolean(L,(int)($1==true));SWIG_fail; %}
|
||||
|
||||
// enum as number+error
|
||||
%typemap(throws) enum SWIGTYPE
|
||||
%{lua_pushnumber(L,(lua_Number)(int)$1);SWIG_fail; %}
|
||||
|
||||
// strings are just sent as errors
|
||||
%typemap(throws) char*, const char*
|
||||
%{lua_pushstring(L,$1);SWIG_fail;%}
|
||||
|
||||
// char is changed to a string
|
||||
%typemap(throws) char
|
||||
%{lua_pushfstring(L,"%c",$1);SWIG_fail;%}
|
||||
|
||||
/*
|
||||
Throwing object is a serious problem:
|
||||
Assuming some code throws a 'FooBar'
|
||||
There are a few options:
|
||||
- return a pointer to it: but its unclear how long this will last for.
|
||||
- return a copy of it: but not all objects are copyable
|
||||
(see exception_partial_info in the test suite for a case where you cannot)
|
||||
(see exception_partial_info in the test suite for a case where you cannot do this)
|
||||
- convert to a string & throw that
|
||||
its not so useful, but it works (this is more lua like).
|
||||
The third option (though not nice) is used
|
||||
For a more useful solution: see std_except for more details
|
||||
*/
|
||||
|
||||
// basic typemap for structs, classes, pointers & references
|
||||
// convert to string and error
|
||||
%typemap(throws) SWIGTYPE
|
||||
{
|
||||
(void)$1;
|
||||
lua_pushfstring(L,"object exception:%s",SWIG_TypePrettyName($1_descriptor));
|
||||
SWIG_fail;
|
||||
}
|
||||
|
||||
// old code: fails under exception_partial_info
|
||||
// if you have a function which throws a FooBar & you want SWIG to throw the actual object
|
||||
// then use
|
||||
// %apply SWIGTYPE BY_VAL {FooBar};
|
||||
%typemap(throws) SWIGTYPE BY_VAL
|
||||
{
|
||||
SWIG_NewPointerObj(L,(void *)new $1_ltype(($1_ltype &) $1),$&1_descriptor,1);
|
||||
SWIG_fail;
|
||||
}
|
||||
|
||||
%{(void)$1; /* ignore it */
|
||||
lua_pushfstring(L,"object exception:%s",SWIG_TypePrettyName($1_descriptor));
|
||||
SWIG_fail;%}
|
||||
|
||||
// code to make a copy of the object and return this
|
||||
// if you have a function which throws a FooBar & you want SWIG to return a copy of the object as its error
|
||||
// then use one of the below
|
||||
// %apply SWIGTYPE EXCEPTION_BY_VAL {FooBar};
|
||||
// %apply SWIGTYPE& EXCEPTION_BY_VAL {FooBar&}; // note: need & twice
|
||||
%typemap(throws) SWIGTYPE EXCEPTION_BY_VAL
|
||||
%{SWIG_NewPointerObj(L,(void *)new $1_ltype(($1_ltype &) $1),$&1_descriptor,1);
|
||||
SWIG_fail;%}
|
||||
|
||||
// similar for object reference
|
||||
// note: swig typemaps seem a little confused around here, therefore we use $basetype
|
||||
%typemap(throws) SWIGTYPE& EXCEPTION_BY_VAL
|
||||
%{SWIG_NewPointerObj(L,(void *)new $basetype($1),$1_descriptor,1);
|
||||
SWIG_fail;%}
|
||||
|
||||
|
||||
// note: no support for object pointers
|
||||
// its not clear how long the pointer is valid for, therefore not supporting it
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* extras
|
||||
|
|
|
|||
|
|
@ -73,15 +73,15 @@
|
|||
%{$1 = (lua_toboolean(L, $input)!=0);%}
|
||||
|
||||
%typemap(out) bool
|
||||
%{ lua_pushboolean(L,(int)$1); SWIG_arg++;%}
|
||||
%{ lua_pushboolean(L,(int)($1==true)); SWIG_arg++;%}
|
||||
|
||||
// for const bool&, SWIG treats this as a const bool* so we must dereference it
|
||||
%typemap(in,checkfn="lua_isboolean") const bool& (bool temp)
|
||||
%{temp=lua_toboolean(L, $input) ? true : false;
|
||||
%{temp=(lua_toboolean(L, $input)!=0);
|
||||
$1=&temp;%}
|
||||
|
||||
%typemap(out) const bool&
|
||||
%{ lua_pushboolean(L,(int)*$1); SWIG_arg++;%}
|
||||
%{ lua_pushboolean(L,(int)(*$1==true)); SWIG_arg++;%}
|
||||
|
||||
// strings (char* and char[])
|
||||
%typemap(in,checkfn="lua_isstring") const char*, char*
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ namespace std
|
|||
};
|
||||
}
|
||||
|
||||
// normally object whihc are thrown are returned to interpreter as errors
|
||||
// normally object which are thrown are returned to interpreter as errors
|
||||
// (which potentally may have problems if they are not copied)
|
||||
// therefore all classes based upon std::exception are converted to their strings & returned as errors
|
||||
%typemap(throws) std::bad_exception "SWIG_exception(SWIG_RuntimeError, $1.what());"
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ Not using: lua_tolstring() as this is only found in Lua 5.1 & not 5.0.2
|
|||
|
||||
// for throwing of any kind of string, string ref's and string pointers
|
||||
// we convert all to lua strings
|
||||
%typemap(throws) std::string,const std::string&
|
||||
%typemap(throws) std::string,std::string&,const std::string&
|
||||
%{ lua_pushlstring(L,$1.data(),$1.size()); SWIG_fail;%}
|
||||
%typemap(throws) std::string*,const std::string*
|
||||
%{ lua_pushlstring(L,$1->data(),$1->size()); SWIG_fail;%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue