mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
123 lines
3.8 KiB
Perl
123 lines
3.8 KiB
Perl
####################################################################################################################################
|
|
# UTILITY MODULE
|
|
####################################################################################################################################
|
|
package pg_backrest_utility;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Carp;
|
|
use IPC::System::Simple qw(capture);
|
|
|
|
use Exporter qw(import);
|
|
|
|
#our @EXPORT_OK = qw(data_hash_build trim date_string_get);
|
|
our @EXPORT = qw(data_hash_build trim date_string_get execute log DEBUG ERROR ASSERT WARNING INFO true false);
|
|
|
|
# Global constants
|
|
use constant
|
|
{
|
|
true => 1,
|
|
false => 0
|
|
};
|
|
|
|
####################################################################################################################################
|
|
# EXECUTE - execute a command
|
|
####################################################################################################################################
|
|
sub execute
|
|
{
|
|
my $strCommand = shift;
|
|
my $strOutput;
|
|
|
|
# print("$strCommand");
|
|
$strOutput = capture($strCommand);
|
|
|
|
return $strOutput;
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# DATA_HASH_BUILD - Hash a delimited file with header
|
|
####################################################################################################################################
|
|
sub data_hash_build
|
|
{
|
|
my $strData = shift;
|
|
my $strDelimiter = shift;
|
|
my $strUndefinedKey = shift;
|
|
|
|
my @stryFile = split("\n", $strData);
|
|
my @stryHeader = split($strDelimiter, $stryFile[0]);
|
|
|
|
my %oHash;
|
|
|
|
for (my $iLineIdx = 1; $iLineIdx < scalar @stryFile; $iLineIdx++)
|
|
{
|
|
my @stryLine = split($strDelimiter, $stryFile[$iLineIdx]);
|
|
|
|
if (!defined($stryLine[0]) || $stryLine[0] eq "")
|
|
{
|
|
$stryLine[0] = $strUndefinedKey;
|
|
}
|
|
|
|
for (my $iColumnIdx = 1; $iColumnIdx < scalar @stryHeader; $iColumnIdx++)
|
|
{
|
|
if (defined($oHash{"$stryHeader[0]"}{"$stryLine[0]"}{"$stryHeader[$iColumnIdx]"}))
|
|
{
|
|
confess "the first column must be unique to build the hash";
|
|
}
|
|
|
|
$oHash{"$stryHeader[0]"}{"$stryLine[0]"}{"$stryHeader[$iColumnIdx]"} = $stryLine[$iColumnIdx];
|
|
}
|
|
}
|
|
|
|
return %oHash;
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# TRIM - trim whitespace off strings
|
|
####################################################################################################################################
|
|
sub trim
|
|
{
|
|
my $strBuffer = shift;
|
|
|
|
$strBuffer =~ s/^\s+|\s+$//g;
|
|
|
|
return $strBuffer;
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# DATE_STRING_GET - Get the date and time string
|
|
####################################################################################################################################
|
|
sub date_string_get
|
|
{
|
|
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
|
|
|
|
return(sprintf("%4d%02d%02d-%02d%02d%02d", $year+1900, $mon+1, $mday, $hour, $min, $sec));
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# LOG - log messages
|
|
####################################################################################################################################
|
|
use constant
|
|
{
|
|
DEBUG => 'DEBUG',
|
|
INFO => 'INFO',
|
|
WARNING => 'WARNING',
|
|
ERROR => 'ERROR',
|
|
ASSERT => 'ASSERT'
|
|
};
|
|
|
|
sub log
|
|
{
|
|
my $strLevel = shift;
|
|
my $strMessage = shift;
|
|
|
|
if (!defined($strMessage))
|
|
{
|
|
$strMessage = "(undefined)";
|
|
}
|
|
|
|
print "${strLevel}: ${strMessage}\n";
|
|
|
|
return $strMessage;
|
|
}
|
|
|
|
1; |