aboutsummaryrefslogtreecommitdiffstats
path: root/Rpmdrake/pkg.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-04 15:00:32 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-04 15:00:32 +0000
commit73a2c87efd0d9922414df96082de95569a58ab6d (patch)
tree686f75f26e5091cbefe1100c0ef9957963a7283d /Rpmdrake/pkg.pm
parent80fbdb37f938f7f7c3e0462839819b6a69d7751c (diff)
downloadrpmdrake-73a2c87efd0d9922414df96082de95569a58ab6d.tar
rpmdrake-73a2c87efd0d9922414df96082de95569a58ab6d.tar.gz
rpmdrake-73a2c87efd0d9922414df96082de95569a58ab6d.tar.bz2
rpmdrake-73a2c87efd0d9922414df96082de95569a58ab6d.tar.xz
rpmdrake-73a2c87efd0d9922414df96082de95569a58ab6d.zip
(download_callback) split it out of "trans_log" callback (needed for
next commit)
Diffstat (limited to 'Rpmdrake/pkg.pm')
-rw-r--r--Rpmdrake/pkg.pm50
1 files changed, 26 insertions, 24 deletions
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm
index c9bc3ce4..876c6100 100644
--- a/Rpmdrake/pkg.pm
+++ b/Rpmdrake/pkg.pm
@@ -169,6 +169,31 @@ sub find_installed_version {
sub formatlistpkg { join("\n", map { s/^(\s)/ \1/mg; "- $_" } sort { uc($a) cmp uc($b) } @_) }
+my $canceled;
+sub download_callback {
+ my ($gurpm, $mode, $file, $percent, $total, $eta, $speed) = @_;
+ $canceled = 0;
+ if ($mode eq 'start') {
+ $gurpm->label(N("Downloading package `%s'...", basename($file)));
+ $gurpm->validate_cancel(but(N("Cancel")), sub { $canceled = 1 });
+ } elsif ($mode eq 'progress') {
+ $gurpm->label(
+ join("\n",
+ N("Downloading package `%s'...", basename($file)),
+ (defined $total && defined $eta ?
+ N(" %s%% of %s completed, ETA = %s, speed = %s", $percent, $total, $eta, $speed)
+ : N(" %s%% completed, speed = %s", $percent, $speed)
+ ) =~ /^\s*(.*)/
+ ),
+ );
+ $gurpm->progress($percent/100);
+ } elsif ($mode eq 'end') {
+ $gurpm->progress(1);
+ $gurpm->invalidate_cancel;
+ }
+ !$canceled;
+}
+
# -=-=-=---=-=-=---=-=-=-- install packages -=-=-=---=-=-=---=-=-=-
@@ -577,7 +602,6 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
$gurpm = Rpmdrake::gurpm->new(1 ? N("Please wait") : N("Package installation..."), N("Initializing..."), transient => $::main_window);
my $_gurpm_clean_guard = before_leaving { undef $gurpm };
- my $canceled;
my $something_installed;
my ($progress, $total, @rpms_upgrade);
@@ -622,29 +646,7 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
my ($message) = @_;
interactive_msg(N("Error"), $message, yesno => 1);
},
- trans_log => sub {
- my ($mode, $file, $percent, $total, $eta, $speed) = @_;
- if ($mode eq 'start') {
- $gurpm->label(N("Downloading package `%s'...", basename($file)));
- $gurpm->validate_cancel(but(N("Cancel")), sub { $canceled = 1 });
- } elsif ($mode eq 'progress') {
- $gurpm->label(
- join("\n",
- N("Downloading package `%s'...", basename($file)),
- (defined $total && defined $eta ?
- N(" %s%% of %s completed, ETA = %s, speed = %s", $percent, $total, $eta, $speed)
- : N(" %s%% completed, speed = %s", $percent, $speed)
- ) =~ /^\s*(.*)/
- ),
- );
- $gurpm->progress($percent/100);
- } elsif ($mode eq 'end') {
- $gurpm->progress(1);
- $gurpm->invalidate_cancel;
- }
- $canceled and goto return_with_exit_code;
-
- },
+ trans_log => sub { download_callback($gurpm, @_) or goto return_with_exit_code },
post_extract => sub {
my ($set, $transaction_sources, $transaction_sources_install) = @_;
$transaction = $set;