Skip to main content

Module cached_class

Module cached_class 

Source
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_install symbol 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 is TRUE in 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 by make_rust_condition_value to identify panic-transport values to the generated R wrappers.