Moved some of the common checks for methods/procs and arity
to rubyrun.swg, as they are useful even for not stl stuff. Added a fragment trait for marking STL containers, but this fragment cannot be attached due to SWIG %template limitations. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9874 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
2b93511d17
commit
bbd80cfa84
3 changed files with 100 additions and 34 deletions
|
|
@ -394,6 +394,42 @@ SWIG_Ruby_SetModule(swig_module_info *pointer)
|
|||
rb_define_readonly_variable("$swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, &swig_runtime_data_type_pointer);
|
||||
}
|
||||
|
||||
/* This function can be used to check whether a proc or method or similarly
|
||||
callable function has been passed. Usually used in a %typecheck, like:
|
||||
|
||||
%typecheck(c_callback_t, precedence=SWIG_TYPECHECK_POINTER) {
|
||||
$result = SWIG_Ruby_isCallable( $input );
|
||||
}
|
||||
*/
|
||||
SWIGINTERN
|
||||
int SWIG_Ruby_isCallable( VALUE proc )
|
||||
{
|
||||
static VALUE call_id = rb_intern("call");
|
||||
if ( rb_respond_to( proc, call_id ) == Qtrue )
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* This function can be used to check the arity (number of arguments)
|
||||
a proc or method can take. Usually used in a %typecheck.
|
||||
Valid arities will be that equal to minimal or those < 0
|
||||
which indicate a variable number of parameters at the end.
|
||||
*/
|
||||
SWIGINTERN
|
||||
int SWIG_Ruby_arity( VALUE proc, int minimal )
|
||||
{
|
||||
static VALUE arity_id = rb_intern("arity");
|
||||
if ( rb_respond_to( proc, arity_id ) == Qtrue )
|
||||
{
|
||||
VALUE num = rb_funcall( proc, arity_id, 0 );
|
||||
int arity = NUM2INT(num);
|
||||
if ( arity < 0 && (arity+1) < -minimal ) return 1;
|
||||
if ( arity == minimal ) return 1;
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
|
|
@ -199,3 +199,67 @@ namespace swig {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Define GC marking template traits for a container type
|
||||
%define %create_mark_traits(Type)
|
||||
%{
|
||||
namespace swig {
|
||||
template <class T>
|
||||
struct mark_traits {
|
||||
typedef typename Type<T >::const_iterator const_iterator;
|
||||
|
||||
inline void operator()(const Type<T >& c ) const
|
||||
{
|
||||
const_iterator i = c.begin();
|
||||
const_iterator e = c.end();
|
||||
for ( ; i != e; ++i )
|
||||
{
|
||||
rb_gc_mark( swig::from( &(*i) ) );
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Partial specializations for classes that requires no GC marking
|
||||
// or a special GC marking algorithm.
|
||||
template< >
|
||||
struct mark_traits<bool> {
|
||||
inline void operator()(const Type<bool >& c ) const {}
|
||||
};
|
||||
|
||||
template< >
|
||||
struct mark_traits<char> {
|
||||
inline void operator()(const Type<char >& c ) const {}
|
||||
};
|
||||
|
||||
template< >
|
||||
struct mark_traits<int> {
|
||||
inline void operator()(const Type<int >& c ) const {}
|
||||
};
|
||||
|
||||
template< >
|
||||
struct mark_traits<unsigned> {
|
||||
inline void operator()(const Type<unsigned >& c ) const {}
|
||||
};
|
||||
|
||||
template< >
|
||||
struct mark_traits<GC_VALUE> {
|
||||
typedef Type<GC_VALUE >::const_iterator const_iterator;
|
||||
|
||||
inline void operator()(const Type<GC_VALUE >& c ) const {
|
||||
const_iterator i = c.begin();
|
||||
const_iterator e = c.end();
|
||||
for ( ; i != e; ++i )
|
||||
{
|
||||
VALUE v = *i;
|
||||
if ( FIXNUM_P(v) || SPECIAL_CONST_P(v) || SYMBOL_P(v) ||
|
||||
( BUILTIN_TYPE(v) == T_NONE ) ) continue;
|
||||
|
||||
rb_gc_mark( v );
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
%}
|
||||
%enddef
|
||||
|
|
|
|||
|
|
@ -26,40 +26,6 @@
|
|||
|
||||
%include rubyclasses.swg
|
||||
|
||||
%{
|
||||
/* This function can be used to check whether a proc or method or similarly
|
||||
callable function has been passed. Usually used in a %typecheck. */
|
||||
SWIGINTERN
|
||||
int SWIG_Ruby_isCallable( VALUE proc )
|
||||
{
|
||||
static VALUE call_id = rb_intern("call");
|
||||
if ( rb_respond_to( proc, call_id ) )
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* This function can be used to check the arity (number of arguments)
|
||||
a proc or method can take. Usually used in a %typecheck.
|
||||
Valid arities will be that equal to minimal or those < 0
|
||||
which indicate a variable number of parameters at the end.
|
||||
*/
|
||||
SWIGINTERN
|
||||
int SWIG_Ruby_arity( VALUE proc, int minimal )
|
||||
{
|
||||
static VALUE arity_id = rb_intern("arity");
|
||||
if ( rb_respond_to( proc, arity_id ) )
|
||||
{
|
||||
VALUE num = rb_funcall( proc, arity_id, 0 );
|
||||
int arity = NUM2INT(num);
|
||||
if ( arity < 0 && (arity+1) < -minimal ) return 1;
|
||||
if ( arity == minimal ) return 1;
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
%}
|
||||
|
||||
|
||||
namespace swig {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue