39 releases (5 breaking)

0.6.3 May 5, 2024
0.6.1 Apr 26, 2024
0.4.1 Mar 30, 2024
0.1.19 Dec 17, 2023
0.1.16 Oct 16, 2023

#154 in Text processing

Download history 40/week @ 2024-01-21 167/week @ 2024-01-28 161/week @ 2024-02-04 535/week @ 2024-02-11 54/week @ 2024-02-18 261/week @ 2024-02-25 298/week @ 2024-03-03 624/week @ 2024-03-10 265/week @ 2024-03-17 469/week @ 2024-03-24 489/week @ 2024-03-31 408/week @ 2024-04-07 579/week @ 2024-04-14 199/week @ 2024-04-21 175/week @ 2024-04-28 293/week @ 2024-05-05

1,504 downloads per month

MIT license

220KB
4K SLoC

Savvy - A simple R extension interface using Rust

savvy is a simple R extension interface using Rust, like the extendr framework. The name “savvy” comes from the Japanese word “錆” (pronounced as sàbí), which means “Rust”.

With savvy, you can automatically generate R functions from Rust code. This is an example of what savvy-powered function would look like:

Rust

use savvy::savvy;

/// Convert to Upper-case
/// 
/// @param x A character vector.
/// @export
#[savvy]
fn to_upper(x: StringSexp) -> savvy::Result<savvy::Sexp> {
    // Use `Owned{type}Sexp` to allocate an R vector for output.
    let mut out = OwnedStringSexp::new(x.len())?;

    for (i, e) in x.iter().enumerate() {
        // To Rust, missing value is an ordinary value. In `&str`'s case, it's just "NA".
        // You have to use `.is_na()` method to distinguish the missing value.
        if e.is_na() {
            // Set the i-th element to NA
            out.set_na(i)?;
            continue;
        }

        let e_upper = e.to_uppercase();
        out.set_elt(i, e_upper.as_str())?;
    }

    out.into()
}

R

to_upper(c("a", "b", "c"))
#> [1] "A" "B" "C"

User guide

https://yutannihilation.github.io/savvy/guide/

Contributing

CONTRIBUTING.md

Examples

A toy example R package can be found in R-package/ directory.

Thanks

Savvy is not quite unique. This project is made possible by heavily taking inspiration from other great projects:

  • The basic idea is of course based on extendr. Savvy would not exist without extendr.
  • cpp11’s “writable” concept influenced the design a lot. Also, I learned a lot from the great implementation such as the protection mechanism.
  • PyO3 made me realize that the FFI crate doesn’t need to be a “sys” crate.

Dependencies

~0.4–1.2MB
~26K SLoC