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