aboutsummaryrefslogtreecommitdiffstats
path: root/grpmi
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2002-08-05 08:47:23 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2002-08-05 08:47:23 +0000
commitc4eb096da7b0799ab3041419469d130c8931feac (patch)
treea1ac990b65e973efda820a60e04de7d5c77d65de /grpmi
parentca32a8240c568df1ff7e1ca37e2dad0d101d9a63 (diff)
downloadrpmdrake-c4eb096da7b0799ab3041419469d130c8931feac.tar
rpmdrake-c4eb096da7b0799ab3041419469d130c8931feac.tar.gz
rpmdrake-c4eb096da7b0799ab3041419469d130c8931feac.tar.bz2
rpmdrake-c4eb096da7b0799ab3041419469d130c8931feac.tar.xz
rpmdrake-c4eb096da7b0799ab3041419469d130c8931feac.zip
provide information about the number of current download and
number of overall downloads, same with installation of packages
Diffstat (limited to 'grpmi')
-rwxr-xr-xgrpmi/grpmi.pl17
1 files changed, 13 insertions, 4 deletions
diff --git a/grpmi/grpmi.pl b/grpmi/grpmi.pl
index 43e88fb8..63938d10 100755
--- a/grpmi/grpmi.pl
+++ b/grpmi/grpmi.pl
@@ -80,10 +80,15 @@ my $exitstatus = -1;
my $proxy;
/http_proxy = (http:[^:]+:\d+)/ and $proxy = $1 foreach cat_("$ENV{HOME}/.wgetrc");
my $cache_location = '/var/cache/urpmi/rpms';
+my $url_regexp = '^http://|^https://|^ftp://';
+my $nb_downloads = int(grep { m,$url_regexp, } @ARGV);
+my $download_progress;
for (my $i=0; $i<@ARGV; $i++) {
- if ($ARGV[$i] =~ m,^http://|^https://|^ftp://,) {
- $label->set(_("Downloading package `%s'...", basename($ARGV[$i]))); select(undef, undef, undef, 0.1); $mainw->flush; #- hackish :-(
+ if ($ARGV[$i] =~ m,$url_regexp,) {
+ $download_progress++;
+ $label->set(_("Downloading package `%s' (%s/%s)...", basename($ARGV[$i]), $download_progress, $nb_downloads));
+ select(undef, undef, undef, 0.1); $mainw->flush; #- hackish :-(
my $res = curl_download::download($ARGV[$i], $cache_location, $proxy,
sub { $_[0] and $progressbar->update($_[1]/$_[0]); $mainw->flush });
my $url = $ARGV[$i];
@@ -128,7 +133,9 @@ Do you want to continue anyway (skipping this package)?",
if (grep { /^[^-]/ } @ARGV) {
$label->set(_("Preparing packages for installation...")); $mainw->flush;
-
+ my $nb_installs = int(grep { /^[^-]/ } @ARGV);
+ my $install_progress;
+
sub install_packages_callback {
my ($msg) = @_;
my $retval;
@@ -140,7 +147,9 @@ _("Conflicts were detected:
Do you want to force the install anyway?",
join("\n", split(/\|/, $1))), 1) ? 0 : 1
},
- 'inst-start' => sub { $label->set(_("Installing package `%s'...", $1)); $mainw->flush },
+ 'inst-start' => sub { $install_progress++;
+ $label->set(_("Installing package `%s' (%s/%s)...", $1, $install_progress, $nb_installs));
+ $mainw->flush },
'inst-progress' => sub {
$1 =~ /(\d+) (\d+)/;
$progressbar->update($1/$2); $mainw->flush