X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=blobdiff_plain;f=lib%2FApp%2FRgit%2FUtils.pm;fp=lib%2FApp%2FRgit%2FUtils.pm;h=0804c012c1377012a4f922f27539ef201b8d513b;hp=651ea77cf05a3903e00c11e70634a5c84e862d6e;hb=e267749b5294c865fa9584c6f15bb0af85e24e30;hpb=876aec5a45915d4fe3b4229787c3aa3e6b56f542 diff --git a/lib/App/Rgit/Utils.pm b/lib/App/Rgit/Utils.pm index 651ea77..0804c01 100644 --- a/lib/App/Rgit/Utils.pm +++ b/lib/App/Rgit/Utils.pm @@ -23,6 +23,21 @@ 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, +}; + =head1 FUNCTIONS =head2 C @@ -41,7 +56,9 @@ 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. =cut @@ -49,7 +66,8 @@ use base qw/Exporter/; our @EXPORT = (); our %EXPORT_TAGS = ( - funcs => [ qw/validate/ ] + funcs => [ qw/validate/ ], + codes => [ qw/SAVE NEXT REDO LAST/ ], ); our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];