shacl_validation 0.2.12

RDF data shapes implementation in Rust
Documentation
use rudof_rdf::rdf_core::RDFFormat;
use rudof_rdf::rdf_impl::{InMemoryGraph, ReaderMode};
use sparql_service::RdfData;
use std::path::Path;

use crate::validate_error::ValidateError;

use super::Store;

pub struct Graph {
    store: RdfData,
}

impl Default for Graph {
    fn default() -> Self {
        Self { store: RdfData::new() }
    }
}

impl Graph {
    pub fn new() -> Graph {
        Graph::default()
    }

    #[cfg(not(target_family = "wasm"))]
    pub fn from_path(path: &Path, rdf_format: RDFFormat, base: Option<&str>) -> Result<Self, Box<ValidateError>> {
        match InMemoryGraph::from_path(path, &rdf_format, base, &ReaderMode::default()) {
            Ok(store) => Ok(Self {
                store: RdfData::from_graph(store).map_err(|e| Box::new(ValidateError::RdfDataError(e)))?,
            }),
            Err(error) => Err(Box::new(ValidateError::Graph(error))),
        }
    }

    pub fn from_graph(graph: InMemoryGraph) -> Result<Graph, Box<ValidateError>> {
        Ok(Graph {
            store: RdfData::from_graph(graph).map_err(|e| Box::new(ValidateError::RdfDataError(e)))?,
        })
    }

    pub fn from_data(data: RdfData) -> Graph {
        Graph { store: data }
    }
}

impl Store<RdfData> for Graph {
    fn store(&self) -> &RdfData {
        &self.store
    }
}