diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-25 23:29:02 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-25 23:29:02 +0000 |
commit | f343488e1fd1560351a02a2f1e5b3acb57e2b04b (patch) | |
tree | 756b8930dcbea7b6aa4b237e3b76b7999b6ad380 /lib/Iurt/Process.pm | |
parent | ede5e8897a3e97430eb3969bff7680c2ffeedf8c (diff) | |
download | iurt-f343488e1fd1560351a02a2f1e5b3acb57e2b04b.tar iurt-f343488e1fd1560351a02a2f1e5b3acb57e2b04b.tar.gz iurt-f343488e1fd1560351a02a2f1e5b3acb57e2b04b.tar.bz2 iurt-f343488e1fd1560351a02a2f1e5b3acb57e2b04b.tar.xz iurt-f343488e1fd1560351a02a2f1e5b3acb57e2b04b.zip |
(handle_command_error) split it out of perform_command()
Diffstat (limited to 'lib/Iurt/Process.pm')
-rw-r--r-- | lib/Iurt/Process.pm | 71 |
1 files changed, 38 insertions, 33 deletions
diff --git a/lib/Iurt/Process.pm b/lib/Iurt/Process.pm index 3a0c25b..917af75 100644 --- a/lib/Iurt/Process.pm +++ b/lib/Iurt/Process.pm @@ -125,6 +125,42 @@ sub fork_to_monitor { } } +sub handle_command_error { + my ($run, $config, $cache, $log_msg, $comment, $fulloutput, %opt) = @_; + plog('ERROR', $log_msg); + + if ($opt{log} && $config->{log_url}) { + $comment = qq(See $config->{log_url}/$run->{distro_tag}/$run->{my_arch}/$run->{media}/log/$opt{srpm}/\n\n$comment); + } + + my $out; + if (length $fulloutput < 10000) { + $out = $fulloutput; + } else { + $out = "Message too big, see http link for details\n"; + } + + if ($opt{mail} && $config->{sendmail} && !$config->{no_mail}{$opt{mail}}) { + if (! ($cache->{warning}{$opt{hash}}{$opt{mail}} % $opt{freq})) { + my $cc = join ',', grep { !$config->{no_mail}{$_} } split ',', $opt{cc}; + sendmail($opt{mail}, $cc, $opt{error} , "$comment\n$out", "Iurt the rebuild bot <$config->{admin}>", $opt{debug_mail}, $config); + } elsif ($config->{admin}) { + sendmail($config->{admin}, '' , $opt{error}, "$comment\n$out", "Iurt the rebuild bot <$config->{admin}>", $opt{debug_mail}, $config); + } + } + $cache->{warning}{$opt{hash}}{$opt{mail}}++; + plog('FAIL', $comment); + plog('INFO', "--------------- Command failed, full output follows ---------------"); + plog('INFO', $fulloutput); + plog('INFO', "--------------- end of command output ---------------"); + + if ($opt{die}) { + dump_cache_par($run); + die "FATAL: $opt{error}."; + } + return 0; +} + =head2 perform_command($command, $run, $config, $cache, %opt) Run a command and check various running parameters such as log size, timeout... @@ -281,39 +317,8 @@ sub perform_command { } if (!$call_ret || $kill || $err || $opt{error_regexp} && $fulloutput =~ /$opt{error_regexp}/) { - - plog('ERROR', "ERROR: call_ret=$call_ret kill=$kill err=$err ($opt{error_regexp})"); - - if ($opt{log} && $config->{log_url}) { - $comment = qq(See $config->{log_url}/$run->{distro_tag}/$run->{my_arch}/$run->{media}/log/$opt{srpm}/\n\n$comment); - } - - my $out; - if (length $fulloutput < 10000) { - $out = $fulloutput; - } else { - $out = "Message too big, see http link for details\n"; - } - - if ($opt{mail} && $config->{sendmail} && !$config->{no_mail}{$opt{mail}}) { - if (! ($cache->{warning}{$opt{hash}}{$opt{mail}} % $opt{freq})) { - my $cc = join ',', grep { !$config->{no_mail}{$_} } split ',', $opt{cc}; - sendmail($opt{mail}, $cc, $opt{error} , "$comment\n$out", "Iurt the rebuild bot <$config->{admin}>", $opt{debug_mail}, $config); - } elsif ($config->{admin}) { - sendmail($config->{admin}, '' , $opt{error}, "$comment\n$out", "Iurt the rebuild bot <$config->{admin}>", $opt{debug_mail}, $config); - } - } - $cache->{warning}{$opt{hash}}{$opt{mail}}++; - plog('FAIL', $comment); - plog('INFO', "--------------- Command failed, full output follows ---------------"); - plog('INFO', $fulloutput); - plog('INFO', "--------------- end of command output ---------------"); - - if ($opt{die}) { - dump_cache_par($run); - die "FATAL: $opt{error}."; - } - return 0; + my $msg = "ERROR: call_ret=$call_ret kill=$kill err=$err ($opt{error_regexp})"; + handle_command_error($run, $config, $cache, $msg, $comment, $fulloutput, %opt); } 1; } |