pietercolpaert / hardf
A fast parser for RDF serializations such as turtle, n-triples, n-quads, trig and N3
Installs: 48 199
Dependents: 5
Suggesters: 0
Security: 0
Stars: 36
Watchers: 6
Forks: 7
Open Issues: 2
Requires
- php: ^7.1|^8.0
Requires (Dev)
- friendsofphp/php-cs-fixer: *
- phpstan/phpstan: ^0.12.36
- phpunit/phpunit: ^7 || ^8 || ^9
This package is auto-updated.
Last update: 2024-10-26 08:31:52 UTC
README
hardf is a PHP 7.1+ library that lets you handle Linked Data (RDF). It offers:
- Parsing triples/quads from Turtle, TriG, N-Triples, N-Quads, and Notation3 (N3)
- Writing triples/quads to Turtle, TriG, N-Triples, and N-Quads
Both the parser as the serializer have streaming support.
This library is a port of N3.js to PHP
Triple Representation
We use the triple representation in PHP ported from NodeJS N3.js library. Check https://github.com/rdfjs/N3.js/tree/v0.10.0#triple-representation for more information
On purpose, we focused on performance, and not on developer friendliness. We have thus implemented this triple representation using associative arrays rather than PHP object. Thus, the same that holds for N3.js, is now an array. E.g.:
<?php $triple = [ 'subject' => 'http://example.org/cartoons#Tom', 'predicate' => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type', 'object' => 'http://example.org/cartoons#Cat', 'graph' => 'http://example.org/mycartoon', #optional ];
Encode literals as follows (similar to N3.js)
'"Tom"@en-gb' // lowercase language '"1"^^http://www.w3.org/2001/XMLSchema#integer' // no angular brackets <>
Library functions
Install this library using composer:
composer require pietercolpaert/hardf
Writing
use pietercolpaert\hardf\TriGWriter;
A class that should be instantiated and can write TriG or Turtle
Example use:
$writer = new TriGWriter([ "prefixes" => [ "schema" =>"http://schema.org/", "dct" =>"http://purl.org/dc/terms/", "geo" =>"http://www.w3.org/2003/01/geo/wgs84_pos#", "rdf" => "http://www.w3.org/1999/02/22-rdf-syntax-ns#", "rdfs"=> "http://www.w3.org/2000/01/rdf-schema#" ], "format" => "n-quads" //Other possible values: n-quads, trig or turtle ]); $writer->addPrefix("ex","http://example.org/"); $writer->addTriple("schema:Person","dct:title","\"Person\"@en","http://example.org/#test"); $writer->addTriple("schema:Person","schema:label","\"Person\"@en","http://example.org/#test"); $writer->addTriple("ex:1","dct:title","\"Person1\"@en","http://example.org/#test"); $writer->addTriple("ex:1","http://www.w3.org/1999/02/22-rdf-syntax-ns#type","schema:Person","http://example.org/#test"); $writer->addTriple("ex:2","dct:title","\"Person2\"@en","http://example.org/#test"); $writer->addTriple("schema:Person","dct:title","\"Person\"@en","http://example.org/#test2"); echo $writer->end();
All methods
//The method names should speak for themselves: $writer = new TriGWriter(["prefixes": [ /* ... */]]); $writer->addTriple($subject, $predicate, $object, $graphl); $writer->addTriples($triples); $writer->addPrefix($prefix, $iri); $writer->addPrefixes($prefixes); //Creates blank node($predicate and/or $object are optional) $writer->blank($predicate, $object); //Creates rdf:list with $elements $list = $writer->addList($elements); //Returns the current output it is already able to create and clear the internal memory use (useful for streaming) $out .= $writer->read(); //Alternatively, you can listen for new chunks through a callback: $writer->setReadCallback(function ($output) { echo $output }); //Call this at the end. The return value will be the full triple output, or the rest of the output such as closing dots and brackets, unless a callback was set. $out .= $writer->end(); //OR $writer->end();
Parsing
Next to TriG, the TriGParser class also parses Turtle, N-Triples, N-Quads and the W3C Team Submission N3
All methods
$parser = new TriGParser($options, $tripleCallback, $prefixCallback); $parser->setTripleCallback($function); $parser->setPrefixCallback($function); $parser->parse($input, $tripleCallback, $prefixCallback); $parser->parseChunk($input); $parser->end();
Basic examples for small files
Using return values and passing these to a writer:
use pietercolpaert\hardf\TriGParser; use pietercolpaert\hardf\TriGWriter; $parser = new TriGParser(["format" => "n-quads"]); //also parser n-triples, n3, turtle and trig. Format is optional $writer = new TriGWriter(); $triples = $parser->parse("<A> <B> <C> <G> ."); $writer->addTriples($triples); echo $writer->end();
Using callbacks and passing these to a writer:
$parser = new TriGParser(); $writer = new TriGWriter(["format"=>"trig"]); $parser->parse("<http://A> <https://B> <http://C> <http://G> . <A2> <https://B2> <http://C2> <http://G3> .", function ($e, $triple) use ($writer) { if (!isset($e) && isset($triple)) { $writer->addTriple($triple); echo $writer->read(); //write out what we have so far } else if (!isset($triple)) // flags the end of the file echo $writer->end(); //write the end else echo "Error occured: " . $e; });
Example using chunks and keeping prefixes
When you need to parse a large file, you will need to parse only chunks and already process them. You can do that as follows:
$writer = new TriGWriter(["format"=>"n-quads"]); $tripleCallback = function ($error, $triple) use ($writer) { if (isset($error)) throw $error; else if (isset($triple)) { $writer->write(); echo $writer->read(); else if (isset($error)) { throw $error; } else { echo $writer->end(); } }; $prefixCallback = function ($prefix, $iri) use (&$writer) { $writer->addPrefix($prefix, $iri); }; $parser = new TriGParser(["format" => "trig"], $tripleCallback, $prefixCallback); $parser->parseChunk($chunk); $parser->parseChunk($chunk); $parser->parseChunk($chunk); $parser->end(); //Needs to be called
Parser options
format
input format (case-insensitive)blankNodePrefix
(defaults tob0_
) prefix forced on blank node names, e.g.TriGWriter(["blankNodePrefix" => 'foo'])
will parse_:bar
as_:foobar
.documentIRI
sets the base URI used to resolve relative URIs (not applicable ifformat
indicates n-triples or n-quads)lexer
allows usage of own lexer class. A lexer must provide following public methods:tokenize(string $input, bool $finalize = true): array<array{'subject': string, 'predicate': string, 'object': string, 'graph': string}>
tokenizeChunk(string $input): array<array{'subject': string, 'predicate': string, 'object': string, 'graph': string}>
end(): array<array{'subject': string, 'predicate': string, 'object': string, 'graph': string}>
explicitQuantifiers
- [...]
Empty document base IRI
Some Turtle and N3 documents may use relative-to-the-base-IRI IRI syntax (see here and here), e.g.
<> <someProperty> "some value" .
To properly parse such documents the document base IRI must be known. Otherwise we might end up with empty IRIs (e.g. for the subject in the example above).
Sometimes the base IRI is encoded in the document, e.g.
@base <http://some.base/iri/> .
<> <someProperty> "some value" .
but sometimes it is missing.
In such a case the Turtle specification requires us to follow section 5.1.1 of the RFC3986 which says that if the base IRI is not encapsulated in the document, it should be assumed to be the document retrieval URI (e.g. the URL you downloaded the document from or a file path converted to an URL). Unfortunatelly this can not be guessed by the hardf parser and has to be provided by you using the documentIRI
parser creation option, e.g.
parser = new TriGParser(["documentIRI" => "http://some.base/iri/"]);
Long story short if you run into the subject/predicate/object on line X can not be parsed without knowing the the document base IRI.(...)
error, please initialize the parser with the documentIRI
option.
Utility
use pietercolpaert\hardf\Util;
A static class with a couple of helpful functions for handling our specific triple representation. It will help you to create and evaluate literals, IRIs, and expand prefixes.
$bool = isIRI($term); $bool = isLiteral($term); $bool = isBlank($term); $bool = isDefaultGraph($term); $bool = inDefaultGraph($triple); $value = getLiteralValue($literal); $literalType = getLiteralType($literal); $lang = getLiteralLanguage($literal); $bool = isPrefixedName($term); $expanded = expandPrefixedName($prefixedName, $prefixes); $iri = createIRI($iri); $literalObject = createLiteral($value, $modifier = null);
See the documentation at https://github.com/RubenVerborgh/N3.js#utility for more information.
Two executables
We also offer 2 simple tools in bin/
as an example implementation: one validator and one translator. Try for example:
curl -H "accept: application/trig" http://fragments.dbpedia.org/2015/en | php bin/validator.php trig curl -H "accept: application/trig" http://fragments.dbpedia.org/2015/en | php bin/convert.php trig n-triples
Performance
We compared the performance on two turtle files, and parsed it with the EasyRDF library in PHP, the N3.js library for NodeJS and with Hardf. These were the results:
License, status and contributions
The hardf library is copyrighted by Ruben Verborgh and Pieter Colpaert and released under the MIT License.
Contributions are welcome, and bug reports or pull requests are always helpful. If you plan to implement a larger feature, it's best to discuss this first by filing an issue.