Clean hash_by_path's signature.
[catagits/Gitalist.git] / lib / Gitalist / Git / Repository.pm
CommitLineData
56b6dbe6 1use MooseX::Declare;
2
44a9ed75 3class Gitalist::Git::Repository with Gitalist::Git::HasUtils {
56b6dbe6 4 # FIXME, use Types::Path::Class and coerce
5 use MooseX::Types::Common::String qw/NonEmptySimpleStr/;
3a6dd969 6 use MooseX::Types::Path::Class qw/Dir/;
829d41ed 7 use MooseX::Types::Moose qw/Str Maybe Bool HashRef ArrayRef/;
3a6dd969 8 use Gitalist::Git::Types qw/SHA1/;
2e79039a 9 use Moose::Autobox;
77edf882 10 use List::MoreUtils qw/any zip/;
3a6dd969 11 use DateTime;
5effb2c9 12 use Encode qw/decode/;
e66671b8 13 use I18N::Langinfo qw/langinfo CODESET/;
f3083570 14 use Gitalist::Git::Object::Blob;
467fa7d9 15 use Gitalist::Git::Object::Tree;
16 use Gitalist::Git::Object::Commit;
17 use Gitalist::Git::Object::Tag;
56b6dbe6 18
32a371cc 19 our $SHA1RE = qr/[0-9a-fA-F]{40}/;
20
21 around BUILDARGS (ClassName $class: Dir $dir) {
44a9ed75 22 # Allows us to be called as Repository->new($dir)
4b6bcf44 23 # Last path component becomes $self->name
24 # Full path to git objects becomes $self->path
32a371cc 25 my $name = $dir->dir_list(-1);
26 $dir = $dir->subdir('.git') if (-f $dir->file('.git', 'HEAD'));
27 confess("Can't find a git repository at " . $dir)
28 unless ( -f $dir->file('HEAD') );
29 return $class->$orig(name => $name,
30 path => $dir);
31 }
32
56b6dbe6 33 has name => ( isa => NonEmptySimpleStr,
01ced85b 34 is => 'ro', required => 1 );
b5b638f7 35
84f31a44 36 has path => ( isa => Dir,
3a6dd969 37 is => 'ro', required => 1);
56b6dbe6 38
0617cbd0 39 has description => ( isa => Str,
56b6dbe6 40 is => 'ro',
41 lazy_build => 1,
42 );
b5b638f7 43
56b6dbe6 44 has owner => ( isa => NonEmptySimpleStr,
45 is => 'ro',
46 lazy_build => 1,
47 );
b5b638f7 48
3a6dd969 49 has last_change => ( isa => Maybe['DateTime'],
56b6dbe6 50 is => 'ro',
51 lazy_build => 1,
52 );
53
b5b638f7 54 has is_bare => ( isa => Bool,
55 is => 'ro',
56 lazy => 1,
57 default => sub {
2c130350 58 -d $_[0]->path->parent->subdir($_[0]->name)
b5b638f7 59 ? 1 : 0
60 },
61 );
cc88eca5 62 has heads => ( isa => ArrayRef[HashRef],
63 is => 'ro',
3a6dd969 64 lazy_build => 1);
ea19a20c 65 has tags => ( isa => ArrayRef[HashRef],
66 is => 'ro',
67 lazy_build => 1);
cc88eca5 68 has references => ( isa => HashRef[ArrayRef[Str]],
69 is => 'ro',
70 lazy_build => 1 );
71
01ced85b 72 method BUILD {
4dacb4b2 73 $self->$_() for qw/last_change owner description /; # Ensure to build early.
01ced85b 74 }
75
bba40bd5 76 ## Public methods
dcb1b927 77
bc50b7ec 78 method get_object_or_head (NonEmptySimpleStr $ref) {
79 my $sha1 = is_SHA1($ref) ? $ref : $self->head_hash($ref);
dcb1b927 80 $self->get_object($sha1);
81 }
bc50b7ec 82
32a371cc 83 method head_hash (Str $head?) {
84 my $output = $self->run_cmd(qw/rev-parse --verify/, $head || 'HEAD' );
85 confess("No such head: " . $head) unless defined $output;
29debefd 86
32a371cc 87 my($sha1) = $output =~ /^($SHA1RE)$/;
88 return $sha1;
56b6dbe6 89 }
90
ceef0cf1 91 method list_tree (SHA1 $sha1?) {
a8a8f8f9 92 $sha1 ||= $self->head_hash;
b36b7e0b 93 my $object = $self->get_object($sha1);
94 return @{$object->tree};
a8a8f8f9 95 }
96
8bb7649b 97 method get_object (NonEmptySimpleStr $sha1) {
ceef0cf1 98 unless (is_SHA1($sha1)) {
8bb7649b 99 $sha1 = $self->head_hash($sha1);
100 }
e1307124 101 my $type = $self->run_cmd('cat-file', '-t', $sha1);
102 chomp($type);
467fa7d9 103 my $class = 'Gitalist::Git::Object::' . ucfirst($type);
104 $class->new(
82bc0f05 105 repository => $self,
54368e9d 106 sha1 => $sha1,
f3083570 107 type => $type,
54368e9d 108 );
109 }
8bb7649b 110
e311fd9e 111 method hash_by_path ($base, $path) {
54368e9d 112 $path =~ s{/+$}();
32a371cc 113 # FIXME should this really just take the first result?
114 my @paths = $self->run_cmd('ls-tree', $base, '--', $path)
54368e9d 115 or return;
32a371cc 116 my $line = $paths[0];
54368e9d 117
118 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
119 $line =~ m/^([0-9]+) (.+) ($SHA1RE)\t/;
e311fd9e 120 return $3;
54368e9d 121 }
122
4111e151 123 method list_revs ( NonEmptySimpleStr :$sha1!,
124 Int :$count?,
125 Int :$skip?,
126 HashRef :$search?,
05e8b4d0 127 NonEmptySimpleStr :$file? ) {
4111e151 128 $sha1 = $self->head_hash($sha1)
129 if !$sha1 || $sha1 !~ $SHA1RE;
130
c1a9cd73 131 my @search_opts;
53a9d6de 132 if ($search and exists $search->{text}) {
4111e151 133 $search->{type} = 'grep'
134 if $search->{type} eq 'commit';
135 @search_opts = (
136 # This seems a little fragile ...
137 qq[--$search->{type}=$search->{text}],
138 '--regexp-ignore-case',
139 $search->{regexp} ? '--extended-regexp' : '--fixed-strings'
140 );
141 }
142
143 my $output = $self->run_cmd(
144 'rev-list',
145 '--header',
146 (defined $count ? "--max-count=$count" : ()),
147 (defined $skip ? "--skip=$skip" : ()),
148 @search_opts,
149 $sha1,
150 '--',
151 ($file ? $file : ()),
152 );
153 return unless $output;
154
cc88eca5 155 my @revs = $self->_parse_rev_list($output);
4111e151 156
157 return @revs;
158 }
159
bba40bd5 160 method snapshot (NonEmptySimpleStr :$sha1,
30db8f5b 161 NonEmptySimpleStr :$format
162 ) {
bba40bd5 163 # TODO - only valid formats are 'tar' and 'zip'
164 my $formats = { tgz => 'tar', zip => 'zip' };
165 unless ($formats->exists($format)) {
166 die("No such format: $format");
167 }
168 $format = $formats->{$format};
169 my $name = $self->name;
170 $name =~ s,([^/])/*\.git$,$1,;
171 my $filename = $name;
172 $filename .= "-$sha1.$format";
173 $name =~ s/\047/\047\\\047\047/g;
174
175 my @cmd = ('archive', "--format=$format", "--prefix=$name/", $sha1);
176 return ($filename, $self->run_cmd_fh(@cmd));
177 # TODO - support compressed archives
2e79039a 178 }
54368e9d 179
d8abdf1c 180 method reflog (@logargs) {
181 my @entries
182 = $self->run_cmd(qw(log -g), @logargs)
183 =~ /(^commit.+?(?:(?=^commit)|(?=\z)))/msg;
184
05e8b4d0 185 # commit 02526fc15beddf2c64798a947fecdd8d11bf993d
186 # Reflog: HEAD@{14} (The Git Server <git@git.dev.venda.com>)
187 # Reflog message: push
188 # Author: Foo Barsby <fbarsby@example.com>
189 # Date: Thu Sep 17 12:26:05 2009 +0100
190 #
191 # Merge branch 'abc123'
d8abdf1c 192
193 return map {
194 # XXX Stuff like this makes me want to switch to Git::PurePerl
195 my($sha1, $type, $author, $date)
196 = m{
197 ^ commit \s+ ($SHA1RE)$
198 .*?
199 Reflog[ ]message: \s+ (.+?)$ \s+
200 Author: \s+ ([^<]+) <.*?$ \s+
201 Date: \s+ (.+?)$
202 }xms;
203
204 pos($_) = index($_, $date) + length $date;
205
206 # Yeah, I just did that.
207 my($msg) = /\G\s+(\S.*)/sg;
208 {
209 hash => $sha1,
210 type => $type,
211 author => $author,
212
213 # XXX Add DateTime goodness.
214 date => $date,
215 message => $msg,
216 }
217 ;
218 } @entries;
219 }
220
cc88eca5 221 ## BUILDERS
50d45f00 222 method _build_util {
32a371cc 223 Gitalist::Git::Util->new(
82bc0f05 224 repository => $self,
32a371cc 225 );
226 }
227
228 method _build_description {
76c97bf6 229 my $description = "";
5d8568c6 230 eval {
76c97bf6 231 $description = $self->path->file('description')->slurp;
232 chomp $description;
5d8568c6 233 };
3c12ecb7 234 $description = "Unnamed repository, edit the .git/description file to set a description"
235 if $description eq "Unnamed repository; edit this file 'description' to name the repository.";
76c97bf6 236 return $description;
32a371cc 237 }
238
239 method _build_owner {
e66671b8 240 my ($gecos, $name) = map { decode(langinfo(CODESET), $_) } (getpwuid $self->path->stat->uid)[6,0];
32a371cc 241 $gecos =~ s/,+$//;
242 return length($gecos) ? $gecos : $name;
243 }
244
245 method _build_last_change {
246 my $last_change;
247 my $output = $self->run_cmd(
248 qw{ for-each-ref --format=%(committer)
249 --sort=-committerdate --count=1 refs/heads
250 });
251 if (my ($epoch, $tz) = $output =~ /\s(\d+)\s+([+-]\d+)$/) {
3a6dd969 252 my $dt = DateTime->from_epoch(epoch => $epoch);
32a371cc 253 $dt->set_time_zone($tz);
254 $last_change = $dt;
255 }
256 return $last_change;
257 }
258
cc88eca5 259 method _build_heads {
260 my @revlines = $self->run_cmd_list(qw/for-each-ref --sort=-committerdate /, '--format=%(objectname)%00%(refname)%00%(committer)', 'refs/heads');
261 my @ret;
262 for my $line (@revlines) {
263 my ($rev, $head, $commiter) = split /\0/, $line, 3;
264 $head =~ s!^refs/heads/!!;
265
266 push @ret, { sha1 => $rev, name => $head };
267
268 #FIXME: That isn't the time I'm looking for..
269 if (my ($epoch, $tz) = $line =~ /\s(\d+)\s+([+-]\d+)$/) {
3a6dd969 270 my $dt = DateTime->from_epoch(epoch => $epoch);
cc88eca5 271 $dt->set_time_zone($tz);
272 $ret[-1]->{last_change} = $dt;
273 }
274 }
275
276 return \@ret;
277 }
278
ea19a20c 279 method _build_tags {
280 my @revlines = $self->run_cmd_list('for-each-ref',
281 '--sort=-creatordate',
282 '--format=%(objectname) %(objecttype) %(refname) %(*objectname) %(*objecttype) %(subject)%00%(creator)',
c1a9cd73 283 'refs/tags'
ea19a20c 284 );
285 my @ret;
286 for my $line (@revlines) {
287 my($refinfo, $creatorinfo) = split /\0/, $line;
c1a9cd73 288 my($rev, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
ea19a20c 289 my($creator, $epoch, $tz) = ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
290 $name =~ s!^refs/tags/!!;
291
292 push @ret, { sha1 => $rev, name => $name };
293
294 #FIXME: That isn't the time I'm looking for..
295 if($epoch and $tz) {
3a6dd969 296 my $dt = DateTime->from_epoch(epoch => $epoch);
ea19a20c 297 $dt->set_time_zone($tz);
298 $ret[-1]->{last_change} = $dt;
299 }
300 }
301
302 return \@ret;
303 }
304
cc88eca5 305 method _build_references {
c1a9cd73 306 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
307 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
308 my @reflist = $self->run_cmd_list(qw(show-ref --dereference))
05e8b4d0 309 or return;
cc88eca5 310 my %refs;
05e8b4d0 311 for (@reflist) {
312 push @{$refs{$1}}, $2
313 if m!^($SHA1RE)\srefs/(.*)$!;
314 }
cc88eca5 315
05e8b4d0 316 return \%refs;
cc88eca5 317 }
318
319 ## Private methods
cc88eca5 320 method _parse_rev_list ($output) {
321 return
322 map $self->get_gpp_object($_),
ceef0cf1 323 grep is_SHA1($_),
cc88eca5 324 map split(/\n/, $_, 6), split /\0/, $output;
325 }
326
775e96e0 327} # end class
328
329__END__
330
bba40bd5 331=head1 NAME
332
44a9ed75 333Gitalist::Git::Repository - Model of a git repository
bba40bd5 334
335=head1 SYNOPSIS
336
337 my $gitrepo = dir('/repo/base/Gitalist');
82bc0f05 338 my $repository = Gitalist::Git::Repository->new($gitrepo);
339 $repository->name; # 'Gitalist'
340 $repository->path; # '/repo/base/Gitalist/.git'
341 $repository->description; # 'Unnamed repository.'
bba40bd5 342
343=head1 DESCRIPTION
344
345This class models a git repository, referred to in Gitalist
87581f05 346as a "Repository".
bba40bd5 347
8ba87261 348
bba40bd5 349=head1 ATTRIBUTES
350
351=head2 name
352
87581f05 353The name of the Repository. If unspecified, this will be derived from the path to the git repository.
bba40bd5 354
bba40bd5 355=head2 path
356
8ba87261 357L<Path::Class:Dir> for the filesystem path to the git repository.
bba40bd5 358
bba40bd5 359=head2 description
360
8ba87261 361The contents of .git/description.
bba40bd5 362
bba40bd5 363=head2 owner
364
8ba87261 365Owner of the files on the filesystem.
bba40bd5 366
bba40bd5 367=head2 last_change
368
8ba87261 369The L<DateTime> of the last modification of the repository. This will be C<undef> if the repository has never been used.
bba40bd5 370
bba40bd5 371=head2 is_bare
372
8ba87261 373True if this is a bare git repository.
bba40bd5 374
bba40bd5 375=head2 heads
376
bba40bd5 377=head2 tags
378
8ba87261 379An array of the name and sha1 of all heads/tags in the repository.
bba40bd5 380
381=head2 references
382
383Hashref of ArrayRefs for each reference.
384
8ba87261 385
bba40bd5 386=head1 METHODS
387
388=head2 head_hash ($head?)
389
390Return the sha1 for HEAD, or any specified head.
391
bba40bd5 392=head2 list_tree ($sha1?)
393
394Return an array of contents for a given tree.
395The tree is specified by sha1, and defaults to HEAD.
396Each item is a L<Gitalist::Git::Object>.
397
bba40bd5 398=head2 get_object ($sha1)
399
400Return an appropriate subclass of L<Gitalist::Git::Object> for the given sha1.
401
e311fd9e 402=head2 hash_by_path ($commit, $path)
bba40bd5 403
e311fd9e 404Returns the tree/file sha1 for a given path in a commit.
bba40bd5 405
8ba87261 406=head2 list_revs ($sha1, $count?, $skip?, \%search?, $file?)
bba40bd5 407
408Returns a list of revs for the given head ($sha1).
409
8ba87261 410=head2 snapshot ($sha1, $format)
bba40bd5 411
412Generate an archived snapshot of the repository.
413$sha1 should be a commit or tree.
414Returns a filehandle to read from.
415
8ba87261 416=head2 diff ($commit, $patch?, $parent?, $file?)
bba40bd5 417
418Generate a diff from a given L<Gitalist::Git::Object>.
419
8ba87261 420=head2 reflog (@lorgargs)
bba40bd5 421
422Return a list of hashes representing each reflog entry.
423
424FIXME Should this return objects?
425
bba40bd5 426
b5b638f7 427=head1 SEE ALSO
428
429L<Gitalist::Git::Util> L<Gitalist::Git::Object>
430
8ba87261 431
775e96e0 432=head1 AUTHORS
b5b638f7 433
775e96e0 434See L<Gitalist> for authors.
b5b638f7 435
436=head1 LICENSE
437
775e96e0 438See L<Gitalist> for the license.
b5b638f7 439
440=cut