/usr/share/perl5/Lintian/Unpacker.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 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 | # Copyright (C) 2012 Niels Thykier <niels@thykier.net>
#
# 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, you can find it on the World Wide
# Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301, USA.
package Lintian::Unpacker;
use strict;
use warnings;
use parent 'Class::Accessor::Fast';
use POSIX;
use Lintian::Command::Simple qw(wait_any kill_all);
use Lintian::Util qw(fail);
=head1 NAME
Lintian::Unpacker -- Job handler to unpack collections
=head1 SYNOPSIS
use Lintian::DepMap::Properties;
use Lintian::Unpacker;
my $done = 1;
my $joblimit = 4;
my $collmap = Lintian::DepMap::Properties->new;
my %requested = ( 'debfiles' => 1 );
# Initialise $collmap with the collections and their relations
# - Each node in $collmap should an instance of L::CollScript
# as property.
my $unpacker = Lintian::Unpacker->new ($collmap, \%requested,
$joblimit);
while (1) {
my $errhandler = sub {}; # Insert hook
my @lpkgs; # List of Lintian::Lab::Entry instances
$unpacker->reset_worklist;
next unless $unpacker->prepare_tasks ($errhandler, @lpkgs);
my %hooks = (
'coll-hook' => sub {}, # Insert hook
'finish-hook' => sub {}, # Insert hook
);
$unpacker->process_tasks ();
last if $done;
}
=head1 DESCRIPTION
An unpacker class to extract data from lab entries and make it
available via L<Lintian::Collect>.
=head1 CLASS METHODS
=over 4
=item new (COLLMAP, PROFILE[, OPTIONS])
Creates a new unpacker.
COLLMAP is a L<Lintian::DepMap::Properties> describing the dependencies
between the collections. Each node in COLLMAP must have a
L<Lintian::CollScript> as property.
OPTIONS is an optional hashref containing optional configurations. If
a key is not present, its value is assumed to be C<undef> unless
otherwise stated. The following key/values are available:
=over 4
=item "profile"
If this key is present and its value is defined, the value must be
L<Lintian::Profile>. The unpacker will use the enabled checks of the
Profile to determine what collections to use.
If "profile" is not present or its value is undefined, then all
collections in COLLMAP will be unpacked.
=item "extra-coll"
If this key is present and its value is defined, it must be a
reference to a hash table. The keys are considered names of "extra"
collections to unpack. The values in this table is ignored.
Extra collections will be unpacked on top of other collections.
NB: This value is ignored if "profile" is not given.
=item "jobs"
This value is the max number of jobs to be run in parallel. Can be
changed with the L</jobs> method later. If omitted, it defaults to
0. Refer to L</jobs> for more info.
=back
=cut
sub new {
my ($class, $collmap, $options) = @_;
my $ccmap = $collmap->clone;
my ($req_table, $profile, $extra);
my $jobs = 0;
if ($options) {
$extra = $options->{'extra-coll'} if exists $options->{'extra-coll'};
$profile = $options->{'profile'} if exists $options->{'profile'};
$jobs = $options->{'jobs'} if exists $options->{'jobs'};
}
my $self = {
'cache' => {},
'collmap' => $ccmap,
'jobs' => $jobs,
'profile' => $profile,
'running-jobs' => {},
'worktable' => {},
};
if (defined $profile) {
$req_table = {};
foreach my $cname ($profile->scripts) {
my $check = $profile->get_script($cname);
$req_table->{$_} = 1 for $check->needs_info;
}
if ($extra) {
foreach my $ecoll (keys %$extra) {
$req_table->{$ecoll} = 1;
}
}
}
if (defined $req_table) {
# For new entries we take everything in the collmap, which is
# a bit too much in some cases. Since we have cloned collmap,
# we might as well prune the nodes we will not need in our
# copy. While not perfect, it reduces the unnecessary work
# rather well.
#
# Known issue: "lintian -oC files some.dsc" should not need
# to do anything because "files" is "binary, udeb"-only.
my %needed;
my @check = keys %$req_table;
while (my $coll = pop @check) {
$needed{$coll} = 1;
push @check,grep { !exists $needed{$_} } $ccmap->parents($coll);
}
# remove unneeded nodes in our copy
foreach my $node ($collmap->known) {
next if $needed{$node};
$ccmap->unlink($node);
}
# ccmap should not be inconsistent by this change.
fail 'Inconsistent collmap after deletion'
if $ccmap->missing;
}
$self->{'extra-coll'} = $extra;
# Initialise our copy
$ccmap->initialise;
bless $self, $class;
return $self;
}
=back
=head1 INSTANCE METHODS
=over 4
=item prepare_tasks (ERRHANDLER, LAB-ENTRY...)
Prepare a number of L<lab entries|Lintian::Lab::Entry> for unpacking.
The ERRHANDLER should be a code ref, which will be invoked in case
that an entry is not in the laboratory and cannot be created (via
the create method). It is invoked once per failed entry giving the
entry as first (and only) argument.
If ERRHANDLER returns normally, the entry is skipped (and will not be
unpacked later). If ERRHANDLER croaks/dies/etc., the method will
attempt to update the status file for any entry it created before
passing back the error to the caller (via die).
LAB-ENTRY is an array of lab entries to be processed. They must be
instances of L<Lintian::Lab::Entry>, but do not have to exists. They
will be created as needed.
Returns a truth value if at least one entry needs to be processed
and it did not cause an error. Otherwise, it returns C<undef>.
NB: The status file is not updated for created entries on successful
return. It should either be done by running the process_tasks method
or manually.
=cut
sub prepare_tasks {
my ($self, $errorhandler, @lpkgs) = @_;
my %worklists;
foreach my $lpkg (@lpkgs) {
my $changed = 0;
my $cmap;
my $needed;
if ($lpkg->exists) {
# It already exists, do nothing.
1;
} elsif (not $lpkg->create){
eval {$errorhandler->($lpkg);};
if ($@) {
# The error handler croaked; attempt to write status
# files for entries we created.
my $err = $@;
foreach my $wlist (values %worklists) {
next unless $wlist->{'changed'};
my $lpkg = $wlist->{'lab-entry'};
# ignore errors; there is not much we can do about
# it here.
$lpkg->update_status_file;
}
# ... and pass back the error.
die $err;
}
next;
} else {
# created
$changed = 1;
}
($cmap, $needed) = $self->_requested_colls($lpkg, $changed);
next unless $cmap; # nothing to do
$worklists{$lpkg->identifier} = {
'collmap' => $cmap,
'lab-entry' => $lpkg,
'changed' => $changed,
'needed' => $needed,
};
}
return unless %worklists;
$self->{'worktable'} = \%worklists;
return 1;
}
sub _gen_type_coll {
my ($self, $pkg_type) = @_;
my $collmap = $self->{'collmap'};
my $cmap = Lintian::DepMap::Properties->new;
my $cond = { 'type' => $pkg_type };
foreach my $node ($collmap->known) {
my $coll = $collmap->getp($node);
$cmap->add($node, $coll->needs_info($cond), $coll);
}
$cmap->initialise;
$self->{'cache'}{$pkg_type} = $cmap;
return $cmap->clone;
}
sub _requested_colls {
my ($self, $lpkg, $new) = @_;
my $profile = $self->{'profile'};
my $extra = $self->{'extra-coll'};
my $pkg_type = $lpkg->pkg_type;
my ($cmap, %needed, @check);
unless (exists $self->{'cache'}{$pkg_type}) {
$cmap = $self->_gen_type_coll($pkg_type);
} else {
$cmap = $self->{'cache'}{$pkg_type}->clone;
}
# if its new and $profile is undef, we have to run all
# of collections. So lets exit early.
return ($cmap, undef) if $new and not $profile;
if ($profile) {
my %tmp;
foreach my $cname ($profile->scripts) {
my $check = $profile->get_script($cname);
next unless $check->is_check_type($pkg_type);
$tmp{$_} = 1 for $check->needs_info;
}
@check = keys %tmp;
push @check, grep { !exists $tmp{$_} } keys %$extra
if defined $extra;
} else {
@check = $cmap->known;
}
while (my $cname = pop @check) {
my $coll = $cmap->getp($cname);
# Skip collections not relevant to us (they will never
# be finished and we do not want to use their
# dependencies if they are the only ones using them)
next unless $coll->is_type($pkg_type);
next if $lpkg->is_coll_finished($cname, $coll->version);
$needed{$cname} = 1;
push @check, $coll->needs_info;
}
# skip it, unless we need to unpack something.
return ($cmap, \%needed) if %needed;
return;
}
=item process_tasks (HOOKS)
Process the current tasks. This method blocks until all tasks and
jobs have terminated.
The return value is unspecified.
HOOKS (if given) is a hashref of hooks. The following hooks are available:
=over 4
=item coll-hook (LPKG, EVENT, COLL, PID[, STATUS])
Called each time a new collection job is started or finished.
LPKG is the L<entry|Lintian::Lab::Entry> it is applied to. COLL is
the L<collection|Lintian::CollScript> being applied. EVENT is either
"start" for a new job or "finish" for a job terminating.
PID is the process id of the job. If EVENT is "start" this can be -1
to signal a failure.
STATUS is the exit status of the finishing job. It is only available
if EVENT is "finish" and if STATUS is non-zero is considered an error.
=item finish-hook (LPKG, STATE[, CHANGED])
Called once or twice for each entry processed at the end of the run.
The LPKG is the L<entry|Lintian::Lab::Entry> being processed.
For the first call, STATE is one of "changed" (the entry has been
modified), "unchanged" (the entry was unmodified) or "failed" (at
least one collection could not be applied). Note that a "failed"
entry may (or may not) be "changed" depending on where the failure
happened.
In the first call is done before the status file is written and the
hook may alter the entry at this point (e.g. auto-remove unused
collections). If it does so CHANGED should be invoked as a code-ref
to inform the unpacker of the change.
The second call only happens for entries that has been changed (one
way or another). STATE will be one of "sf-success" or "sf-error",
which determined on whether or not status file update was successful.
On errors (i.e. "sf-error"), $! will contain the error.
=back
=cut
sub process_tasks {
my ($self, $hooks) = @_;
my $worklists = $self->{'worktable'};
my $running_jobs = $self->{'running-jobs'};
my $colls = $self->{'collmap'};
my $jobs = $self->jobs;
$hooks //= {};
my $coll_hook = $hooks->{'coll-hook'};
my $finish_hook = $hooks->{'finish-hook'};
my %failed;
my %active = map { $_ => 1 } keys %$worklists;
while (1) {
my $nohang = 0;
PROC:
foreach my $procid (keys %active) {
my $wlist = $worklists->{$procid};
my $cmap = $wlist->{'collmap'};
my @todo = $cmap->selectable;
unless (@todo) {
delete $active{$procid};
next PROC;
}
my $lpkg = $wlist->{'lab-entry'};
my $needed = $wlist->{'needed'};
my $pkg_name = $lpkg->pkg_name;
my $pkg_type = $lpkg->pkg_type;
my $base = $lpkg->base_dir;
foreach my $coll (@todo) {
my $cs = $colls->getp($coll);
# current type?
unless ($cs->is_type($pkg_type)) {
$cmap->satisfy($coll);
next;
}
# check if it has been run previously
if ($lpkg->is_coll_finished($coll, $cs->version)) {
$cmap->satisfy($coll);
next;
}
# Check if its actually on our TODO list.
if (defined $needed and not exists $needed->{$coll}) {
$cmap->satisfy($coll);
next;
}
# Not run before (or out of date)
$lpkg->_clear_coll_status($coll);
# collect info
$cmap->select($coll);
$wlist->{'changed'} = 1;
my $pid = fork//-1;
if (not $pid) {
# child
my $ret = 0;
if ($cs->interface ne 'exec'
and not $ENV{'LINTIAN_COVERAGE'}) {
# With a non-exec interface, let L::CollScript
# handle it. Note that when run under
# Devel::Cover, we never take this route.
# This is because Devel::Cover relies on the
# END handler so all collections would get
# (more or less) 0 coverage in this case.
# For platforms that support it, try to change
# our name to the collection being run (like
# how it would be with the exec case below).
# For platforms that do not support, the child
# process will just keep its name as
# "lintian".
#<<<
# no Perltidy (breaks the no-critic)
$0 = $coll; ## no critic (Variables::RequireLocalizedPunctuationVars)
#>>>
eval {$cs->collect($pkg_name, $pkg_type, $base);};
if ($@) {
print STDERR $@;
$ret = 2;
}
} else {
if (my $coverage_arg = $ENV{'LINTIAN_COVERAGE'}) {
my $p5opt = $ENV{'PERL5OPT'}//q{};
$p5opt .= ' ' if $p5opt ne q{};
$ENV{'PERL5OPT'} = "${p5opt} ${coverage_arg}";
}
# Its fork + exec - invoke that directly (saves a fork)
exec $cs->script_path, $pkg_name, $pkg_type, $base
or die "exec $cs->script_path: $!";
}
POSIX::_exit($ret);
}
$coll_hook->($lpkg, 'start', $cs, $pid) if $coll_hook;
if ($pid < 0) {
# failed - Lets not start any more jobs for this
# processable
$failed{$lpkg->identifier} = 1;
delete $active{$lpkg->identifier};
last;
}
$running_jobs->{$pid} = [$cs, $cmap, $lpkg];
if ($jobs) {
# Have we hit the limit of running jobs?
last PROC if scalar keys %$running_jobs >= $jobs;
}
}
}
# wait until a job finishes to run its branches, if any, or skip
# this package if any of the jobs failed.
while (my ($pid, $job_data) = wait_any($running_jobs, $nohang)) {
my $status = $?;
my ($cs, $cmap, $lpkg) = @$job_data;
my $procid = $lpkg->identifier;
$coll_hook->($lpkg, 'finish', $cs, $pid, $status)
if $coll_hook;
if ($status) {
# failed ...
$failed{$procid} = 1;
delete $active{$procid};
next;
}
my $coll = $cs->name;
# The collection was success
$lpkg->_mark_coll_finished($coll, $cs->version);
$cmap->satisfy($coll);
# If the entry is marked as failed, don't break the loop
# for it.
next if exists $failed{$procid};
$active{$procid} = 1 if $cmap->selectable;
$nohang = 1 if %active;
}
# Stop when there are no running jobs and no new pending ones.
unless (%active or %$running_jobs) {
# No more running jobs and no new jobs have become available...
# It is not quite sufficient, so ensure that all jobs have in
# fact been run.
my $done = 1;
foreach my $procid (keys %$worklists) {
# Failed ones do not count...
next if $failed{$procid};
my $cmap = $worklists->{$procid}{'collmap'};
if ($cmap->pending) {
$done = 0;
last;
}
}
last if $done;
}
}
foreach my $procid (keys %$worklists) {
my $wlist = $worklists->{$procid};
my $lpkg = $wlist->{'lab-entry'};
my $changed = $wlist->{'changed'};
my $state = 'unchanged';
$state = 'changed' if $changed;
$state = 'failed' if exists $failed{$procid};
$finish_hook->($lpkg, $state, sub { $changed = 1 })
if $finish_hook;
if ($changed) {
$state = 'sf-error';
if ($lpkg->update_status_file) {
$state = 'sf-success';
}
$finish_hook->($lpkg, $state)
if $finish_hook;
}
}
return;
}
=item reset_worklist
Wait for all running jobs (see L</wait_for_jobs>) and discard the
current worklist.
=cut
sub reset_worklist {
my ($self) = @_;
$self->wait_for_jobs;
$self->{'worktable'} = {};
return;
}
=item wait_for_jobs
Block and wait for all running jobs to terminate. Usually this is not
needed unless process_tasks was interrupted somehow.
=cut
sub wait_for_jobs {
my ($self) = @_;
my $running = $self->{'running-jobs'};
if (%{$running}) {
while (my ($key, undef) = wait_any($running)) {
delete $running->{$key};
}
$self->{'running-jobs'} = {};
}
return;
}
=item kill_jobs
Forcefully terminate all running jobs. Usually this is not needed
unless process_tasks was interrupted somehow.
=cut
sub kill_jobs {
my ($self) = @_;
my $running = $self->{'running-jobs'};
if (%{$running}) {
kill_all($running);
kill_all($running, 'KILL') if %$running;
$self->{'running-jobs'} = {};
}
return;
}
=item jobs
Returns or sets the max number of jobs to be processed in parallel.
If the limit is 0, then there is no limit for the number of parallel
jobs.
=cut
Lintian::Unpacker->mk_accessors(qw(jobs));
=back
=head1 AUTHOR
Originally written by Niels Thykier <niels@thykier.net> for Lintian.
=head1 SEE ALSO
lintian(1), Lintian::CollScript(3), Lintian::Lab::Entry(3)
=cut
1;
# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et
|