/usr/share/perl5/RDF/SN.pm is in librdf-ns-perl 20140910-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 | use strict;
use warnings;
package RDF::SN;
#ABSTRACT: Short names for URIs with prefixes from prefix.cc
$RDF::SN::VERSION = '20140910';
use RDF::NS;
use Scalar::Util qw(blessed);
sub new {
my ($class, $ns) = @_;
unless (blessed $ns) {
$ns = $ns ? RDF::NS->new($ns) : RDF::NS->new;
}
my $self = bless { }, $class;
while ( my ($prefix, $namespace) = each %$ns ) {
my $has = $self->{$namespace};
if (!$has || (length($has) > length($prefix))
|| (length($has) == length($prefix) and $has ge $prefix)
) {
$self->{$namespace} = $prefix;
}
}
$self;
}
sub qname {
my ($self, $uri) = @_;
if ($self->{$uri}) {
return wantarray ? ($self->{$uri}, '') : $self->{$uri}.':';
}
# regexpes copied from RDF::Trine::Node::Resource
our $r_PN_CHARS_BASE ||= qr/([A-Z]|[a-z]|[\x{00C0}-\x{00D6}]|[\x{00D8}-\x{00F6}]|[\x{00F8}-\x{02FF}]|[\x{0370}-\x{037D}]|[\x{037F}-\x{1FFF}]|[\x{200C}-\x{200D}]|[\x{2070}-\x{218F}]|[\x{2C00}-\x{2FEF}]|[\x{3001}-\x{D7FF}]|[\x{F900}-\x{FDCF}]|[\x{FDF0}-\x{FFFD}]|[\x{10000}-\x{EFFFF}])/;
our $r_PN_CHARS_U ||= qr/(_|${r_PN_CHARS_BASE})/;
our $r_PN_CHARS ||= qr/${r_PN_CHARS_U}|-|[0-9]|\x{00B7}|[\x{0300}-\x{036F}]|[\x{203F}-\x{2040}]/;
our $r_PN_LOCAL ||= qr/((${r_PN_CHARS_U})((${r_PN_CHARS}|[.])*${r_PN_CHARS})?)/;
if ($uri =~ m/${r_PN_LOCAL}$/) {
my $ln = $1;
my $ns = substr($uri, 0, length($uri)-length($ln));
if ($self->{$ns}) {
return(wantarray ? ($self->{$ns},$ln) : $self->{$ns}.':'.$ln);
}
}
return;
}
sub qname_ {
if(wantarray) {
return $_[0]->qname($_[1]);
} else {
return join '_', $_[0]->qname($_[1]);
}
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
RDF::SN - Short names for URIs with prefixes from prefix.cc
=head1 VERSION
version 20140910
=head1 SYNOPSIS
use RDF::SN;
$abbrev = RDF::SN->new('20140908');
$abbrev->qname('http://www.w3.org/2000/01/rdf-schema#type'); # rdfs:type
=head1 DESCRIPTION
This module supports abbreviating URIs as short names (aka qualified names), so
its the counterpart of L<RDF::NS>.
=head2 new( [ $ns ] )
Create a lookup hash from a mapping hash of namespace URIs to prefixes
(L<RDF::NS>). If multiple prefixes exist, the shortest is used. If multiple
prefixes with same length exist, the first in alphabetical order is used.
=head2 qname( $uri )
Returns a prefix and local name (as list in list context, concatenated by C<:>
in scalar context) if the URI can be abbreviated with given namespaces.
=head1 AUTHOR
Jakob Voß
=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
|