Generalized RDF datasets.
The Resource Description Framework (RDF) is a powerful method for modeling data and knowledge defined by the World Wide Web Consortium (W3C). A RDF dataset consists in a collection of graphs connecting nodes, values and predicates. This crate provides traits and implementations of Generalized RDF (gRDF) where nodes, values and predicates have the same representation.
Note that this crates requires the nightly compiler. It needs Generic Associated Typed (GAT) to work properly, which are still being implemented.
Basic usage
Exploring a dataset
Each Dataset implementation provides many iterators to explore the data.
One simple way is to iterate through the quad of the dataset:
for Quad in dataset.quads
Another way is to access each graph individually using Dataset::graph.
For a given graph, it is then possible to iterate through the triples of the
graph:
let graph = dataset.graph.unwrap;
for Triple in graph.triples
It is also possible to explore the graph logically, subject by subject, predicate by predicate, object by object:
// for each subject of the graph...
for in graph.subjects
Inserting new data
Insertion can be done on MutableDataset implementations using
MutableDataset::insert:
let mut dataset: = new;
dataset.insert;
Again it is possible to access each graph of the dataset mutably:
let mut graph = dataset.graph_mut.unwrap;
graph.insert;
Custom node type
The type used to represent RDF nodes (subjects, predicate and objects) is a
parameter of the dataset. Anything can be used although this crate provide a
default Term type that represents generic RDF nodes (blank nodes,
IRI-named nodes and literal values).
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.