Expand description
Cached R class attribute SEXPs.
Frequently-used class vectors (like c("POSIXct", "POSIXt")) and attribute
values are allocated once and preserved permanently. This avoids repeated
Rf_mkCharLenCE hash lookups on hot paths.
Two declarative macros handle the boilerplate:
โ
// Cache a symbol (Rf_install result):
cached_symbol!(pub(crate) fn tzone_symbol() = c"tzone");
// Cache a STRSXP vector (class, names, etc.):
cached_strsxp!(pub(crate) fn posixct_class_sexp() = [c"POSIXct", c"POSIXt"]);
cached_strsxp!(pub(crate) fn date_class_sexp() = [c"Date"]);Both expand to a function with a static OnceLock<SEXP> inside.
First call initializes; subsequent calls are a single atomic load.
CHARSXPs are obtained via Rf_install + PRINTNAME โ symbols are never
collected, so the CHARSXP is permanently valid. STRSXP vectors are kept
alive via R_PreserveObject.
Macrosยง
- cached_
strsxp ๐ - Cache a STRSXP vector built from permanent CHARSXPs.
- cached_
symbol ๐ - Cache an
Rf_installsymbol result.
Functionsยง
- condition_
names_ ๐sexp - Cached
c("error", "kind", "class", "call")names STRSXP for condition values. - data_
frame_ ๐class_ sexp - Cached
"data.frame"class STRSXP. - permanent_
charsxp ๐๐ป - Get a permanent CHARSXP for a string by going through
Rf_install+PRINTNAME. - rust_
condition_ ๐attr_ symbol - Cached
__rust_condition__symbol โ the marker attribute on tagged panic-transport SEXPs. Wrapper code asserts this isTRUEin addition to the class check before re-raising via.miniextendr_raise_condition. - rust_
condition_ ๐class_ sexp - Cached
"rust_condition_value"class STRSXP โ applied to every tagged SEXP produced bymake_rust_condition_valueto identify panic-transport values to the generated R wrappers.