inst/misc/code_gen.R

library(clarabel)
# Function to match on types using savvy
f <- function(name, type = c("integer", "double", "logical", "character")) {
  type <- match.arg(type)
  c(
    sprintf('"%s" => ', name),
    sprintf('   match typed_value {'),
    switch(type,
           integer = sprintf('       TypedSexp::Integer(i) => settings.%s = i.as_slice()[0],', name),
           double = sprintf('       TypedSexp::Real(f) => settings.%s = f.as_slice()[0],', name),
           logical = sprintf('       TypedSexp::Logical(b) => settings.%s = b.as_slice_raw()[0] != 0,', name),
           character = sprintf('       TypedSexp::String(s) => if let Some(result) = s.to_vec().get(0) {\\n
			settings.%s = result.to_string();\\n		    },\\n		    _ => (),', name)
           ),
    "_ => (),"
    "},"
    )
}

s <- clarabel_control()
sn <- names(s)
st <- sapply(s, typeof)
out <- lapply(seq_along(st), function(i) f(sn[i], st[i]))
writeLines(unlist(out), "update_settings_snippet.rs")

Try the clarabel package in your browser

Any scripts or data that you put into this service are public.

clarabel documentation built on April 12, 2025, 1:53 a.m.