Version 0.001008
[catagits/Gitalist.git] / lib / Gitalist / Git / Object / Commit.pm
CommitLineData
e1307124 1package Gitalist::Git::Object::Commit;
2use MooseX::Declare;
3
0250a92d 4class Gitalist::Git::Object::Commit
5 extends Gitalist::Git::Object
6 with Gitalist::Git::Object::HasTree {
9cd610f4 7 use MooseX::Types::Moose qw/Str Int Bool Maybe ArrayRef/;
61f14672 8 use MooseX::Types::Common::String qw/NonEmptySimpleStr SimpleStr/;
61ba8635 9 use Moose::Autobox;
0250a92d 10 use List::MoreUtils qw/any zip/;
11 our $SHA1RE = qr/[0-9a-fA-F]{40}/;
12
98390bf6 13 has '+type' => ( default => 'commit' );
0250a92d 14 has '+_gpp_obj' => ( handles => [ 'comment',
15 'tree_sha1',
16 'committer',
17 'committed_time',
18 'author',
19 'authored_time',
20 'parents',
21 'parent_sha1',
22 'parent_sha1s',
23 ],
e1307124 24 );
25
35eaa65a 26 method get_patch ( Maybe[NonEmptySimpleStr] $parent_hash?,
27 Int $patch_count?) {
28 # assembling the git command to execute...
29 my @cmd = qw/format-patch --encoding=utf8 --stdout/;
30
31 # patch, or patch set?
32 push @cmd,
33 defined $patch_count
34 ? "-$patch_count -n" : "-1";
35
36 # refspec
37 if (defined $parent_hash) {
38 # if a parent is specified: hp..h
39 push @cmd, "$parent_hash.." . $self->sha1;
61ba8635 40 } else {
35eaa65a 41 # if not, but a merge commit: --cc h
42 # otherwise: --root h
43 push @cmd, $self->parents->length > 1
61ba8635 44 ? '--cc' : '--root';
35eaa65a 45 push @cmd, $self->sha1;
377bf360 46 }
aa7f1f92 47 return $self->_run_cmd_fh( @cmd );
377bf360 48 }
49
50 method diff ( Maybe[Bool] :$patch?,
0250a92d 51 Maybe[NonEmptySimpleStr] :$parent?,
7998de12 52 Maybe[NonEmptySimpleStr] :$filename?
0250a92d 53 ) {
0250a92d 54 $parent = $parent
55 ? $parent
56 : $self->parents <= 1
57 ? $self->parent_sha1
58 : '-c';
59 my @etc = (
7998de12 60 ( $filename ? ('--', $filename) : () ),
0250a92d 61 );
62
63 my @out = $self->_raw_diff(
64 ( $patch ? '--patch-with-raw' : () ),
65 ( $parent ? $parent : () ),
66 $self->sha1, @etc,
67 );
68
69 # XXX Yes, there is much wrongness having _parse_diff_tree be destructive.
70 my @difftree = $self->_parse_diff_tree(\@out);
71
72 return \@difftree
73 unless $patch;
74
75 # The blank line between the tree and the patch.
76 shift @out;
77
78 # XXX And no I'm not happy about having diff return tree + patch.
79 return \@difftree, [$self->_parse_diff(@out)];
80 }
81
82 ## Private methods
83 # gitweb uses the following sort of command for diffing merges:
84 # /home/dbrook/apps/bin/git --git-dir=/home/dbrook/dev/app/.git diff-tree -r -M --no-commit-id --patch-with-raw --full-index --cc 316cf158df3f6207afbae7270bcc5ba0 --
85 # and for regular diffs
86 # /home/dbrook/apps/bin/git --git-dir=/home/dbrook/dev/app/.git diff-tree -r -M --no-commit-id --patch-with-raw --full-index 2e3454ca0749641b42f063730b0090e1 316cf158df3f6207afbae7270bcc5ba0 --
87 method _raw_diff (@args) {
88 return $self->_run_cmd_list(
89 qw(diff-tree -r -M --no-commit-id --full-index),
90 @args
91 );
92 }
93
94 method _parse_diff_tree ($diff) {
95 my @keys = qw(modesrc modedst sha1src sha1dst status src dst);
96 my @ret;
97 while (@$diff and $diff->[0] =~ /^:\d+/) {
98 my $line = shift @$diff;
99 # see. man git-diff-tree for more info
100 # mode src, mode dst, sha1 src, sha1 dst, status, src[, dst]
101 my @vals = $line =~ /^:(\d+) (\d+) ($SHA1RE) ($SHA1RE) ([ACDMRTUX]\d*)\t([^\t]+)(?:\t([^\n]+))?$/;
102 my %line = zip @keys, @vals;
103 # Some convenience keys
104 $line{file} = $line{src};
105 $line{sha1} = $line{sha1dst};
106 $line{is_new} = $line{sha1src} =~ /^0+$/
107 if $line{sha1src};
906a2dd2 108 @line{qw/status sim/} = $line{status} =~ /(R)0*(\d+)/
0250a92d 109 if $line{status} =~ /^R/;
110 push @ret, \%line;
111 }
112
113 return @ret;
114 }
115
116 method _parse_diff (@diff) {
117 my @ret;
118 for (@diff) {
119 # This regex is a little pathological.
120 if (m{^diff --git (a/(.*?)) (b/\2)}) {
121 push @ret, {
122 head => $_,
123 a => $1,
124 b => $3,
125 file => $2,
126 diff => '',
127 };
128 next;
129 }
130
3a58f004 131 if (/^index (\w+)\.\.(\w+)(?: (\d+))?$/) {
0250a92d 132 @{$ret[-1]}{qw(index src dst mode)} = ($_, $1, $2, $3);
133 next
134 }
135
136 # XXX Somewhat hacky. Ahem.
137 $ret[@ret ? -1 : 0]{diff} .= "$_\n";
138 }
139
140 return @ret;
141 }
142
18a8059a 143
6d4fe0d7 144 # XXX A prime candidate for caching.
61f14672 145 method blame ( NonEmptySimpleStr $filename, SimpleStr $sha1 ) {
18a8059a 146 my @blameout = $self->_run_cmd_list(
61f14672 147 blame => '-p', $sha1 ? $sha1 : $self->sha1, '--', $filename
18a8059a 148 );
149
6d4fe0d7 150 my(%commitdata, @filedata);
18a8059a 151 while(defined(local $_ = shift @blameout)) {
152 my ($sha1, $orig_lineno, $lineno, $group_size) =
6d4fe0d7 153 /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;
18a8059a 154
6d4fe0d7 155 $commitdata{$sha1} = {}
156 unless exists $commitdata{$sha1};
18a8059a 157
6d4fe0d7 158 my $commit = $commitdata{$sha1};
18a8059a 159 my $line;
6d4fe0d7 160 until(($line = shift @blameout) =~ s/^\t//) {
161 $commit->{$1} = $2
162 if $line =~ /^(\S+) (.*)/;
18a8059a 163 }
164
6d4fe0d7 165 unless(exists $commit->{author_dt}) {
166 for my $t (qw/author committer/) {
167 my $dt = DateTime->from_epoch(epoch => $commit->{"$t-time"});
168 $dt->set_time_zone($commit->{"$t-tz"});
169 $commit->{"$t\_dt"} = $dt;
170 }
171 }
18a8059a 172
6d4fe0d7 173 push @filedata, {
174 line => $line,
175 commit => { sha1 => $sha1, %$commit },
176 meta => {
177 orig_lineno => $orig_lineno,
178 lineno => $lineno,
179 ( $group_size ? (group_size => $group_size) : () ),
180 },
181 };
0250a92d 182 }
18a8059a 183
6d4fe0d7 184 return \@filedata;
18a8059a 185 }
186}
775e96e0 187
188
1891;
190
191__END__
192
193=head1 NAME
194
195Gitalist::Git::Object::Commit
196
c19af0d0 197=head1 SYNOPSIS
198
44a9ed75 199 my $commit = Repository->get_object($commit_sha1);
c19af0d0 200
775e96e0 201=head1 DESCRIPTION
202
c19af0d0 203Represents a commit object in a git repository.
204Subclass of C<Gitalist::Git::Object>.
205
206
207=head1 ATTRIBUTES
208
209=head2 committer
210
211=head2 committed_time
212
213=head2 author
214
215=head2 authored_time
216
217=head2 comment
218
219=head2 tree_sha1
220
221=head2 parents
222
223=head2 parent_sha1
224
225=head2 parent_sha1s
226
227
228=head1 METHODS
229
230=head2 get_patch
231
232=head2 diff
233
234=head2 blame
775e96e0 235
236=head1 AUTHORS
237
238See L<Gitalist> for authors.
239
240=head1 LICENSE
241
242See L<Gitalist> for the license.
243
244=cut