X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FGitalist%2FGit%2FObject%2FCommit.pm;h=f48e9cd797189552c001c58785d7d3e88d5c8833;hb=2298d93ff984748b0c15d19bad6fdebb1d81c4f1;hp=a6261fa9b16f9e5e4ad51404794a25a2e18485bf;hpb=c19af0d014d4b658b4815b95958ffcf4461a5788;p=catagits%2FGitalist.git diff --git a/lib/Gitalist/Git/Object/Commit.pm b/lib/Gitalist/Git/Object/Commit.pm index a6261fa..f48e9cd 100644 --- a/lib/Gitalist/Git/Object/Commit.pm +++ b/lib/Gitalist/Git/Object/Commit.pm @@ -5,7 +5,7 @@ class Gitalist::Git::Object::Commit extends Gitalist::Git::Object with Gitalist::Git::Object::HasTree { use MooseX::Types::Moose qw/Str Int Bool Maybe ArrayRef/; - use MooseX::Types::Common::String qw/NonEmptySimpleStr/; + use MooseX::Types::Common::String qw/NonEmptySimpleStr SimpleStr/; use Moose::Autobox; use List::MoreUtils qw/any zip/; our $SHA1RE = qr/[0-9a-fA-F]{40}/; @@ -23,6 +23,23 @@ class Gitalist::Git::Object::Commit ], ); + method _build_tree { + return [$self->repository->get_object($self->tree_sha1)]; + } + + method sha_by_path ($path) { + $path =~ s{/+$}(); + # FIXME should this really just take the first result? + my @paths = $self->repository->run_cmd('ls-tree', $self->sha1, '--', $path) + or return; + my $line = $paths[0]; + + #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c' + $line =~ m/^([0-9]+) (.+) ($SHA1RE)\t/; + my $sha1 = $3; + return $self->repository->get_object($sha1); + } + method get_patch ( Maybe[NonEmptySimpleStr] $parent_hash?, Int $patch_count?) { # assembling the git command to execute... @@ -47,23 +64,29 @@ class Gitalist::Git::Object::Commit return $self->_run_cmd_fh( @cmd ); } - method diff ( Maybe[Bool] :$patch?, - Maybe[NonEmptySimpleStr] :$parent?, - Maybe[NonEmptySimpleStr] :$file? - ) { + method diff ( Bool :$patch?, + NonEmptySimpleStr :$parent?, + NonEmptySimpleStr :$filename? + ) { $parent = $parent ? $parent : $self->parents <= 1 ? $self->parent_sha1 : '-c'; my @etc = ( - ( $file ? ('--', $file) : () ), + ( $filename ? ('--', $filename) : () ), ); + # If we're not comparing against something and we have multiple + # parents then it's a merge commit so show what was merged. + my $sha1 = $parent && $parent eq '-c' && @{[$self->parents]} > 1 + ? sprintf("%s^1..%s^2", ($self->sha1) x 2) + : $self->sha1; + my @out = $self->_raw_diff( ( $patch ? '--patch-with-raw' : () ), ( $parent ? $parent : () ), - $self->sha1, @etc, + $sha1, @etc, ); # XXX Yes, there is much wrongness having _parse_diff_tree be destructive. @@ -105,7 +128,7 @@ class Gitalist::Git::Object::Commit $line{sha1} = $line{sha1dst}; $line{is_new} = $line{sha1src} =~ /^0+$/ if $line{sha1src}; - @line{qw/status sim/} = $line{status} =~ /(R)(\d+)/ + @line{qw/status sim/} = $line{status} =~ /(R)0*(\d+)/ if $line{status} =~ /^R/; push @ret, \%line; } @@ -128,7 +151,7 @@ class Gitalist::Git::Object::Commit next; } - if (/^index (\w+)\.\.(\w+) (\d+)$/) { + if (/^index (\w+)\.\.(\w+)(?: (\d+))?$/) { @{$ret[-1]}{qw(index src dst mode)} = ($_, $1, $2, $3); next } @@ -142,9 +165,9 @@ class Gitalist::Git::Object::Commit # XXX A prime candidate for caching. - method blame ( NonEmptySimpleStr $filename ) { + method blame ( NonEmptySimpleStr $filename, SimpleStr $sha1 ) { my @blameout = $self->_run_cmd_list( - blame => '-p', $self->sha1, '--', $filename + blame => '-p', $sha1 ? $sha1 : $self->sha1, '--', $filename ); my(%commitdata, @filedata); @@ -157,9 +180,9 @@ class Gitalist::Git::Object::Commit my $commit = $commitdata{$sha1}; my $line; - until(($line = shift @blameout) =~ s/^\t//) { - $commit->{$1} = $2 - if $line =~ /^(\S+) (.*)/; + + until(@blameout == 0 || ($line = shift @blameout) =~ s/^\t//) { + $commit->{$1} = $2 if $line =~ /^(\S+) (.*)/; } unless(exists $commit->{author_dt}) { @@ -192,11 +215,11 @@ __END__ =head1 NAME -Gitalist::Git::Object::Commit +Gitalist::Git::Object::Commit - Git::Object::Commit module for Gitalist =head1 SYNOPSIS - my $commit = Project->get_object($commit_sha1); + my $commit = Repository->get_object($commit_sha1); =head1 DESCRIPTION @@ -227,6 +250,10 @@ Subclass of C. =head1 METHODS +=head2 sha_by_path ($path) + +Returns the tree/file sha1 for a given path in a commit. + =head2 get_patch =head2 diff