/usr/share/perl5/Lintian/DepMap.pm is in lintian 2.5.43ubuntu0.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 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 | # Copyright (C) 2009 Raphael Geissert <atomo64@gmail.com>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
package Lintian::DepMap;
use strict;
use warnings;
use parent 'Clone';
use Carp qw(croak);
use List::MoreUtils qw(any);
use Lintian::Util qw(fail);
=head1 NAME
Lintian::DepMap - Dependencies map/tree creator
=head1 SYNOPSIS
use Lintian::DepMap;
my $map = Lintian::DepMap->new();
# know about A:
$map->add('A');
# B depends on A:
$map->add('B', 'A');
# prints 'A':
print $map->selectable();
# indicate we are working on 'A' (optional):
$map->select('A');
# do 'A' ... work work work
# we are done with A:
$map->satisfy('A');
# prints 'B':
print $map->selectable();
=head1 DESCRIPTION
Lintian::DepMap is a simple dependencies map/tree creator and "resolver".
It works by creating a tree based on the indicated dependencies and destroying
it to resolve it.
Note: in the below documentation a C<node> means a node name; no internal
reference is ever returned and therefore never accepted as a parameter.
=over 4
=item new()
Creates a new Lintian::DepMap object and returns a reference to it.
=cut
sub new {
my ($class) = @_;
my $self = {};
bless($self, $class);
return $self;
}
=item initialise()
Ensure, by reconstructing if necessary, the map's status is the initial.
That is, partially or fully resolved maps can be restored to its original
state by calling this method.
This can be useful when the same map will be used multiple times.
E.g.
$map->add('A');
$map->satisfy('A');
# prints nothing
print $map->selectable();
$map->initialise();
print $map->selectable();
=cut
#'
sub initialise {
my $self = shift;
delete $self->{'selected'};
while (my ($parent, $childs) = each %{$self->{'satisfied_nodes'}}) {
if (@{$childs}) {
for my $child (@{$childs}) {
$self->add($child, $parent);
}
}
$self->add($parent);
}
delete $self->{'satisfied_nodes'};
return 1;
}
=item add(node[, dependency[, dependency[, ...]]])
Adds the given C<node> to the map marking any second or more parameter as its
dependencies. E.g.
# A has no dependency:
$map->add('A');
# B depends on A:
$map->add('B', 'A');
=cut
sub add {
my $self = shift;
my ($node, @parents) = @_;
my $parents = 0;
if (exists($self->{'unknown'}{$node})
&& defined($self->{'unknown'}{$node})) {
$self->{'known'}{$node} = $self->{'unknown'}{$node};
delete $self->{'unknown'}{$node};
}
$self->{'known'}{$node}++;
$self->{'nodes'}{$node}{'branches'} = {}
unless(exists($self->{'nodes'}{$node}{'branches'}));
$self->{'nodes'}{$node}{'parents'} = {}
unless(exists($self->{'nodes'}{$node}{'parents'}));
while (my $parent = pop @parents) {
$parents = 1;
if (exists($self->{'known'}{$parent})) {
$self->{'known'}{$parent}++;
} else {
$self->{'unknown'}{$parent}++;
}
$self->{'nodes'}{$parent}{'branches'}{$node}
= $self->{'nodes'}{$node};
$self->{'nodes'}{$node}{'parents'}{$parent}
= $self->{'nodes'}{$parent};
}
unless ($parents || scalar %{$self->{'nodes'}{$node}{'parents'}}) {
$self->{'pending'}{$node} = 1;
} elsif (exists $self->{'pending'}{$node}) {
delete $self->{'pending'}{$node};
}
return 1;
}
=item addp(node[, prefix, dependency[, dependency[, ...]]])
Adds the given C<node> to the map marking any third or more parameters,
after prefixing them with C<prefix>, as its dependencies. E.g.
# pA and pB have no dependency:
$map->add('pA');
$map->add('pA');
# C depends on pA and pB:
$map->addp('C', 'p', 'A', 'B');
=cut
sub addp {
my ($self,$node,$prefix) = (shift,shift,shift);
my @deps;
while (my $dep = shift) {
push @deps, $prefix . $dep;
}
return $self->add($node, @deps);
}
=item satisfy(node)
Indicates that the given C<node> has been satisfied/done.
The given C<node> is no longer marked as being selected, if it was;
all of its branches that have no other parent are now selectable()
and all the references to C<node> are deleted except the one from
the known() list.
E.g.
# A has no dependencies:
$map->add('A');
# B depends on A:
$map->add('B', 'A');
# we work on A, and we are done:
$map->satisfy('A');
# B is now available:
$map->selectable('B');
B<Note>: shall the requested node not exist this method die()s.
=cut
sub satisfy {
my $self = shift;
my $node = shift;
if (any {$_ eq $node} $self->missing()) {
fail( "Attempted to mark node '$node' as satisfied but it is not "
.'reachable, perhaps you forgot to add() it first?');
}
if (not exists($self->{'nodes'}{$node})) {
fail( "Attempted to mark node '$node' as satisfied but it is not "
.'reachable, perhaps you forgot to satisfy() its dependencies first?'
);
}
return 0 unless (exists($self->{'pending'}{$node}));
delete $self->{'selected'}{$node}
if exists($self->{'selected'}{$node});
$self->{'satisfied_nodes'}{$node}
= [keys %{$self->{'nodes'}{$node}{'branches'}}];
for my $branch (keys %{$self->{'nodes'}{$node}{'branches'}}) {
delete $self->{'nodes'}{$branch}{'parents'}{$node};
delete $self->{'nodes'}{$node}{'branches'}{$branch};
unless (scalar keys %{$self->{'nodes'}{$branch}{'parents'}}) {
$self->{'pending'}{$branch} = 1;
}
}
delete $self->{'pending'}{$node};
delete $self->{'nodes'}{$node};
return 1;
}
=item done(node)
Returns whether the given C<node> has been satisfied/done.
E.g.
# A has no dependencies:
$map->add('A');
# we work on A, and we are done:
$map->satisfy('A');
print "A is done!"
if ($map->done('A'));
=cut
sub done {
my $self = shift;
my $node = shift;
return exists $self->{'satisfied_nodes'}{$node};
}
=item unlink(node)
Removes all references to the given C<node> except for the entry in the
known() table.
B<IMPORTANT>: since all references are deleted it is possible that a node
that depended on C<node> may become available even when it was not expected
to.
B<IMPORTANT>: this operation can B<not> be reversed by the means of
initialise().
E.g.
$map->add('A');
# Prints A
print $map->selectable();
# we later notice we don't want A
$map->unlink('A');
# Prints nothing
print $map->selectable();
B<Note>: shall the requested node not exist this method die()s.
=cut
sub unlink {
my $self = shift;
my $node = shift;
if (not exists($self->{'nodes'}{$node})) {
fail( "Attempted to unlink node '$node' but it can not be found"
.', perhaps it has already been satisfied?');
}
delete $self->{'pending'}{$node}
if (exists($self->{'pending'}{$node}));
delete $self->{'selected'}{$node}
if (exists($self->{'selected'}{$node}));
for my $parent (keys %{$self->{'nodes'}{$node}{'parents'}}) {
delete $self->{'nodes'}{$parent}{'branches'}{$node}
if exists $self->{'nodes'}{$parent}{'branches'}{$node};
delete $self->{'nodes'}{$node}{'parents'}{$parent};
}
for my $branch (keys %{$self->{'nodes'}{$node}{'branches'}}) {
delete $self->{'nodes'}{$branch}{'parents'}{$node};
delete $self->{'nodes'}{$node}{'branches'}{$branch};
}
delete $self->{'nodes'}{$node};
return 1;
}
=item select(node)
Marks the given C<node> as selected to indicate that whatever it represents
is being worked on. Note: this operation is not atomic.
E.g.
$map->add('A');
$map->add('B', 'A');
while($map->pending()) {
for my $node ($map->selectable()) {
$map->select($node);
# work work work
$map->satisfy($node);
}
}
=cut
sub select {
my $self = shift;
my $node = shift;
if (not exists($self->{'pending'}{$node})) {
fail( "Attempted to mark node '$node' as selected but it is not "
.'known, perhaps its parents are not yet satisfied?');
}
return 0 if (exists($self->{'selected'}{$node}));
$self->{'selected'}{$node} = 1;
return 1;
}
=item selectable([node])
If a C<node> is specified returns TRUE if it can be select()ed.
B<Note>: already select()ed nodes can not be re-selected,
i.e. if the given C<node> has already been selected this function will
return FALSE; or any selected item will be omitted from the returned array,
in case no C<node> is specified.
=cut
sub selectable {
my $self = shift;
my $node = shift;
return (exists $self->{'pending'}{$node}
and not exists $self->{'selected'}{$node})
if (defined($node));
return
grep {not exists $self->{'selected'}{$_}} keys %{$self->{'pending'}};
}
=item selected([node])
If a C<node> is specified returns TRUE if it is has been selected,
FALSE otherwise.
If no C<node> is specified it returns an array with the name of all the
nodes that have been select()ed but not yet satisfied.
E.g.
# We are going to work on A
$map->select('A');
# Returns true
$map->selected('A');
# Prints A
print $map->selected();
=cut
sub selected {
my $self = shift;
my $node = shift;
return exists $self->{'selected'}{$node}
if (defined($node));
return keys %{$self->{'selected'}};
}
=item selectAll()
select()s all the selectable() nodes.
=cut
sub selectAll {
my $self = shift;
for my $node ($self->selectable()) {
$self->select($node);
}
return;
}
=item parents(node)
Return an array with the name of the parent nodes for the given C<node>.
E.g.
$map->add('A');
$map->add('B', 'A');
# Prints 'A'
print $map->parents('B');
B<Note>: shall the requested node not exist this method die()s.
=cut
sub parents {
my $self = shift;
my $node = shift;
if (not exists($self->{'nodes'}{$node})) {
fail( "Attempted to get the parents of node '$node' but it is not"
.'known, perhaps you forgot to add() it first?');
}
return keys %{$self->{'nodes'}{$node}{'parents'}};
}
=item pending()
Return the number of nodes that can or have already been selected. E.g.
$map->add('B', 'A');
# prints 1:
print $map->pending();
$map->select('A');
# prints 1:
print $map->pending();
$map->satisfy('A');
# prints 1 ('B' is now available):
print $map->pending();
=cut
sub pending {
my $self = shift;
return (scalar keys %{$self->{'pending'}});
}
=item known()
Return an array containing the names of nodes that were added. E.g.
$map->add('B', 'A');
# prints 'B':
print $map->known();
$map->add('A');
# prints 'A' and 'B':
print $map->known();
=item known(NODE)
Returns a truth value if NODE is known or C<undef> otherwise.
=cut
sub known {
my ($self, $node) = @_;
if (@_ > 1) {
croak('known(NODE) requires a defined argument')
if not defined($node);
return 1 if exists($self->{'known'}{$node});
return;
}
return keys %{$self->{'known'}};
}
=item missing()
Return an array containing the names of nodes that were not added but that
another node depended on it. E.g.
$map->add('B', 'A');
# prints 'A':
print $map->missing();
$map->add('A');
# prints nothing:
print $map->missing();
# this also works; A depends on 'Z':
$map->add('A', 'Z');
# but now this prints 'Z':
print $map->missing();
=cut
sub missing {
my $self = shift;
return keys %{$self->{'unknown'}};
}
=item circular(['deep'])
Returns an array of nodes that have a circular dependency.
E.g.
$map->add('A', 'B');
$map->add('B', 'A');
# Prints A and B
print $map->circular();
B<Note>: since recursive/deep circular dependencies detection is a bit
more resource expensive it is not the default.
$map->add('A', 'B');
$map->add('B', 'C');
$map->add('C', 'A');
# No deep/recursive scanning is performed, prints nothing
print $map->circular();
# deep scan, prints 'A, B, C'
print $map->circular('deep');
=cut
sub circular {
my $self = shift;
my $deep = shift;
my @circ;
$deep = (defined($deep) && $deep eq 'deep');
if ($deep) {
my @nodes;
my ($prev_satisfied, $prev_selected)
= ($self->{'satisfied_nodes'}, $self->{'selected'});
while(@nodes = $self->selectable()) {
for my $node (@nodes) {
$self->satisfy($node);
}
}
# there should be no nodes left:
@circ = keys %{$self->{'nodes'}};
$self->{'satisfied_nodes'} = $prev_satisfied;
$self->{'selected'} = $prev_selected;
$self->initialise();
} else {
for my $node (keys %{$self->{'nodes'}}) {
my $node_p = $self->{'nodes'}{$node}{'parents'};
push @circ, grep { exists $node_p->{$_} } keys %{$node_p};
}
}
return @circ;
}
1;
__END__
=back
=head1 AUTHOR
Originally written by Raphael Geissert <atomo64@gmail.com> for Lintian.
=cut
# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et
|