Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
212 lines
7.4 KiB
212 lines
7.4 KiB
4 years ago
|
//! Utilities to write RDF graphs and datasets
|
||
|
|
||
|
use super::GraphSyntax;
|
||
|
use crate::model::*;
|
||
|
use crate::DatasetSyntax;
|
||
|
use rio_api::formatter::{QuadsFormatter, TriplesFormatter};
|
||
|
use rio_turtle::{NQuadsFormatter, NTriplesFormatter, TriGFormatter, TurtleFormatter};
|
||
|
use rio_xml::{RdfXmlError, RdfXmlFormatter};
|
||
|
use std::io;
|
||
|
use std::io::Write;
|
||
|
|
||
|
/// A serializer for RDF graph serialization formats.
|
||
|
///
|
||
|
/// It currently supports the following formats:
|
||
|
/// * [N-Triples](https://www.w3.org/TR/n-triples/) (`GraphSyntax::NTriples`)
|
||
|
/// * [Turtle](https://www.w3.org/TR/turtle/) (`GraphSyntax::Turtle`)
|
||
|
/// * [RDF XML](https://www.w3.org/TR/rdf-syntax-grammar/) (`GraphSyntax::RdfXml`)
|
||
|
///
|
||
|
/// ```
|
||
|
/// use oxigraph::io::{GraphSyntax, GraphSerializer};
|
||
|
/// use oxigraph::model::*;
|
||
|
///
|
||
|
/// let mut buffer = Vec::new();
|
||
|
/// let mut writer = GraphSerializer::from_syntax(GraphSyntax::NTriples).triple_writer(&mut buffer)?;
|
||
|
/// writer.write(&Triple {
|
||
|
/// subject: NamedNode::new("http://example.com/s")?.into(),
|
||
|
/// predicate: NamedNode::new("http://example.com/p")?,
|
||
|
/// object: NamedNode::new("http://example.com/o")?.into()
|
||
|
/// })?;
|
||
|
/// writer.finish()?;
|
||
|
///
|
||
|
///assert_eq!(buffer.as_slice(), "<http://example.com/s> <http://example.com/p> <http://example.com/o> .\n".as_bytes());
|
||
|
/// # oxigraph::Result::Ok(())
|
||
|
/// ```
|
||
|
#[allow(missing_copy_implementations)]
|
||
|
pub struct GraphSerializer {
|
||
|
syntax: GraphSyntax,
|
||
|
}
|
||
|
|
||
|
impl GraphSerializer {
|
||
|
pub fn from_syntax(syntax: GraphSyntax) -> Self {
|
||
|
Self { syntax }
|
||
|
}
|
||
|
|
||
|
/// Returns a `TripleWriter` allowing writing triples into the given `Write` implementation
|
||
|
pub fn triple_writer<W: Write>(&self, writer: W) -> Result<TripleWriter<W>, io::Error> {
|
||
|
Ok(TripleWriter {
|
||
|
formatter: match self.syntax {
|
||
|
GraphSyntax::NTriples => TripleWriterKind::NTriples(NTriplesFormatter::new(writer)),
|
||
|
GraphSyntax::Turtle => TripleWriterKind::Turtle(TurtleFormatter::new(writer)),
|
||
|
GraphSyntax::RdfXml => {
|
||
|
TripleWriterKind::RdfXml(RdfXmlFormatter::new(writer).map_err(map_xml_err)?)
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Allows writing triples.
|
||
|
/// Could be built using a `GraphSerializer`.
|
||
|
///
|
||
|
/// Warning: Do not forget to run the `finish` method to properly write the last bytes of the file.
|
||
|
///
|
||
|
/// ```
|
||
|
/// use oxigraph::io::{GraphSyntax, GraphSerializer};
|
||
|
/// use oxigraph::model::*;
|
||
|
///
|
||
|
/// let mut buffer = Vec::new();
|
||
|
/// let mut writer = GraphSerializer::from_syntax(GraphSyntax::NTriples).triple_writer(&mut buffer)?;
|
||
|
/// writer.write(&Triple {
|
||
|
/// subject: NamedNode::new("http://example.com/s")?.into(),
|
||
|
/// predicate: NamedNode::new("http://example.com/p")?,
|
||
|
/// object: NamedNode::new("http://example.com/o")?.into()
|
||
|
/// })?;
|
||
|
/// writer.finish()?;
|
||
|
///
|
||
|
///assert_eq!(buffer.as_slice(), "<http://example.com/s> <http://example.com/p> <http://example.com/o> .\n".as_bytes());
|
||
|
/// # oxigraph::Result::Ok(())
|
||
|
/// ```
|
||
|
#[must_use]
|
||
|
pub struct TripleWriter<W: Write> {
|
||
|
formatter: TripleWriterKind<W>,
|
||
|
}
|
||
|
|
||
|
enum TripleWriterKind<W: Write> {
|
||
|
NTriples(NTriplesFormatter<W>),
|
||
|
Turtle(TurtleFormatter<W>),
|
||
|
RdfXml(RdfXmlFormatter<W>),
|
||
|
}
|
||
|
|
||
|
impl<W: Write> TripleWriter<W> {
|
||
|
pub fn write(&mut self, triple: &Triple) -> Result<(), io::Error> {
|
||
|
match &mut self.formatter {
|
||
|
TripleWriterKind::NTriples(formatter) => formatter.format(&triple.into())?,
|
||
|
TripleWriterKind::Turtle(formatter) => formatter.format(&triple.into())?,
|
||
|
TripleWriterKind::RdfXml(formatter) => {
|
||
|
formatter.format(&triple.into()).map_err(map_xml_err)?
|
||
|
}
|
||
|
}
|
||
|
Ok(())
|
||
|
}
|
||
|
|
||
|
/// Writes the last bytes of the file
|
||
|
pub fn finish(self) -> Result<(), io::Error> {
|
||
|
match self.formatter {
|
||
|
TripleWriterKind::NTriples(formatter) => formatter.finish(),
|
||
|
TripleWriterKind::Turtle(formatter) => formatter.finish()?,
|
||
|
TripleWriterKind::RdfXml(formatter) => formatter.finish().map_err(map_xml_err)?,
|
||
|
};
|
||
|
Ok(())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// A serializer for RDF graph serialization formats.
|
||
|
///
|
||
|
/// It currently supports the following formats:
|
||
|
/// * [N-Quads](https://www.w3.org/TR/n-quads/) (`DatasetSyntax::NQuads`)
|
||
|
/// * [TriG](https://www.w3.org/TR/trig/) (`DatasetSyntax::TriG`)
|
||
|
///
|
||
|
/// ```
|
||
|
/// use oxigraph::io::{DatasetSyntax, DatasetSerializer};
|
||
|
/// use oxigraph::model::*;
|
||
|
///
|
||
|
/// let mut buffer = Vec::new();
|
||
|
/// let mut writer = DatasetSerializer::from_syntax(DatasetSyntax::NQuads).quad_writer(&mut buffer)?;
|
||
|
/// writer.write(&Quad {
|
||
|
/// subject: NamedNode::new("http://example.com/s")?.into(),
|
||
|
/// predicate: NamedNode::new("http://example.com/p")?,
|
||
|
/// object: NamedNode::new("http://example.com/o")?.into(),
|
||
|
/// graph_name: NamedNode::new("http://example.com/g")?.into(),
|
||
|
/// })?;
|
||
|
/// writer.finish()?;
|
||
|
///
|
||
|
///assert_eq!(buffer.as_slice(), "<http://example.com/s> <http://example.com/p> <http://example.com/o> <http://example.com/g> .\n".as_bytes());
|
||
|
/// # oxigraph::Result::Ok(())
|
||
|
/// ```
|
||
|
#[allow(missing_copy_implementations)]
|
||
|
pub struct DatasetSerializer {
|
||
|
syntax: DatasetSyntax,
|
||
|
}
|
||
|
|
||
|
impl DatasetSerializer {
|
||
|
pub fn from_syntax(syntax: DatasetSyntax) -> Self {
|
||
|
Self { syntax }
|
||
|
}
|
||
|
|
||
|
/// Returns a `QuadWriter` allowing writing triples into the given `Write` implementation
|
||
|
pub fn quad_writer<W: Write>(&self, writer: W) -> Result<QuadWriter<W>, io::Error> {
|
||
|
Ok(QuadWriter {
|
||
|
formatter: match self.syntax {
|
||
|
DatasetSyntax::NQuads => QuadWriterKind::NQuads(NQuadsFormatter::new(writer)),
|
||
|
DatasetSyntax::TriG => QuadWriterKind::TriG(TriGFormatter::new(writer)),
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Allows writing triples.
|
||
|
/// Could be built using a `DatasetSerializer`.
|
||
|
///
|
||
|
/// Warning: Do not forget to run the `finish` method to properly write the last bytes of the file.
|
||
|
///
|
||
|
/// ```
|
||
|
/// use oxigraph::io::{DatasetSyntax, DatasetSerializer};
|
||
|
/// use oxigraph::model::*;
|
||
|
///
|
||
|
/// let mut buffer = Vec::new();
|
||
|
/// let mut writer = DatasetSerializer::from_syntax(DatasetSyntax::NQuads).quad_writer(&mut buffer)?;
|
||
|
/// writer.write(&Quad {
|
||
|
/// subject: NamedNode::new("http://example.com/s")?.into(),
|
||
|
/// predicate: NamedNode::new("http://example.com/p")?,
|
||
|
/// object: NamedNode::new("http://example.com/o")?.into(),
|
||
|
/// graph_name: NamedNode::new("http://example.com/g")?.into(),
|
||
|
/// })?;
|
||
|
/// writer.finish()?;
|
||
|
///
|
||
|
///assert_eq!(buffer.as_slice(), "<http://example.com/s> <http://example.com/p> <http://example.com/o> <http://example.com/g> .\n".as_bytes());
|
||
|
/// # oxigraph::Result::Ok(())
|
||
|
/// ```
|
||
|
#[must_use]
|
||
|
pub struct QuadWriter<W: Write> {
|
||
|
formatter: QuadWriterKind<W>,
|
||
|
}
|
||
|
|
||
|
enum QuadWriterKind<W: Write> {
|
||
|
NQuads(NQuadsFormatter<W>),
|
||
|
TriG(TriGFormatter<W>),
|
||
|
}
|
||
|
|
||
|
impl<W: Write> QuadWriter<W> {
|
||
|
pub fn write(&mut self, triple: &Quad) -> Result<(), io::Error> {
|
||
|
match &mut self.formatter {
|
||
|
QuadWriterKind::NQuads(formatter) => formatter.format(&triple.into())?,
|
||
|
QuadWriterKind::TriG(formatter) => formatter.format(&triple.into())?,
|
||
|
}
|
||
|
Ok(())
|
||
|
}
|
||
|
|
||
|
/// Writes the last bytes of the file
|
||
|
pub fn finish(self) -> Result<(), io::Error> {
|
||
|
match self.formatter {
|
||
|
QuadWriterKind::NQuads(formatter) => formatter.finish(),
|
||
|
QuadWriterKind::TriG(formatter) => formatter.finish()?,
|
||
|
};
|
||
|
Ok(())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn map_xml_err(e: RdfXmlError) -> io::Error {
|
||
|
io::Error::new(io::ErrorKind::Other, e) //TODO: drop
|
||
|
}
|