X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FApp%2FRgit%2FUtils.pm;h=cbcffd9108414a75a1f217fb7b44092c7b487b98;hb=00f4d1f6016748f8b4623d8ff32546069f763a95;hp=651ea77cf05a3903e00c11e70634a5c84e862d6e;hpb=67e585ffae69ce0c350a920658738d7864b1d54a;p=perl%2Fmodules%2Frgit.git diff --git a/lib/App/Rgit/Utils.pm b/lib/App/Rgit/Utils.pm index 651ea77..cbcffd9 100644 --- a/lib/App/Rgit/Utils.pm +++ b/lib/App/Rgit/Utils.pm @@ -11,11 +11,11 @@ App::Rgit::Utils - Miscellanous utilities for App::Rgit classes. =head1 VERSION -Version 0.03 +Version 0.04 =cut -our $VERSION = '0.03'; +our $VERSION = '0.04'; =head1 DESCRIPTION @@ -23,6 +23,34 @@ Miscellanous utilities for L classes. This is an internal module to L. +=head1 CONSTANTS + +=head2 C, C, C, 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. + +=cut + +use constant { + SAVE => 0x1, + NEXT => 0x2, + REDO => 0x4, + LAST => 0x8, +}; + +=head2 C, C, C, C and C + +Message levels. + +=cut + +use constant { + INFO => 3, + WARN => 2, + ERR => 1, + CRIT => 0, +}; + =head1 FUNCTIONS =head2 C @@ -41,7 +69,11 @@ sub validate { =head1 EXPORT -C is only exported on request. +C is only exported on request, either by its name or by the C<'funcs'> tag. + +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. =cut @@ -49,7 +81,9 @@ use base qw/Exporter/; our @EXPORT = (); our %EXPORT_TAGS = ( - funcs => [ qw/validate/ ] + funcs => [ qw/validate/ ], + codes => [ qw/SAVE NEXT REDO LAST/ ], + levels => [ qw/INFO WARN ERR CRIT/ ], ); our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];