mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
parallel: Implemented --etas.
This commit is contained in:
parent
8b82980633
commit
4fa5c872bc
39
src/parallel
39
src/parallel
|
@ -323,7 +323,7 @@ if($opt::pipe and @opt::a) {
|
||||||
#print ::my_dump($cmd);
|
#print ::my_dump($cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($opt::eta) {
|
if($opt::eta or $opt::etas) {
|
||||||
# Count the number of jobs before starting any
|
# Count the number of jobs before starting any
|
||||||
$Global::JobQueue->total_jobs();
|
$Global::JobQueue->total_jobs();
|
||||||
}
|
}
|
||||||
|
@ -702,6 +702,7 @@ sub options_hash {
|
||||||
"dry-run|dryrun" => \$opt::dryrun,
|
"dry-run|dryrun" => \$opt::dryrun,
|
||||||
"progress" => \$opt::progress,
|
"progress" => \$opt::progress,
|
||||||
"eta" => \$opt::eta,
|
"eta" => \$opt::eta,
|
||||||
|
"etas" => \$opt::etas,
|
||||||
"arg-sep|argsep=s" => \$opt::arg_sep,
|
"arg-sep|argsep=s" => \$opt::arg_sep,
|
||||||
"arg-file-sep|argfilesep=s" => \$opt::arg_file_sep,
|
"arg-file-sep|argfilesep=s" => \$opt::arg_file_sep,
|
||||||
"trim=s" => \$opt::trim,
|
"trim=s" => \$opt::trim,
|
||||||
|
@ -1022,6 +1023,9 @@ sub parse_options {
|
||||||
if(defined $opt::eta) {
|
if(defined $opt::eta) {
|
||||||
$opt::progress = $opt::eta;
|
$opt::progress = $opt::eta;
|
||||||
}
|
}
|
||||||
|
if(defined $opt::etas) {
|
||||||
|
$opt::progress = $opt::etas;
|
||||||
|
}
|
||||||
if(defined $opt::retired) {
|
if(defined $opt::retired) {
|
||||||
::error("-g has been retired. Use --group.\n");
|
::error("-g has been retired. Use --group.\n");
|
||||||
::error("-B has been retired. Use --bf.\n");
|
::error("-B has been retired. Use --bf.\n");
|
||||||
|
@ -1180,9 +1184,9 @@ sub read_options {
|
||||||
# Returns:
|
# Returns:
|
||||||
# @ARGV without --options
|
# @ARGV without --options
|
||||||
# This must be done first as this may exec myself
|
# This must be done first as this may exec myself
|
||||||
if(defined $ARGV[0] and ($ARGV[0]=~/^--shebang / or
|
if(defined $ARGV[0] and ($ARGV[0]=~/^--shebang/ or
|
||||||
$ARGV[0]=~/^--shebang-?wrap / or
|
$ARGV[0]=~/^--shebang-?wrap/ or
|
||||||
$ARGV[0]=~/^--hashbang /)) {
|
$ARGV[0]=~/^--hashbang/)) {
|
||||||
# Program is called from #! line in script
|
# Program is called from #! line in script
|
||||||
# remove --shebang-wrap if it is set
|
# remove --shebang-wrap if it is set
|
||||||
$opt::shebang_wrap = ($ARGV[0]=~s/^--shebang-?wrap *//);
|
$opt::shebang_wrap = ($ARGV[0]=~s/^--shebang-?wrap *//);
|
||||||
|
@ -1647,6 +1651,9 @@ sub init_progress {
|
||||||
# Returns:
|
# Returns:
|
||||||
# list of computers for progress output
|
# list of computers for progress output
|
||||||
$|=1;
|
$|=1;
|
||||||
|
if($opt::etas) {
|
||||||
|
return("","");
|
||||||
|
}
|
||||||
my %progress = progress();
|
my %progress = progress();
|
||||||
return ("\nComputers / CPU cores / Max jobs to run\n",
|
return ("\nComputers / CPU cores / Max jobs to run\n",
|
||||||
$progress{'workerlist'});
|
$progress{'workerlist'});
|
||||||
|
@ -1720,7 +1727,6 @@ sub progress {
|
||||||
# header that will fit on the screen
|
# header that will fit on the screen
|
||||||
# status message that will fit on the screen
|
# status message that will fit on the screen
|
||||||
my $termcols = terminal_columns();
|
my $termcols = terminal_columns();
|
||||||
my ($status, $header) = ("x"x($termcols+1),"");
|
|
||||||
my @workers = sort keys %Global::host;
|
my @workers = sort keys %Global::host;
|
||||||
my %sshlogin = map { $_ eq ":" ? ($_=>"local") : ($_=>$_) } @workers;
|
my %sshlogin = map { $_ eq ":" ? ($_=>"local") : ($_=>$_) } @workers;
|
||||||
my $workerno = 1;
|
my $workerno = 1;
|
||||||
|
@ -1733,7 +1739,8 @@ sub progress {
|
||||||
$Global::host{$w}->max_jobs_running()."\n";
|
$Global::host{$w}->max_jobs_running()."\n";
|
||||||
}
|
}
|
||||||
my $eta = "";
|
my $eta = "";
|
||||||
if($opt::eta) {
|
my ($status,$header)=("","");
|
||||||
|
if($opt::eta or $opt::etas) {
|
||||||
my $completed = 0;
|
my $completed = 0;
|
||||||
for(@workers) { $completed += $Global::host{$_}->jobs_completed() }
|
for(@workers) { $completed += $Global::host{$_}->jobs_completed() }
|
||||||
if($completed) {
|
if($completed) {
|
||||||
|
@ -1757,9 +1764,26 @@ sub progress {
|
||||||
$this_eta = $Private::last_eta;
|
$this_eta = $Private::last_eta;
|
||||||
}
|
}
|
||||||
$eta = sprintf("ETA: %ds %dleft %.2favg ", $this_eta, $left, $avgtime);
|
$eta = sprintf("ETA: %ds %dleft %.2favg ", $this_eta, $left, $avgtime);
|
||||||
|
if($opt::etas) {
|
||||||
|
my $arg = $Global::newest_job ?
|
||||||
|
$Global::newest_job->{'commandline'}->simple_replace_placeholders($Global::replace{"{}"}) : "";
|
||||||
|
my $etas = sprintf("%d%% %ds %s", $pctcomplete*100, $this_eta, $arg);
|
||||||
|
my $rev = '[7m';
|
||||||
|
my $reset = '[0m';
|
||||||
|
my $terminal_width = terminal_columns();
|
||||||
|
my $s = sprintf("%-${terminal_width}s",$etas);
|
||||||
|
my $width = int($terminal_width * $pctcomplete);
|
||||||
|
$s =~ s/^(.{$width})/$1$reset/;
|
||||||
|
$s = "\r# ".int($this_eta)." sec $arg" . "\r". $pctcomplete*100 # Prefix with zenity header
|
||||||
|
. "\r" . $rev . $s;
|
||||||
|
$status = $s;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if($opt::etas) {
|
||||||
|
return ("workerlist" => "", "header" => "", "status" => $status);
|
||||||
|
}
|
||||||
|
$status = "x"x($termcols+1);
|
||||||
if(length $status > $termcols) {
|
if(length $status > $termcols) {
|
||||||
# sshlogin1:XX/XX/XX%/XX.Xs sshlogin2:XX/XX/XX%/XX.Xs sshlogin3:XX/XX/XX%/XX.Xs
|
# sshlogin1:XX/XX/XX%/XX.Xs sshlogin2:XX/XX/XX%/XX.Xs sshlogin3:XX/XX/XX%/XX.Xs
|
||||||
$header = "Computer:jobs running/jobs completed/%of started jobs/Average seconds to complete";
|
$header = "Computer:jobs running/jobs completed/%of started jobs/Average seconds to complete";
|
||||||
|
@ -4560,6 +4584,7 @@ sub start {
|
||||||
if($opt::delay) {
|
if($opt::delay) {
|
||||||
$Global::JobQueue->empty() or ::usleep($opt::delay*1000);
|
$Global::JobQueue->empty() or ::usleep($opt::delay*1000);
|
||||||
}
|
}
|
||||||
|
$Global::newest_job = $job;
|
||||||
return $job;
|
return $job;
|
||||||
} else {
|
} else {
|
||||||
# No more processes
|
# No more processes
|
||||||
|
|
Loading…
Reference in a new issue