#datalog #analysis #engine #relation #programs #intended #iteration

datafrog

Lightweight Datalog engine intended to be embedded in other Rust programs

4 releases (stable)

2.0.1 Jan 2, 2019
2.0.0 Dec 27, 2018
1.0.0 Dec 5, 2018
0.1.0 May 24, 2018

#215 in Embedded development

Download history 9729/week @ 2023-11-23 10389/week @ 2023-11-30 10783/week @ 2023-12-07 10303/week @ 2023-12-14 9117/week @ 2023-12-21 6642/week @ 2023-12-28 10192/week @ 2024-01-04 9901/week @ 2024-01-11 10023/week @ 2024-01-18 11393/week @ 2024-01-25 15716/week @ 2024-02-01 17092/week @ 2024-02-08 16535/week @ 2024-02-15 15024/week @ 2024-02-22 15483/week @ 2024-02-29 12756/week @ 2024-03-07

62,437 downloads per month
Used in 11 crates (4 directly)

Apache-2.0/MIT

59KB
1K SLoC

datafrog

Datafrog is a lightweight Datalog engine intended to be embedded in other Rust programs.

Datafrog has no runtime, and relies on you to build and repeatedly apply the update rules. It tries to help you do this correctly. As an example, here is how you might write a reachability query using Datafrog (minus the part where we populate the nodes and edges initial relations).

extern crate datafrog;
use datafrog::Iteration;

fn main() {

    // Create a new iteration context, ...
    let mut iteration = Iteration::new();

    // .. some variables, ..
    let nodes_var = iteration.variable::<(u32,u32)>("nodes");
    let edges_var = iteration.variable::<(u32,u32)>("edges");

    // .. load them with some initial values, ..
    nodes_var.insert(nodes.into());
    edges_var.insert(edges.into());

    // .. and then start iterating rules!
    while iteration.changed() {
        // nodes(a,c)  <-  nodes(a,b), edges(b,c)
        nodes_var.from_join(&nodes_var, &edges_var, |_b, &a, &c| (c,a));
    }

    // extract the final results.
    let reachable: Vec<(u32,u32)> = variable.complete();
}

If you'd like to read more about how it works, check out this blog post.

Authorship

Datafrog was initially developed by Frank McSherry and was later transferred to the rust-lang-nursery organization. Thanks Frank!

No runtime deps