mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-01-18 04:58:51 +02:00
173 lines
5.5 KiB
Perl
Executable File
173 lines
5.5 KiB
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
use File::Basename;
|
|
use Getopt::Long;
|
|
use Config::IniFiles;
|
|
|
|
# Process flags
|
|
my $bNoCompression;
|
|
my $bNoChecksum;
|
|
my $strConfigFile;
|
|
|
|
GetOptions ("no-compression" => \$bNoCompression,
|
|
"no-checksum" => \$bNoChecksum,
|
|
"config=s" => \$strConfigFile)
|
|
or die("Error in command line arguments\n");
|
|
|
|
####################################################################################################################################
|
|
# TRIM - trim whitespace off strings
|
|
####################################################################################################################################
|
|
sub trim
|
|
{
|
|
my $strBuffer = shift;
|
|
|
|
$strBuffer =~ s/^\s+|\s+$//g;
|
|
|
|
return $strBuffer;
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# EXECUTE - execute a command
|
|
####################################################################################################################################
|
|
sub execute
|
|
{
|
|
my $strCommand = shift;
|
|
|
|
# print("$strCommand\n");
|
|
my $strOutput = qx($strCommand) or return 0;
|
|
# print("$strOutput\n");
|
|
|
|
return($strOutput);
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# FILE_HASH_GET - get the sha1 hash for a file
|
|
####################################################################################################################################
|
|
sub file_hash_get
|
|
{
|
|
my $strCommand = shift;
|
|
my $strFile = shift;
|
|
|
|
$strCommand =~ s/\%file\%/$strFile/g;
|
|
|
|
my $strHash = trim(execute($strCommand));
|
|
|
|
return($strHash);
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# START MAIN
|
|
####################################################################################################################################
|
|
# Get the command
|
|
my $strOperation = $ARGV[0];
|
|
|
|
####################################################################################################################################
|
|
# LOAD CONFIG FILE
|
|
####################################################################################################################################
|
|
if (!defined($strConfigFile))
|
|
{
|
|
$strConfigFile = "/etc/pg_backrest.conf";
|
|
}
|
|
|
|
my %oConfig;
|
|
tie %oConfig, 'Config::IniFiles', (-file => $strConfigFile) or die "Unable to find config file";
|
|
|
|
####################################################################################################################################
|
|
# ARCHIVE-LOCAL Command !!! This should become archive-push with no hostname
|
|
####################################################################################################################################
|
|
if ($strOperation eq "archive-local")
|
|
{
|
|
# archive-local command must have three arguments
|
|
if (@ARGV != 3)
|
|
{
|
|
die "not enough arguments - show usage";
|
|
}
|
|
|
|
# Get the source dir/file
|
|
my $strSourceFile = $ARGV[1];
|
|
|
|
unless (-e $strSourceFile)
|
|
{
|
|
die "source file does not exist - show usage";
|
|
}
|
|
|
|
# Get the destination dir/file
|
|
my $strDestinationFile = $ARGV[2];
|
|
|
|
# Make sure the destination directory exists
|
|
unless (-e dirname($strDestinationFile))
|
|
{
|
|
die "destination dir does not exist - show usage";
|
|
}
|
|
|
|
# Make sure the destination file does NOT exist - ignore checksum and extension in case they (or options) have changed
|
|
if (glob("$strDestinationFile*"))
|
|
{
|
|
die "destination file already exists";
|
|
}
|
|
|
|
# Calculate sha1 hash for the file (unless disabled)
|
|
if (!$bNoChecksum)
|
|
{
|
|
$strDestinationFile .= "-" . file_hash_get($oConfig{command}{checksum}, $strSourceFile);
|
|
}
|
|
|
|
# Setup the copy command
|
|
my $strCommand = "";
|
|
|
|
if ($bNoCompression)
|
|
{
|
|
$strCommand = $oConfig{command}{copy};
|
|
$strCommand =~ s/\%source\%/$strSourceFile/g;
|
|
$strCommand =~ s/\%destination\%/$strDestinationFile/g;
|
|
}
|
|
else
|
|
{
|
|
$strCommand = $oConfig{command}{compress};
|
|
$strCommand =~ s/\%file\%/$strSourceFile/g;
|
|
$strCommand .= " > $strDestinationFile.gz";
|
|
}
|
|
|
|
# Execute the copy
|
|
execute($strCommand);
|
|
|
|
# print "$strCommandManifest\n";
|
|
# print execute($strCommandManifest) . "\n";
|
|
exit 0;
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# GET MORE CONFIG INFO
|
|
####################################################################################################################################
|
|
if (!defined($oConfig{common}{base_path}))
|
|
{
|
|
die 'undefined base path';
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# BACKUP
|
|
####################################################################################################################################
|
|
if ($strOperation eq "backup")
|
|
{
|
|
# backup command must have three arguments
|
|
if (@ARGV != 2)
|
|
{
|
|
die "not enough arguments - show usage";
|
|
}
|
|
|
|
# Get the cluster name
|
|
my $strCluster = $ARGV[1];
|
|
|
|
if (!defined($oConfig{"cluster:$strCluster"}{pgdata}))
|
|
{
|
|
die 'undefined cluster path';
|
|
}
|
|
|
|
my $strCommand = $oConfig{command}{manifest};
|
|
$strCommand =~ s/\%path\%/$oConfig{"cluster:$strCluster"}{pgdata}/g;
|
|
my $strManifest = execute($strCommand);
|
|
|
|
print "$strManifest\n";
|
|
}
|