/usr/share/perl5/URI/NamespaceMap.pm is in liburi-namespacemap-perl 0.06-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 | package URI::NamespaceMap;
use Moose;
use Moose::Util::TypeConstraints;
use URI::Namespace;
=head1 NAME
URI::NamespaceMap - Class holding a collection of namespaces
=head1 VERSION
Version 0.06
=cut
our $VERSION = '0.06';
=head1 SYNOPSIS
use URI::NamespaceMap;
my $map = URI::NamespaceMap->new( { xsd => 'http://www.w3.org/2001/XMLSchema#' } );
$map->namespace_uri('xsd')->as_string;
my $foaf = URI::Namespace->new( 'http://xmlns.com/foaf/0.1/' );
$map->add_mapping(foaf => $foaf);
$map->add_mapping(rdf => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#' );
$map->list_prefixes; # ( 'foaf', 'rdf', 'xsd' )
=head1 DESCRIPTION
This module provides an object to manage multiple namespaces for creating L<URI::Namespace> objects and for serializing.
=head1 METHODS
=over
=item C<< new ( [ \%namespaces ] ) >>
Returns a new namespace map object. You can pass a hash reference with
mappings from local names to namespace URIs (given as string or
L<RDF::Trine::Node::Resource>) or namespaces_map with a hashref.
=item C<< add_mapping ( $name => $uri ) >>
Adds a new namespace to the map. The namespace URI can be passed
as string or a L<URI::Namespace> object.
=item C<< remove_mapping ( $name ) >>
Removes a namespace from the map given a prefix.
=item C<< namespace_uri ( $name ) >>
Returns the namespace object (if any) associated with the given prefix.
=item C<< list_namespaces >>
Returns an array of L<URI::Namespace> objects with all the namespaces.
=item C<< list_prefixes >>
Returns an array of prefixes.
=cut
around BUILDARGS => sub {
my ($next, $self, @parameters) = @_;
return $self->$next(@parameters) if (@parameters > 1);
return $self->$next(@parameters) if (exists $parameters[0]->{namespace_map});
return { namespace_map => $parameters[0] };
};
subtype 'URI::NamespaceMap::Type::NamespaceMap' => as 'HashRef' => where {
my $h = $_;
return 1 unless values %$h;
return if grep { !blessed $_ } values %$h;
return 1
};
coerce 'URI::NamespaceMap::Type::NamespaceMap' => from 'HashRef' => via {
my $hash = $_;
return {
map {
my $k = $_;
my $v = $hash->{$_};
$k => blessed $v ? $v : URI::Namespace->new($v)
} keys %$hash
};
};
has namespace_map => (
isa => 'URI::NamespaceMap::Type::NamespaceMap',
traits => ['Hash'],
coerce => 1,
default => sub { {} },
handles => {
add_mapping => 'set',
remove_mapping => 'delete',
namespace_uri => 'get',
list_namespaces => 'values',
list_prefixes => 'keys',
}
);
=item C<< uri ( $prefixed_name ) >>
Returns a URI for an abbreviated string such as 'foaf:Person'.
=cut
sub uri {
my $self = shift;
my $abbr = shift;
my $ns;
my $local = "";
if ($abbr =~ m/^([^:]*):(.*)$/) {
$ns = $self->namespace_uri( $1 );
$local = $2;
} else {
$ns = $self->{ $abbr };
}
return unless (blessed($ns));
if ($local ne '') {
return $ns->$local();
} else {
return $ns->uri
}
}
=item prefix_for C<< uri ($uri) >>
Returns the associated prefix (or potentially multiple prefixes, when
called in list context) for the given URI.
=cut
# turn the URI back into a string to mitigate unexpected behaviour
sub _scrub_uri {
my $uri = shift;
if (ref $uri) {
if (blessed $uri) {
if ($uri->isa('URI::Namespace')) {
$uri = $uri->as_string;
}
elsif ($uri->isa('URI')) {
# it's probably not necessary to do this, but whatever
$uri = $uri->as_string;
}
elsif ($uri->isa('RDF::Trine::Node')) {
# it is, on the other hand, necessary to do this.
$uri = $uri->uri_value;
}
elsif ($uri->isa('RDF::Trine::Namespace')) {
# and this
$uri = $uri->uri->uri_value;
}
else {
# let's hope whatever was passed in has a string overload
$uri = "$uri";
}
}
else {
Carp::croak(sprintf "You probably didn't mean to pass this " .
"an unblessed %s reference", ref $uri);
}
}
return $uri;
}
sub prefix_for {
my ($self, $uri) = @_;
$uri = _scrub_uri($uri);
my @candidates;
for my $k ($self->list_prefixes) {
my $v = $self->namespace_uri($k);
my $nsuri = $v->as_string;
# the input should always be longer than the namespace
next if length $nsuri > length $uri;
# candidate namespace must match exactly
my $cns = substr($uri, 0, length $nsuri);
push @candidates, $k if $cns eq $nsuri;
}
# make sure this behaves correctly when empty
return unless @candidates;
# if this returns more than one prefix, take the
# shortest/lexically lowest one.
@candidates = sort @candidates;
return wantarray ? @candidates : $candidates[0];
}
=item abbreviate C<< uri ($uri) >>
Complement to L</namespace_uri>. Returns the given URI in C<foo:bar>
format or C<undef> if it wasn't matched, therefore the idiom
my $str = $nsmap->abbreviate($uri_node) || $uri->as_string;
may be useful for certain serialization tasks.
=cut
sub abbreviate {
my ($self, $uri) = @_;
$uri = _scrub_uri($uri);
my $prefix = $self->prefix_for($uri);
# XXX is this actually the most desirable behaviour?
return unless defined $prefix;
my $nsuri = _scrub_uri($self->namespace_uri($prefix));
return sprintf('%s:%s', $prefix, substr($uri, length $nsuri));
}
no Moose::Util::TypeConstraints;
our $AUTOLOAD;
sub AUTOLOAD {
my ($self, $arg) = @_;
my ($name) = ($AUTOLOAD =~ /::(\w+)$/);
my $ns = $self->namespace_uri($name);
return unless $ns;
return $ns->$arg if $arg;
return $ns;
}
=back
=head1 WARNING
Avoid using the names 'can', 'isa', 'VERSION', and 'DOES' as namespace
prefix, because these names are defined as method for every Perl
object by default. The method names 'new' and 'uri' are also
forbidden. Names of methods of L<Moose::Object> must also be avoided.
=head1 AUTHORS
Chris Prather, C<< <chris@prather.org> >>
Kjetil Kjernsmo, C<< <kjetilk@cpan.org> >>
Gregory Todd Williams, C<< <gwilliams@cpan.org> >>
=head1 CONTRIBUTORS
Dorian Taylor
=head1 BUGS
Please report any bugs using L<github|https://github.com/kjetilk/URI-NamespaceMap/issues>
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc URI::NamespaceMap
=head1 COPYRIGHT & LICENSE
Copyright 2012 Gregory Todd Williams, Chris Prather and Kjetil Kjernsmo
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
__PACKAGE__->meta->make_immutable();
1;
__END__
|