(This article was first published on BioStatMatt, and kindly contributed to R-bloggers)
Continuing in the context of this previous post…
1. Select a static symbol from the R sources, like Connections
$ grep "static Rconnection Connections" src/main/connections.c static Rconnection Connections[NCONNECTIONS];
2. Get its address
$ objdump -t `R RHOME`/bin/exec/R | awk '/ Connections/ {print $1}'
000000000093b700
3. Use the symbol
> library(inline)
> code <- "
+ typedef struct { char *class, *description; } *Rconnection;
+ Rconnection *Connections = (Rconnection*)0x000000000093b700;
+ return mkString(Connections[0]->description);
+ "
> ConZeroDesc <- cfunction(signature(), code, language="C")
> ConZeroDesc()
[1] "stdin"
This effect could probably be prevented by selecting additional compiler and/or and linker options.
P.S. Nice job Oleg Sklyar, Duncan Murdoch, Mike Smith, Dirk Eddelbuettel, Romain Francois with inline-0.3.5
To leave a comment for the author, please follow the link and comment on his blog: BioStatMatt.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).
Twitter Comment
static symbols too?: Continuing in the context of this previous post… 1. Select a… [link to post] #rstats
– Posted using Chat Catcher