Merge commit 'junio/next' into next
[git/platforms/storm.git] / perl / Git.pm
blob6ba8ee5c0d209704fdf1c9d58f63579d3a7e0836
1 =head1 NAME
3 Git - Perl interface to the Git version control system
5 =cut
8 package Git;
10 use strict;
13 BEGIN {
15 our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
17 # Totally unstable API.
18 $VERSION = '0.01';
21 =head1 SYNOPSIS
23 use Git;
25 my $version = Git::command_oneline('version');
27 git_cmd_try { Git::command_noisy('update-server-info') }
28 '%s failed w/ code %d';
30 my $repo = Git->repository (Directory => '/srv/git/cogito.git');
33 my @revs = $repo->command('rev-list', '--since=last monday', '--all');
35 my ($fh, $c) = $repo->command_output_pipe('rev-list', '--since=last monday', '--all');
36 my $lastrev = <$fh>; chomp $lastrev;
37 $repo->command_close_pipe($fh, $c);
39 my $lastrev = $repo->command_oneline( [ 'rev-list', '--all' ],
40 STDERR => 0 );
42 my $sha1 = $repo->hash_and_insert_object('file.txt');
43 my $tempfile = tempfile();
44 my $size = $repo->cat_blob($sha1, $tempfile);
46 =cut
49 require Exporter;
51 @ISA = qw(Exporter);
53 @EXPORT = qw(git_cmd_try);
55 # Methods which can be called as standalone functions as well:
56 @EXPORT_OK = qw(command command_oneline command_noisy
57 command_output_pipe command_input_pipe command_close_pipe
58 command_bidi_pipe command_close_bidi_pipe
59 version exec_path hash_object git_cmd_try);
62 =head1 DESCRIPTION
64 This module provides Perl scripts easy way to interface the Git version control
65 system. The modules have an easy and well-tested way to call arbitrary Git
66 commands; in the future, the interface will also provide specialized methods
67 for doing easily operations which are not totally trivial to do over
68 the generic command interface.
70 While some commands can be executed outside of any context (e.g. 'version'
71 or 'init'), most operations require a repository context, which in practice
72 means getting an instance of the Git object using the repository() constructor.
73 (In the future, we will also get a new_repository() constructor.) All commands
74 called as methods of the object are then executed in the context of the
75 repository.
77 Part of the "repository state" is also information about path to the attached
78 working copy (unless you work with a bare repository). You can also navigate
79 inside of the working copy using the C<wc_chdir()> method. (Note that
80 the repository object is self-contained and will not change working directory
81 of your process.)
83 TODO: In the future, we might also do
85 my $remoterepo = $repo->remote_repository (Name => 'cogito', Branch => 'master');
86 $remoterepo ||= Git->remote_repository ('http://git.or.cz/cogito.git/');
87 my @refs = $remoterepo->refs();
89 Currently, the module merely wraps calls to external Git tools. In the future,
90 it will provide a much faster way to interact with Git by linking directly
91 to libgit. This should be completely opaque to the user, though (performance
92 increate nonwithstanding).
94 =cut
97 use Carp qw(carp croak); # but croak is bad - throw instead
98 use Error qw(:try);
99 use Cwd qw(abs_path);
100 use IPC::Open2 qw(open2);
105 =head1 CONSTRUCTORS
107 =over 4
109 =item repository ( OPTIONS )
111 =item repository ( DIRECTORY )
113 =item repository ()
115 Construct a new repository object.
116 C<OPTIONS> are passed in a hash like fashion, using key and value pairs.
117 Possible options are:
119 B<Repository> - Path to the Git repository.
121 B<WorkingCopy> - Path to the associated working copy; not strictly required
122 as many commands will happily crunch on a bare repository.
124 B<WorkingSubdir> - Subdirectory in the working copy to work inside.
125 Just left undefined if you do not want to limit the scope of operations.
127 B<Directory> - Path to the Git working directory in its usual setup.
128 The C<.git> directory is searched in the directory and all the parent
129 directories; if found, C<WorkingCopy> is set to the directory containing
130 it and C<Repository> to the C<.git> directory itself. If no C<.git>
131 directory was found, the C<Directory> is assumed to be a bare repository,
132 C<Repository> is set to point at it and C<WorkingCopy> is left undefined.
133 If the C<$GIT_DIR> environment variable is set, things behave as expected
134 as well.
136 You should not use both C<Directory> and either of C<Repository> and
137 C<WorkingCopy> - the results of that are undefined.
139 Alternatively, a directory path may be passed as a single scalar argument
140 to the constructor; it is equivalent to setting only the C<Directory> option
141 field.
143 Calling the constructor with no options whatsoever is equivalent to
144 calling it with C<< Directory => '.' >>. In general, if you are building
145 a standard porcelain command, simply doing C<< Git->repository() >> should
146 do the right thing and setup the object to reflect exactly where the user
147 is right now.
149 =cut
151 sub repository {
152 my $class = shift;
153 my @args = @_;
154 my %opts = ();
155 my $self;
157 if (defined $args[0]) {
158 if ($#args % 2 != 1) {
159 # Not a hash.
160 $#args == 0 or throw Error::Simple("bad usage");
161 %opts = ( Directory => $args[0] );
162 } else {
163 %opts = @args;
167 if (not defined $opts{Repository} and not defined $opts{WorkingCopy}) {
168 $opts{Directory} ||= '.';
171 if ($opts{Directory}) {
172 -d $opts{Directory} or throw Error::Simple("Directory not found: $!");
174 my $search = Git->repository(WorkingCopy => $opts{Directory});
175 my $dir;
176 try {
177 $dir = $search->command_oneline(['rev-parse', '--git-dir'],
178 STDERR => 0);
179 } catch Git::Error::Command with {
180 $dir = undef;
183 if ($dir) {
184 $dir =~ m#^/# or $dir = $opts{Directory} . '/' . $dir;
185 $opts{Repository} = $dir;
187 # If --git-dir went ok, this shouldn't die either.
188 my $prefix = $search->command_oneline('rev-parse', '--show-prefix');
189 $dir = abs_path($opts{Directory}) . '/';
190 if ($prefix) {
191 if (substr($dir, -length($prefix)) ne $prefix) {
192 throw Error::Simple("rev-parse confused me - $dir does not have trailing $prefix");
194 substr($dir, -length($prefix)) = '';
196 $opts{WorkingCopy} = $dir;
197 $opts{WorkingSubdir} = $prefix;
199 } else {
200 # A bare repository? Let's see...
201 $dir = $opts{Directory};
203 unless (-d "$dir/refs" and -d "$dir/objects" and -e "$dir/HEAD") {
204 # Mimick git-rev-parse --git-dir error message:
205 throw Error::Simple('fatal: Not a git repository');
207 my $search = Git->repository(Repository => $dir);
208 try {
209 $search->command('symbolic-ref', 'HEAD');
210 } catch Git::Error::Command with {
211 # Mimick git-rev-parse --git-dir error message:
212 throw Error::Simple('fatal: Not a git repository');
215 $opts{Repository} = abs_path($dir);
218 delete $opts{Directory};
221 $self = { opts => \%opts };
222 bless $self, $class;
225 =back
227 =head1 METHODS
229 =over 4
231 =item command ( COMMAND [, ARGUMENTS... ] )
233 =item command ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
235 Execute the given Git C<COMMAND> (specify it without the 'git-'
236 prefix), optionally with the specified extra C<ARGUMENTS>.
238 The second more elaborate form can be used if you want to further adjust
239 the command execution. Currently, only one option is supported:
241 B<STDERR> - How to deal with the command's error output. By default (C<undef>)
242 it is delivered to the caller's C<STDERR>. A false value (0 or '') will cause
243 it to be thrown away. If you want to process it, you can get it in a filehandle
244 you specify, but you must be extremely careful; if the error output is not
245 very short and you want to read it in the same process as where you called
246 C<command()>, you are set up for a nice deadlock!
248 The method can be called without any instance or on a specified Git repository
249 (in that case the command will be run in the repository context).
251 In scalar context, it returns all the command output in a single string
252 (verbatim).
254 In array context, it returns an array containing lines printed to the
255 command's stdout (without trailing newlines).
257 In both cases, the command's stdin and stderr are the same as the caller's.
259 =cut
261 sub command {
262 my ($fh, $ctx) = command_output_pipe(@_);
264 if (not defined wantarray) {
265 # Nothing to pepper the possible exception with.
266 _cmd_close($fh, $ctx);
268 } elsif (not wantarray) {
269 local $/;
270 my $text = <$fh>;
271 try {
272 _cmd_close($fh, $ctx);
273 } catch Git::Error::Command with {
274 # Pepper with the output:
275 my $E = shift;
276 $E->{'-outputref'} = \$text;
277 throw $E;
279 return $text;
281 } else {
282 my @lines = <$fh>;
283 defined and chomp for @lines;
284 try {
285 _cmd_close($fh, $ctx);
286 } catch Git::Error::Command with {
287 my $E = shift;
288 $E->{'-outputref'} = \@lines;
289 throw $E;
291 return @lines;
296 =item command_oneline ( COMMAND [, ARGUMENTS... ] )
298 =item command_oneline ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
300 Execute the given C<COMMAND> in the same way as command()
301 does but always return a scalar string containing the first line
302 of the command's standard output.
304 =cut
306 sub command_oneline {
307 my ($fh, $ctx) = command_output_pipe(@_);
309 my $line = <$fh>;
310 defined $line and chomp $line;
311 try {
312 _cmd_close($fh, $ctx);
313 } catch Git::Error::Command with {
314 # Pepper with the output:
315 my $E = shift;
316 $E->{'-outputref'} = \$line;
317 throw $E;
319 return $line;
323 =item command_output_pipe ( COMMAND [, ARGUMENTS... ] )
325 =item command_output_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
327 Execute the given C<COMMAND> in the same way as command()
328 does but return a pipe filehandle from which the command output can be
329 read.
331 The function can return C<($pipe, $ctx)> in array context.
332 See C<command_close_pipe()> for details.
334 =cut
336 sub command_output_pipe {
337 _command_common_pipe('-|', @_);
341 =item command_input_pipe ( COMMAND [, ARGUMENTS... ] )
343 =item command_input_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
345 Execute the given C<COMMAND> in the same way as command_output_pipe()
346 does but return an input pipe filehandle instead; the command output
347 is not captured.
349 The function can return C<($pipe, $ctx)> in array context.
350 See C<command_close_pipe()> for details.
352 =cut
354 sub command_input_pipe {
355 _command_common_pipe('|-', @_);
359 =item command_close_pipe ( PIPE [, CTX ] )
361 Close the C<PIPE> as returned from C<command_*_pipe()>, checking
362 whether the command finished successfully. The optional C<CTX> argument
363 is required if you want to see the command name in the error message,
364 and it is the second value returned by C<command_*_pipe()> when
365 called in array context. The call idiom is:
367 my ($fh, $ctx) = $r->command_output_pipe('status');
368 while (<$fh>) { ... }
369 $r->command_close_pipe($fh, $ctx);
371 Note that you should not rely on whatever actually is in C<CTX>;
372 currently it is simply the command name but in future the context might
373 have more complicated structure.
375 =cut
377 sub command_close_pipe {
378 my ($self, $fh, $ctx) = _maybe_self(@_);
379 $ctx ||= '<unknown>';
380 _cmd_close($fh, $ctx);
383 =item command_bidi_pipe ( COMMAND [, ARGUMENTS... ] )
385 Execute the given C<COMMAND> in the same way as command_output_pipe()
386 does but return both an input pipe filehandle and an output pipe filehandle.
388 The function will return return C<($pid, $pipe_in, $pipe_out, $ctx)>.
389 See C<command_close_bidi_pipe()> for details.
391 =cut
393 sub command_bidi_pipe {
394 my ($pid, $in, $out);
395 $pid = open2($in, $out, 'git', @_);
396 return ($pid, $in, $out, join(' ', @_));
399 =item command_close_bidi_pipe ( PID, PIPE_IN, PIPE_OUT [, CTX] )
401 Close the C<PIPE_IN> and C<PIPE_OUT> as returned from C<command_bidi_pipe()>,
402 checking whether the command finished successfully. The optional C<CTX>
403 argument is required if you want to see the command name in the error message,
404 and it is the fourth value returned by C<command_bidi_pipe()>. The call idiom
407 my ($pid, $in, $out, $ctx) = $r->command_bidi_pipe('cat-file --batch-check');
408 print "000000000\n" $out;
409 while (<$in>) { ... }
410 $r->command_close_bidi_pipe($pid, $in, $out, $ctx);
412 Note that you should not rely on whatever actually is in C<CTX>;
413 currently it is simply the command name but in future the context might
414 have more complicated structure.
416 =cut
418 sub command_close_bidi_pipe {
419 my ($pid, $in, $out, $ctx) = @_;
420 foreach my $fh ($in, $out) {
421 unless (close $fh) {
422 if ($!) {
423 carp "error closing pipe: $!";
424 } elsif ($? >> 8) {
425 throw Git::Error::Command($ctx, $? >>8);
430 waitpid $pid, 0;
432 if ($? >> 8) {
433 throw Git::Error::Command($ctx, $? >>8);
438 =item command_noisy ( COMMAND [, ARGUMENTS... ] )
440 Execute the given C<COMMAND> in the same way as command() does but do not
441 capture the command output - the standard output is not redirected and goes
442 to the standard output of the caller application.
444 While the method is called command_noisy(), you might want to as well use
445 it for the most silent Git commands which you know will never pollute your
446 stdout but you want to avoid the overhead of the pipe setup when calling them.
448 The function returns only after the command has finished running.
450 =cut
452 sub command_noisy {
453 my ($self, $cmd, @args) = _maybe_self(@_);
454 _check_valid_cmd($cmd);
456 my $pid = fork;
457 if (not defined $pid) {
458 throw Error::Simple("fork failed: $!");
459 } elsif ($pid == 0) {
460 _cmd_exec($self, $cmd, @args);
462 if (waitpid($pid, 0) > 0 and $?>>8 != 0) {
463 throw Git::Error::Command(join(' ', $cmd, @args), $? >> 8);
468 =item version ()
470 Return the Git version in use.
472 =cut
474 sub version {
475 my $verstr = command_oneline('--version');
476 $verstr =~ s/^git version //;
477 $verstr;
481 =item exec_path ()
483 Return path to the Git sub-command executables (the same as
484 C<git --exec-path>). Useful mostly only internally.
486 =cut
488 sub exec_path { command_oneline('--exec-path') }
491 =item repo_path ()
493 Return path to the git repository. Must be called on a repository instance.
495 =cut
497 sub repo_path { $_[0]->{opts}->{Repository} }
500 =item wc_path ()
502 Return path to the working copy. Must be called on a repository instance.
504 =cut
506 sub wc_path { $_[0]->{opts}->{WorkingCopy} }
509 =item wc_subdir ()
511 Return path to the subdirectory inside of a working copy. Must be called
512 on a repository instance.
514 =cut
516 sub wc_subdir { $_[0]->{opts}->{WorkingSubdir} ||= '' }
519 =item wc_chdir ( SUBDIR )
521 Change the working copy subdirectory to work within. The C<SUBDIR> is
522 relative to the working copy root directory (not the current subdirectory).
523 Must be called on a repository instance attached to a working copy
524 and the directory must exist.
526 =cut
528 sub wc_chdir {
529 my ($self, $subdir) = @_;
530 $self->wc_path()
531 or throw Error::Simple("bare repository");
533 -d $self->wc_path().'/'.$subdir
534 or throw Error::Simple("subdir not found: $!");
535 # Of course we will not "hold" the subdirectory so anyone
536 # can delete it now and we will never know. But at least we tried.
538 $self->{opts}->{WorkingSubdir} = $subdir;
542 =item config ( VARIABLE )
544 Retrieve the configuration C<VARIABLE> in the same manner as C<config>
545 does. In scalar context requires the variable to be set only one time
546 (exception is thrown otherwise), in array context returns allows the
547 variable to be set multiple times and returns all the values.
549 This currently wraps command('config') so it is not so fast.
551 =cut
553 sub config {
554 my ($self, $var) = _maybe_self(@_);
556 try {
557 my @cmd = ('config');
558 unshift @cmd, $self if $self;
559 if (wantarray) {
560 return command(@cmd, '--get-all', $var);
561 } else {
562 return command_oneline(@cmd, '--get', $var);
564 } catch Git::Error::Command with {
565 my $E = shift;
566 if ($E->value() == 1) {
567 # Key not found.
568 return undef;
569 } else {
570 throw $E;
576 =item config_bool ( VARIABLE )
578 Retrieve the bool configuration C<VARIABLE>. The return value
579 is usable as a boolean in perl (and C<undef> if it's not defined,
580 of course).
582 This currently wraps command('config') so it is not so fast.
584 =cut
586 sub config_bool {
587 my ($self, $var) = _maybe_self(@_);
589 try {
590 my @cmd = ('config', '--bool', '--get', $var);
591 unshift @cmd, $self if $self;
592 my $val = command_oneline(@cmd);
593 return undef unless defined $val;
594 return $val eq 'true';
595 } catch Git::Error::Command with {
596 my $E = shift;
597 if ($E->value() == 1) {
598 # Key not found.
599 return undef;
600 } else {
601 throw $E;
606 =item config_int ( VARIABLE )
608 Retrieve the integer configuration C<VARIABLE>. The return value
609 is simple decimal number. An optional value suffix of 'k', 'm',
610 or 'g' in the config file will cause the value to be multiplied
611 by 1024, 1048576 (1024^2), or 1073741824 (1024^3) prior to output.
612 It would return C<undef> if configuration variable is not defined,
614 This currently wraps command('config') so it is not so fast.
616 =cut
618 sub config_int {
619 my ($self, $var) = _maybe_self(@_);
621 try {
622 my @cmd = ('config', '--int', '--get', $var);
623 unshift @cmd, $self if $self;
624 return command_oneline(@cmd);
625 } catch Git::Error::Command with {
626 my $E = shift;
627 if ($E->value() == 1) {
628 # Key not found.
629 return undef;
630 } else {
631 throw $E;
636 =item get_colorbool ( NAME )
638 Finds if color should be used for NAMEd operation from the configuration,
639 and returns boolean (true for "use color", false for "do not use color").
641 =cut
643 sub get_colorbool {
644 my ($self, $var) = @_;
645 my $stdout_to_tty = (-t STDOUT) ? "true" : "false";
646 my $use_color = $self->command_oneline('config', '--get-colorbool',
647 $var, $stdout_to_tty);
648 return ($use_color eq 'true');
651 =item get_color ( SLOT, COLOR )
653 Finds color for SLOT from the configuration, while defaulting to COLOR,
654 and returns the ANSI color escape sequence:
656 print $repo->get_color("color.interactive.prompt", "underline blue white");
657 print "some text";
658 print $repo->get_color("", "normal");
660 =cut
662 sub get_color {
663 my ($self, $slot, $default) = @_;
664 my $color = $self->command_oneline('config', '--get-color', $slot, $default);
665 if (!defined $color) {
666 $color = "";
668 return $color;
671 =item ident ( TYPE | IDENTSTR )
673 =item ident_person ( TYPE | IDENTSTR | IDENTARRAY )
675 This suite of functions retrieves and parses ident information, as stored
676 in the commit and tag objects or produced by C<var GIT_type_IDENT> (thus
677 C<TYPE> can be either I<author> or I<committer>; case is insignificant).
679 The C<ident> method retrieves the ident information from C<git-var>
680 and either returns it as a scalar string or as an array with the fields parsed.
681 Alternatively, it can take a prepared ident string (e.g. from the commit
682 object) and just parse it.
684 C<ident_person> returns the person part of the ident - name and email;
685 it can take the same arguments as C<ident> or the array returned by C<ident>.
687 The synopsis is like:
689 my ($name, $email, $time_tz) = ident('author');
690 "$name <$email>" eq ident_person('author');
691 "$name <$email>" eq ident_person($name);
692 $time_tz =~ /^\d+ [+-]\d{4}$/;
694 =cut
696 sub ident {
697 my ($self, $type) = _maybe_self(@_);
698 my $identstr;
699 if (lc $type eq lc 'committer' or lc $type eq lc 'author') {
700 my @cmd = ('var', 'GIT_'.uc($type).'_IDENT');
701 unshift @cmd, $self if $self;
702 $identstr = command_oneline(@cmd);
703 } else {
704 $identstr = $type;
706 if (wantarray) {
707 return $identstr =~ /^(.*) <(.*)> (\d+ [+-]\d{4})$/;
708 } else {
709 return $identstr;
713 sub ident_person {
714 my ($self, @ident) = _maybe_self(@_);
715 $#ident == 0 and @ident = $self ? $self->ident($ident[0]) : ident($ident[0]);
716 return "$ident[0] <$ident[1]>";
720 =item hash_object ( TYPE, FILENAME )
722 Compute the SHA1 object id of the given C<FILENAME> (or data waiting in
723 C<FILEHANDLE>) considering it is of the C<TYPE> object type (C<blob>,
724 C<commit>, C<tree>).
726 The method can be called without any instance or on a specified Git repository,
727 it makes zero difference.
729 The function returns the SHA1 hash.
731 =cut
733 # TODO: Support for passing FILEHANDLE instead of FILENAME
734 sub hash_object {
735 my ($self, $type, $file) = _maybe_self(@_);
736 command_oneline('hash-object', '-t', $type, $file);
740 =item hash_and_insert_object ( FILENAME )
742 Compute the SHA1 object id of the given C<FILENAME> and add the object to the
743 object database.
745 The function returns the SHA1 hash.
747 =cut
749 # TODO: Support for passing FILEHANDLE instead of FILENAME
750 sub hash_and_insert_object {
751 my ($self, $filename) = @_;
753 carp "Bad filename \"$filename\"" if $filename =~ /[\r\n]/;
755 $self->_open_hash_and_insert_object_if_needed();
756 my ($in, $out) = ($self->{hash_object_in}, $self->{hash_object_out});
758 unless (print $out $filename, "\n") {
759 $self->_close_hash_and_insert_object();
760 throw Error::Simple("out pipe went bad");
763 chomp(my $hash = <$in>);
764 unless (defined($hash)) {
765 $self->_close_hash_and_insert_object();
766 throw Error::Simple("in pipe went bad");
769 return $hash;
772 sub _open_hash_and_insert_object_if_needed {
773 my ($self) = @_;
775 return if defined($self->{hash_object_pid});
777 ($self->{hash_object_pid}, $self->{hash_object_in},
778 $self->{hash_object_out}, $self->{hash_object_ctx}) =
779 command_bidi_pipe(qw(hash-object -w --stdin-paths));
782 sub _close_hash_and_insert_object {
783 my ($self) = @_;
785 return unless defined($self->{hash_object_pid});
787 my @vars = map { 'hash_object_' . $_ } qw(pid in out ctx);
789 command_close_bidi_pipe($self->{@vars});
790 delete $self->{@vars};
793 =item cat_blob ( SHA1, FILEHANDLE )
795 Prints the contents of the blob identified by C<SHA1> to C<FILEHANDLE> and
796 returns the number of bytes printed.
798 =cut
800 sub cat_blob {
801 my ($self, $sha1, $fh) = @_;
803 $self->_open_cat_blob_if_needed();
804 my ($in, $out) = ($self->{cat_blob_in}, $self->{cat_blob_out});
806 unless (print $out $sha1, "\n") {
807 $self->_close_cat_blob();
808 throw Error::Simple("out pipe went bad");
811 my $description = <$in>;
812 if ($description =~ / missing$/) {
813 carp "$sha1 doesn't exist in the repository";
814 return 0;
817 if ($description !~ /^[0-9a-fA-F]{40} \S+ (\d+)$/) {
818 carp "Unexpected result returned from git cat-file";
819 return 0;
822 my $size = $1;
824 my $blob;
825 my $bytesRead = 0;
827 while (1) {
828 my $bytesLeft = $size - $bytesRead;
829 last unless $bytesLeft;
831 my $bytesToRead = $bytesLeft < 1024 ? $bytesLeft : 1024;
832 my $read = read($in, $blob, $bytesToRead, $bytesRead);
833 unless (defined($read)) {
834 $self->_close_cat_blob();
835 throw Error::Simple("in pipe went bad");
838 $bytesRead += $read;
841 # Skip past the trailing newline.
842 my $newline;
843 my $read = read($in, $newline, 1);
844 unless (defined($read)) {
845 $self->_close_cat_blob();
846 throw Error::Simple("in pipe went bad");
848 unless ($read == 1 && $newline eq "\n") {
849 $self->_close_cat_blob();
850 throw Error::Simple("didn't find newline after blob");
853 unless (print $fh $blob) {
854 $self->_close_cat_blob();
855 throw Error::Simple("couldn't write to passed in filehandle");
858 return $size;
861 sub _open_cat_blob_if_needed {
862 my ($self) = @_;
864 return if defined($self->{cat_blob_pid});
866 ($self->{cat_blob_pid}, $self->{cat_blob_in},
867 $self->{cat_blob_out}, $self->{cat_blob_ctx}) =
868 command_bidi_pipe(qw(cat-file --batch));
871 sub _close_cat_blob {
872 my ($self) = @_;
874 return unless defined($self->{cat_blob_pid});
876 my @vars = map { 'cat_blob_' . $_ } qw(pid in out ctx);
878 command_close_bidi_pipe($self->{@vars});
879 delete $self->{@vars};
882 =back
884 =head1 ERROR HANDLING
886 All functions are supposed to throw Perl exceptions in case of errors.
887 See the L<Error> module on how to catch those. Most exceptions are mere
888 L<Error::Simple> instances.
890 However, the C<command()>, C<command_oneline()> and C<command_noisy()>
891 functions suite can throw C<Git::Error::Command> exceptions as well: those are
892 thrown when the external command returns an error code and contain the error
893 code as well as access to the captured command's output. The exception class
894 provides the usual C<stringify> and C<value> (command's exit code) methods and
895 in addition also a C<cmd_output> method that returns either an array or a
896 string with the captured command output (depending on the original function
897 call context; C<command_noisy()> returns C<undef>) and $<cmdline> which
898 returns the command and its arguments (but without proper quoting).
900 Note that the C<command_*_pipe()> functions cannot throw this exception since
901 it has no idea whether the command failed or not. You will only find out
902 at the time you C<close> the pipe; if you want to have that automated,
903 use C<command_close_pipe()>, which can throw the exception.
905 =cut
908 package Git::Error::Command;
910 @Git::Error::Command::ISA = qw(Error);
912 sub new {
913 my $self = shift;
914 my $cmdline = '' . shift;
915 my $value = 0 + shift;
916 my $outputref = shift;
917 my(@args) = ();
919 local $Error::Depth = $Error::Depth + 1;
921 push(@args, '-cmdline', $cmdline);
922 push(@args, '-value', $value);
923 push(@args, '-outputref', $outputref);
925 $self->SUPER::new(-text => 'command returned error', @args);
928 sub stringify {
929 my $self = shift;
930 my $text = $self->SUPER::stringify;
931 $self->cmdline() . ': ' . $text . ': ' . $self->value() . "\n";
934 sub cmdline {
935 my $self = shift;
936 $self->{'-cmdline'};
939 sub cmd_output {
940 my $self = shift;
941 my $ref = $self->{'-outputref'};
942 defined $ref or undef;
943 if (ref $ref eq 'ARRAY') {
944 return @$ref;
945 } else { # SCALAR
946 return $$ref;
951 =over 4
953 =item git_cmd_try { CODE } ERRMSG
955 This magical statement will automatically catch any C<Git::Error::Command>
956 exceptions thrown by C<CODE> and make your program die with C<ERRMSG>
957 on its lips; the message will have %s substituted for the command line
958 and %d for the exit status. This statement is useful mostly for producing
959 more user-friendly error messages.
961 In case of no exception caught the statement returns C<CODE>'s return value.
963 Note that this is the only auto-exported function.
965 =cut
967 sub git_cmd_try(&$) {
968 my ($code, $errmsg) = @_;
969 my @result;
970 my $err;
971 my $array = wantarray;
972 try {
973 if ($array) {
974 @result = &$code;
975 } else {
976 $result[0] = &$code;
978 } catch Git::Error::Command with {
979 my $E = shift;
980 $err = $errmsg;
981 $err =~ s/\%s/$E->cmdline()/ge;
982 $err =~ s/\%d/$E->value()/ge;
983 # We can't croak here since Error.pm would mangle
984 # that to Error::Simple.
986 $err and croak $err;
987 return $array ? @result : $result[0];
991 =back
993 =head1 COPYRIGHT
995 Copyright 2006 by Petr Baudis E<lt>pasky@suse.czE<gt>.
997 This module is free software; it may be used, copied, modified
998 and distributed under the terms of the GNU General Public Licence,
999 either version 2, or (at your option) any later version.
1001 =cut
1004 # Take raw method argument list and return ($obj, @args) in case
1005 # the method was called upon an instance and (undef, @args) if
1006 # it was called directly.
1007 sub _maybe_self {
1008 # This breaks inheritance. Oh well.
1009 ref $_[0] eq 'Git' ? @_ : (undef, @_);
1012 # Check if the command id is something reasonable.
1013 sub _check_valid_cmd {
1014 my ($cmd) = @_;
1015 $cmd =~ /^[a-z0-9A-Z_-]+$/ or throw Error::Simple("bad command: $cmd");
1018 # Common backend for the pipe creators.
1019 sub _command_common_pipe {
1020 my $direction = shift;
1021 my ($self, @p) = _maybe_self(@_);
1022 my (%opts, $cmd, @args);
1023 if (ref $p[0]) {
1024 ($cmd, @args) = @{shift @p};
1025 %opts = ref $p[0] ? %{$p[0]} : @p;
1026 } else {
1027 ($cmd, @args) = @p;
1029 _check_valid_cmd($cmd);
1031 my $fh;
1032 if ($^O eq 'MSWin32') {
1033 # ActiveState Perl
1034 #defined $opts{STDERR} and
1035 # warn 'ignoring STDERR option - running w/ ActiveState';
1036 $direction eq '-|' or
1037 die 'input pipe for ActiveState not implemented';
1038 # the strange construction with *ACPIPE is just to
1039 # explain the tie below that we want to bind to
1040 # a handle class, not scalar. It is not known if
1041 # it is something specific to ActiveState Perl or
1042 # just a Perl quirk.
1043 tie (*ACPIPE, 'Git::activestate_pipe', $cmd, @args);
1044 $fh = *ACPIPE;
1046 } else {
1047 my $pid = open($fh, $direction);
1048 if (not defined $pid) {
1049 throw Error::Simple("open failed: $!");
1050 } elsif ($pid == 0) {
1051 if (defined $opts{STDERR}) {
1052 close STDERR;
1054 if ($opts{STDERR}) {
1055 open (STDERR, '>&', $opts{STDERR})
1056 or die "dup failed: $!";
1058 _cmd_exec($self, $cmd, @args);
1061 return wantarray ? ($fh, join(' ', $cmd, @args)) : $fh;
1064 # When already in the subprocess, set up the appropriate state
1065 # for the given repository and execute the git command.
1066 sub _cmd_exec {
1067 my ($self, @args) = @_;
1068 if ($self) {
1069 $self->repo_path() and $ENV{'GIT_DIR'} = $self->repo_path();
1070 $self->wc_path() and chdir($self->wc_path());
1071 $self->wc_subdir() and chdir($self->wc_subdir());
1073 _execv_git_cmd(@args);
1074 die qq[exec "@args" failed: $!];
1077 # Execute the given Git command ($_[0]) with arguments ($_[1..])
1078 # by searching for it at proper places.
1079 sub _execv_git_cmd { exec('git', @_); }
1081 # Close pipe to a subprocess.
1082 sub _cmd_close {
1083 my ($fh, $ctx) = @_;
1084 if (not close $fh) {
1085 if ($!) {
1086 # It's just close, no point in fatalities
1087 carp "error closing pipe: $!";
1088 } elsif ($? >> 8) {
1089 # The caller should pepper this.
1090 throw Git::Error::Command($ctx, $? >> 8);
1092 # else we might e.g. closed a live stream; the command
1093 # dying of SIGPIPE would drive us here.
1098 sub DESTROY {
1099 my ($self) = @_;
1100 $self->_close_hash_and_insert_object();
1101 $self->_close_cat_blob();
1105 # Pipe implementation for ActiveState Perl.
1107 package Git::activestate_pipe;
1108 use strict;
1110 sub TIEHANDLE {
1111 my ($class, @params) = @_;
1112 # FIXME: This is probably horrible idea and the thing will explode
1113 # at the moment you give it arguments that require some quoting,
1114 # but I have no ActiveState clue... --pasky
1115 # Let's just hope ActiveState Perl does at least the quoting
1116 # correctly.
1117 my @data = qx{git @params};
1118 bless { i => 0, data => \@data }, $class;
1121 sub READLINE {
1122 my $self = shift;
1123 if ($self->{i} >= scalar @{$self->{data}}) {
1124 return undef;
1126 my $i = $self->{i};
1127 if (wantarray) {
1128 $self->{i} = $#{$self->{'data'}} + 1;
1129 return splice(@{$self->{'data'}}, $i);
1131 $self->{i} = $i + 1;
1132 return $self->{'data'}->[ $i ];
1135 sub CLOSE {
1136 my $self = shift;
1137 delete $self->{data};
1138 delete $self->{i};
1141 sub EOF {
1142 my $self = shift;
1143 return ($self->{i} >= scalar @{$self->{data}});
1147 1; # Famous last words