X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=blobdiff_plain;f=lib%2FApp%2FRgit%2FUtils.pm;h=ee1fdd348014622aec683bd379cd034a4838c1f5;hp=8bd194a6a8fc70eb4238c09b5bd62f269229fc71;hb=e833c52a64e7aac9c18d7051285bf4d9906c4faf;hpb=0f55b91d632134b6077941fa223cd94378151373 diff --git a/lib/App/Rgit/Utils.pm b/lib/App/Rgit/Utils.pm index 8bd194a..ee1fdd3 100644 --- a/lib/App/Rgit/Utils.pm +++ b/lib/App/Rgit/Utils.pm @@ -3,17 +3,20 @@ package App::Rgit::Utils; 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. =head1 VERSION -Version 0.06 +Version 0.08 =cut -our $VERSION = '0.06'; +our $VERSION = '0.08'; =head1 DESCRIPTION @@ -21,9 +24,40 @@ Miscellaneous utilities for L classes. This is an internal module to L. +=head1 FUNCTIONS + +=head2 C + + my $absolute_path = abs_path($path); + +Forcefully make a path C<$path> absolute (in L'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, C, C, C +=head2 C + +=head2 C + +=head2 C + +=head2 C Codes to return from the C callback to respectively proceed to the next repository, retry the current one, end it all, and save the return code. @@ -36,7 +70,15 @@ use constant { LAST => 0x8, }; -=head2 C, C, C, C and C +=head2 C + +=head2 C + +=head2 C + +=head2 C + +=head2 C Message levels. @@ -51,6 +93,8 @@ use constant { =head1 EXPORT +L is only exported on request. + C C, C and C are only exported on request, either by their name or by the C<'codes'> tags. C, C, C and C are only exported on request, either by their name or by the C<'levels'> tags. @@ -61,6 +105,7 @@ use base qw/Exporter/; our @EXPORT = (); our %EXPORT_TAGS = ( + funcs => [ qw/abs_path/ ], codes => [ qw/SAVE NEXT REDO LAST/ ], levels => [ qw/INFO WARN ERR CRIT/ ], ); @@ -79,7 +124,8 @@ You can contact me by mail or on C (vincent). =head1 BUGS -Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. +Please report any bugs or feature requests to C, or through the web interface at L. +I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT