roto 0.10.0

a statically-typed, compiled, embedded scripting language
Documentation
use std::net::IpAddr;

use roto::{Runtime, Val, Verdict, library};

#[derive(Clone)]
struct AddrRange {
    min: IpAddr,
    max: IpAddr,
}

fn main() {
    // Create the Roto types to register into the runtime
    let lib = library! {
        /// A range of IP addresses
        #[clone] type AddrRange = Val<AddrRange>;

        impl Val<AddrRange> {
            fn contains(range: Val<AddrRange>, addr: IpAddr) -> bool {
                range.min <= addr && addr <= range.max
            }
        }
    };

    // Create the runtime with the items
    let rt = Runtime::from_lib(lib).unwrap();

    // Compile the program with our runtime
    let mut program = rt.compile("examples/addr_range.roto").unwrap();

    // Extract the function
    let function = program
        .get_function::<fn(Val<AddrRange>, IpAddr) -> Verdict<IpAddr, ()>>(
            "within_range",
        )
        .unwrap();

    let range = AddrRange {
        min: "10.10.10.10".parse().unwrap(),
        max: "10.10.10.12".parse().unwrap(),
    };

    // Run the function
    let in_range = "10.10.10.11".parse().unwrap();
    println!("{:?}", function.call(Val(range.clone()), in_range));

    let out_of_range = "20.20.20.20".parse().unwrap();
    println!("{:?}", function.call(Val(range), out_of_range));
}