summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-07-06 16:09:49 +0000
committerFrancois Pons <fpons@mandriva.com>2001-07-06 16:09:49 +0000
commitadb219b9736bc126183661195285b4299cd16c4b (patch)
treef56e82a0ade4cbab0e0e553af38781fd97e4d988 /perl-install/pkgs.pm
parentfcb7a7502e4473578061391c3e5ae3ebb597094d (diff)
downloaddrakx-backup-do-not-use-adb219b9736bc126183661195285b4299cd16c4b.tar
drakx-backup-do-not-use-adb219b9736bc126183661195285b4299cd16c4b.tar.gz
drakx-backup-do-not-use-adb219b9736bc126183661195285b4299cd16c4b.tar.bz2
drakx-backup-do-not-use-adb219b9736bc126183661195285b4299cd16c4b.tar.xz
drakx-backup-do-not-use-adb219b9736bc126183661195285b4299cd16c4b.zip
fixed selected_leaves. change algorithm as previous one can still causes dead
lock and may not reproduce correct list. take care of choice that need to be examined before else another package may be chosen if choice is not satisfied when selecting packages.
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm49
1 files changed, 34 insertions, 15 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 250e1510f..88b697246 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -1493,27 +1493,46 @@ sub remove($$) {
sub selected_leaves {
my ($packages) = @_;
- my (%l, %m);
- $l{$_->[$FILE]} = 1 foreach grep { packageFlagSelected($_) && !packageFlagBase($_) } @{$packages->{depslist}};
+ my %l;
+ #- initialize l with all id, not couting base package.
+ foreach my $id (0 .. $#{$packages->{depslist}}) {
+ my $pkg = $packages->{depslist}[$id];
+ packageSelectedOrInstalled($pkg) && !packageFlagBase($pkg) or next;
+ $l{$id} = 1;
+ }
- do {
- %m = %l;
-
- N: foreach my $p (@{$packages->{depslist}}) {
- foreach (packageProvides($p)) {
- if ($l{$_->[$FILE]}) {
- delete $l{$p->[$FILE]};
- next N;
+ foreach my $id (keys %l) {
+ #- when a package is in a choice, increase its value in hash l, because
+ #- it has to be examined before when we will select them later.
+ #- NB: this number may be computed before to save time.
+ foreach (packageDepsId($packages->{depslist}[$id])) {
+ if (/\|/) {
+ foreach (split '\|') {
+ exists $l{$_} or next;
+ $l{$_} > 1 + $l{$id} or $l{$_} = 1 + $l{$id};
}
}
}
- } until (%m == %l);
+ }
+
+ #- at this level, we can remove selected packages that are already
+ #- required by other, but we have to sort according to choice usage.
+ foreach my $id (sort { $l{$b} <=> $l{$a} || $b <=> $a } keys %l) {
+ #- do not count already deleted id, else cycles will be removed.
+ $l{$id} or next;
+
+ foreach (packageDepsId($packages->{depslist}[$id])) {
+ #- choices need no more to be examined, this has been done above.
+ /\|/ and next;
+ #- improve value of this one, so it will be selected before.
+ $l{$id} < $l{$_} and $l{$id} = $l{$_};
+ $l{$_} = 0;
+ }
+ }
- [ map {
- my @l; $l[$FILE] = $_;
- packageName(\@l);
- } grep { $l{$_} } keys %l ];
+ #- now sort again according to decrementing value, and gives packages name.
+ [ map { packageName($packages->{depslist}[$_]) } sort { $l{$b} <=> $l{$a} } grep { $l{$_} > 0 } keys %l ];
}