/usr/share/perl5/Graph/AdjacencyMap/Vertex.pm is in libgraph-perl 1:0.96-2.
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 | package Graph::AdjacencyMap::Vertex;
# THIS IS INTERNAL IMPLEMENTATION ONLY, NOT TO BE USED DIRECTLY.
# THE INTERFACE IS HARD TO USE AND GOING TO STAY THAT WAY AND
# ALMOST GUARANTEED TO CHANGE OR GO AWAY IN FUTURE RELEASES.
use strict;
# $SIG{__DIE__ } = sub { use Carp; confess };
# $SIG{__WARN__} = sub { use Carp; confess };
use Graph::AdjacencyMap qw(:flags :fields);
use base 'Graph::AdjacencyMap';
use Scalar::Util qw(weaken);
sub _new {
my ($class, $flags, $arity) = @_;
bless [ 0, $flags, $arity ], $class;
}
require overload; # for de-overloading
sub __strval {
my ($k, $f) = @_;
ref $k && ($f & _REF) &&
(($f & _STR) ? !overload::Method($k, '""') : overload::Method($k, '""')) ?
overload::StrVal($k) : $k;
}
sub __set_path {
my $m = shift;
my $f = $m->[ _f ];
my $id = pop if ($f & _MULTI);
if (@_ != 1) {
require Carp;
Carp::confess(sprintf "Graph::AdjacencyMap::Vertex: arguments %d expected 1", scalar @_);
}
my $p;
$p = $m->[ _s ] ||= { };
my @p = $p;
my @k;
my $k = shift;
my $q = __strval($k, $f);
push @k, $q;
return (\@p, \@k);
}
sub __set_path_node {
my ($m, $p, $l) = splice @_, 0, 3;
my $f = $m->[ _f ];
my $id = pop if ($f & _MULTI);
unless (exists $p->[-1]->{ $l }) {
my $i = $m->_new_node( \$p->[-1]->{ $l }, $id );
$m->[ _i ]->{ defined $i ? $i : "" } = $_[0];
} else {
$m->_inc_node( \$p->[-1]->{ $l }, $id );
}
}
sub set_path {
my $m = shift;
my $f = $m->[ _f ];
my ($p, $k) = $m->__set_path( @_ );
return unless defined $p && defined $k;
my $l = defined $k->[-1] ? $k->[-1] : "";
my $set = $m->__set_path_node( $p, $l, @_ );
return $set;
}
sub __has_path {
my $m = shift;
my $f = $m->[ _f ];
if (@_ != 1) {
require Carp;
Carp::confess(sprintf
"Graph::AdjacencyMap: arguments %d expected 1\n",
scalar @_);
}
my $p = $m->[ _s ];
return unless defined $p;
my @p = $p;
my @k;
my $k = shift;
my $q = __strval($k, $f);
push @k, $q;
return (\@p, \@k);
}
sub has_path {
my $m = shift;
my ($p, $k) = $m->__has_path( @_ );
return unless defined $p && defined $k;
return exists $p->[-1]->{ defined $k->[-1] ? $k->[-1] : "" };
}
sub has_path_by_multi_id {
my $m = shift;
my $id = pop;
my ($e, $n) = $m->__get_path_node( @_ );
return undef unless $e;
return exists $n->[ _nm ]->{ $id };
}
sub _get_path_id {
my $m = shift;
my $f = $m->[ _f ];
my ($e, $n) = $m->__get_path_node( @_ );
return undef unless $e;
return ref $n ? $n->[ _ni ] : $n;
}
sub _get_path_count {
my $m = shift;
my $f = $m->[ _f ];
my ($e, $n) = $m->__get_path_node( @_ );
return 0 unless $e && defined $n;
return
($f & _COUNT) ? $n->[ _nc ] :
($f & _MULTI) ? scalar keys %{ $n->[ _nm ] } : 1;
}
sub __attr {
my $m = shift;
if (@_ && ref $_[0] && @{ $_[0] } != $m->[ _a ]) {
require Carp;
Carp::confess(sprintf "Graph::AdjacencyMap::Vertex: arguments %d expected %d",
scalar @{ $_[0] }, $m->[ _a ]);
}
}
sub _get_id_path {
my ($m, $i) = @_;
return defined $m->[ _i ] ? $m->[ _i ]->{ $i } : undef;
}
sub del_path {
my $m = shift;
my $f = $m->[ _f ];
my ($e, $n, $p, $k, $l) = $m->__get_path_node( @_ );
return unless $e;
my $c = ($f & _COUNT) ? --$n->[ _nc ] : 0;
if ($c == 0) {
delete $m->[ _i ]->{ ref $n ? $n->[ _ni ] : $n };
delete $p->[ -1 ]->{ $l };
}
return 1;
}
sub del_path_by_multi_id {
my $m = shift;
my $f = $m->[ _f ];
my $id = pop;
my ($e, $n, $p, $k, $l) = $m->__get_path_node( @_ );
return unless $e;
delete $n->[ _nm ]->{ $id };
unless (keys %{ $n->[ _nm ] }) {
delete $m->[ _i ]->{ $n->[ _ni ] };
delete $p->[-1]->{ $l };
}
return 1;
}
sub paths {
my $m = shift;
return map { [ $_ ] } values %{ $m->[ _i ] } if defined $m->[ _i ];
wantarray ? ( ) : 0;
}
1;
=pod
=head1 NAME
Graph::AdjacencyMap - create and a map of graph vertices or edges
=head1 SYNOPSIS
Internal.
=head1 DESCRIPTION
B<This module is meant for internal use by the Graph module.>
=head2 Object Methods
=over 4
=item del_path(@id)
Delete a Map path by ids.
=item del_path_by_multi_id($id)
Delete a Map path by a multi(vertex) id.
=item has_path(@id)
Return true if the Map has the path by ids, false if not.
=item has_path_by_multi_id($id)
Return true ifd the a Map has the path by a multi(vertex) id, false if not.
=item paths
Return all the paths of the Map.
=item set_path(@id)
Set the path by @ids.
=back
=head1 AUTHOR AND COPYRIGHT
Jarkko Hietaniemi F<jhi@iki.fi>
=head1 LICENSE
This module is licensed under the same terms as Perl itself.
=cut
|