Git.pm: Use stream-like writing in cat_blob()
[git/dscho.git] / perl / Git.pm
blob0b53566ea33a9b152610bea2bc466eeaec759895
1 =head1 NAME
3 Git - Perl interface to the Git version control system
5 =cut
8 package Git;
10 use 5.008;
11 use strict;
14 BEGIN {
16 our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
18 # Totally unstable API.
19 $VERSION = '0.01';
22 =head1 SYNOPSIS
24 use Git;
26 my $version = Git::command_oneline('version');
28 git_cmd_try { Git::command_noisy('update-server-info') }
29 '%s failed w/ code %d';
31 my $repo = Git->repository (Directory => '/srv/git/cogito.git');
34 my @revs = $repo->command('rev-list', '--since=last monday', '--all');
36 my ($fh, $c) = $repo->command_output_pipe('rev-list', '--since=last monday', '--all');
37 my $lastrev = <$fh>; chomp $lastrev;
38 $repo->command_close_pipe($fh, $c);
40 my $lastrev = $repo->command_oneline( [ 'rev-list', '--all' ],
41 STDERR => 0 );
43 my $sha1 = $repo->hash_and_insert_object('file.txt');
44 my $tempfile = tempfile();
45 my $size = $repo->cat_blob($sha1, $tempfile);
47 =cut
50 require Exporter;
52 @ISA = qw(Exporter);
54 @EXPORT = qw(git_cmd_try);
56 # Methods which can be called as standalone functions as well:
57 @EXPORT_OK = qw(command command_oneline command_noisy
58 command_output_pipe command_input_pipe command_close_pipe
59 command_bidi_pipe command_close_bidi_pipe
60 version exec_path html_path hash_object git_cmd_try
61 remote_refs
62 temp_acquire temp_release temp_reset temp_path);
65 =head1 DESCRIPTION
67 This module provides Perl scripts easy way to interface the Git version control
68 system. The modules have an easy and well-tested way to call arbitrary Git
69 commands; in the future, the interface will also provide specialized methods
70 for doing easily operations which are not totally trivial to do over
71 the generic command interface.
73 While some commands can be executed outside of any context (e.g. 'version'
74 or 'init'), most operations require a repository context, which in practice
75 means getting an instance of the Git object using the repository() constructor.
76 (In the future, we will also get a new_repository() constructor.) All commands
77 called as methods of the object are then executed in the context of the
78 repository.
80 Part of the "repository state" is also information about path to the attached
81 working copy (unless you work with a bare repository). You can also navigate
82 inside of the working copy using the C<wc_chdir()> method. (Note that
83 the repository object is self-contained and will not change working directory
84 of your process.)
86 TODO: In the future, we might also do
88 my $remoterepo = $repo->remote_repository (Name => 'cogito', Branch => 'master');
89 $remoterepo ||= Git->remote_repository ('http://git.or.cz/cogito.git/');
90 my @refs = $remoterepo->refs();
92 Currently, the module merely wraps calls to external Git tools. In the future,
93 it will provide a much faster way to interact with Git by linking directly
94 to libgit. This should be completely opaque to the user, though (performance
95 increase notwithstanding).
97 =cut
100 use Carp qw(carp croak); # but croak is bad - throw instead
101 use Error qw(:try);
102 use Cwd qw(abs_path cwd);
103 use IPC::Open2 qw(open2);
104 use Fcntl qw(SEEK_SET SEEK_CUR);
108 =head1 CONSTRUCTORS
110 =over 4
112 =item repository ( OPTIONS )
114 =item repository ( DIRECTORY )
116 =item repository ()
118 Construct a new repository object.
119 C<OPTIONS> are passed in a hash like fashion, using key and value pairs.
120 Possible options are:
122 B<Repository> - Path to the Git repository.
124 B<WorkingCopy> - Path to the associated working copy; not strictly required
125 as many commands will happily crunch on a bare repository.
127 B<WorkingSubdir> - Subdirectory in the working copy to work inside.
128 Just left undefined if you do not want to limit the scope of operations.
130 B<Directory> - Path to the Git working directory in its usual setup.
131 The C<.git> directory is searched in the directory and all the parent
132 directories; if found, C<WorkingCopy> is set to the directory containing
133 it and C<Repository> to the C<.git> directory itself. If no C<.git>
134 directory was found, the C<Directory> is assumed to be a bare repository,
135 C<Repository> is set to point at it and C<WorkingCopy> is left undefined.
136 If the C<$GIT_DIR> environment variable is set, things behave as expected
137 as well.
139 You should not use both C<Directory> and either of C<Repository> and
140 C<WorkingCopy> - the results of that are undefined.
142 Alternatively, a directory path may be passed as a single scalar argument
143 to the constructor; it is equivalent to setting only the C<Directory> option
144 field.
146 Calling the constructor with no options whatsoever is equivalent to
147 calling it with C<< Directory => '.' >>. In general, if you are building
148 a standard porcelain command, simply doing C<< Git->repository() >> should
149 do the right thing and setup the object to reflect exactly where the user
150 is right now.
152 =cut
154 sub repository {
155 my $class = shift;
156 my @args = @_;
157 my %opts = ();
158 my $self;
160 if (defined $args[0]) {
161 if ($#args % 2 != 1) {
162 # Not a hash.
163 $#args == 0 or throw Error::Simple("bad usage");
164 %opts = ( Directory => $args[0] );
165 } else {
166 %opts = @args;
170 if (not defined $opts{Repository} and not defined $opts{WorkingCopy}
171 and not defined $opts{Directory}) {
172 $opts{Directory} = '.';
175 if (defined $opts{Directory}) {
176 -d $opts{Directory} or throw Error::Simple("Directory not found: $opts{Directory} $!");
178 my $search = Git->repository(WorkingCopy => $opts{Directory});
179 my $dir;
180 try {
181 $dir = $search->command_oneline(['rev-parse', '--git-dir'],
182 STDERR => 0);
183 } catch Git::Error::Command with {
184 $dir = undef;
187 if ($dir) {
188 $dir =~ m#^/# or $dir = $opts{Directory} . '/' . $dir;
189 $opts{Repository} = abs_path($dir);
191 # If --git-dir went ok, this shouldn't die either.
192 my $prefix = $search->command_oneline('rev-parse', '--show-prefix');
193 $dir = abs_path($opts{Directory}) . '/';
194 if ($prefix) {
195 if (substr($dir, -length($prefix)) ne $prefix) {
196 throw Error::Simple("rev-parse confused me - $dir does not have trailing $prefix");
198 substr($dir, -length($prefix)) = '';
200 $opts{WorkingCopy} = $dir;
201 $opts{WorkingSubdir} = $prefix;
203 } else {
204 # A bare repository? Let's see...
205 $dir = $opts{Directory};
207 unless (-d "$dir/refs" and -d "$dir/objects" and -e "$dir/HEAD") {
208 # Mimic git-rev-parse --git-dir error message:
209 throw Error::Simple("fatal: Not a git repository: $dir");
211 my $search = Git->repository(Repository => $dir);
212 try {
213 $search->command('symbolic-ref', 'HEAD');
214 } catch Git::Error::Command with {
215 # Mimic git-rev-parse --git-dir error message:
216 throw Error::Simple("fatal: Not a git repository: $dir");
219 $opts{Repository} = abs_path($dir);
222 delete $opts{Directory};
225 $self = { opts => \%opts };
226 bless $self, $class;
229 =back
231 =head1 METHODS
233 =over 4
235 =item command ( COMMAND [, ARGUMENTS... ] )
237 =item command ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
239 Execute the given Git C<COMMAND> (specify it without the 'git-'
240 prefix), optionally with the specified extra C<ARGUMENTS>.
242 The second more elaborate form can be used if you want to further adjust
243 the command execution. Currently, only one option is supported:
245 B<STDERR> - How to deal with the command's error output. By default (C<undef>)
246 it is delivered to the caller's C<STDERR>. A false value (0 or '') will cause
247 it to be thrown away. If you want to process it, you can get it in a filehandle
248 you specify, but you must be extremely careful; if the error output is not
249 very short and you want to read it in the same process as where you called
250 C<command()>, you are set up for a nice deadlock!
252 The method can be called without any instance or on a specified Git repository
253 (in that case the command will be run in the repository context).
255 In scalar context, it returns all the command output in a single string
256 (verbatim).
258 In array context, it returns an array containing lines printed to the
259 command's stdout (without trailing newlines).
261 In both cases, the command's stdin and stderr are the same as the caller's.
263 =cut
265 sub command {
266 my ($fh, $ctx) = command_output_pipe(@_);
268 if (not defined wantarray) {
269 # Nothing to pepper the possible exception with.
270 _cmd_close($fh, $ctx);
272 } elsif (not wantarray) {
273 local $/;
274 my $text = <$fh>;
275 try {
276 _cmd_close($fh, $ctx);
277 } catch Git::Error::Command with {
278 # Pepper with the output:
279 my $E = shift;
280 $E->{'-outputref'} = \$text;
281 throw $E;
283 return $text;
285 } else {
286 my @lines = <$fh>;
287 defined and chomp for @lines;
288 try {
289 _cmd_close($fh, $ctx);
290 } catch Git::Error::Command with {
291 my $E = shift;
292 $E->{'-outputref'} = \@lines;
293 throw $E;
295 return @lines;
300 =item command_oneline ( COMMAND [, ARGUMENTS... ] )
302 =item command_oneline ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
304 Execute the given C<COMMAND> in the same way as command()
305 does but always return a scalar string containing the first line
306 of the command's standard output.
308 =cut
310 sub command_oneline {
311 my ($fh, $ctx) = command_output_pipe(@_);
313 my $line = <$fh>;
314 defined $line and chomp $line;
315 try {
316 _cmd_close($fh, $ctx);
317 } catch Git::Error::Command with {
318 # Pepper with the output:
319 my $E = shift;
320 $E->{'-outputref'} = \$line;
321 throw $E;
323 return $line;
327 =item command_output_pipe ( COMMAND [, ARGUMENTS... ] )
329 =item command_output_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
331 Execute the given C<COMMAND> in the same way as command()
332 does but return a pipe filehandle from which the command output can be
333 read.
335 The function can return C<($pipe, $ctx)> in array context.
336 See C<command_close_pipe()> for details.
338 =cut
340 sub command_output_pipe {
341 _command_common_pipe('-|', @_);
345 =item command_input_pipe ( COMMAND [, ARGUMENTS... ] )
347 =item command_input_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
349 Execute the given C<COMMAND> in the same way as command_output_pipe()
350 does but return an input pipe filehandle instead; the command output
351 is not captured.
353 The function can return C<($pipe, $ctx)> in array context.
354 See C<command_close_pipe()> for details.
356 =cut
358 sub command_input_pipe {
359 _command_common_pipe('|-', @_);
363 =item command_close_pipe ( PIPE [, CTX ] )
365 Close the C<PIPE> as returned from C<command_*_pipe()>, checking
366 whether the command finished successfully. The optional C<CTX> argument
367 is required if you want to see the command name in the error message,
368 and it is the second value returned by C<command_*_pipe()> when
369 called in array context. The call idiom is:
371 my ($fh, $ctx) = $r->command_output_pipe('status');
372 while (<$fh>) { ... }
373 $r->command_close_pipe($fh, $ctx);
375 Note that you should not rely on whatever actually is in C<CTX>;
376 currently it is simply the command name but in future the context might
377 have more complicated structure.
379 =cut
381 sub command_close_pipe {
382 my ($self, $fh, $ctx) = _maybe_self(@_);
383 $ctx ||= '<unknown>';
384 _cmd_close($fh, $ctx);
387 =item command_bidi_pipe ( COMMAND [, ARGUMENTS... ] )
389 Execute the given C<COMMAND> in the same way as command_output_pipe()
390 does but return both an input pipe filehandle and an output pipe filehandle.
392 The function will return return C<($pid, $pipe_in, $pipe_out, $ctx)>.
393 See C<command_close_bidi_pipe()> for details.
395 =cut
397 sub command_bidi_pipe {
398 my ($pid, $in, $out);
399 my ($self) = _maybe_self(@_);
400 local %ENV = %ENV;
401 my $cwd_save = undef;
402 if ($self) {
403 shift;
404 $cwd_save = cwd();
405 _setup_git_cmd_env($self);
407 $pid = open2($in, $out, 'git', @_);
408 chdir($cwd_save) if $cwd_save;
409 return ($pid, $in, $out, join(' ', @_));
412 =item command_close_bidi_pipe ( PID, PIPE_IN, PIPE_OUT [, CTX] )
414 Close the C<PIPE_IN> and C<PIPE_OUT> as returned from C<command_bidi_pipe()>,
415 checking whether the command finished successfully. The optional C<CTX>
416 argument is required if you want to see the command name in the error message,
417 and it is the fourth value returned by C<command_bidi_pipe()>. The call idiom
420 my ($pid, $in, $out, $ctx) = $r->command_bidi_pipe('cat-file --batch-check');
421 print "000000000\n" $out;
422 while (<$in>) { ... }
423 $r->command_close_bidi_pipe($pid, $in, $out, $ctx);
425 Note that you should not rely on whatever actually is in C<CTX>;
426 currently it is simply the command name but in future the context might
427 have more complicated structure.
429 =cut
431 sub command_close_bidi_pipe {
432 local $?;
433 my ($pid, $in, $out, $ctx) = @_;
434 foreach my $fh ($in, $out) {
435 unless (close $fh) {
436 if ($!) {
437 carp "error closing pipe: $!";
438 } elsif ($? >> 8) {
439 throw Git::Error::Command($ctx, $? >>8);
444 waitpid $pid, 0;
446 if ($? >> 8) {
447 throw Git::Error::Command($ctx, $? >>8);
452 =item command_noisy ( COMMAND [, ARGUMENTS... ] )
454 Execute the given C<COMMAND> in the same way as command() does but do not
455 capture the command output - the standard output is not redirected and goes
456 to the standard output of the caller application.
458 While the method is called command_noisy(), you might want to as well use
459 it for the most silent Git commands which you know will never pollute your
460 stdout but you want to avoid the overhead of the pipe setup when calling them.
462 The function returns only after the command has finished running.
464 =cut
466 sub command_noisy {
467 my ($self, $cmd, @args) = _maybe_self(@_);
468 _check_valid_cmd($cmd);
470 my $pid = fork;
471 if (not defined $pid) {
472 throw Error::Simple("fork failed: $!");
473 } elsif ($pid == 0) {
474 _cmd_exec($self, $cmd, @args);
476 if (waitpid($pid, 0) > 0 and $?>>8 != 0) {
477 throw Git::Error::Command(join(' ', $cmd, @args), $? >> 8);
482 =item version ()
484 Return the Git version in use.
486 =cut
488 sub version {
489 my $verstr = command_oneline('--version');
490 $verstr =~ s/^git version //;
491 $verstr;
495 =item exec_path ()
497 Return path to the Git sub-command executables (the same as
498 C<git --exec-path>). Useful mostly only internally.
500 =cut
502 sub exec_path { command_oneline('--exec-path') }
505 =item html_path ()
507 Return path to the Git html documentation (the same as
508 C<git --html-path>). Useful mostly only internally.
510 =cut
512 sub html_path { command_oneline('--html-path') }
515 =item repo_path ()
517 Return path to the git repository. Must be called on a repository instance.
519 =cut
521 sub repo_path { $_[0]->{opts}->{Repository} }
524 =item wc_path ()
526 Return path to the working copy. Must be called on a repository instance.
528 =cut
530 sub wc_path { $_[0]->{opts}->{WorkingCopy} }
533 =item wc_subdir ()
535 Return path to the subdirectory inside of a working copy. Must be called
536 on a repository instance.
538 =cut
540 sub wc_subdir { $_[0]->{opts}->{WorkingSubdir} ||= '' }
543 =item wc_chdir ( SUBDIR )
545 Change the working copy subdirectory to work within. The C<SUBDIR> is
546 relative to the working copy root directory (not the current subdirectory).
547 Must be called on a repository instance attached to a working copy
548 and the directory must exist.
550 =cut
552 sub wc_chdir {
553 my ($self, $subdir) = @_;
554 $self->wc_path()
555 or throw Error::Simple("bare repository");
557 -d $self->wc_path().'/'.$subdir
558 or throw Error::Simple("subdir not found: $subdir $!");
559 # Of course we will not "hold" the subdirectory so anyone
560 # can delete it now and we will never know. But at least we tried.
562 $self->{opts}->{WorkingSubdir} = $subdir;
566 =item config ( VARIABLE )
568 Retrieve the configuration C<VARIABLE> in the same manner as C<config>
569 does. In scalar context requires the variable to be set only one time
570 (exception is thrown otherwise), in array context returns allows the
571 variable to be set multiple times and returns all the values.
573 This currently wraps command('config') so it is not so fast.
575 =cut
577 sub config {
578 my ($self, $var) = _maybe_self(@_);
580 try {
581 my @cmd = ('config');
582 unshift @cmd, $self if $self;
583 if (wantarray) {
584 return command(@cmd, '--get-all', $var);
585 } else {
586 return command_oneline(@cmd, '--get', $var);
588 } catch Git::Error::Command with {
589 my $E = shift;
590 if ($E->value() == 1) {
591 # Key not found.
592 return;
593 } else {
594 throw $E;
600 =item config_bool ( VARIABLE )
602 Retrieve the bool configuration C<VARIABLE>. The return value
603 is usable as a boolean in perl (and C<undef> if it's not defined,
604 of course).
606 This currently wraps command('config') so it is not so fast.
608 =cut
610 sub config_bool {
611 my ($self, $var) = _maybe_self(@_);
613 try {
614 my @cmd = ('config', '--bool', '--get', $var);
615 unshift @cmd, $self if $self;
616 my $val = command_oneline(@cmd);
617 return undef unless defined $val;
618 return $val eq 'true';
619 } catch Git::Error::Command with {
620 my $E = shift;
621 if ($E->value() == 1) {
622 # Key not found.
623 return undef;
624 } else {
625 throw $E;
630 =item config_int ( VARIABLE )
632 Retrieve the integer configuration C<VARIABLE>. The return value
633 is simple decimal number. An optional value suffix of 'k', 'm',
634 or 'g' in the config file will cause the value to be multiplied
635 by 1024, 1048576 (1024^2), or 1073741824 (1024^3) prior to output.
636 It would return C<undef> if configuration variable is not defined,
638 This currently wraps command('config') so it is not so fast.
640 =cut
642 sub config_int {
643 my ($self, $var) = _maybe_self(@_);
645 try {
646 my @cmd = ('config', '--int', '--get', $var);
647 unshift @cmd, $self if $self;
648 return command_oneline(@cmd);
649 } catch Git::Error::Command with {
650 my $E = shift;
651 if ($E->value() == 1) {
652 # Key not found.
653 return undef;
654 } else {
655 throw $E;
660 =item get_colorbool ( NAME )
662 Finds if color should be used for NAMEd operation from the configuration,
663 and returns boolean (true for "use color", false for "do not use color").
665 =cut
667 sub get_colorbool {
668 my ($self, $var) = @_;
669 my $stdout_to_tty = (-t STDOUT) ? "true" : "false";
670 my $use_color = $self->command_oneline('config', '--get-colorbool',
671 $var, $stdout_to_tty);
672 return ($use_color eq 'true');
675 =item get_color ( SLOT, COLOR )
677 Finds color for SLOT from the configuration, while defaulting to COLOR,
678 and returns the ANSI color escape sequence:
680 print $repo->get_color("color.interactive.prompt", "underline blue white");
681 print "some text";
682 print $repo->get_color("", "normal");
684 =cut
686 sub get_color {
687 my ($self, $slot, $default) = @_;
688 my $color = $self->command_oneline('config', '--get-color', $slot, $default);
689 if (!defined $color) {
690 $color = "";
692 return $color;
695 =item remote_refs ( REPOSITORY [, GROUPS [, REFGLOBS ] ] )
697 This function returns a hashref of refs stored in a given remote repository.
698 The hash is in the format C<refname =\> hash>. For tags, the C<refname> entry
699 contains the tag object while a C<refname^{}> entry gives the tagged objects.
701 C<REPOSITORY> has the same meaning as the appropriate C<git-ls-remote>
702 argument; either an URL or a remote name (if called on a repository instance).
703 C<GROUPS> is an optional arrayref that can contain 'tags' to return all the
704 tags and/or 'heads' to return all the heads. C<REFGLOB> is an optional array
705 of strings containing a shell-like glob to further limit the refs returned in
706 the hash; the meaning is again the same as the appropriate C<git-ls-remote>
707 argument.
709 This function may or may not be called on a repository instance. In the former
710 case, remote names as defined in the repository are recognized as repository
711 specifiers.
713 =cut
715 sub remote_refs {
716 my ($self, $repo, $groups, $refglobs) = _maybe_self(@_);
717 my @args;
718 if (ref $groups eq 'ARRAY') {
719 foreach (@$groups) {
720 if ($_ eq 'heads') {
721 push (@args, '--heads');
722 } elsif ($_ eq 'tags') {
723 push (@args, '--tags');
724 } else {
725 # Ignore unknown groups for future
726 # compatibility
730 push (@args, $repo);
731 if (ref $refglobs eq 'ARRAY') {
732 push (@args, @$refglobs);
735 my @self = $self ? ($self) : (); # Ultra trickery
736 my ($fh, $ctx) = Git::command_output_pipe(@self, 'ls-remote', @args);
737 my %refs;
738 while (<$fh>) {
739 chomp;
740 my ($hash, $ref) = split(/\t/, $_, 2);
741 $refs{$ref} = $hash;
743 Git::command_close_pipe(@self, $fh, $ctx);
744 return \%refs;
748 =item ident ( TYPE | IDENTSTR )
750 =item ident_person ( TYPE | IDENTSTR | IDENTARRAY )
752 This suite of functions retrieves and parses ident information, as stored
753 in the commit and tag objects or produced by C<var GIT_type_IDENT> (thus
754 C<TYPE> can be either I<author> or I<committer>; case is insignificant).
756 The C<ident> method retrieves the ident information from C<git var>
757 and either returns it as a scalar string or as an array with the fields parsed.
758 Alternatively, it can take a prepared ident string (e.g. from the commit
759 object) and just parse it.
761 C<ident_person> returns the person part of the ident - name and email;
762 it can take the same arguments as C<ident> or the array returned by C<ident>.
764 The synopsis is like:
766 my ($name, $email, $time_tz) = ident('author');
767 "$name <$email>" eq ident_person('author');
768 "$name <$email>" eq ident_person($name);
769 $time_tz =~ /^\d+ [+-]\d{4}$/;
771 =cut
773 sub ident {
774 my ($self, $type) = _maybe_self(@_);
775 my $identstr;
776 if (lc $type eq lc 'committer' or lc $type eq lc 'author') {
777 my @cmd = ('var', 'GIT_'.uc($type).'_IDENT');
778 unshift @cmd, $self if $self;
779 $identstr = command_oneline(@cmd);
780 } else {
781 $identstr = $type;
783 if (wantarray) {
784 return $identstr =~ /^(.*) <(.*)> (\d+ [+-]\d{4})$/;
785 } else {
786 return $identstr;
790 sub ident_person {
791 my ($self, @ident) = _maybe_self(@_);
792 $#ident == 0 and @ident = $self ? $self->ident($ident[0]) : ident($ident[0]);
793 return "$ident[0] <$ident[1]>";
797 =item hash_object ( TYPE, FILENAME )
799 Compute the SHA1 object id of the given C<FILENAME> considering it is
800 of the C<TYPE> object type (C<blob>, C<commit>, C<tree>).
802 The method can be called without any instance or on a specified Git repository,
803 it makes zero difference.
805 The function returns the SHA1 hash.
807 =cut
809 # TODO: Support for passing FILEHANDLE instead of FILENAME
810 sub hash_object {
811 my ($self, $type, $file) = _maybe_self(@_);
812 command_oneline('hash-object', '-t', $type, $file);
816 =item hash_and_insert_object ( FILENAME )
818 Compute the SHA1 object id of the given C<FILENAME> and add the object to the
819 object database.
821 The function returns the SHA1 hash.
823 =cut
825 # TODO: Support for passing FILEHANDLE instead of FILENAME
826 sub hash_and_insert_object {
827 my ($self, $filename) = @_;
829 carp "Bad filename \"$filename\"" if $filename =~ /[\r\n]/;
831 $self->_open_hash_and_insert_object_if_needed();
832 my ($in, $out) = ($self->{hash_object_in}, $self->{hash_object_out});
834 unless (print $out $filename, "\n") {
835 $self->_close_hash_and_insert_object();
836 throw Error::Simple("out pipe went bad");
839 chomp(my $hash = <$in>);
840 unless (defined($hash)) {
841 $self->_close_hash_and_insert_object();
842 throw Error::Simple("in pipe went bad");
845 return $hash;
848 sub _open_hash_and_insert_object_if_needed {
849 my ($self) = @_;
851 return if defined($self->{hash_object_pid});
853 ($self->{hash_object_pid}, $self->{hash_object_in},
854 $self->{hash_object_out}, $self->{hash_object_ctx}) =
855 $self->command_bidi_pipe(qw(hash-object -w --stdin-paths --no-filters));
858 sub _close_hash_and_insert_object {
859 my ($self) = @_;
861 return unless defined($self->{hash_object_pid});
863 my @vars = map { 'hash_object_' . $_ } qw(pid in out ctx);
865 command_close_bidi_pipe(@$self{@vars});
866 delete @$self{@vars};
869 =item cat_blob ( SHA1, FILEHANDLE )
871 Prints the contents of the blob identified by C<SHA1> to C<FILEHANDLE> and
872 returns the number of bytes printed.
874 =cut
876 sub cat_blob {
877 my ($self, $sha1, $fh) = @_;
879 $self->_open_cat_blob_if_needed();
880 my ($in, $out) = ($self->{cat_blob_in}, $self->{cat_blob_out});
882 unless (print $out $sha1, "\n") {
883 $self->_close_cat_blob();
884 throw Error::Simple("out pipe went bad");
887 my $description = <$in>;
888 if ($description =~ / missing$/) {
889 carp "$sha1 doesn't exist in the repository";
890 return -1;
893 if ($description !~ /^[0-9a-fA-F]{40} \S+ (\d+)$/) {
894 carp "Unexpected result returned from git cat-file";
895 return -1;
898 my $size = $1;
899 my $bytesRead = 0;
901 while (1) {
902 my $blob;
903 my $bytesLeft = $size - $bytesRead;
904 last unless $bytesLeft;
906 my $bytesToRead = $bytesLeft < 1024 ? $bytesLeft : 1024;
907 my $read = read($in, $blob, $bytesToRead);
908 unless (defined($read)) {
909 $self->_close_cat_blob();
910 throw Error::Simple("in pipe went bad");
913 $bytesRead += $read;
915 unless (print $fh $blob) {
916 $self->_close_cat_blob();
917 throw Error::Simple("couldn't write to passed in filehandle");
921 # Skip past the trailing newline.
922 my $newline;
923 my $read = read($in, $newline, 1);
924 unless (defined($read)) {
925 $self->_close_cat_blob();
926 throw Error::Simple("in pipe went bad");
928 unless ($read == 1 && $newline eq "\n") {
929 $self->_close_cat_blob();
930 throw Error::Simple("didn't find newline after blob");
933 return $size;
936 sub _open_cat_blob_if_needed {
937 my ($self) = @_;
939 return if defined($self->{cat_blob_pid});
941 ($self->{cat_blob_pid}, $self->{cat_blob_in},
942 $self->{cat_blob_out}, $self->{cat_blob_ctx}) =
943 $self->command_bidi_pipe(qw(cat-file --batch));
946 sub _close_cat_blob {
947 my ($self) = @_;
949 return unless defined($self->{cat_blob_pid});
951 my @vars = map { 'cat_blob_' . $_ } qw(pid in out ctx);
953 command_close_bidi_pipe(@$self{@vars});
954 delete @$self{@vars};
958 { # %TEMP_* Lexical Context
960 my (%TEMP_FILEMAP, %TEMP_FILES);
962 =item temp_acquire ( NAME )
964 Attempts to retreive the temporary file mapped to the string C<NAME>. If an
965 associated temp file has not been created this session or was closed, it is
966 created, cached, and set for autoflush and binmode.
968 Internally locks the file mapped to C<NAME>. This lock must be released with
969 C<temp_release()> when the temp file is no longer needed. Subsequent attempts
970 to retrieve temporary files mapped to the same C<NAME> while still locked will
971 cause an error. This locking mechanism provides a weak guarantee and is not
972 threadsafe. It does provide some error checking to help prevent temp file refs
973 writing over one another.
975 In general, the L<File::Handle> returned should not be closed by consumers as
976 it defeats the purpose of this caching mechanism. If you need to close the temp
977 file handle, then you should use L<File::Temp> or another temp file faculty
978 directly. If a handle is closed and then requested again, then a warning will
979 issue.
981 =cut
983 sub temp_acquire {
984 my $temp_fd = _temp_cache(@_);
986 $TEMP_FILES{$temp_fd}{locked} = 1;
987 $temp_fd;
990 =item temp_release ( NAME )
992 =item temp_release ( FILEHANDLE )
994 Releases a lock acquired through C<temp_acquire()>. Can be called either with
995 the C<NAME> mapping used when acquiring the temp file or with the C<FILEHANDLE>
996 referencing a locked temp file.
998 Warns if an attempt is made to release a file that is not locked.
1000 The temp file will be truncated before being released. This can help to reduce
1001 disk I/O where the system is smart enough to detect the truncation while data
1002 is in the output buffers. Beware that after the temp file is released and
1003 truncated, any operations on that file may fail miserably until it is
1004 re-acquired. All contents are lost between each release and acquire mapped to
1005 the same string.
1007 =cut
1009 sub temp_release {
1010 my ($self, $temp_fd, $trunc) = _maybe_self(@_);
1012 if (exists $TEMP_FILEMAP{$temp_fd}) {
1013 $temp_fd = $TEMP_FILES{$temp_fd};
1015 unless ($TEMP_FILES{$temp_fd}{locked}) {
1016 carp "Attempt to release temp file '",
1017 $temp_fd, "' that has not been locked";
1019 temp_reset($temp_fd) if $trunc and $temp_fd->opened;
1021 $TEMP_FILES{$temp_fd}{locked} = 0;
1022 undef;
1025 sub _temp_cache {
1026 my ($self, $name) = _maybe_self(@_);
1028 _verify_require();
1030 my $temp_fd = \$TEMP_FILEMAP{$name};
1031 if (defined $$temp_fd and $$temp_fd->opened) {
1032 if ($TEMP_FILES{$$temp_fd}{locked}) {
1033 throw Error::Simple("Temp file with moniker '" .
1034 $name . "' already in use");
1036 } else {
1037 if (defined $$temp_fd) {
1038 # then we're here because of a closed handle.
1039 carp "Temp file '", $name,
1040 "' was closed. Opening replacement.";
1042 my $fname;
1044 my $tmpdir;
1045 if (defined $self) {
1046 $tmpdir = $self->repo_path();
1049 ($$temp_fd, $fname) = File::Temp->tempfile(
1050 'Git_XXXXXX', UNLINK => 1, DIR => $tmpdir,
1051 ) or throw Error::Simple("couldn't open new temp file");
1053 $$temp_fd->autoflush;
1054 binmode $$temp_fd;
1055 $TEMP_FILES{$$temp_fd}{fname} = $fname;
1057 $$temp_fd;
1060 sub _verify_require {
1061 eval { require File::Temp; require File::Spec; };
1062 $@ and throw Error::Simple($@);
1065 =item temp_reset ( FILEHANDLE )
1067 Truncates and resets the position of the C<FILEHANDLE>.
1069 =cut
1071 sub temp_reset {
1072 my ($self, $temp_fd) = _maybe_self(@_);
1074 truncate $temp_fd, 0
1075 or throw Error::Simple("couldn't truncate file");
1076 sysseek($temp_fd, 0, SEEK_SET) and seek($temp_fd, 0, SEEK_SET)
1077 or throw Error::Simple("couldn't seek to beginning of file");
1078 sysseek($temp_fd, 0, SEEK_CUR) == 0 and tell($temp_fd) == 0
1079 or throw Error::Simple("expected file position to be reset");
1082 =item temp_path ( NAME )
1084 =item temp_path ( FILEHANDLE )
1086 Returns the filename associated with the given tempfile.
1088 =cut
1090 sub temp_path {
1091 my ($self, $temp_fd) = _maybe_self(@_);
1093 if (exists $TEMP_FILEMAP{$temp_fd}) {
1094 $temp_fd = $TEMP_FILEMAP{$temp_fd};
1096 $TEMP_FILES{$temp_fd}{fname};
1099 sub END {
1100 unlink values %TEMP_FILEMAP if %TEMP_FILEMAP;
1103 } # %TEMP_* Lexical Context
1105 =back
1107 =head1 ERROR HANDLING
1109 All functions are supposed to throw Perl exceptions in case of errors.
1110 See the L<Error> module on how to catch those. Most exceptions are mere
1111 L<Error::Simple> instances.
1113 However, the C<command()>, C<command_oneline()> and C<command_noisy()>
1114 functions suite can throw C<Git::Error::Command> exceptions as well: those are
1115 thrown when the external command returns an error code and contain the error
1116 code as well as access to the captured command's output. The exception class
1117 provides the usual C<stringify> and C<value> (command's exit code) methods and
1118 in addition also a C<cmd_output> method that returns either an array or a
1119 string with the captured command output (depending on the original function
1120 call context; C<command_noisy()> returns C<undef>) and $<cmdline> which
1121 returns the command and its arguments (but without proper quoting).
1123 Note that the C<command_*_pipe()> functions cannot throw this exception since
1124 it has no idea whether the command failed or not. You will only find out
1125 at the time you C<close> the pipe; if you want to have that automated,
1126 use C<command_close_pipe()>, which can throw the exception.
1128 =cut
1131 package Git::Error::Command;
1133 @Git::Error::Command::ISA = qw(Error);
1135 sub new {
1136 my $self = shift;
1137 my $cmdline = '' . shift;
1138 my $value = 0 + shift;
1139 my $outputref = shift;
1140 my(@args) = ();
1142 local $Error::Depth = $Error::Depth + 1;
1144 push(@args, '-cmdline', $cmdline);
1145 push(@args, '-value', $value);
1146 push(@args, '-outputref', $outputref);
1148 $self->SUPER::new(-text => 'command returned error', @args);
1151 sub stringify {
1152 my $self = shift;
1153 my $text = $self->SUPER::stringify;
1154 $self->cmdline() . ': ' . $text . ': ' . $self->value() . "\n";
1157 sub cmdline {
1158 my $self = shift;
1159 $self->{'-cmdline'};
1162 sub cmd_output {
1163 my $self = shift;
1164 my $ref = $self->{'-outputref'};
1165 defined $ref or undef;
1166 if (ref $ref eq 'ARRAY') {
1167 return @$ref;
1168 } else { # SCALAR
1169 return $$ref;
1174 =over 4
1176 =item git_cmd_try { CODE } ERRMSG
1178 This magical statement will automatically catch any C<Git::Error::Command>
1179 exceptions thrown by C<CODE> and make your program die with C<ERRMSG>
1180 on its lips; the message will have %s substituted for the command line
1181 and %d for the exit status. This statement is useful mostly for producing
1182 more user-friendly error messages.
1184 In case of no exception caught the statement returns C<CODE>'s return value.
1186 Note that this is the only auto-exported function.
1188 =cut
1190 sub git_cmd_try(&$) {
1191 my ($code, $errmsg) = @_;
1192 my @result;
1193 my $err;
1194 my $array = wantarray;
1195 try {
1196 if ($array) {
1197 @result = &$code;
1198 } else {
1199 $result[0] = &$code;
1201 } catch Git::Error::Command with {
1202 my $E = shift;
1203 $err = $errmsg;
1204 $err =~ s/\%s/$E->cmdline()/ge;
1205 $err =~ s/\%d/$E->value()/ge;
1206 # We can't croak here since Error.pm would mangle
1207 # that to Error::Simple.
1209 $err and croak $err;
1210 return $array ? @result : $result[0];
1214 =back
1216 =head1 COPYRIGHT
1218 Copyright 2006 by Petr Baudis E<lt>pasky@suse.czE<gt>.
1220 This module is free software; it may be used, copied, modified
1221 and distributed under the terms of the GNU General Public Licence,
1222 either version 2, or (at your option) any later version.
1224 =cut
1227 # Take raw method argument list and return ($obj, @args) in case
1228 # the method was called upon an instance and (undef, @args) if
1229 # it was called directly.
1230 sub _maybe_self {
1231 UNIVERSAL::isa($_[0], 'Git') ? @_ : (undef, @_);
1234 # Check if the command id is something reasonable.
1235 sub _check_valid_cmd {
1236 my ($cmd) = @_;
1237 $cmd =~ /^[a-z0-9A-Z_-]+$/ or throw Error::Simple("bad command: $cmd");
1240 # Common backend for the pipe creators.
1241 sub _command_common_pipe {
1242 my $direction = shift;
1243 my ($self, @p) = _maybe_self(@_);
1244 my (%opts, $cmd, @args);
1245 if (ref $p[0]) {
1246 ($cmd, @args) = @{shift @p};
1247 %opts = ref $p[0] ? %{$p[0]} : @p;
1248 } else {
1249 ($cmd, @args) = @p;
1251 _check_valid_cmd($cmd);
1253 my $fh;
1254 if ($^O eq 'MSWin32') {
1255 # ActiveState Perl
1256 #defined $opts{STDERR} and
1257 # warn 'ignoring STDERR option - running w/ ActiveState';
1258 $direction eq '-|' or
1259 die 'input pipe for ActiveState not implemented';
1260 # the strange construction with *ACPIPE is just to
1261 # explain the tie below that we want to bind to
1262 # a handle class, not scalar. It is not known if
1263 # it is something specific to ActiveState Perl or
1264 # just a Perl quirk.
1265 tie (*ACPIPE, 'Git::activestate_pipe', $cmd, @args);
1266 $fh = *ACPIPE;
1268 } else {
1269 my $pid = open($fh, $direction);
1270 if (not defined $pid) {
1271 throw Error::Simple("open failed: $!");
1272 } elsif ($pid == 0) {
1273 if (defined $opts{STDERR}) {
1274 close STDERR;
1276 if ($opts{STDERR}) {
1277 open (STDERR, '>&', $opts{STDERR})
1278 or die "dup failed: $!";
1280 _cmd_exec($self, $cmd, @args);
1283 return wantarray ? ($fh, join(' ', $cmd, @args)) : $fh;
1286 # When already in the subprocess, set up the appropriate state
1287 # for the given repository and execute the git command.
1288 sub _cmd_exec {
1289 my ($self, @args) = @_;
1290 _setup_git_cmd_env($self);
1291 _execv_git_cmd(@args);
1292 die qq[exec "@args" failed: $!];
1295 # set up the appropriate state for git command
1296 sub _setup_git_cmd_env {
1297 my $self = shift;
1298 if ($self) {
1299 $self->repo_path() and $ENV{'GIT_DIR'} = $self->repo_path();
1300 $self->repo_path() and $self->wc_path()
1301 and $ENV{'GIT_WORK_TREE'} = $self->wc_path();
1302 $self->wc_path() and chdir($self->wc_path());
1303 $self->wc_subdir() and chdir($self->wc_subdir());
1307 # Execute the given Git command ($_[0]) with arguments ($_[1..])
1308 # by searching for it at proper places.
1309 sub _execv_git_cmd { exec('git', @_); }
1311 # Close pipe to a subprocess.
1312 sub _cmd_close {
1313 my ($fh, $ctx) = @_;
1314 if (not close $fh) {
1315 if ($!) {
1316 # It's just close, no point in fatalities
1317 carp "error closing pipe: $!";
1318 } elsif ($? >> 8) {
1319 # The caller should pepper this.
1320 throw Git::Error::Command($ctx, $? >> 8);
1322 # else we might e.g. closed a live stream; the command
1323 # dying of SIGPIPE would drive us here.
1328 sub DESTROY {
1329 my ($self) = @_;
1330 $self->_close_hash_and_insert_object();
1331 $self->_close_cat_blob();
1335 # Pipe implementation for ActiveState Perl.
1337 package Git::activestate_pipe;
1338 use strict;
1340 sub TIEHANDLE {
1341 my ($class, @params) = @_;
1342 # FIXME: This is probably horrible idea and the thing will explode
1343 # at the moment you give it arguments that require some quoting,
1344 # but I have no ActiveState clue... --pasky
1345 # Let's just hope ActiveState Perl does at least the quoting
1346 # correctly.
1347 my @data = qx{git @params};
1348 bless { i => 0, data => \@data }, $class;
1351 sub READLINE {
1352 my $self = shift;
1353 if ($self->{i} >= scalar @{$self->{data}}) {
1354 return undef;
1356 my $i = $self->{i};
1357 if (wantarray) {
1358 $self->{i} = $#{$self->{'data'}} + 1;
1359 return splice(@{$self->{'data'}}, $i);
1361 $self->{i} = $i + 1;
1362 return $self->{'data'}->[ $i ];
1365 sub CLOSE {
1366 my $self = shift;
1367 delete $self->{data};
1368 delete $self->{i};
1371 sub EOF {
1372 my $self = shift;
1373 return ($self->{i} >= scalar @{$self->{data}});
1377 1; # Famous last words