mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
141 lines
4.8 KiB
Perl
141 lines
4.8 KiB
Perl
####################################################################################################################################
|
|
# COMMON EXIT MODULE
|
|
####################################################################################################################################
|
|
package pgBackRest::Common::Exit;
|
|
|
|
use strict;
|
|
use warnings FATAL => qw(all);
|
|
use Carp qw(confess);
|
|
|
|
use Exporter qw(import);
|
|
our @EXPORT = qw();
|
|
use File::Basename qw(dirname);
|
|
use Scalar::Util qw(blessed);
|
|
|
|
use lib dirname($0) . '/../lib';
|
|
use pgBackRest::Common::Exception;
|
|
use pgBackRest::Common::Lock;
|
|
use pgBackRest::Common::Log;
|
|
use pgBackRest::Config::Config;
|
|
|
|
####################################################################################################################################
|
|
# Signal constants
|
|
####################################################################################################################################
|
|
use constant SIGNAL_HUP => 'HUP';
|
|
use constant SIGNAL_INT => 'INT';
|
|
use constant SIGNAL_TERM => 'TERM';
|
|
|
|
####################################################################################################################################
|
|
# Hook important signals into exitSafe function
|
|
####################################################################################################################################
|
|
$SIG{&SIGNAL_HUP} = sub {exitSafe(-1, SIGNAL_HUP)};
|
|
$SIG{&SIGNAL_INT} = sub {exitSafe(-1, SIGNAL_INT)};
|
|
$SIG{&SIGNAL_TERM} = sub {exitSafe(-1, SIGNAL_TERM)};
|
|
|
|
####################################################################################################################################
|
|
# Module variables
|
|
####################################################################################################################################
|
|
my $iThreadMax = 1; # Total threads that were started for processing
|
|
my $bRemote = false; # Is the process a remote?
|
|
|
|
####################################################################################################################################
|
|
# exitInit
|
|
#
|
|
# Initialize exit so it knows if threads need to be terminated.
|
|
####################################################################################################################################
|
|
sub exitInit
|
|
{
|
|
my $iThreadMaxParam = shift;
|
|
my $bRemoteParam = shift;
|
|
|
|
if (defined($iThreadMaxParam) && $iThreadMaxParam > 1)
|
|
{
|
|
# Load module dynamically
|
|
require pgBackRest::Protocol::ThreadGroup;
|
|
pgBackRest::Protocol::ThreadGroup->import();
|
|
|
|
$iThreadMax = $iThreadMaxParam;
|
|
}
|
|
|
|
if (defined($bRemoteParam))
|
|
{
|
|
$bRemote = $bRemoteParam;
|
|
}
|
|
}
|
|
|
|
push @EXPORT, qw(exitInit);
|
|
|
|
####################################################################################################################################
|
|
# exitSafe
|
|
#
|
|
# Terminate all threads and SSH connections when the script is terminated.
|
|
####################################################################################################################################
|
|
sub exitSafe
|
|
{
|
|
# Assign function parameters, defaults, and log debug info
|
|
my
|
|
(
|
|
$strOperation,
|
|
$iExitCode,
|
|
$strSignal
|
|
) =
|
|
logDebugParam
|
|
(
|
|
__PACKAGE__ . '::exitSafe', \@_,
|
|
{name => 'iExitCode'},
|
|
{name => 'strSignal', required => false}
|
|
);
|
|
|
|
commandStop();
|
|
|
|
# Stop threads if threading is enabled
|
|
my $iThreadsStopped = 0;
|
|
|
|
if ($iThreadMax > 1)
|
|
{
|
|
&log(DEBUG, "stop ${iThreadMax} threads");
|
|
|
|
# Don't fail if the threads cannot be stopped
|
|
eval
|
|
{
|
|
$iThreadsStopped = threadGroupDestroy();
|
|
};
|
|
|
|
if ($@ && defined($iExitCode))
|
|
{
|
|
&log(WARN, "unable to stop threads: $@");
|
|
}
|
|
}
|
|
|
|
# Close the remote
|
|
protocolDestroy();
|
|
|
|
# Don't fail if the lock can't be released
|
|
eval
|
|
{
|
|
lockRelease(false);
|
|
};
|
|
|
|
# Exit with code when defined
|
|
if ($iExitCode != -1)
|
|
{
|
|
exit $iExitCode;
|
|
}
|
|
|
|
# Log error based on where the signal came from
|
|
&log(ERROR, 'process terminated ' .
|
|
(defined($strSignal) ? "on a ${strSignal} signal" : 'due to an unhandled exception') .
|
|
($iThreadsStopped > 0 ? ", ${iThreadsStopped} threads stopped" : ''),
|
|
defined($strSignal) ? ERROR_TERM : ERROR_UNHANDLED_EXCEPTION);
|
|
|
|
# If terminated by a signal exit with 0 code
|
|
exit ERROR_TERM if defined($strSignal);
|
|
|
|
# Return from function and log return values if any
|
|
return logDebugReturn($strOperation);
|
|
}
|
|
|
|
push @EXPORT, qw(exitSafe);
|
|
|
|
1;
|