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