2019-06-17 15:16:44 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# Implements storage functionality using drivers.
|
|
|
|
####################################################################################################################################
|
|
|
|
package pgBackRestTest::Common::Storage;
|
2020-03-10 21:12:44 +02:00
|
|
|
use parent 'pgBackRestTest::Common::StorageBase';
|
2019-06-17 15:16:44 +02:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings FATAL => qw(all);
|
|
|
|
use Carp qw(confess);
|
|
|
|
use English '-no_match_vars';
|
|
|
|
|
|
|
|
use File::Basename qw(dirname);
|
|
|
|
|
2020-03-10 21:41:56 +02:00
|
|
|
use pgBackRestDoc::Common::Exception;
|
|
|
|
use pgBackRestDoc::Common::Log;
|
|
|
|
use pgBackRestDoc::Common::String;
|
2020-03-10 21:12:44 +02:00
|
|
|
|
|
|
|
use pgBackRestTest::Common::StorageBase;
|
2019-06-17 15:16:44 +02:00
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# new
|
|
|
|
####################################################################################################################################
|
|
|
|
sub new
|
|
|
|
{
|
|
|
|
my $class = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathBase,
|
|
|
|
$oDriver,
|
|
|
|
$bAllowTemp,
|
|
|
|
$strTempExtension,
|
|
|
|
$strDefaultPathMode,
|
|
|
|
$strDefaultFileMode,
|
|
|
|
$lBufferMax,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->new', \@_,
|
|
|
|
{name => 'strPathBase'},
|
|
|
|
{name => 'oDriver'},
|
|
|
|
{name => 'bAllowTemp', optional => true, default => true},
|
|
|
|
{name => 'strTempExtension', optional => true, default => 'tmp'},
|
|
|
|
{name => 'strDefaultPathMode', optional => true, default => '0750'},
|
|
|
|
{name => 'strDefaultFileMode', optional => true, default => '0640'},
|
|
|
|
{name => 'lBufferMax', optional => true},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Create class
|
|
|
|
my $self = $class->SUPER::new({lBufferMax => $lBufferMax});
|
|
|
|
bless $self, $class;
|
|
|
|
|
|
|
|
$self->{strPathBase} = $strPathBase;
|
|
|
|
$self->{oDriver} = $oDriver;
|
|
|
|
$self->{bAllowTemp} = $bAllowTemp;
|
|
|
|
$self->{strTempExtension} = $strTempExtension;
|
|
|
|
$self->{strDefaultPathMode} = $strDefaultPathMode;
|
|
|
|
$self->{strDefaultFileMode} = $strDefaultFileMode;
|
|
|
|
|
|
|
|
# Set temp extension in driver
|
|
|
|
$self->driver()->tempExtensionSet($self->{strTempExtension}) if $self->driver()->can('tempExtensionSet');
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'self', value => $self}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-09 23:41:59 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# Copy a file. If special encryption settings are required, then the file objects from openRead/openWrite must be passed instead of
|
|
|
|
# file names.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub copy
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$xSourceFile,
|
|
|
|
$xDestinationFile,
|
|
|
|
$bSourceOpen,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->copy', \@_,
|
|
|
|
{name => 'xSourceFile', required => false},
|
|
|
|
{name => 'xDestinationFile'},
|
|
|
|
{name => 'bSourceOpen', optional => true, default => false},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Is source/destination an IO object or a file expression?
|
|
|
|
my $oSourceFileIo = defined($xSourceFile) ? (ref($xSourceFile) ? $xSourceFile : $self->openRead($xSourceFile)) : undef;
|
|
|
|
|
|
|
|
# Does the source file exist?
|
|
|
|
my $bResult = false;
|
|
|
|
|
|
|
|
# Copy if the source file exists
|
|
|
|
if (defined($oSourceFileIo))
|
|
|
|
{
|
|
|
|
my $oDestinationFileIo = ref($xDestinationFile) ? $xDestinationFile : $self->openWrite($xDestinationFile);
|
|
|
|
|
|
|
|
# Use C copy if source and destination are C objects
|
|
|
|
if (defined($oSourceFileIo->{oStorageCRead}) && defined($oDestinationFileIo->{oStorageCWrite}))
|
|
|
|
{
|
|
|
|
$bResult = $self->{oStorageC}->copy(
|
|
|
|
$oSourceFileIo->{oStorageCRead}, $oDestinationFileIo->{oStorageCWrite}) ? true : false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
# Open the source file if it is a C object
|
|
|
|
$bResult = defined($oSourceFileIo->{oStorageCRead}) ? ($bSourceOpen || $oSourceFileIo->open()) : true;
|
|
|
|
|
|
|
|
if ($bResult)
|
|
|
|
{
|
|
|
|
# Open the destination file if it is a C object
|
|
|
|
if (defined($oDestinationFileIo->{oStorageCWrite}))
|
|
|
|
{
|
|
|
|
$oDestinationFileIo->open();
|
|
|
|
}
|
|
|
|
|
|
|
|
# Copy the data
|
|
|
|
do
|
|
|
|
{
|
|
|
|
# Read data
|
|
|
|
my $tBuffer = '';
|
|
|
|
|
|
|
|
$oSourceFileIo->read(\$tBuffer, $self->{lBufferMax});
|
|
|
|
$oDestinationFileIo->write(\$tBuffer);
|
|
|
|
}
|
|
|
|
while (!$oSourceFileIo->eof());
|
|
|
|
|
|
|
|
# Close files
|
|
|
|
$oSourceFileIo->close();
|
|
|
|
$oDestinationFileIo->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'bResult', value => $bResult, trace => true},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-17 15:16:44 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# exists - check if file exists
|
|
|
|
####################################################################################################################################
|
|
|
|
sub exists
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strFileExp,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->exists', \@_,
|
|
|
|
{name => 'strFileExp'},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Check exists
|
|
|
|
my $bExists = $self->driver()->exists($self->pathGet($strFileExp));
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'bExists', value => $bExists}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-09 23:41:59 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# get - reads a buffer from storage all at once
|
|
|
|
####################################################################################################################################
|
|
|
|
sub get
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$xFile,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->get', \@_,
|
|
|
|
{name => 'xFile', required => false, trace => true},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Is this an IO object or a file expression? If file expression, then open the file and pass passphrase if one is defined or
|
|
|
|
# if the repo has a user passphrase defined - else pass undef
|
|
|
|
my $oFileIo = defined($xFile) ? (ref($xFile) ? $xFile : $self->openRead($xFile)) : undef;
|
|
|
|
|
|
|
|
# Read only if there is something to read from
|
|
|
|
my $tContent;
|
|
|
|
my $lSize = 0;
|
|
|
|
|
|
|
|
if (defined($oFileIo))
|
|
|
|
{
|
|
|
|
my $lSizeRead;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
$lSizeRead = $oFileIo->read(\$tContent, $self->{lBufferMax});
|
|
|
|
$lSize += $lSizeRead;
|
|
|
|
}
|
|
|
|
while ($lSizeRead != 0);
|
|
|
|
|
|
|
|
# Close the file
|
|
|
|
$oFileIo->close();
|
|
|
|
|
|
|
|
# If nothing was read then set to undef
|
|
|
|
if ($lSize == 0)
|
|
|
|
{
|
|
|
|
$tContent = undef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'rtContent', value => defined($oFileIo) ? \$tContent : undef, trace => true},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-17 15:16:44 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# info - get information for path/file
|
|
|
|
####################################################################################################################################
|
|
|
|
sub info
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathFileExp,
|
|
|
|
$bIgnoreMissing,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '::fileStat', \@_,
|
|
|
|
{name => 'strPathFileExp'},
|
|
|
|
{name => 'bIgnoreMissing', optional => true, default => false},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Stat the path/file
|
|
|
|
my $oInfo = $self->driver()->info($self->pathGet($strPathFileExp), {bIgnoreMissing => $bIgnoreMissing});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'oInfo', value => $oInfo, trace => true}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# linkCreate - create a link
|
|
|
|
####################################################################################################################################
|
|
|
|
sub linkCreate
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strSourcePathFileExp,
|
|
|
|
$strDestinationLinkExp,
|
|
|
|
$bHard,
|
|
|
|
$bRelative,
|
|
|
|
$bPathCreate,
|
|
|
|
$bIgnoreExists,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->linkCreate', \@_,
|
|
|
|
{name => 'strSourcePathFileExp'},
|
|
|
|
{name => 'strDestinationLinkExp'},
|
|
|
|
{name => 'bHard', optional=> true, default => false},
|
|
|
|
{name => 'bRelative', optional=> true, default => false},
|
|
|
|
{name => 'bPathCreate', optional=> true, default => true},
|
|
|
|
{name => 'bIgnoreExists', optional => true, default => false},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Get source and destination paths
|
|
|
|
my $strSourcePathFile = $self->pathGet($strSourcePathFileExp);
|
|
|
|
my $strDestinationLink = $self->pathGet($strDestinationLinkExp);
|
|
|
|
|
|
|
|
# Generate relative path if requested
|
|
|
|
if ($bRelative)
|
|
|
|
{
|
|
|
|
# Determine how much of the paths are common
|
|
|
|
my @strySource = split('/', $strSourcePathFile);
|
|
|
|
my @stryDestination = split('/', $strDestinationLink);
|
|
|
|
|
|
|
|
while (defined($strySource[0]) && defined($stryDestination[0]) && $strySource[0] eq $stryDestination[0])
|
|
|
|
{
|
|
|
|
shift(@strySource);
|
|
|
|
shift(@stryDestination);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Add relative path sections
|
|
|
|
$strSourcePathFile = '';
|
|
|
|
|
|
|
|
for (my $iIndex = 0; $iIndex < @stryDestination - 1; $iIndex++)
|
|
|
|
{
|
|
|
|
$strSourcePathFile .= '../';
|
|
|
|
}
|
|
|
|
|
|
|
|
# Add path to source
|
|
|
|
$strSourcePathFile .= join('/', @strySource);
|
|
|
|
|
|
|
|
logDebugMisc
|
|
|
|
(
|
|
|
|
$strOperation, 'apply relative path',
|
|
|
|
{name => 'strSourcePathFile', value => $strSourcePathFile, trace => true}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Create the link
|
|
|
|
$self->driver()->linkCreate(
|
|
|
|
$strSourcePathFile, $strDestinationLink, {bHard => $bHard, bPathCreate => $bPathCreate, bIgnoreExists => $bIgnoreExists});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn($strOperation);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# list - list all files/paths in path
|
|
|
|
####################################################################################################################################
|
|
|
|
sub list
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathExp,
|
|
|
|
$strExpression,
|
|
|
|
$strSortOrder,
|
|
|
|
$bIgnoreMissing,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->list', \@_,
|
|
|
|
{name => 'strPathExp', required => false},
|
|
|
|
{name => 'strExpression', optional => true},
|
|
|
|
{name => 'strSortOrder', optional => true, default => 'forward'},
|
|
|
|
{name => 'bIgnoreMissing', optional => true, default => false},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Get file list
|
|
|
|
my $rstryFileList = $self->driver()->list(
|
|
|
|
$self->pathGet($strPathExp), {strExpression => $strExpression, bIgnoreMissing => $bIgnoreMissing});
|
|
|
|
|
|
|
|
# Apply expression if defined
|
|
|
|
if (defined($strExpression))
|
|
|
|
{
|
|
|
|
@{$rstryFileList} = grep(/$strExpression/i, @{$rstryFileList});
|
|
|
|
}
|
|
|
|
|
|
|
|
# Reverse sort
|
|
|
|
if ($strSortOrder eq 'reverse')
|
|
|
|
{
|
|
|
|
@{$rstryFileList} = sort {$b cmp $a} @{$rstryFileList};
|
|
|
|
}
|
|
|
|
# Normal sort
|
|
|
|
else
|
|
|
|
{
|
|
|
|
@{$rstryFileList} = sort @{$rstryFileList};
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'stryFileList', value => $rstryFileList}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# manifest - build path/file/link manifest starting with base path and including all subpaths
|
|
|
|
####################################################################################################################################
|
|
|
|
sub manifest
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathExp,
|
|
|
|
$strFilter,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->manifest', \@_,
|
|
|
|
{name => 'strPathExp'},
|
|
|
|
{name => 'strFilter', optional => true, trace => true},
|
|
|
|
);
|
|
|
|
|
|
|
|
my $hManifest = $self->driver()->manifest($self->pathGet($strPathExp), {strFilter => $strFilter});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'hManifest', value => $hManifest, trace => true}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# move - move path/file
|
|
|
|
####################################################################################################################################
|
|
|
|
sub move
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strSourcePathFileExp,
|
|
|
|
$strDestinationPathFileExp,
|
|
|
|
$bPathCreate,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->move', \@_,
|
|
|
|
{name => 'strSourcePathExp'},
|
|
|
|
{name => 'strDestinationPathExp'},
|
|
|
|
{name => 'bPathCreate', optional => true, default => false, trace => true},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Set operation variables
|
|
|
|
$self->driver()->move(
|
|
|
|
$self->pathGet($strSourcePathFileExp), $self->pathGet($strDestinationPathFileExp), {bPathCreate => $bPathCreate});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# openRead - open file for reading
|
|
|
|
####################################################################################################################################
|
|
|
|
sub openRead
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$xFileExp,
|
|
|
|
$bIgnoreMissing,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->openRead', \@_,
|
|
|
|
{name => 'xFileExp'},
|
|
|
|
{name => 'bIgnoreMissing', optional => true, default => false},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Open the file
|
|
|
|
my $oFileIo = $self->driver()->openRead($self->pathGet($xFileExp), {bIgnoreMissing => $bIgnoreMissing});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'oFileIo', value => $oFileIo, trace => true},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# openWrite - open file for writing
|
|
|
|
####################################################################################################################################
|
|
|
|
sub openWrite
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$xFileExp,
|
|
|
|
$strMode,
|
|
|
|
$strUser,
|
|
|
|
$strGroup,
|
|
|
|
$lTimestamp,
|
|
|
|
$bAtomic,
|
|
|
|
$bPathCreate,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->openWrite', \@_,
|
|
|
|
{name => 'xFileExp'},
|
|
|
|
{name => 'strMode', optional => true, default => $self->{strDefaultFileMode}},
|
|
|
|
{name => 'strUser', optional => true},
|
|
|
|
{name => 'strGroup', optional => true},
|
|
|
|
{name => 'lTimestamp', optional => true},
|
|
|
|
{name => 'bAtomic', optional => true, default => false},
|
|
|
|
{name => 'bPathCreate', optional => true, default => false},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Open the file
|
|
|
|
my $oFileIo = $self->driver()->openWrite($self->pathGet($xFileExp),
|
|
|
|
{strMode => $strMode, strUser => $strUser, strGroup => $strGroup, lTimestamp => $lTimestamp, bPathCreate => $bPathCreate,
|
|
|
|
bAtomic => $bAtomic});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'oFileIo', value => $oFileIo, trace => true},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# owner - change ownership of path/file
|
|
|
|
####################################################################################################################################
|
|
|
|
sub owner
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathFileExp,
|
|
|
|
$strUser,
|
|
|
|
$strGroup
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->owner', \@_,
|
|
|
|
{name => 'strPathFileExp'},
|
|
|
|
{name => 'strUser', required => false},
|
|
|
|
{name => 'strGroup', required => false}
|
|
|
|
);
|
|
|
|
|
|
|
|
# Set ownership
|
|
|
|
$self->driver()->owner($self->pathGet($strPathFileExp), {strUser => $strUser, strGroup => $strGroup});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# pathCreate - create path
|
|
|
|
####################################################################################################################################
|
|
|
|
sub pathCreate
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathExp,
|
|
|
|
$strMode,
|
|
|
|
$bIgnoreExists,
|
|
|
|
$bCreateParent,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->pathCreate', \@_,
|
|
|
|
{name => 'strPathExp'},
|
|
|
|
{name => 'strMode', optional => true, default => $self->{strDefaultPathMode}},
|
|
|
|
{name => 'bIgnoreExists', optional => true, default => false},
|
|
|
|
{name => 'bCreateParent', optional => true, default => false},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Create path
|
|
|
|
$self->driver()->pathCreate(
|
|
|
|
$self->pathGet($strPathExp), {strMode => $strMode, bIgnoreExists => $bIgnoreExists, bCreateParent => $bCreateParent});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# pathExists - check if path exists
|
|
|
|
####################################################################################################################################
|
|
|
|
sub pathExists
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathExp,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->pathExists', \@_,
|
|
|
|
{name => 'strPathExp'},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Check exists
|
|
|
|
my $bExists = $self->driver()->pathExists($self->pathGet($strPathExp));
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'bExists', value => $bExists}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# pathGet - resolve a path expression into an absolute path
|
|
|
|
####################################################################################################################################
|
|
|
|
sub pathGet
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
2022-05-11 14:46:23 +02:00
|
|
|
$strPathExp, # File that needs to be translated to a path
|
2019-06-17 15:16:44 +02:00
|
|
|
$bTemp, # Return the temp file name
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->pathGet', \@_,
|
|
|
|
{name => 'strPathExp', required => false, trace => true},
|
|
|
|
{name => 'bTemp', optional => true, default => false, trace => true},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Path and file to be returned
|
|
|
|
my $strPath;
|
|
|
|
my $strFile;
|
|
|
|
|
|
|
|
# Is this an absolute path type?
|
|
|
|
my $bAbsolute = false;
|
|
|
|
|
|
|
|
if (defined($strPathExp) && index($strPathExp, qw(/)) == 0)
|
|
|
|
{
|
|
|
|
$bAbsolute = true;
|
|
|
|
$strPath = $strPathExp;
|
|
|
|
}
|
|
|
|
# Else it must be relative
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$strPath = $self->pathBase();
|
|
|
|
$strFile = $strPathExp;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Make sure a temp file is valid for this type and file
|
|
|
|
if ($bTemp)
|
|
|
|
{
|
|
|
|
# Error when temp files are not allowed
|
|
|
|
if (!$self->{bAllowTemp})
|
|
|
|
{
|
|
|
|
confess &log(ASSERT, "temp file not supported for storage '" . $self->pathBase() . "'");
|
|
|
|
}
|
|
|
|
|
|
|
|
# The file must be defined
|
|
|
|
if (!$bAbsolute)
|
|
|
|
{
|
|
|
|
if (!defined($strFile))
|
|
|
|
{
|
|
|
|
confess &log(ASSERT, 'file part must be defined when temp file specified');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Combine path and file
|
|
|
|
$strPath .= defined($strFile) ? ($strPath =~ /\/$/ ? '' : qw{/}) . "${strFile}" : '';
|
|
|
|
|
|
|
|
# Add temp extension
|
|
|
|
$strPath .= $bTemp ? ".$self->{strTempExtension}" : '';
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'strPath', value => $strPath, trace => true}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# Sync path so newly added file entries are not lost
|
|
|
|
####################################################################################################################################
|
|
|
|
sub pathSync
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$strPathExp,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->pathSync', \@_,
|
|
|
|
{name => 'strPathExp'},
|
|
|
|
);
|
|
|
|
|
|
|
|
$self->driver()->pathSync($self->pathGet($strPathExp));
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn($strOperation);
|
|
|
|
}
|
|
|
|
|
2020-03-09 23:41:59 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# put - writes a buffer out to storage all at once
|
|
|
|
####################################################################################################################################
|
|
|
|
sub put
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$xFile,
|
|
|
|
$xContent,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->put', \@_,
|
|
|
|
{name => 'xFile', trace => true},
|
|
|
|
{name => 'xContent', required => false, trace => true},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Is this an IO object or a file expression? If file expression, then open the file and pass passphrase if one is defined or if
|
|
|
|
# the repo has a user passphrase defined - else pass undef
|
|
|
|
my $oFileIo = ref($xFile) ? $xFile : $self->openWrite($xFile);
|
|
|
|
|
|
|
|
# Determine size of content
|
|
|
|
my $lSize = defined($xContent) ? length(ref($xContent) ? $$xContent : $xContent) : 0;
|
|
|
|
|
|
|
|
# Write only if there is something to write
|
|
|
|
if ($lSize > 0)
|
|
|
|
{
|
|
|
|
$oFileIo->write(ref($xContent) ? $xContent : \$xContent);
|
|
|
|
}
|
|
|
|
# Else open the file so a zero length file is created (since file is not opened until first write)
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$oFileIo->open();
|
|
|
|
}
|
|
|
|
|
|
|
|
# Close the file
|
|
|
|
$oFileIo->close();
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'lSize', value => $lSize, trace => true},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-17 15:16:44 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# remove - remove path/file
|
|
|
|
####################################################################################################################################
|
|
|
|
sub remove
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
|
|
my
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
$xstryPathFileExp,
|
|
|
|
$bIgnoreMissing,
|
|
|
|
$bRecurse,
|
|
|
|
) =
|
|
|
|
logDebugParam
|
|
|
|
(
|
|
|
|
__PACKAGE__ . '->remove', \@_,
|
|
|
|
{name => 'xstryPathFileExp'},
|
|
|
|
{name => 'bIgnoreMissing', optional => true, default => true},
|
|
|
|
{name => 'bRecurse', optional => true, default => false, trace => true},
|
|
|
|
);
|
|
|
|
|
|
|
|
# Evaluate expressions for all files
|
|
|
|
my @stryPathFileExp;
|
|
|
|
|
|
|
|
if (ref($xstryPathFileExp))
|
|
|
|
{
|
|
|
|
foreach my $strPathFileExp (@{$xstryPathFileExp})
|
|
|
|
{
|
|
|
|
push(@stryPathFileExp, $self->pathGet($strPathFileExp));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Remove path(s)/file(s)
|
|
|
|
my $bRemoved = $self->driver()->remove(
|
|
|
|
ref($xstryPathFileExp) ? \@stryPathFileExp : $self->pathGet($xstryPathFileExp),
|
|
|
|
{bIgnoreMissing => $bIgnoreMissing, bRecurse => $bRecurse});
|
|
|
|
|
|
|
|
# Return from function and log return values if any
|
|
|
|
return logDebugReturn
|
|
|
|
(
|
|
|
|
$strOperation,
|
|
|
|
{name => 'bRemoved', value => $bRemoved}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# Getters
|
|
|
|
####################################################################################################################################
|
|
|
|
sub pathBase {shift->{strPathBase}}
|
|
|
|
sub driver {shift->{oDriver}}
|
2020-03-09 23:41:59 +02:00
|
|
|
sub type {shift->{oDriver}->type()}
|
2019-06-17 15:16:44 +02:00
|
|
|
|
|
|
|
1;
|