/usr/share/perl5/RDF/NS.pm is in librdf-ns-perl 20170111-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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | package RDF::NS;
use v5.10;
use strict;
use warnings;
our $VERSION = '20170111';
use Scalar::Util qw(blessed reftype);
use File::ShareDir;
use Carp;
use RDF::SN;
our $AUTOLOAD;
our $FORMATS = qr/ttl|n(otation)?3|sparql|xmlns|txt|beacon|json/;
our $DATE_REGEXP = qr/^([0-9]{4})-?([0-9][0-9])-?([0-9][0-9])$/;
sub new {
my $class = ref($_[0]) ? ref(shift) : shift;
my $from = @_ % 2 ? shift : 1;
my %options = @_;
my $at = $options{at} || 'any';
my $warn = $options{'warn'};
$from = $options{from} if exists $options{from};
$from = 'any' if !$from or $from eq 1;
if ((ref($from) || '') eq 'HASH') {
my $self = bless $from, $class;
foreach my $prefix (keys %$self) {
unless( $self->SET( $prefix => $self->{$prefix}, $warn ) ) {
delete $self->{$prefix};
}
}
return $self;
}
if ( $from =~ $DATE_REGEXP ) {
$at = "$1$2$3";
$from = 'any';
} elsif( $at =~ $DATE_REGEXP ) {
$at = "$1$2$3";
} elsif ( $at !~ 'any' ) {
croak "RDF::NS expects 'any', '1' or a date as YYYY-MM-DD";
}
my $self = bless { }, $class;
my $fh = $self->DATA($from);
foreach (<$fh>) {
chomp;
next if /^#/;
my ($prefix, $namespace, $date) = split "\t", $_;
last if $date and $at ne 'any' and $date > $at;
$self->SET( $prefix => $namespace, $warn );
}
close($fh);
$self;
}
sub DATA { # TODO: document
my ($self, $from) = @_;
$from = File::ShareDir::dist_file('RDF-NS', "prefix.cc" )
if ($from // 'any') eq 'any';
croak "prefix file or date not found: $from"
unless -f $from;
open (my $fh, '<', $from) or croak "failed to open $from";
$fh;
}
sub SET {
my ($self, $prefix, $namespace, $warn) = @_;
if ( $prefix =~ /^(isa|can|new|uri)$/ ) {
carp "Cannot support prefix '$prefix'" if $warn;
} elsif ( $prefix =~ /^[a-z][a-z0-9]*$/ ) {
if ( $namespace =~ /^[a-z][a-z0-9]*:[^"<>]*$/ ) {
$self->{$prefix} = $namespace;
return 1;
} elsif( $warn ) {
carp "Skipping invalid $prefix namespace $namespace";
}
} elsif ( $warn ) {
carp "Skipping unusual prefix '$prefix'";
}
return;
}
*LOAD = *new;
sub COUNT {
scalar keys %{$_[0]};
}
sub FORMAT {
my $self = shift;
my $format = shift || "";
$format = 'TTL' if $format =~ /^n(otation)?3$/i;
if (lc($format) =~ $FORMATS) {
$format = uc($format);
$self->$format( @_ );
} elsif ($format eq "") {
$self->MAP( sub { $self->{$_} } , @_ );
}
}
sub PREFIX {
my ($self, $uri) = @_;
foreach my $prefix ( sort keys %$self ) {
return $prefix if $uri eq $self->{$prefix};
}
return;
}
sub PREFIXES {
my ($self, $uri) = @_;
my @prefixes;
while ( my ($prefix, $namespace) = each %$self ) {
push @prefixes, $prefix if $uri eq $namespace;
}
return(sort(@prefixes));
}
sub REVERSE {
RDF::SN->new($_[0]);
}
sub TTL {
my $self = shift;
$self->MAP( sub { "\@prefix $_: <".$self->{$_}."> ." } , @_ );
}
sub SPARQL {
my $self = shift;
$self->MAP( sub { "PREFIX $_: <".$self->{$_}.">" } , @_ );
}
sub XMLNS {
my $self = shift;
$self->MAP( sub { "xmlns:$_=\"".$self->{$_}."\"" } , @_ );
}
sub TXT {
my $self = shift;
$self->MAP( sub { "$_\t".$self->{$_} } , @_ );
}
sub JSON {
my $self = shift;
$self->MAP( sub { "\"$_\": \"".$self->{$_}."\"" } , @_ );
}
sub BEACON {
my $self = shift;
$self->MAP( sub { "#PREFIX: ".$self->{$_} } , @_ );
}
sub SELECT {
my $self = shift;
$self->MAP( sub { $_ => $self->{$_} } , @_ );
}
# functional programming rulez!
sub MAP {
my $self = shift;
my $code = shift;
my @ns = @_ ? (grep { $self->{$_} } map { split /[|, ]+/ } @_)
: keys %$self;
if (wantarray) {
return map { $code->() } sort @ns;
} else {
local $_ = $ns[0];
return $code->();
}
}
sub GET {
$_[1];
}
sub BLANK {
}
*URI = *uri;
sub uri {
my $self = shift;
return $1 if $_[0] =~ /^<([a-zA-Z][a-zA-Z+.-]*:.+)>$/;
return $self->BLANK($_[0]) if $_[0] =~ /^_(:.*)?$/;
return unless shift =~ /^([a-z][a-z0-9]*)?([:_]([^:]+))?$/;
my $ns = $self->{ defined $1 ? $1 : '' };
return unless defined $ns;
return $self->GET($ns) unless $3;
return $self->GET($ns.$3);
}
sub AUTOLOAD {
my $self = shift;
return unless $AUTOLOAD =~ /^.*::([a-z][a-z0-9]*)?(_([^:]+)?)?$/;
return $self->BLANK( defined $3 ? "_:$3" : '_' ) unless $1;
my $ns = $self->{$1} or return;
my $local = defined $3 ? $3 : shift;
return $self->GET($ns) unless defined $local;
return $self->GET($ns.$local);
}
sub UPDATE {
my ($self, $file, $date) = @_;
croak "RDF::NS expects a date as YYYY-MM-DD"
unless $date and $date =~ $DATE_REGEXP;
$date = "$1$2$3";
my $old = RDF::NS->new($file);
my (@create,@update,@delete);
open (my $fh, '>>', $file) or croak "failed to open $file";
my @lines;
while( my ($prefix,$namespace) = each %$self ) {
if (!exists $old->{$prefix}) {
push @create, $prefix;
} elsif ( $old->{$prefix} ne $namespace ) {
push @update, $prefix;
} else {
next;
}
push @lines, "$prefix\t$namespace";
}
while( my ($prefix,$namespace) = each %$old ) {
if (!exists $self->{$prefix}) {
push @delete, $prefix;
}
}
print $fh "$_\t$date\n" for sort @lines;
close $fh;
return {
create => [ sort @create ],
update => [ sort @update ],
delete => [ sort @delete ],
};
}
1;
__END__
=head1 NAME
RDF::NS - Just use popular RDF namespace prefixes from prefix.cc
=begin markdown
# STATUS
[![Build Status](https://travis-ci.org/nichtich/RDF-NS.png)](https://travis-ci.org/nichtich/RDF-NS)
[![Coverage Status](https://coveralls.io/repos/nichtich/RDF-NS/badge.svg?branch=master)](https://coveralls.io/r/nichtich/RDF-NS?branch=master)
[![Kwalitee Score](http://cpants.cpanauthors.org/dist/RDF-NS.png)](http://cpants.cpanauthors.org/dist/RDF-NS)
=end markdown
=head1 SYNOPSIS
use RDF::NS '20170111'; # check at compile time
my $ns = RDF::NS->new('20170111'); # check at runtime
$ns->foaf; # http://xmlns.com/foaf/0.1/
$ns->foaf_Person; # http://xmlns.com/foaf/0.1/Person
$ns->foaf('Person'); # http://xmlns.com/foaf/0.1/Person
$ns->uri('foaf:Person'); # http://xmlns.com/foaf/0.1/Person
use RDF::NS; # get rid if typing '$' by defining a constant
use constant NS => RDF::NS->new('20111208');
NS->foaf_Person; # http://xmlns.com/foaf/0.1/Person
$ns->SPAQRL('foaf'); # PREFIX foaf: <http://xmlns.com/foaf/0.1/>
$ns->TTL('foaf'); # @prefix foaf: <http://xmlns.com/foaf/0.1/> .
$ns->XMLNS('foaf'); # xmlns:foaf="http://xmlns.com/foaf/0.1/"
# load your own mapping from a file
$ns = RDF::NS->new("mapping.txt");
# select particular mappings
%map = $ns->SELECT('rdf,dc,foaf');
$uri = $ns->SELECT('foo|bar|doz'); # returns first existing namespace
# instances of RDF::NS are just blessed hash references
$ns->{'foaf'}; # http://xmlns.com/foaf/0.1/
bless { foaf => 'http://xmlns.com/foaf/0.1/' }, 'RDF::NS';
print (scalar keys %$ns) . "prefixes\n";
$ns->COUNT; # also returns the number of prefixes
=head1 DESCRIPTION
Hardcoding URI namespaces and prefixes for RDF applications is neither fun nor
maintainable. In the end we all use more or less the same prefix definitions,
as collected at L<http://prefix.cc>. This module includes all these prefixes as
defined at specific snapshots in time. These snapshots correspond to version
numbers of this module. By selecting particular versions, you make sure that
changes at prefix.cc won't affect your programs.
The command line client L<rdfns> is installed automatically with this module:
$ rdfns rdf,foaf.ttl
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
This module does not require L<RDF::Trine>, which is recommended nevertheless.
(at least version 0.140). If you prefer RDF::NS to return instances of
L<RDF::Trine::Node::Resource> instead of plain strings, use L<RDF::NS::Trine>.
L<RDF::NS::URIS> is a similar module that returns instances of L<URI>.
The code repository of this module contains an
L<update script|https://github.com/nichtich/RDF-NS/blob/master/update.pl>
to download the current prefix-namespace mappings from L<http://prefix.cc>.
=head1 GENERAL METHODS
In most cases you only need the following lowercase methods.
=head2 new ( [ $file_or_date ] [ %options ] )
Create a new namespace mapping from a selected file, date, or hash reference.
The special string C<"any"> or the value C<1> can be used to get the newest
mapping, but you should better select a specific version, as mappings can
change, violating backwards compatibility. Supported options include C<warn>
to enable warnings and C<at> to specify a date.
=head2 "I<prefix>"
Returns the namespace for I<prefix> if namespace prefix is defined. For
instance C<< $ns->foaf >> returns C<http://xmlns.com/foaf/0.1/>.
=head2 "I<prefix_name>"
Returns the namespace plus local name, if namespace prefix is defined. For
instance C<< $ns->foaf_Person >> returns C<http://xmlns.com/foaf/0.1/Person>.
=head2 uri ( $short | "<$URI>" )
Expand a prefixed URI, such as C<foaf:Person> or C<foaf_Person>. Alternatively
you can expand prefixed URIs with method calls, such as C<< $ns->foaf_Person >>.
If you pass an URI wrapped in C<E<lt>> and C<E<gt>>, it will not be expanded
but returned as given.
=head1 SERIALIZATION METHODS
=head2 TTL ( prefix[es] )
Returns a Turtle/Notation3 C<@prefix> definition or a list of such definitions
in list context. Prefixes can be passed as single arguments or separated by
commas, vertical bars, and spaces.
=head2 SPARQL ( prefix[es] )
Returns a SPARQL PREFIX definition or a list of such definitions in list
context. Prefixes can be passed as single arguments or separated by commas,
vertical bars, and spaces.
=head2 XMLNS ( prefix[es] )
Returns an XML namespace declaration or a list of such declarations in list
context. Prefixes can be passed as single arguments or separated by commas,
vertical bars, and spaces.
=head2 TXT ( prefix[es] )
Returns a list of tabular-separated prefix-namespace-mappings.
=head2 BEACON ( prefix[es] )
Returns a list of BEACON format prefix definitions (not including prefixes).
=head1 LOOKUP METHODS
=head2 PREFIX ( $uri )
Get a prefix of a namespace URI, if it is defined. This method does a reverse
lookup which is less performant than the other direction. If multiple prefixes
are defined, the first in sorted order is returned. If you need to call this
method frequently and with deterministic response, better create a reverse hash
(method REVERSE).
=head2 PREFIXES ( $uri )
Get all known prefixes of a namespace URI in sorted order.
=head2 REVERSE
Calling C<< $ns->REVERSE >> is equal to C<< RDF::SN->new($ns) >>. See
L<RDF::SN> for details.
=head2 SELECT ( prefix[es] )
In list context, returns a sorted list of prefix-namespace pairs, which
can be used to assign to a hash. In scalar context, returns the namespace
of the first prefix that was found. Prefixes can be passed as single arguments
or separated by commas, vertical bars, and spaces.
=head1 INTERNAL METHODS
=head2 SET ( $prefix => $namespaces [, $warn ] )
Set or add a namespace mapping. Errors are ignored unless enabled as warnings
with the third argument. Returns true if the mapping was successfully added.
=head2 MAP ( $code [, prefix[es] ] )
Internally used to map particular or all prefixes. Prefixes can be selected as
single arguments or separated by commas, vertical bars, and spaces. In scalar
context, C<$_> is set to the first existing prefix (if found) and C<$code> is
called. In list context, found prefixes are sorted at mapped with C<$code>.
=head2 GET ( $uri )
This method is used internally to create URIs as return value of the URI
method and all lowercase shortcut methods, such as C<foaf_Person>. By default
it just returns C<$uri> unmodified.
=head1 SEE ALSO
There are several other CPAN modules to deal with IRI namespaces, for instance
L<RDF::Trine::Namespace>, L<RDF::Trine::NamespaceMap>, L<URI::NamespaceMap>,
L<RDF::Prefixes>, L<RDF::Simple::NS>, L<RDF::RDFa::Parser::Profile::PrefixCC>,
L<Class::RDF::NS>, L<XML::Namespace>, L<XML::CommonNS> etc.
=encoding utf8
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2013- by Jakob Voß.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|