use warnings;
use Carp (); # confess
-use Cwd (); # cwd, abs_path
+use Cwd (); # cwd
use File::Spec (); # canonpath, catfile, path
use App::Rgit::Repository;
-use App::Rgit::Utils qw/:levels/;
+use App::Rgit::Utils qw/:levels/; # :levels, abs_path
use constant IS_WIN32 => $^O eq 'MSWin32';
? $ENV{GIT_DIR}
: Cwd::cwd;
Carp::confess("Invalid root directory") unless -d $root;
- $root = File::Spec->canonpath(Cwd::abs_path($root));
+ $root = File::Spec->canonpath(App::Rgit::Utils::abs_path($root));
my $git;
my @candidates = (
}
}
Carp::confess("Couldn't find a proper git executable") unless defined $git;
- $git = File::Spec->canonpath(Cwd::abs_path($git));
+ $git = File::Spec->canonpath(App::Rgit::Utils::abs_path($git));
my $conf = 'App::Rgit::Config::Default';
eval "require $conf; 1" or Carp::confess("Couldn't load $conf: $@");
use strict;
use warnings;
-use Cwd (); # cwd, abs_path
+use Cwd (); # cwd
use File::Spec (); # canonpath, catdir, splitdir, abs2rel
use POSIX (); # WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG SIGINT SIGQUIT
+use App::Rgit::Utils (); # abs_path
+
my ($WIFEXITED, $WEXITSTATUS, $WIFSIGNALED, $WTERMSIG);
BEGIN {
my $dir = $args{dir};
if (defined $dir) {
- $dir = Cwd::abs_path($dir);
+ $dir = App::Rgit::Utils::abs_path($dir);
} else {
$dir = Cwd::cwd;
}
use strict;
use warnings;
+use Cwd (); # abs_path
+use File::Spec (); # file_name_is_absolute, updir, splitdir, splitpath
+
=head1 NAME
App::Rgit::Utils - Miscellaneous utilities for App::Rgit classes.
This is an internal module to L<rgit>.
+=head1 FUNCTIONS
+
+=head2 C<abs_path $path>
+
+Forcefully make a path C<$path> absolute (in L<Cwd/abs_path>'s meaning of the term) when it isn't already absolute or when it contains C<'..'>.
+
+=cut
+
+sub abs_path {
+ my ($path) = @_;
+
+ if (File::Spec->file_name_is_absolute($path)) {
+ my $updir = File::Spec->updir;
+ my @chunks = File::Spec->splitdir((File::Spec->splitpath($path))[1]);
+
+ unless (grep $_ eq $updir, @chunks) {
+ return $path;
+ }
+ }
+
+ return Cwd::abs_path($path);
+}
+
=head1 CONSTANTS
=head2 C<NEXT>, C<REDO>, C<LAST>, C<SAVE>
=head1 EXPORT
+L<abs_path> is only exported on request.
+
C<NEXT> C<REDO>, C<LAST> and C<SAVE> are only exported on request, either by their name or by the C<'codes'> tags.
C<INFO>, C<WARN>, C<ERR> and C<CRIT> are only exported on request, either by their name or by the C<'levels'> tags.
our @EXPORT = ();
our %EXPORT_TAGS = (
+ funcs => [ qw/abs_path/ ],
codes => [ qw/SAVE NEXT REDO LAST/ ],
levels => [ qw/INFO WARN ERR CRIT/ ],
);