Catmandu-RDF
view release on metacpan or search on metacpan
lib/Catmandu/Importer/RDF.pm view on Meta::CPAN
$hashref->{$subject}->{$predicate}->[0]->{datatype} = $datatype if $datatype;
$hashref->{$subject}->{$predicate}->[0]->{lang} = $lang if $lang;
$hashref->{$subject}->{$predicate}->[0]->{value} = $value;
print $pipe encode_json($hashref) , "\n";
$count++;
if ($self->speed && ($count % 100 == 0) && (my $elapsed = time - $start) ) {
printf STDERR "triples %9d (%d/sec)\n" , $count , $count/$elapsed;
}
};
if ($self->url) {
$parser->parse_url( $self->url, $handler);
}
else {
my $from_scalar = (ref $self->file // '') eq 'SCALAR';
if (!$self->type and $self->file and !$from_scalar) {
$parser = $parser->guess_parser_by_filename($self->file)->new;
}
if ($from_scalar) {
$parser->parse( $self->base, ${$self->file}, $handler );
}
else {
$parser->parse_file( $self->base, $self->file // $self->fh, $handler );
}
}
exit(0);
}
}
1;
__END__
=head1 NAME
Catmandu::Importer::RDF - parse RDF data
=head1 SYNOPSIS
Command line client C<catmandu>:
catmandu convert RDF --url http://d-nb.info/gnd/4151473-7 to YAML
catmandu convert RDF --file rdfdump.ttl to JSON
# Parse the input into on JSON document per triplet. This is the
# most memory efficient (and fastest) way to parse RDF input.
catmandu convert RDF --triples 1 --file rdfdump.ttl to JSON
# Transform back into NTriples (conversions to and from triples is the
# most efficient way to process RDF)
catmandu convert RDF --triples 1 --file rdfdump.ttl to RDF --type NTriples
# Query a SPARQL endpoint
catmandu convert RDF --url http://dbpedia.org/sparql
--sparql "SELECT ?film WHERE { ?film dct:subject <http://dbpedia.org/resource/Category:French_films> }"
catmandu convert RDF --url http://example.org/sparql --sparql query.rq
# Query a Linked Data Fragment endpoint
catmandu convert RDF --url http://fragments.dbpedia.org/2014/en
--sparql "SELECT ?film WHERE { ?film dct:subject <http://dbpedia.org/resource/Category:French_films> }"
In Perl code:
use Catmandu::Importer::RDF;
my $url = "http://dx.doi.org/10.2474/trol.7.147";
my $rdf = Catmandu::Importer::RDF->new( url => $url )->first;
=head1 DESCRIPTION
This L<Catmandu::Importer> can be use to import RDF data from URLs, files or
input streams, SPARQL endpoints, and Linked Data Fragment endpoints.
By default an RDF graph is imported as single item in aREF format (see
L<RDF::aREF>).
=head1 CONFIGURATION
=over
=item url
URL to retrieve RDF from.
=item type
RDF serialization type (e.g. C<ttl> for RDF/Turtle).
=item base
Base URL. By default derived from the URL or file name.
=item ns
Use default namespace prefixes as provided by L<RDF::NS> to abbreviate
predicate and datatype URIs. Set to C<0> to disable abbreviating URIs.
Set to a specific date to get stable namespace prefix mappings.
=item triples
Import each RDF triple as one aREF subject map (default) or predicate map
(option C<predicate_map>), if enabled. This is the most efficient way to
process large input files. All the processing can be streamed.
=item predicate_map
Import RDF as aREF predicate map, if possible.
=item file
=item fh
=item encoding
=item fix
Default configuration options of L<Catmandu::Importer>.
=item sparql
The SPARQL query to be executed on the URL endpoint (currectly only SELECT is
supported). The query can be supplied as string or as filename. The importer
tries to automatically add missing PREFIX statements from the default namespace
prefixes.
=item sparql_result
Encoding of SPARQL result values. With C<aref>, query results are encoded in
aREF format, with URIs in C<E<lt>> and C<E<gt>> (no qNames) and literal nodes
appended by C<@> and optional language code. By default (value C<simple>), all
RDF nodes are simplfied to their literal form.
=item cache
Set to a true value to cache repeated URL responses in a L<CHI> based backend.
=item cache_options
Provide the L<CHI> based options for caching result sets. By default a memory store of
1MB size is used. This is equal to:
Catamandu::Importer::RDF->new( ...,
cache => 1,
cache_options => {
driver => 'Memory',
global => 1,
max_size => 1024*1024
});
=item speed
If set to a true value, then write RDF file processing speed on the STDERR as
number of triples parsed per second.
=back
=head1 METHODS
See L<Catmandu::Importer>.
=head1 SEE ALSO
L<RDF::Trine::Store>, L<RDF::Trine::Parser>
=encoding utf8
=cut
( run in 0.567 second using v1.01-cache-2.11-cpan-39bf76dae61 )