pub struct NTriplesParser<R: BufRead> { /* fields omitted */ }
Expand description

A N-Triples and N-Triples-star streaming parser.

It implements the TriplesParser trait.

Its memory consumption is linear in the size of the longest line of the file. It does not do any allocation during parsing except buffer resizing if a line significantly longer than the previous is encountered.

Count the number of people using the TriplesParser API:

use rio_turtle::{NTriplesParser, TurtleError};
use rio_api::parser::TriplesParser;
use rio_api::model::NamedNode;

let file = b"<http://example.com/foo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://example.com/foo> <http://schema.org/name> \"Foo\" .
<http://example.com/bar> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
<http://example.com/bar> <http://schema.org/name> \"Bar\" .";

let rdf_type = NamedNode { iri: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" };
let schema_person = NamedNode { iri: "http://schema.org/Person" };
let mut count = 0;
NTriplesParser::new(file.as_ref()).parse_all(&mut |t| {
    if t.predicate == rdf_type && t.object == schema_person.into() {
        count += 1;
    }
    Ok(()) as Result<(), TurtleError>
})?;
assert_eq!(2, count);

Implementations

Trait Implementations

The type of errors produced by this source.

Determine the type of Triples that this triple source yields. (see streaming_mode) Read more

Call f for at least one triple from this triple source, if any. Read more

Call f for all triples from this triple source.

Call f for at least one triple from this triple source, if any. Read more

Call f for all triples from this triple source.

Creates a triple source which uses a closure to determine if a triple should be yielded.

Creates a triple source that both filters and maps.

Takes a closure and creates triple source which yield the result of that closure for each triple.

Returns the bounds on the remaining length of the triple source. Read more

Collect these triples into a new graph.

Insert all triples from this source into the given MutableGraph. Read more

Parses a small chunk of the file and calls on_triple each time a new triple is read. (A “small chunk” could be a line for an N-Triples parser.) Read more

Returns true if the file has been completely consumed by the parser.

Parses the complete file and calls on_triple each time a new triple is read. Read more

Converts the parser into a Result<T, E> iterator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.