1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
|
// Module.h: Rcpp R/C++ interface class library -- Rcpp modules
//
// Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
//
// This file is part of Rcpp.
//
// Rcpp is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// Rcpp is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
#ifndef Rcpp_Module_h
#define Rcpp_Module_h
#include <Rcpp/config.h>
#include <Rcpp/internal/call.h>
namespace Rcpp{
namespace internal{
template <typename FROM, typename TO>
std::string get_converter_name(const char* from, const char* to){
std::string method_name( ".___converter___" ) ;
typedef typename Rcpp::traits::r_type_traits< typename Rcpp::traits::remove_const_and_reference<FROM>::type >::r_category FROM_CATEGORY ;
if( Rcpp::traits::same_type< FROM_CATEGORY, ::Rcpp::traits::r_type_module_object_tag >::value ){
method_name += "Rcpp_" ;
}
method_name += from ;
method_name += "___" ;
typedef typename Rcpp::traits::r_type_traits< typename Rcpp::traits::remove_const_and_reference<TO>::type >::r_category TO_CATEGORY ;
if( Rcpp::traits::same_type< TO_CATEGORY, ::Rcpp::traits::r_type_module_object_tag >::value ){
method_name += "Rcpp_" ;
}
method_name += to ;
return method_name ;
}
}
class CppClass ;
class CppObject ;
template <typename T>
class result {
public:
result( T* ptr_ ) : ptr(ptr_){}
operator T*(){ return ptr ; }
private:
T* ptr;
} ;
template <typename T>
class object {
public:
typedef T object_type ;
object( T* ptr_ ) : ptr(ptr_){}
operator T*(){ return ptr ; }
T* operator->(){ return ptr ; }
T& operator&(){ return *ptr ; }
T* ptr ;
} ;
namespace internal {
template <typename Class>
SEXP make_new_object( Class* ptr ){
Rcpp::XPtr<Class> xp( ptr, true ) ;
Function maker = Environment::Rcpp_namespace()[ "cpp_object_maker"] ;
return maker( typeid(Class).name() , xp ) ;
}
}
}
#include <Rcpp/module/CppFunction.h>
#include <Rcpp/module/get_return_type.h>
namespace Rcpp {
template <typename RESULT_TYPE, typename... T>
inline void signature(std::string& s, const char* name) {
s.clear();
s += get_return_type<RESULT_TYPE>() + " " + name + "(";
int n = sizeof...(T);
int i = 0;
// Using initializer list as c++11 implementation of a fold expression
(void)std::initializer_list<int>{
(s += get_return_type<T>(), s += (++i == n ? "" : ", "), 0)... };
s += ")";
}
template <typename RESULT_TYPE, typename... T>
class CppFunctionN : public CppFunction {
public:
CppFunctionN(RESULT_TYPE (*fun)(T...), const char* docstring = 0) : CppFunction(docstring), ptr_fun(fun) {}
SEXP operator()(SEXP* args) {
BEGIN_RCPP
return call<decltype(ptr_fun), RESULT_TYPE, T...>(ptr_fun, args);
END_RCPP
}
inline int nargs() { return sizeof...(T); }
inline bool is_void() { return std::is_void<RESULT_TYPE>::value; }
inline void signature(std::string& s, const char* name) { Rcpp::signature<RESULT_TYPE, T...>(s, name); }
inline DL_FUNC get_function_ptr() { return (DL_FUNC)ptr_fun; }
private:
RESULT_TYPE (*ptr_fun)(T...);
};
template <typename RESULT_TYPE, typename... T>
class CppFunction_WithFormalsN : public CppFunctionN<RESULT_TYPE, T...> {
public:
CppFunction_WithFormalsN(RESULT_TYPE (*fun)(T...), Rcpp::List formals_, const char* docstring = 0) :
CppFunctionN<RESULT_TYPE, T...>(fun, docstring), formals(formals_) {}
SEXP get_formals() { return formals; }
private:
Rcpp::List formals;
};
}
#include <Rcpp/module/class_Base.h>
#include <Rcpp/module/Module.h>
namespace Rcpp{
template <typename Class>
class CppMethod {
public:
typedef Rcpp::XPtr<Class> XP ;
CppMethod() {}
virtual SEXP operator()(Class* /*object*/, SEXP* /*args*/) { return R_NilValue ; }
virtual ~CppMethod(){}
virtual int nargs(){ return 0 ; }
virtual bool is_void(){ return false ; }
virtual bool is_const(){ return false ; }
virtual void signature(std::string& s, const char* name ){ s = name ; }
} ;
template <typename Class, typename Parent>
class CppInheritedMethod : public CppMethod<Class> {
public:
typedef Rcpp::XPtr<Class> XP ;
typedef CppMethod<Parent> ParentMethod ;
CppInheritedMethod( ParentMethod* parent_method_pointer_ ) :
parent_method_pointer(parent_method_pointer_)
{}
SEXP operator()( Class* object, SEXP* args){
return (*parent_method_pointer)( (Parent*)object, args ) ;
}
inline int nargs(){ return parent_method_pointer->nargs() ; }
inline bool is_void(){ return parent_method_pointer->is_void() ; }
inline bool is_const(){ return parent_method_pointer->is_const() ; }
inline void signature(std::string& s, const char* name){ return parent_method_pointer->signature(s, name) ; }
private:
ParentMethod* parent_method_pointer ;
} ;
template <typename... T>
inline void ctor_signature(std::string& s, const std::string& classname) {
s.assign(classname);
s += "(";
int n = sizeof...(T);
int i = 0;
// Using initializer list as c++11 implementation of a fold expression
(void)std::initializer_list<int>{
(s += get_return_type<T>(), s += (++i == n ? "" : ", "), 0)... };
s += ")";
}
template <typename Class>
class Constructor_Base {
public:
virtual Class* get_new( SEXP* args, int nargs ) = 0 ;
virtual int nargs() = 0 ;
virtual void signature(std::string& s, const std::string& class_name) = 0 ;
} ;
template <typename Class, typename... T>
class Constructor: public Constructor_Base<Class> {
public:
virtual Class* get_new( SEXP* args, int nargs ){
return get_new_impl(args, nargs, traits::make_index_sequence<sizeof...(T)>());
}
virtual int nargs(){ return sizeof...(T) ; }
virtual void signature(std::string& s, const std::string& class_name ){
ctor_signature<T...>(s, class_name) ;
}
private:
template <int... Is>
Class* get_new_impl(SEXP* args, int nargs, traits::index_sequence<Is...>) {
return new Class( as<T>(args[Is])... ) ;
}
};
template <typename Class>
class Factory_Base {
public:
virtual Class* get_new( SEXP* args, int nargs ) = 0 ;
virtual int nargs() = 0 ;
virtual void signature(std::string& s, const std::string& class_name) = 0 ;
} ;
template <typename Class, typename... T>
class Factory : public Factory_Base<Class> {
public:
Factory( Class* (*fun)(T...) ) : ptr_fun(fun){}
virtual Class* get_new( SEXP* args, int nargs ){
return get_new( args, traits::make_index_sequence<sizeof...(T)>() ) ;
}
virtual int nargs(){ return sizeof...(T) ; }
virtual void signature(std::string& s, const std::string& class_name ){
ctor_signature<T...>(s, class_name) ;
}
private:
template<int... I>
Class* get_new( SEXP* args, traits::index_sequence<I...> ){
return ptr_fun( bare_as<T>(args[I])... ) ;
}
Class* (*ptr_fun)(T...) ;
} ;
inline bool yes( SEXP* /*args*/, int /* nargs */ ){
return true ;
}
template<int n>
bool yes_arity( SEXP* /* args */ , int nargs){
return nargs == n ;
}
typedef bool (*ValidConstructor)(SEXP*,int) ;
typedef bool (*ValidMethod)(SEXP*,int) ;
template <typename Class>
class SignedConstructor {
public:
SignedConstructor(
Constructor_Base<Class>* ctor_,
ValidConstructor valid_,
const char* doc
) : ctor(ctor_), valid(valid_), docstring(doc == 0 ? "" : doc){}
Constructor_Base<Class>* ctor ;
ValidConstructor valid ;
std::string docstring ;
inline int nargs(){ return ctor->nargs() ; }
inline void signature(std::string& buffer, const std::string& class_name){
ctor->signature(buffer, class_name) ;
}
} ;
template <typename Class>
class SignedFactory {
public:
SignedFactory(
Factory_Base<Class>* fact_,
ValidConstructor valid_,
const char* doc
) : fact(fact_), valid(valid_), docstring(doc == 0 ? "" : doc){}
Factory_Base<Class>* fact ;
ValidConstructor valid ;
std::string docstring ;
inline int nargs(){ return fact->nargs() ; }
inline void signature(std::string& buffer, const std::string& class_name){
fact->signature(buffer, class_name) ;
}
} ;
template <typename Class>
class SignedMethod {
public:
typedef CppMethod<Class> METHOD ;
SignedMethod( METHOD* m, ValidMethod valid_, const char* doc ) : method(m), valid(valid_), docstring(doc == 0 ? "" : doc) {}
METHOD* method ;
ValidMethod valid ;
std::string docstring ;
inline int nargs(){ return method->nargs() ; }
inline bool is_void(){ return method->is_void() ; }
inline bool is_const(){ return method->is_const() ; }
inline void signature(std::string& s, const char* name){
method->signature(s, name);
}
} ;
template <typename Class>
class S4_CppConstructor : public Reference {
typedef Reference Base;
public:
typedef XPtr<class_Base> XP_Class ;
typedef Reference::Storage Storage ;
S4_CppConstructor( SignedConstructor<Class>* m, const XP_Class& class_xp, const std::string& class_name, std::string& buffer ) : Reference( "C++Constructor" ){
RCPP_DEBUG( "S4_CppConstructor( SignedConstructor<Class>* m, SEXP class_xp, const std::string& class_name, std::string& buffer" ) ;
field( "pointer" ) = Rcpp::XPtr< SignedConstructor<Class> >( m, false ) ;
field( "class_pointer" ) = class_xp ;
field( "nargs" ) = m->nargs() ;
m->signature( buffer, class_name ) ;
field( "signature" ) = buffer ;
field( "docstring" ) = m->docstring ;
}
RCPP_CTOR_ASSIGN_WITH_BASE(S4_CppConstructor)
} ;
template <typename Class>
class S4_CppOverloadedMethods : public Rcpp::Reference {
typedef Rcpp::Reference Base;
public:
typedef Rcpp::XPtr<class_Base> XP_Class ;
typedef SignedMethod<Class> signed_method_class ;
typedef std::vector<signed_method_class*> vec_signed_method ;
S4_CppOverloadedMethods( vec_signed_method* m, const XP_Class& class_xp, const char* name, std::string& buffer ) : Reference( "C++OverloadedMethods" ){
int n = static_cast<int>(m->size()) ;
Rcpp::LogicalVector voidness(n), constness(n) ;
Rcpp::CharacterVector docstrings(n), signatures(n) ;
Rcpp::IntegerVector nargs(n) ;
signed_method_class* met ;
for( int i=0; i<n; i++){
met = m->at(i) ;
nargs[i] = met->nargs() ;
voidness[i] = met->is_void() ;
constness[i] = met->is_const() ;
docstrings[i] = met->docstring ;
met->signature(buffer, name) ;
signatures[i] = buffer ;
}
field( "pointer" ) = Rcpp::XPtr< vec_signed_method >( m, false ) ;
field( "class_pointer" ) = class_xp ;
field( "size" ) = n ;
field( "void" ) = voidness ;
field( "const" ) = constness ;
field( "docstrings" ) = docstrings ;
field( "signatures" ) = signatures ;
field( "nargs" ) = nargs ;
}
RCPP_CTOR_ASSIGN_WITH_BASE(S4_CppOverloadedMethods)
} ;
template <bool IsConst,typename Class, typename RESULT_TYPE, typename... T>
class CppMethodImplN : public CppMethod<Class> {
public:
typedef typename std::conditional<IsConst, RESULT_TYPE (Class::*)(T...) const,
RESULT_TYPE (Class::*)(T...)>::type Method;
typedef CppMethod<Class> method_class;
typedef typename Rcpp::traits::remove_const_and_reference<RESULT_TYPE>::type CLEANED_RESULT_TYPE;
CppMethodImplN(Method m) : method_class(), met(m) {}
SEXP operator()(Class* object, SEXP* args) {
// Can't pass pointer to member function directly to `call()`, so wrap it in a lambda
auto f = [&object, this](T... cpp_args) -> CLEANED_RESULT_TYPE {
return (object->*met)(cpp_args...);
};
return call<decltype(f), CLEANED_RESULT_TYPE, T...>(f, args);
}
inline int nargs() { return sizeof...(T); }
inline bool is_void() { return std::is_void<RESULT_TYPE>::value; }
inline bool is_const() { return IsConst; }
inline void signature(std::string& s, const char* name) { Rcpp::signature<RESULT_TYPE,T...>(s, name); }
private:
Method met;
};
template <typename Class, typename RESULT_TYPE, typename... T>
using CppMethodN = CppMethodImplN<false, Class, RESULT_TYPE, T...>;
template <typename Class, typename RESULT_TYPE, typename... T>
using const_CppMethodN = CppMethodImplN<true, Class, RESULT_TYPE, T...>;
template <bool IsConst, typename Class, typename RESULT_TYPE, typename... T>
class Pointer_CppMethodImplN : public CppMethod<Class> {
public:
typedef typename std::conditional<IsConst, RESULT_TYPE (*)(const Class*, T...),
RESULT_TYPE (*)(Class*, T...)>::type Method;
typedef CppMethod<Class> method_class;
typedef typename Rcpp::traits::remove_const_and_reference<RESULT_TYPE>::type CLEANED_RESULT_TYPE;
Pointer_CppMethodImplN(Method m) : method_class(), met(m) {}
SEXP operator()(Class* object, SEXP* args) {
// Need to have `object` as the first argument to the function, so wrap it in a lambda
auto f = [&object, this](T... cpp_args) -> CLEANED_RESULT_TYPE {
return met(object, cpp_args...);
};
return call<decltype(f), CLEANED_RESULT_TYPE, T...>(f, args);
}
inline int nargs() { return sizeof...(T); }
inline bool is_void() { return std::is_void<RESULT_TYPE>::value; }
inline bool is_const() { return IsConst; }
inline void signature(std::string& s, const char* name) { Rcpp::signature<RESULT_TYPE,T...>(s, name); }
private:
Method met;
};
template <typename Class, typename RESULT_TYPE, typename... T>
using Pointer_CppMethodN = Pointer_CppMethodImplN<false, Class, RESULT_TYPE, T...>;
template <typename Class, typename RESULT_TYPE, typename... T>
using Const_Pointer_CppMethodN = Pointer_CppMethodImplN<true, Class, RESULT_TYPE, T...>;
template <typename Class>
class CppProperty {
public:
typedef Rcpp::XPtr<Class> XP ;
CppProperty(const char* doc = 0) : docstring( doc == 0 ? "" : doc ) {} ;
virtual ~CppProperty(){} ;
virtual SEXP get(Class* ) { throw std::range_error("cannot retrieve property"); }
virtual void set(Class*, SEXP) { throw std::range_error("cannot set property"); }
virtual bool is_readonly(){ return false; }
virtual std::string get_class(){ return ""; }
std::string docstring ;
} ;
template <typename Class, typename Parent>
class CppInheritedProperty : public CppProperty<Class> {
public:
typedef CppProperty<Class> Base ;
CppInheritedProperty( CppProperty<Parent>* parent_property_ ) :
Base( parent_property_->docstring.c_str() ),
parent_property(parent_property_)
{}
SEXP get( Class* obj ){ return parent_property->get( (Parent*)obj ) ; }
void set( Class* obj, SEXP s) { parent_property->set( (Parent*)obj, s ) ; }
bool is_readonly(){ return parent_property->is_readonly() ; }
std::string get_class(){ return parent_property->get_class() ; }
private:
CppProperty<Parent>* parent_property ;
} ;
template <typename Class>
class CppFinalizer{
public:
CppFinalizer(){} ;
virtual void run(Class* ){} ;
} ;
template <typename Class>
class FunctionFinalizer : public CppFinalizer<Class> {
public:
typedef void (*Pointer)(Class*) ;
FunctionFinalizer( Pointer p ) : finalizer(p){} ;
virtual void run(Class* object){
finalizer( object ) ;
}
private:
Pointer finalizer ;
} ;
template <typename Class>
class S4_field : public Rcpp::Reference {
typedef Rcpp::Reference Base;
public:
typedef XPtr<class_Base> XP_Class ;
S4_field( CppProperty<Class>* p, const XP_Class& class_xp ) : Reference( "C++Field" ){
RCPP_DEBUG( "S4_field( CppProperty<Class>* p, const XP_Class& class_xp )" )
field( "read_only" ) = p->is_readonly() ;
field( "cpp_class" ) = p->get_class();
field( "pointer" ) = Rcpp::XPtr< CppProperty<Class> >( p, false ) ;
field( "class_pointer" ) = class_xp ;
field( "docstring" ) = p->docstring ;
}
RCPP_CTOR_ASSIGN_WITH_BASE(S4_field)
} ;
#include <Rcpp/module/Module_Property.h>
#include <Rcpp/module/class.h>
template <typename Enum, typename Parent>
class enum_ {
public:
typedef enum_<Enum,Parent> self ;
enum_( const char* name_ ) :
name(name_), values(), parent_typeinfo_name( typeid(Parent).name() ){
}
~enum_(){
Rcpp::Module* module = getCurrentScope() ;
module->add_enum( parent_typeinfo_name, name, values ) ;
}
self& value( const char* name_, Enum value_ ){
values.insert( PAIR( name_, static_cast<int>( value_ ) ) ) ;
return *this ;
}
private:
std::string name ;
typedef std::map< std::string, int > MAP ;
typedef MAP::value_type PAIR ;
MAP values ;
std::string parent_typeinfo_name ;
} ;
}
namespace Rcpp {
template <typename RESULT_TYPE, typename... T>
void function(const char* name_, RESULT_TYPE (*fun)(T... t), const char* docstring = 0) {
Rcpp::Module* scope = ::getCurrentScope();
if (scope) {
scope->Add(name_, new CppFunctionN<RESULT_TYPE, T...>(fun, docstring));
}
}
template <typename RESULT_TYPE, typename... T>
void function(const char* name_, RESULT_TYPE (*fun)(T... t), Rcpp::List formals, const char* docstring = 0) {
Rcpp::Module* scope = ::getCurrentScope();
if (scope) {
scope->Add(name_, new CppFunction_WithFormalsN<RESULT_TYPE, T...>(fun, formals, docstring));
}
}
}
namespace Rcpp {
template <typename FROM, typename TO>
void converter( const char* from, const char* to, TO (*fun)(FROM), const char* docstring = 0 ){
std::string fun_name = internal::get_converter_name<FROM,TO>( from, to ) ;
function( fun_name.c_str(), fun, docstring ) ;
}
class CppClass : public S4{
typedef S4 Base;
public:
typedef XPtr<class_Base> XP_Class ;
typedef Rcpp::XPtr<Rcpp::Module> XP ;
CppClass( SEXP x) : S4(x){};
CppClass( Module* p, class_Base* cl, std::string& buffer ) : S4("C++Class") {
XP_Class clxp( cl, false, R_NilValue, R_NilValue ) ;
slot( "module" ) = XP( p, false ) ;
slot( "pointer" ) = clxp ;
buffer = "Rcpp_" ;
buffer += cl->name ;
slot( ".Data" ) = buffer ;
slot( "fields" ) = cl->fields( clxp ) ;
slot( "methods" ) = cl->getMethods( clxp, buffer ) ;
slot( "constructors") = cl->getConstructors( clxp, buffer ) ;
slot( "docstring" ) = cl->docstring ;
slot( "typeid" ) = cl->get_typeinfo_name() ;
slot( "enums" ) = cl->enums ;
slot( "parents" ) = cl->parents ;
}
RCPP_CTOR_ASSIGN_WITH_BASE(CppClass)
} ;
class CppObject : public S4{
typedef S4 Base;
public:
typedef Rcpp::XPtr<Rcpp::Module> XP ;
CppObject( Module* p, class_Base* clazz, SEXP xp ) : S4("C++Object") {
slot( "module" ) = XP( p, false ) ;
slot( "cppclass" ) = Rcpp::XPtr<class_Base>( clazz, false ) ;
slot( "pointer" ) = xp ;
}
RCPP_CTOR_ASSIGN_WITH_BASE(CppObject)
} ;
}
#define RCPP_MODULE_BOOT(name) _rcpp_module_boot_##name
#define RCPP_MODULE(name) \
void _rcpp_module_##name##_init() ; \
static Rcpp::Module _rcpp_module_##name( # name ) ; \
extern "C" SEXP _rcpp_module_boot_##name(){ \
::setCurrentScope( & _rcpp_module_##name ) ; \
_rcpp_module_##name##_init( ) ; \
Rcpp::XPtr<Rcpp::Module> mod_xp(& _rcpp_module_##name , false); \
::setCurrentScope( 0 ) ; \
return mod_xp ; \
} \
void _rcpp_module_##name##_init()
// silly little dance to suppress a 'defined but not used variable' warning
#ifdef __GNUC__
#define VARIABLE_IS_NOT_USED __attribute__ ((unused))
#else
#define VARIABLE_IS_NOT_USED
#endif
// static variable to hold Rf_install symbol to prevent it from being gc'ed
static VARIABLE_IS_NOT_USED SEXP moduleSym = NULL;
// helper macro to cache the result of Rf_install("Module"): once
// it is allocated and in the symbol table it is safe from gc
#define GET_MODULE_SYM ( moduleSym == NULL ? moduleSym = Rf_install("Module") : moduleSym )
// this macro is called by code wanting to load a module -- see RInside's rinside_module_sample0.cpp
#define LOAD_RCPP_MODULE(NAME) \
Shield<SEXP> __load_module_call__( Rf_lang2( GET_MODULE_SYM, _rcpp_module_boot_##NAME() ) ); \
Rcpp_fast_eval( __load_module_call__, R_GlobalEnv );
#endif
|