I have a third-party C library I am using to write an R extension. I am required to create a few structs defined in the library (and initialize them) I need to maintain them as part of an S4 object (think of these structs as defining to state of a computation, to destroy them would be to destroy all remaining computation and the results of all that has been already computed).
I am thinking of creating a S4 object to hold pointers these structs as void* pointers but it is not at all clear how to do so, what would be the type of the slot?
S4 object with a pointer to a C struct
501 Views Asked by pbhowmick At
1
There are 1 best solutions below
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in R
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
- Extract series of observations from dataframe for complete sets of data
- Retrieve path of supplementary data file of developed package
- r package development - own function not visible for opencpu
- Label a dataset according to bins of a histogram
- multiply each columns of a matrix by a vector
Related Questions in RCPP
- __result not declared in this scope
- Sort elements of a NumericMatrix by dim names
- Rcpp swap function with NumericVector
- Error with compiling RInside examples under Windows
- How to call user-defined function in RcppParallel?
- Make cumulative sum faster
- Rcpp: Platform differences in output
- Paste the elements of two columns
- Rcpp version of tabulate is slower; where is this from, how to understand
- Rcpp: How to ensure deep copy of a NumericMatrix?
- sourceCpp() with parallel
- Column means 3d matrix (cube) Rcpp
- S4 object with a pointer to a C struct
- What is the random number generator that Armadillo uses?
- Documenting Rcpp module exposed methods with roxygen2
Related Questions in R-S4
- extracting coordinates from polygon r
- Make `==` a generic funciton in R
- S4 Validity on ANY slot containing S3 Object
- S4 object with a pointer to a C struct
- how to directly open the doc page of a s4 class?
- S4 class from readr read_csv output
- dput() sp object in R
- How to use @inheritParams when expanding primitive functions in R
- Return value of getClasses() in R?
- Generalizing `...` (three dots) argument dispatch: S4 methods for argument set including `...`
- R optional arguments for S4 setMethod
- Functional interfaces for reference classes
- Undefined slot classes in definition?
- Executing s4 methods for all classes of an object?
- R cannot declare setClass with inheritance
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As pointed out by @hrbrmstr, you can use the
externalptrtype to keep such objects "alive", which is touched on in this section of Writing R Extensions, although I don't see any reason why you will need to store anything asvoid*. If you don't have any issue with using a little C++, the Rcpp classXPtrcan eliminate a fair amount of the boilerplate involved with managingEXTPTRSXPs. As an example, assume the following simplified example represents your third party library's API:When working with pointers created via
newit is generally sufficient to useRcpp::XPtr<SomeClass>, because the default finalizer simply callsdeleteon the held object. However, since you are dealing with a C API, we have to supply the (default) template parameterRcpp::PreserveStorage, and more importantly, the appropriate finalizer (free_CStructin this example) so that theXPtrdoes not calldeleteon memory allocated viamalloc, etc., when the corresponding R object is garbage collected.Continuing with the example, assume you write the following functions to interact with your
CStruct:At this point, you have done enough to start handling
CStructsfrom R:ptr <- MakeCStruct()will initialize aCStructand store it as anexternalptrin RUpdateCStruct(ptr, x)will modify the data stored in theCStruct,SummarizeCStruct(ptr)will print a summary, etc.rm(ptr); gc()will remove theptrobject and force the garbage collector to run, thus callingfree_CStruct(ptr)and destroying the object on the C side of things as wellYou mentioned the use of S4 classes, which is one option for containing all of these functions in a single place. Here's one possibility:
Then, we can work with the
CStructs like this:Of course, another option is to use Rcpp Modules, which more or less take care of the class definition boilerplate on the R side (using reference classes rather than S4 classes, however).