X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=Debian%2FDgit.pm;h=1ab65a8f24c6fd1da07d25bd03e1916f81f16f4d;hb=f08a465fb0a346019750c62dd6cdf1eed348e032;hp=b93477402c72dc3a3662c7a99cab81d6735b66b2;hpb=5408b0c227d942af55442389894a9ed7338a55ce;p=dgit.git diff --git a/Debian/Dgit.pm b/Debian/Dgit.pm index b9347740..1ab65a8f 100644 --- a/Debian/Dgit.pm +++ b/Debian/Dgit.pm @@ -1,37 +1,37 @@ -# +# -*- perl -*- package Debian::Dgit; use strict; use warnings; +use POSIX; + BEGIN { use Exporter (); our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); $VERSION = 1.00; @ISA = qw(Exporter); - @EXPORT = qw(debiantag - $package_re); - %EXPORT_TAGS = ( policyflags => qw() ); - @EXPORT_OK = qw(); + @EXPORT = qw(debiantag server_branch server_ref + stat_exists git_for_each_ref + $package_re $component_re $branchprefix); + %EXPORT_TAGS = ( policyflags => [qw(NOFFCHECK FRESHREPO)] ); + @EXPORT_OK = @{ $EXPORT_TAGS{policyflags} }; } our @EXPORT_OK; our $package_re = '[0-9a-z][-+.0-9a-z]*'; - +our $component_re = '[0-9a-zA-Z][-+.0-9a-zA-Z]*'; +our $branchprefix = 'dgit'; # policy hook exit status bits -# any unexpected bits mean failure, and then known set bits are ignored - -sub NOFFCHECK () { return 2; } -# suppress dgit-repos-server's ff check ("push" only) - -sub FRESHREPO () { return 4; } -# blow away repo right away (ie, as if before push or fetch) -# ("check-package" and "push" only) - +# see dgit-repos-server head comment for documentation +# 1 is reserved in case something fails with `exit 1' +sub NOFFCHECK () { return 0x2; } +sub FRESHREPO () { return 0x4; } +# 0x80 is reserved sub debiantag ($) { my ($v) = @_; @@ -39,4 +39,38 @@ sub debiantag ($) { return "debian/$v"; } +sub server_branch ($) { return "$branchprefix/$_[0]"; } +sub server_ref ($) { return "refs/".server_branch($_[0]); } + +sub stat_exists ($) { + my ($f) = @_; + return 1 if stat $f; + return 0 if $!==&ENOENT; + die "stat $f: $!"; +} + +sub git_for_each_ref ($$) { + my ($pattern,$func) = @_; + # calls $func->($objid,$objtype,$fullrefname,$reftail); + # $reftail is RHS of ref after refs/\w+/ + # breaks if $pattern matches any ref `refs/blah' where blah has no `/' + my $fh = new IO::File "-|", qw(git for-each-ref), $pattern or die $!; + while (<$fh>) { + m#^(\w+)\s+(\w+)\s+(refs/\w+/(\S+))\s# or die "$_ ?"; + $func->($1,$2,$3,$4); + } + $!=0; $?=0; close $fh or die "$pattern $? $!"; +} + +sub git_for_each_tag_referring ($$) { + my ($objreferring, $func) = @_; + # calls $func->($objid,$fullrefname,$tagname); + git_for_each_ref('refs/tags', sub { + my ($objid,$objtype,$fullrefname,$tagname) = @_; + next unless $objtype eq 'tag'; + next if defined $objreferring and $objid ne $objreferring; + $func->($objid,$fullrefname,$tagname); + }); +} + 1;