/usr/share/perl5/RDF/aREF/Query.pm is in librdf-aref-perl 0.27-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | package RDF::aREF::Query;
use strict;
use warnings;
use v5.10;
our $VERSION = '0.27';
use RDF::aREF::Decoder qw(qName languageTag);
use Carp qw(croak);
use RDF::NS;
sub new {
my ($class, %options) = @_;
my $expression = $options{query} // croak "query required";
my $ns = $options{ns} // RDF::NS->new;
my $decoder = $options{decoder} // RDF::aREF::Decoder->new( ns => $ns );
my $self = bless {
items => [],
decoder => $decoder
}, $class;
my @items = split /\s*\|\s*/, $expression;
foreach my $expr ( @items ? @items : '' ) {
my $type = 'any';
my ($language, $datatype);
if ($expr =~ /^(.*)\.$/) {
$type = 'resource';
$expr = $1;
} elsif ( $expr =~ /^([^@]*)@([^@]*)$/ ) {
($expr, $language) = ($1, $2);
if ( $language eq '' or $language =~ languageTag ) {
$type = 'literal';
} else {
croak 'invalid languageTag in aREF query';
}
} elsif ( $expr =~ /^([^^]*)\^([^^]*)$/ ) { # TODO: support explicit IRI
($expr, $datatype) = ($1, $2);
if ( $datatype =~ qName ) {
$type = 'literal';
$datatype = $decoder->prefixed_name( split '_', $datatype );
$datatype = undef if $datatype eq $decoder->prefixed_name('xsd','string');
} else {
croak 'invalid datatype qName in aREF query';
}
}
my @path = split /\./, $expr;
foreach (@path) {
croak "invalid aref path expression: $_" if $_ !~ qName and $_ ne 'a';
}
push @{$self->{items}}, {
path => \@path,
type => $type,
language => $language,
datatype => $datatype,
};
}
$self;
}
sub query {
my ($self) = @_;
join '|', map {
my $q = join '.', @{$_->{path}};
if ($_->{type} eq 'literal') {
if ($_->{datatype}) {
$q .= '^' . $_->{datatype};
} else {
$q .= '@' . ($_->{language} // '');
}
} elsif ($_->{type} eq 'resource') {
$q .= '.';
}
$q;
} @{$self->{items}}
}
sub apply {
my ($self, $rdf, $subject) = @_;
map { $self->_apply_item($_, $rdf, $subject) } @{$self->{items}};
}
sub _apply_item {
my ($self, $item, $rdf, $subject) = @_;
my $decoder = $self->{decoder};
# TODO: Support RDF::Trine::Model
# TODO: try abbreviated *and* full URI?
my @current = $rdf;
if ($subject) {
if ($rdf->{_id}) {
return if $rdf->{_id} ne $subject;
} else {
@current = ($rdf->{$subject});
}
}
my @path = @{$item->{path}};
if (!@path and $item->{type} ne 'resource') {
if ($item->{type} eq 'any') {
return ($subject ? $subject : $rdf->{_id});
}
}
while (my $field = shift @path) {
# get objects in aREF
@current = grep { defined }
map { (ref $_ and ref $_ eq 'ARRAY') ? @$_ : $_ }
map { $_->{$field} } @current;
return if !@current;
if (@path or $item->{type} eq 'resource') {
# get resources
@current = grep { defined }
map { $decoder->resource($_) } @current;
if (@path) {
# TODO: only if RDF given as predicate map!
@current = grep { defined } map { $rdf->{$_} } @current;
}
}
}
# last path element
@current = grep { defined } map { $decoder->object($_) } @current;
if ($item->{type} eq 'literal') {
@current = grep { @$_ > 1 } @current;
if ($item->{language}) { # TODO: use language tag substring
@current = grep { $_->[1] and $_->[1] eq $item->{language} } @current;
} elsif ($item->{datatype}) { # TODO: support qName and explicit IRI
@current = grep { $_->[2] and $_->[2] eq $item->{datatype} } @current;
}
}
map { $_->[0] } @current; # IRI or string value
}
1;
__END__
=head1 NAME
RDF::aREF::Query - aREF query expression
=head1 SYNOPSIS
my $rdf = {
'http://example.org/book' => {
dct_creator => [
'http://example.org/alice',
'http://example.org/bob'
]
},
'http://example.org/alice' => {
foaf_name => "Alice"
},
'http://example.org/bob' => {
foaf_name => "Bob"
}
};
my $getnames = RDF::aREF::Query->new(
query => 'dct_creator.foaf_name'
);
my @names = $getnames->apply( $rdf, 'http://example.org/boo' );
$getnames->query; # 'dct_creator.foaf_name'
use RDF::aREF qw(aref_query_map);
my $record = aref_query_map( $rdf, $publication, {
'dct_creator@' => 'creator',
'dct_creator.foaf_name' => 'creator',
});
=head1 DESCRIPTION
Implements L<aREF query|http://gbv.github.io/aREF/aREF.html#aref-query>, a
query language to access strings and nodes from agiven RDF graph.
See also functions C<aref_query> and C<aref_query_map> in L<RDF::aREF> for
convenient application.
=head1 CONFIGURATION
The constructor expects the following options:
=over
=item query
L<aREF query|http://gbv.github.io/aREF/aREF.html#aref-query> expression
=item decoder
Instance of L<RDF::aREF::Decoder> to map qNames to URIs. A new instance is
created unless given.
=item ns
Optional namespace map (L<RDF::NS>), passed to the constructor of
L<RDF::aREF::Decoder> if no decoder is given.
=back
=head1 METHODS
=head1 apply( $graph [, $origin ] )
Perform the query on a given RDF graph. The graph can be given as aREF
structure (subject map or predicate map) or as instance of
L<RDF::Trine::Model>. An origin subject node must be provided unless the RDF
graph is provided as L<predicate
map|http://gbv.github.io/aREF/aREF.html#predicate-maps>.
=head1 query
Returns the aREF query expression
=head1 SEE ALSO
Use SPARQL for more complex queries, e.g. with L<RDF::Trine::Store::SPARQL>.
=cut
|