X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FApp%2FRgit%2FRepository.pm;h=f7b03d7fd799964ffecc042a330c52ec5e9b32df;hb=3051ac76178c03ab7a6e1c1e87a2533a84a738b7;hp=c282ebde52d6ce6113daf5896749f5c59ca9c138;hpb=d9762c0e9806aa955f290f36740496f0013747fd;p=perl%2Fmodules%2Frgit.git diff --git a/lib/App/Rgit/Repository.pm b/lib/App/Rgit/Repository.pm index c282ebd..f7b03d7 100644 --- a/lib/App/Rgit/Repository.pm +++ b/lib/App/Rgit/Repository.pm @@ -4,11 +4,15 @@ use strict; use warnings; use Cwd qw/cwd abs_path/; -use File::Spec::Functions qw/catdir splitdir abs2rel file_name_is_absolute/; - -use Object::Tiny qw/fake repo bare name work/; - -use App::Rgit::Utils qw/validate/; +use File::Spec::Functions qw/canonpath catdir splitdir abs2rel file_name_is_absolute/; +use POSIX qw/WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG SIGINT SIGQUIT/; + +BEGIN { + no warnings 'redefine'; + *WIFEXITED = sub { 1 } unless eval { WIFEXITED(0); 1 }; + *WEXITSTATUS = sub { shift() >> 8 } unless eval { WEXITSTATUS(0); 1 }; + *WIFSIGNALED = sub { shift() & 127 } unless eval { WIFSIGNALED(0); 1 }; +} =head1 NAME @@ -16,11 +20,11 @@ App::Rgit::Repository - Class representing a Git repository. =head1 VERSION -Version 0.02 +Version 0.06 =cut -our $VERSION = '0.02'; +our $VERSION = '0.06'; =head1 DESCRIPTION @@ -38,45 +42,51 @@ If the C option is passed, C<$dir> isn't checked to be a valid C repo =cut sub new { - my ($class, %args) = &validate; + my $class = shift; + $class = ref $class || $class; + + my %args = @_; + my $dir = $args{dir}; - $dir = abs_path $dir if defined $dir and not file_name_is_absolute $dir; - $dir = cwd unless defined $dir; + $dir = abs_path $dir if defined $dir and not file_name_is_absolute $dir; + $dir = cwd unless defined $dir; + $dir = canonpath $dir; + my ($repo, $bare, $name, $work); if ($args{fake}) { - $work = $dir; - } else { - my @tries = ($dir); + $repo = $work = $dir; + } else { + return unless -d $dir + and -d "$dir/refs" + and -d "$_/objects" + and -e "$_/HEAD"; + my @chunks = splitdir $dir; - my $last = pop @chunks; - push @tries, "$dir.git" unless $last =~ /\.git$/; - push @tries, catdir($dir, '.git') unless $last eq '.git'; - for (@tries) { - if (-d $_ && -d "$_/refs" and -d "$_/objects" and -e "$_/HEAD") { - $repo = $_; - last; - } - } - return unless defined $repo; - @chunks = splitdir $repo; - $last = pop @chunks; + my $last = pop @chunks; + return unless defined $last; + if ($last eq '.git') { $bare = 0; $name = $chunks[-1]; $work = catdir @chunks; - } else { + } elsif ($last =~ /(.+)\.git$/) { $bare = 1; - ($name) = $last =~ /(.*)\.git$/; - $work = $repo; + $name = $1; + $work = catdir @chunks, $last; + } else { + return; } + + $repo = $dir; } - $class->SUPER::new( + + bless { fake => !!$args{fake}, repo => $repo, bare => $bare, name => $name, work => $work, - ); + }, $class; } =head2 C @@ -109,26 +119,56 @@ sub _abs2rel { $a; } +my %escapes = ( + '%' => sub { '%' }, + 'n' => sub { shift->name }, + 'g' => sub { _abs2rel(shift->repo, shift->root) }, + 'G' => sub { shift->repo }, + 'w' => sub { _abs2rel(shift->work, shift->root) }, + 'W' => sub { shift->work }, + 'b' => sub { + my ($self, $conf) = @_; + _abs2rel($self->bare ? $self->repo : $self->work . '.git', $conf->root) + }, + 'B' => sub { $_[0]->bare ? $_[0]->repo : $_[0]->work . '.git' }, + 'R' => sub { $_[1]->root }, +); +my $e = quotemeta join '', keys %escapes; +$e = "[$e]"; + sub run { my $self = shift; my $conf = shift; return unless $conf->isa('App::Rgit::Config'); my @args = @_; unless ($self->fake) { - my %escapes = ( - '^' => sub { '^' }, - 'n' => sub { $self->name }, - 'g' => sub { _abs2rel($self->repo, $conf->root) }, - 'G' => sub { $self->repo }, - 'w' => sub { _abs2rel($self->work, $conf->root) }, - 'W' => sub { $self->work }, - 'b' => sub { _abs2rel($self->bare ? $self->repo : $self->work . '.git', $conf->root) }, - 'B' => sub { $self->bare ? $self->repo : $self->work . '.git' }, - 'R' => sub { $conf->root }, - ); - s/\^([\^ngGwWbBR])/$escapes{$1}->()/eg for @args; + s/%($e)/$escapes{$1}->($self, $conf)/eg for @args; + } + unshift @args, $conf->git; + $conf->info('Executing "', join(' ', @args), '" into ', $self->work, "\n"); + { + local $ENV{GIT_DIR} = $self->repo if exists $ENV{GIT_DIR}; + local $ENV{GIT_EXEC_PATH} = $conf->git if exists $ENV{GIT_EXEC_PATH}; + system { $args[0] } @args; + } + if ($? == -1) { + $conf->crit("Failed to execute git: $!\n"); + return; + } + my $ret; + $ret = WEXITSTATUS($?) if WIFEXITED($?); + my $sig; + if (WIFSIGNALED($?)) { + $sig = WTERMSIG($?); + $conf->warn("git died with signal $sig\n"); + if ($sig == SIGINT || $sig == SIGQUIT) { + $conf->err("Aborting\n"); + exit $sig; + } + } elsif ($ret) { + $conf->info("git returned $ret\n"); } - system { $conf->git } $conf->git, @args; + return wantarray ? ($ret, $sig) : $ret; } =head2 C @@ -141,7 +181,13 @@ sub run { =head2 C -Accessors. +Read-only accessors. + +=cut + +BEGIN { + eval "sub $_ { \$_[0]->{$_} }" for qw/fake repo bare name work/; +} =head1 SEE ALSO @@ -150,7 +196,7 @@ L. =head1 AUTHOR Vincent Pit, C<< >>, L. - + You can contact me by mail or on C (vincent). =head1 BUGS @@ -165,7 +211,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2008 Vincent Pit, all rights reserved. +Copyright 2008-2009 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.