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
505 views Asked by pbhowmick At
1
There are 1 answers
Related Questions in C
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in R
- How to make an R Shiny app with big data?
- How do I keep only specific rows based on whether a column has a specific value?
- Likert scale study - ordinal regression model
- Extract a table/matrix from R into Excel with same colors and stle
- How can I solve non-conformable arguments in R netmeta::discomb (Error in B.matrix %*% C.matrix)?
- Can raw means and estimated marginal means be the same ? And when?
- Understanding accumulate function when .dir is set to "backwards"
- Error in if (nrow(peaks) > 0) { : argument is of length zero Calls: CopywriteR ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous> Execution ha
- How to increase quality of mathjax output?
- Convert the time intervals to equal hours and fill in the value column
- How to run an R function getpoints() from IPDfromKM package in an R shiny app which in R pops up a plot that utilizes clicks to capture coordinates?
- Replace NA in list of dfs in certain columns and under certain conditions
- R and text on Cyrillic
- The ts() function in R is returning the correct start and frequency but not end value which is 1 and not 179
- TROUBLING with the "DROP_NA" Function
Related Questions in RCPP
- Convert the glmnet predict function in R to Rcpp
- How to access a specific element of a DataFrame in Rcpp?
- Is it possible to convert a Rcpp::List to std::vector?
- How can I pass in a row vector using Rcpparmadillo in R?
- Various C++ syntax errors resulting from expansion of macro ‘RcppExport’ within R Markdown
- Rcpp compilation error on Mac OS X (unsupported argument 'core2' to option '-mtune=')
- In Rcpp, how to include cpp package that installed in cluster?
- How to link a library in Rtools on Windows?
- Resolving Compilation Failure of Rcpp-Based R Package on CRAN Linux VMs Due to Makevars Issues
- Converting code from R to C++ using Rcpp not returning any results
- Thread safe parallel list computation using RcppParallel
- Using arma::mat instead of NumericVector made my code twice as fast. Why?
- Can Rcpp be used to speed up calls to other R functions?
- R: Efficient Way to partly modify diagonal of matrix
- Using C++ execution header in R package
Related Questions in R-S4
- How to document a method in R using Roxygen2 when the class and generic live in another package?
- add personal funtion in setMethod in R
- (R) Finding list elements by name and combine list elements into c()
- Using the `validate` package inside an Rmarkdown document
- Subcluster all the clusters of a Seurat object
- How can I convert a RS4 object to python data frame?
- S4 method for ensuring dplyr distinct selects rows containing distinct S4 objects
- Issue with `mclapply` in R package S4 implementation when passing strings
- R Error message 'argument fdef is missing with no default`
- Generating similar methods via loop in R package
- Is there a way to use own package's data (internal or external) as a default S4 class slot?
- Error in angle_model$edd : $ operator not defined for this S4 class
- Are `$` and `[[` equivalent when accessing elements of an S4 object?
- Subsetting a custom S4 class using the "subset" function within another function
- R memory consumption when accessing object slot with row names
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?
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)
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).