Mercurial > pub > dyncall > bindings
view R/rdyncall/src/rutils.c @ 29:6cc2b7fc7ea2
bigger pydc update:
- cleanups and refactoring
- python 2 fixes in var conversions (especially w/ respect to int vs long)
- fix to pydc.free() which didn't work at all
- fix to return python bool as actual bool
- test lib covering all conversions (manual verification, though :-/)
author | Tassilo Philipp |
---|---|
date | Wed, 08 Apr 2020 22:17:43 +0200 |
parents | 0cfcc391201f |
children |
line wrap: on
line source
/** =========================================================================== ** R-Package: rdyncall ** File: src/rutils.c ** Description: misc utility functions to work with low-level data structures in R **/ // uses: DATAPTR macro #define USE_RINTERNALS #include <Rinternals.h> #include <stddef.h> SEXP r_isnullptr(SEXP x) { return ScalarLogical( ( R_ExternalPtrAddr(x) == NULL ) ? TRUE : FALSE ); } SEXP r_asextptr(SEXP x) { if (isVector(x)) { return R_MakeExternalPtr( DATAPTR(x), R_NilValue, x ); } error("expected a vector type"); return R_NilValue; /* dummy */ } SEXP r_offsetPtr(SEXP x, SEXP offset) { if ( LENGTH(offset) == 0 ) error("offset is missing"); ptrdiff_t offsetval = INTEGER(offset)[0]; unsigned char* ptr = 0; if (isVector(x)) { ptr = (unsigned char*) DATAPTR(x); } else if (TYPEOF(x) == EXTPTRSXP ) { ptr = (unsigned char*) R_ExternalPtrAddr(x); } else { error("unsupported type"); } return R_MakeExternalPtr( ptr + offsetval , R_NilValue, x ); }