mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
src/parallel: Minimal sshlogin working - does not pass unittest!
This commit is contained in:
parent
34ed3a0ae6
commit
81afee89ee
35
src/parallel
35
src/parallel
|
@ -1755,22 +1755,15 @@ sub drain_job_queue {
|
||||||
sub start_more_jobs {
|
sub start_more_jobs {
|
||||||
my $jobs_started = 0;
|
my $jobs_started = 0;
|
||||||
if(not $Global::StartNoNewJobs) {
|
if(not $Global::StartNoNewJobs) {
|
||||||
# do {
|
for my $sshlogin (keys %Global::host) {
|
||||||
# $started_jobs_this_round = 0;
|
while ($Global::host{$sshlogin}{'no_of_running'} <
|
||||||
# for slave in sshlogins {
|
$Global::host{$sshlogin}{'max_no_of_running'}) {
|
||||||
# if running_jobs{slave} < processes_to_run{$slave} {
|
start_another_job($sshlogin);
|
||||||
# my $started += start_another_job($slave)
|
$Global::host{$sshlogin}{'no_of_running'}++;
|
||||||
# $started_jobs_this_round += started
|
|
||||||
# $jobs_started{$slave}++
|
|
||||||
# }
|
|
||||||
# }
|
|
||||||
# } while ($started_jobs_this_round >0)
|
|
||||||
while($Global::running_jobs < $Global::processes_to_run
|
|
||||||
and
|
|
||||||
start_another_job()) {
|
|
||||||
$jobs_started++;
|
$jobs_started++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return $jobs_started;
|
return $jobs_started;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1779,10 +1772,11 @@ sub start_another_job {
|
||||||
# and remember the pid, the STDOUT and the STDERR handles
|
# and remember the pid, the STDOUT and the STDERR handles
|
||||||
# If no more jobs: do nothing
|
# If no more jobs: do nothing
|
||||||
# Do we have enough file handles to start another job?
|
# Do we have enough file handles to start another job?
|
||||||
|
my $sshlogin = shift;
|
||||||
if(enough_file_handles()) {
|
if(enough_file_handles()) {
|
||||||
my $command = next_command_line();
|
my $command = next_command_line();
|
||||||
if(defined $command) {
|
if(defined $command) {
|
||||||
my %jobinfo = start_job($command);
|
my %jobinfo = start_job($command,$sshlogin);
|
||||||
if(%jobinfo) {
|
if(%jobinfo) {
|
||||||
$Global::running{$jobinfo{"pid"}} = \%jobinfo;
|
$Global::running{$jobinfo{"pid"}} = \%jobinfo;
|
||||||
}
|
}
|
||||||
|
@ -1798,6 +1792,7 @@ sub start_another_job {
|
||||||
sub start_job {
|
sub start_job {
|
||||||
# Setup STDOUT and STDERR for a job and start it.
|
# Setup STDOUT and STDERR for a job and start it.
|
||||||
my $command = shift;
|
my $command = shift;
|
||||||
|
my $sshlogin = shift;
|
||||||
my ($pid,$out,$err,%out,%err,$outname,$errname,$name);
|
my ($pid,$out,$err,%out,%err,$outname,$errname,$name);
|
||||||
if($Global::grouped) {
|
if($Global::grouped) {
|
||||||
# To group we create temporary files for STDOUT and STDERR
|
# To group we create temporary files for STDOUT and STDERR
|
||||||
|
@ -1857,10 +1852,12 @@ sub start_job {
|
||||||
"pid" => $pid,
|
"pid" => $pid,
|
||||||
"out" => $out{$outname},
|
"out" => $out{$outname},
|
||||||
"err" => $err{$errname},
|
"err" => $err{$errname},
|
||||||
|
"sshlogin" => $sshlogin,
|
||||||
"command" => $command);
|
"command" => $command);
|
||||||
} else {
|
} else {
|
||||||
return ("seq" => $Global::job_start_sequence,
|
return ("seq" => $Global::job_start_sequence,
|
||||||
"pid" => $pid,
|
"pid" => $pid,
|
||||||
|
"sshlogin" => $sshlogin,
|
||||||
"command" => $command);
|
"command" => $command);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1918,6 +1915,13 @@ sub read_sshloginfile {
|
||||||
}
|
}
|
||||||
|
|
||||||
sub parse_sshlogin {
|
sub parse_sshlogin {
|
||||||
|
$Global::host{':'}{'no_of_running'} = 0;
|
||||||
|
$Global::host{':'}{'ncpus'} = 2;
|
||||||
|
$Global::host{':'}{'maxlength'} = max_length_of_command_line();
|
||||||
|
$Global::host{':'}{'max_no_of_running'} = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub _parse_sshlogin {
|
||||||
my ($ncpu,@login);
|
my ($ncpu,@login);
|
||||||
for my $ssh (@Global::sshlogin) {
|
for my $ssh (@Global::sshlogin) {
|
||||||
# Split up -S sshlogin,sshlogin
|
# Split up -S sshlogin,sshlogin
|
||||||
|
@ -2000,7 +2004,8 @@ sub Reaper {
|
||||||
} else {
|
} else {
|
||||||
print_job ($Global::running{$stiff});
|
print_job ($Global::running{$stiff});
|
||||||
}
|
}
|
||||||
# $Global::running_jobs{$Global::running{$stiff}{'slave'}}--;
|
my $sshlogin = $Global::running{$stiff}{'sshlogin'};
|
||||||
|
$Global::host{$sshlogin}{'no_of_running'}--;
|
||||||
$Global::running_jobs--;
|
$Global::running_jobs--;
|
||||||
delete $Global::running{$stiff};
|
delete $Global::running{$stiff};
|
||||||
start_more_jobs();
|
start_more_jobs();
|
||||||
|
|
Loading…
Reference in a new issue