perl / Git.pmon commit git-svn: Reduce temp file usage when dealing with non-links (510b094)
   1=head1 NAME
   2
   3Git - Perl interface to the Git version control system
   4
   5=cut
   6
   7
   8package Git;
   9
  10use strict;
  11
  12
  13BEGIN {
  14
  15our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
  16
  17# Totally unstable API.
  18$VERSION = '0.01';
  19
  20
  21=head1 SYNOPSIS
  22
  23  use Git;
  24
  25  my $version = Git::command_oneline('version');
  26
  27  git_cmd_try { Git::command_noisy('update-server-info') }
  28              '%s failed w/ code %d';
  29
  30  my $repo = Git->repository (Directory => '/srv/git/cogito.git');
  31
  32
  33  my @revs = $repo->command('rev-list', '--since=last monday', '--all');
  34
  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);
  38
  39  my $lastrev = $repo->command_oneline( [ 'rev-list', '--all' ],
  40                                        STDERR => 0 );
  41
  42  my $sha1 = $repo->hash_and_insert_object('file.txt');
  43  my $tempfile = tempfile();
  44  my $size = $repo->cat_blob($sha1, $tempfile);
  45
  46=cut
  47
  48
  49require Exporter;
  50
  51@ISA = qw(Exporter);
  52
  53@EXPORT = qw(git_cmd_try);
  54
  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
  60                remote_refs
  61                temp_acquire temp_release temp_reset);
  62
  63
  64=head1 DESCRIPTION
  65
  66This module provides Perl scripts easy way to interface the Git version control
  67system. The modules have an easy and well-tested way to call arbitrary Git
  68commands; in the future, the interface will also provide specialized methods
  69for doing easily operations which are not totally trivial to do over
  70the generic command interface.
  71
  72While some commands can be executed outside of any context (e.g. 'version'
  73or 'init'), most operations require a repository context, which in practice
  74means getting an instance of the Git object using the repository() constructor.
  75(In the future, we will also get a new_repository() constructor.) All commands
  76called as methods of the object are then executed in the context of the
  77repository.
  78
  79Part of the "repository state" is also information about path to the attached
  80working copy (unless you work with a bare repository). You can also navigate
  81inside of the working copy using the C<wc_chdir()> method. (Note that
  82the repository object is self-contained and will not change working directory
  83of your process.)
  84
  85TODO: In the future, we might also do
  86
  87        my $remoterepo = $repo->remote_repository (Name => 'cogito', Branch => 'master');
  88        $remoterepo ||= Git->remote_repository ('http://git.or.cz/cogito.git/');
  89        my @refs = $remoterepo->refs();
  90
  91Currently, the module merely wraps calls to external Git tools. In the future,
  92it will provide a much faster way to interact with Git by linking directly
  93to libgit. This should be completely opaque to the user, though (performance
  94increase notwithstanding).
  95
  96=cut
  97
  98
  99use Carp qw(carp croak); # but croak is bad - throw instead
 100use Error qw(:try);
 101use Cwd qw(abs_path);
 102use IPC::Open2 qw(open2);
 103use File::Temp ();
 104require File::Spec;
 105use Fcntl qw(SEEK_SET SEEK_CUR);
 106}
 107
 108
 109=head1 CONSTRUCTORS
 110
 111=over 4
 112
 113=item repository ( OPTIONS )
 114
 115=item repository ( DIRECTORY )
 116
 117=item repository ()
 118
 119Construct a new repository object.
 120C<OPTIONS> are passed in a hash like fashion, using key and value pairs.
 121Possible options are:
 122
 123B<Repository> - Path to the Git repository.
 124
 125B<WorkingCopy> - Path to the associated working copy; not strictly required
 126as many commands will happily crunch on a bare repository.
 127
 128B<WorkingSubdir> - Subdirectory in the working copy to work inside.
 129Just left undefined if you do not want to limit the scope of operations.
 130
 131B<Directory> - Path to the Git working directory in its usual setup.
 132The C<.git> directory is searched in the directory and all the parent
 133directories; if found, C<WorkingCopy> is set to the directory containing
 134it and C<Repository> to the C<.git> directory itself. If no C<.git>
 135directory was found, the C<Directory> is assumed to be a bare repository,
 136C<Repository> is set to point at it and C<WorkingCopy> is left undefined.
 137If the C<$GIT_DIR> environment variable is set, things behave as expected
 138as well.
 139
 140You should not use both C<Directory> and either of C<Repository> and
 141C<WorkingCopy> - the results of that are undefined.
 142
 143Alternatively, a directory path may be passed as a single scalar argument
 144to the constructor; it is equivalent to setting only the C<Directory> option
 145field.
 146
 147Calling the constructor with no options whatsoever is equivalent to
 148calling it with C<< Directory => '.' >>. In general, if you are building
 149a standard porcelain command, simply doing C<< Git->repository() >> should
 150do the right thing and setup the object to reflect exactly where the user
 151is right now.
 152
 153=cut
 154
 155sub repository {
 156        my $class = shift;
 157        my @args = @_;
 158        my %opts = ();
 159        my $self;
 160
 161        if (defined $args[0]) {
 162                if ($#args % 2 != 1) {
 163                        # Not a hash.
 164                        $#args == 0 or throw Error::Simple("bad usage");
 165                        %opts = ( Directory => $args[0] );
 166                } else {
 167                        %opts = @args;
 168                }
 169        }
 170
 171        if (not defined $opts{Repository} and not defined $opts{WorkingCopy}) {
 172                $opts{Directory} ||= '.';
 173        }
 174
 175        if ($opts{Directory}) {
 176                -d $opts{Directory} or throw Error::Simple("Directory not found: $!");
 177
 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;
 185                };
 186
 187                if ($dir) {
 188                        $dir =~ m#^/# or $dir = $opts{Directory} . '/' . $dir;
 189                        $opts{Repository} = $dir;
 190
 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");
 197                                }
 198                                substr($dir, -length($prefix)) = '';
 199                        }
 200                        $opts{WorkingCopy} = $dir;
 201                        $opts{WorkingSubdir} = $prefix;
 202
 203                } else {
 204                        # A bare repository? Let's see...
 205                        $dir = $opts{Directory};
 206
 207                        unless (-d "$dir/refs" and -d "$dir/objects" and -e "$dir/HEAD") {
 208                                # Mimick git-rev-parse --git-dir error message:
 209                                throw Error::Simple('fatal: Not a git repository');
 210                        }
 211                        my $search = Git->repository(Repository => $dir);
 212                        try {
 213                                $search->command('symbolic-ref', 'HEAD');
 214                        } catch Git::Error::Command with {
 215                                # Mimick git-rev-parse --git-dir error message:
 216                                throw Error::Simple('fatal: Not a git repository');
 217                        }
 218
 219                        $opts{Repository} = abs_path($dir);
 220                }
 221
 222                delete $opts{Directory};
 223        }
 224
 225        $self = { opts => \%opts };
 226        bless $self, $class;
 227}
 228
 229=back
 230
 231=head1 METHODS
 232
 233=over 4
 234
 235=item command ( COMMAND [, ARGUMENTS... ] )
 236
 237=item command ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
 238
 239Execute the given Git C<COMMAND> (specify it without the 'git-'
 240prefix), optionally with the specified extra C<ARGUMENTS>.
 241
 242The second more elaborate form can be used if you want to further adjust
 243the command execution. Currently, only one option is supported:
 244
 245B<STDERR> - How to deal with the command's error output. By default (C<undef>)
 246it is delivered to the caller's C<STDERR>. A false value (0 or '') will cause
 247it to be thrown away. If you want to process it, you can get it in a filehandle
 248you specify, but you must be extremely careful; if the error output is not
 249very short and you want to read it in the same process as where you called
 250C<command()>, you are set up for a nice deadlock!
 251
 252The 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).
 254
 255In scalar context, it returns all the command output in a single string
 256(verbatim).
 257
 258In array context, it returns an array containing lines printed to the
 259command's stdout (without trailing newlines).
 260
 261In both cases, the command's stdin and stderr are the same as the caller's.
 262
 263=cut
 264
 265sub command {
 266        my ($fh, $ctx) = command_output_pipe(@_);
 267
 268        if (not defined wantarray) {
 269                # Nothing to pepper the possible exception with.
 270                _cmd_close($fh, $ctx);
 271
 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;
 282                };
 283                return $text;
 284
 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;
 294                };
 295                return @lines;
 296        }
 297}
 298
 299
 300=item command_oneline ( COMMAND [, ARGUMENTS... ] )
 301
 302=item command_oneline ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
 303
 304Execute the given C<COMMAND> in the same way as command()
 305does but always return a scalar string containing the first line
 306of the command's standard output.
 307
 308=cut
 309
 310sub command_oneline {
 311        my ($fh, $ctx) = command_output_pipe(@_);
 312
 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;
 322        };
 323        return $line;
 324}
 325
 326
 327=item command_output_pipe ( COMMAND [, ARGUMENTS... ] )
 328
 329=item command_output_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
 330
 331Execute the given C<COMMAND> in the same way as command()
 332does but return a pipe filehandle from which the command output can be
 333read.
 334
 335The function can return C<($pipe, $ctx)> in array context.
 336See C<command_close_pipe()> for details.
 337
 338=cut
 339
 340sub command_output_pipe {
 341        _command_common_pipe('-|', @_);
 342}
 343
 344
 345=item command_input_pipe ( COMMAND [, ARGUMENTS... ] )
 346
 347=item command_input_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
 348
 349Execute the given C<COMMAND> in the same way as command_output_pipe()
 350does but return an input pipe filehandle instead; the command output
 351is not captured.
 352
 353The function can return C<($pipe, $ctx)> in array context.
 354See C<command_close_pipe()> for details.
 355
 356=cut
 357
 358sub command_input_pipe {
 359        _command_common_pipe('|-', @_);
 360}
 361
 362
 363=item command_close_pipe ( PIPE [, CTX ] )
 364
 365Close the C<PIPE> as returned from C<command_*_pipe()>, checking
 366whether the command finished successfully. The optional C<CTX> argument
 367is required if you want to see the command name in the error message,
 368and it is the second value returned by C<command_*_pipe()> when
 369called in array context. The call idiom is:
 370
 371        my ($fh, $ctx) = $r->command_output_pipe('status');
 372        while (<$fh>) { ... }
 373        $r->command_close_pipe($fh, $ctx);
 374
 375Note that you should not rely on whatever actually is in C<CTX>;
 376currently it is simply the command name but in future the context might
 377have more complicated structure.
 378
 379=cut
 380
 381sub command_close_pipe {
 382        my ($self, $fh, $ctx) = _maybe_self(@_);
 383        $ctx ||= '<unknown>';
 384        _cmd_close($fh, $ctx);
 385}
 386
 387=item command_bidi_pipe ( COMMAND [, ARGUMENTS... ] )
 388
 389Execute the given C<COMMAND> in the same way as command_output_pipe()
 390does but return both an input pipe filehandle and an output pipe filehandle.
 391
 392The function will return return C<($pid, $pipe_in, $pipe_out, $ctx)>.
 393See C<command_close_bidi_pipe()> for details.
 394
 395=cut
 396
 397sub command_bidi_pipe {
 398        my ($pid, $in, $out);
 399        $pid = open2($in, $out, 'git', @_);
 400        return ($pid, $in, $out, join(' ', @_));
 401}
 402
 403=item command_close_bidi_pipe ( PID, PIPE_IN, PIPE_OUT [, CTX] )
 404
 405Close the C<PIPE_IN> and C<PIPE_OUT> as returned from C<command_bidi_pipe()>,
 406checking whether the command finished successfully. The optional C<CTX>
 407argument is required if you want to see the command name in the error message,
 408and it is the fourth value returned by C<command_bidi_pipe()>.  The call idiom
 409is:
 410
 411        my ($pid, $in, $out, $ctx) = $r->command_bidi_pipe('cat-file --batch-check');
 412        print "000000000\n" $out;
 413        while (<$in>) { ... }
 414        $r->command_close_bidi_pipe($pid, $in, $out, $ctx);
 415
 416Note that you should not rely on whatever actually is in C<CTX>;
 417currently it is simply the command name but in future the context might
 418have more complicated structure.
 419
 420=cut
 421
 422sub command_close_bidi_pipe {
 423        local $?;
 424        my ($pid, $in, $out, $ctx) = @_;
 425        foreach my $fh ($in, $out) {
 426                unless (close $fh) {
 427                        if ($!) {
 428                                carp "error closing pipe: $!";
 429                        } elsif ($? >> 8) {
 430                                throw Git::Error::Command($ctx, $? >>8);
 431                        }
 432                }
 433        }
 434
 435        waitpid $pid, 0;
 436
 437        if ($? >> 8) {
 438                throw Git::Error::Command($ctx, $? >>8);
 439        }
 440}
 441
 442
 443=item command_noisy ( COMMAND [, ARGUMENTS... ] )
 444
 445Execute the given C<COMMAND> in the same way as command() does but do not
 446capture the command output - the standard output is not redirected and goes
 447to the standard output of the caller application.
 448
 449While the method is called command_noisy(), you might want to as well use
 450it for the most silent Git commands which you know will never pollute your
 451stdout but you want to avoid the overhead of the pipe setup when calling them.
 452
 453The function returns only after the command has finished running.
 454
 455=cut
 456
 457sub command_noisy {
 458        my ($self, $cmd, @args) = _maybe_self(@_);
 459        _check_valid_cmd($cmd);
 460
 461        my $pid = fork;
 462        if (not defined $pid) {
 463                throw Error::Simple("fork failed: $!");
 464        } elsif ($pid == 0) {
 465                _cmd_exec($self, $cmd, @args);
 466        }
 467        if (waitpid($pid, 0) > 0 and $?>>8 != 0) {
 468                throw Git::Error::Command(join(' ', $cmd, @args), $? >> 8);
 469        }
 470}
 471
 472
 473=item version ()
 474
 475Return the Git version in use.
 476
 477=cut
 478
 479sub version {
 480        my $verstr = command_oneline('--version');
 481        $verstr =~ s/^git version //;
 482        $verstr;
 483}
 484
 485
 486=item exec_path ()
 487
 488Return path to the Git sub-command executables (the same as
 489C<git --exec-path>). Useful mostly only internally.
 490
 491=cut
 492
 493sub exec_path { command_oneline('--exec-path') }
 494
 495
 496=item repo_path ()
 497
 498Return path to the git repository. Must be called on a repository instance.
 499
 500=cut
 501
 502sub repo_path { $_[0]->{opts}->{Repository} }
 503
 504
 505=item wc_path ()
 506
 507Return path to the working copy. Must be called on a repository instance.
 508
 509=cut
 510
 511sub wc_path { $_[0]->{opts}->{WorkingCopy} }
 512
 513
 514=item wc_subdir ()
 515
 516Return path to the subdirectory inside of a working copy. Must be called
 517on a repository instance.
 518
 519=cut
 520
 521sub wc_subdir { $_[0]->{opts}->{WorkingSubdir} ||= '' }
 522
 523
 524=item wc_chdir ( SUBDIR )
 525
 526Change the working copy subdirectory to work within. The C<SUBDIR> is
 527relative to the working copy root directory (not the current subdirectory).
 528Must be called on a repository instance attached to a working copy
 529and the directory must exist.
 530
 531=cut
 532
 533sub wc_chdir {
 534        my ($self, $subdir) = @_;
 535        $self->wc_path()
 536                or throw Error::Simple("bare repository");
 537
 538        -d $self->wc_path().'/'.$subdir
 539                or throw Error::Simple("subdir not found: $!");
 540        # Of course we will not "hold" the subdirectory so anyone
 541        # can delete it now and we will never know. But at least we tried.
 542
 543        $self->{opts}->{WorkingSubdir} = $subdir;
 544}
 545
 546
 547=item config ( VARIABLE )
 548
 549Retrieve the configuration C<VARIABLE> in the same manner as C<config>
 550does. In scalar context requires the variable to be set only one time
 551(exception is thrown otherwise), in array context returns allows the
 552variable to be set multiple times and returns all the values.
 553
 554This currently wraps command('config') so it is not so fast.
 555
 556=cut
 557
 558sub config {
 559        my ($self, $var) = _maybe_self(@_);
 560
 561        try {
 562                my @cmd = ('config');
 563                unshift @cmd, $self if $self;
 564                if (wantarray) {
 565                        return command(@cmd, '--get-all', $var);
 566                } else {
 567                        return command_oneline(@cmd, '--get', $var);
 568                }
 569        } catch Git::Error::Command with {
 570                my $E = shift;
 571                if ($E->value() == 1) {
 572                        # Key not found.
 573                        return;
 574                } else {
 575                        throw $E;
 576                }
 577        };
 578}
 579
 580
 581=item config_bool ( VARIABLE )
 582
 583Retrieve the bool configuration C<VARIABLE>. The return value
 584is usable as a boolean in perl (and C<undef> if it's not defined,
 585of course).
 586
 587This currently wraps command('config') so it is not so fast.
 588
 589=cut
 590
 591sub config_bool {
 592        my ($self, $var) = _maybe_self(@_);
 593
 594        try {
 595                my @cmd = ('config', '--bool', '--get', $var);
 596                unshift @cmd, $self if $self;
 597                my $val = command_oneline(@cmd);
 598                return undef unless defined $val;
 599                return $val eq 'true';
 600        } catch Git::Error::Command with {
 601                my $E = shift;
 602                if ($E->value() == 1) {
 603                        # Key not found.
 604                        return undef;
 605                } else {
 606                        throw $E;
 607                }
 608        };
 609}
 610
 611=item config_int ( VARIABLE )
 612
 613Retrieve the integer configuration C<VARIABLE>. The return value
 614is simple decimal number.  An optional value suffix of 'k', 'm',
 615or 'g' in the config file will cause the value to be multiplied
 616by 1024, 1048576 (1024^2), or 1073741824 (1024^3) prior to output.
 617It would return C<undef> if configuration variable is not defined,
 618
 619This currently wraps command('config') so it is not so fast.
 620
 621=cut
 622
 623sub config_int {
 624        my ($self, $var) = _maybe_self(@_);
 625
 626        try {
 627                my @cmd = ('config', '--int', '--get', $var);
 628                unshift @cmd, $self if $self;
 629                return command_oneline(@cmd);
 630        } catch Git::Error::Command with {
 631                my $E = shift;
 632                if ($E->value() == 1) {
 633                        # Key not found.
 634                        return undef;
 635                } else {
 636                        throw $E;
 637                }
 638        };
 639}
 640
 641=item get_colorbool ( NAME )
 642
 643Finds if color should be used for NAMEd operation from the configuration,
 644and returns boolean (true for "use color", false for "do not use color").
 645
 646=cut
 647
 648sub get_colorbool {
 649        my ($self, $var) = @_;
 650        my $stdout_to_tty = (-t STDOUT) ? "true" : "false";
 651        my $use_color = $self->command_oneline('config', '--get-colorbool',
 652                                               $var, $stdout_to_tty);
 653        return ($use_color eq 'true');
 654}
 655
 656=item get_color ( SLOT, COLOR )
 657
 658Finds color for SLOT from the configuration, while defaulting to COLOR,
 659and returns the ANSI color escape sequence:
 660
 661        print $repo->get_color("color.interactive.prompt", "underline blue white");
 662        print "some text";
 663        print $repo->get_color("", "normal");
 664
 665=cut
 666
 667sub get_color {
 668        my ($self, $slot, $default) = @_;
 669        my $color = $self->command_oneline('config', '--get-color', $slot, $default);
 670        if (!defined $color) {
 671                $color = "";
 672        }
 673        return $color;
 674}
 675
 676=item remote_refs ( REPOSITORY [, GROUPS [, REFGLOBS ] ] )
 677
 678This function returns a hashref of refs stored in a given remote repository.
 679The hash is in the format C<refname =\> hash>. For tags, the C<refname> entry
 680contains the tag object while a C<refname^{}> entry gives the tagged objects.
 681
 682C<REPOSITORY> has the same meaning as the appropriate C<git-ls-remote>
 683argument; either an URL or a remote name (if called on a repository instance).
 684C<GROUPS> is an optional arrayref that can contain 'tags' to return all the
 685tags and/or 'heads' to return all the heads. C<REFGLOB> is an optional array
 686of strings containing a shell-like glob to further limit the refs returned in
 687the hash; the meaning is again the same as the appropriate C<git-ls-remote>
 688argument.
 689
 690This function may or may not be called on a repository instance. In the former
 691case, remote names as defined in the repository are recognized as repository
 692specifiers.
 693
 694=cut
 695
 696sub remote_refs {
 697        my ($self, $repo, $groups, $refglobs) = _maybe_self(@_);
 698        my @args;
 699        if (ref $groups eq 'ARRAY') {
 700                foreach (@$groups) {
 701                        if ($_ eq 'heads') {
 702                                push (@args, '--heads');
 703                        } elsif ($_ eq 'tags') {
 704                                push (@args, '--tags');
 705                        } else {
 706                                # Ignore unknown groups for future
 707                                # compatibility
 708                        }
 709                }
 710        }
 711        push (@args, $repo);
 712        if (ref $refglobs eq 'ARRAY') {
 713                push (@args, @$refglobs);
 714        }
 715
 716        my @self = $self ? ($self) : (); # Ultra trickery
 717        my ($fh, $ctx) = Git::command_output_pipe(@self, 'ls-remote', @args);
 718        my %refs;
 719        while (<$fh>) {
 720                chomp;
 721                my ($hash, $ref) = split(/\t/, $_, 2);
 722                $refs{$ref} = $hash;
 723        }
 724        Git::command_close_pipe(@self, $fh, $ctx);
 725        return \%refs;
 726}
 727
 728
 729=item ident ( TYPE | IDENTSTR )
 730
 731=item ident_person ( TYPE | IDENTSTR | IDENTARRAY )
 732
 733This suite of functions retrieves and parses ident information, as stored
 734in the commit and tag objects or produced by C<var GIT_type_IDENT> (thus
 735C<TYPE> can be either I<author> or I<committer>; case is insignificant).
 736
 737The C<ident> method retrieves the ident information from C<git var>
 738and either returns it as a scalar string or as an array with the fields parsed.
 739Alternatively, it can take a prepared ident string (e.g. from the commit
 740object) and just parse it.
 741
 742C<ident_person> returns the person part of the ident - name and email;
 743it can take the same arguments as C<ident> or the array returned by C<ident>.
 744
 745The synopsis is like:
 746
 747        my ($name, $email, $time_tz) = ident('author');
 748        "$name <$email>" eq ident_person('author');
 749        "$name <$email>" eq ident_person($name);
 750        $time_tz =~ /^\d+ [+-]\d{4}$/;
 751
 752=cut
 753
 754sub ident {
 755        my ($self, $type) = _maybe_self(@_);
 756        my $identstr;
 757        if (lc $type eq lc 'committer' or lc $type eq lc 'author') {
 758                my @cmd = ('var', 'GIT_'.uc($type).'_IDENT');
 759                unshift @cmd, $self if $self;
 760                $identstr = command_oneline(@cmd);
 761        } else {
 762                $identstr = $type;
 763        }
 764        if (wantarray) {
 765                return $identstr =~ /^(.*) <(.*)> (\d+ [+-]\d{4})$/;
 766        } else {
 767                return $identstr;
 768        }
 769}
 770
 771sub ident_person {
 772        my ($self, @ident) = _maybe_self(@_);
 773        $#ident == 0 and @ident = $self ? $self->ident($ident[0]) : ident($ident[0]);
 774        return "$ident[0] <$ident[1]>";
 775}
 776
 777
 778=item hash_object ( TYPE, FILENAME )
 779
 780Compute the SHA1 object id of the given C<FILENAME> considering it is
 781of the C<TYPE> object type (C<blob>, C<commit>, C<tree>).
 782
 783The method can be called without any instance or on a specified Git repository,
 784it makes zero difference.
 785
 786The function returns the SHA1 hash.
 787
 788=cut
 789
 790# TODO: Support for passing FILEHANDLE instead of FILENAME
 791sub hash_object {
 792        my ($self, $type, $file) = _maybe_self(@_);
 793        command_oneline('hash-object', '-t', $type, $file);
 794}
 795
 796
 797=item hash_and_insert_object ( FILENAME )
 798
 799Compute the SHA1 object id of the given C<FILENAME> and add the object to the
 800object database.
 801
 802The function returns the SHA1 hash.
 803
 804=cut
 805
 806# TODO: Support for passing FILEHANDLE instead of FILENAME
 807sub hash_and_insert_object {
 808        my ($self, $filename) = @_;
 809
 810        carp "Bad filename \"$filename\"" if $filename =~ /[\r\n]/;
 811
 812        $self->_open_hash_and_insert_object_if_needed();
 813        my ($in, $out) = ($self->{hash_object_in}, $self->{hash_object_out});
 814
 815        unless (print $out $filename, "\n") {
 816                $self->_close_hash_and_insert_object();
 817                throw Error::Simple("out pipe went bad");
 818        }
 819
 820        chomp(my $hash = <$in>);
 821        unless (defined($hash)) {
 822                $self->_close_hash_and_insert_object();
 823                throw Error::Simple("in pipe went bad");
 824        }
 825
 826        return $hash;
 827}
 828
 829sub _open_hash_and_insert_object_if_needed {
 830        my ($self) = @_;
 831
 832        return if defined($self->{hash_object_pid});
 833
 834        ($self->{hash_object_pid}, $self->{hash_object_in},
 835         $self->{hash_object_out}, $self->{hash_object_ctx}) =
 836                command_bidi_pipe(qw(hash-object -w --stdin-paths));
 837}
 838
 839sub _close_hash_and_insert_object {
 840        my ($self) = @_;
 841
 842        return unless defined($self->{hash_object_pid});
 843
 844        my @vars = map { 'hash_object_' . $_ } qw(pid in out ctx);
 845
 846        command_close_bidi_pipe(@$self{@vars});
 847        delete @$self{@vars};
 848}
 849
 850=item cat_blob ( SHA1, FILEHANDLE )
 851
 852Prints the contents of the blob identified by C<SHA1> to C<FILEHANDLE> and
 853returns the number of bytes printed.
 854
 855=cut
 856
 857sub cat_blob {
 858        my ($self, $sha1, $fh) = @_;
 859
 860        $self->_open_cat_blob_if_needed();
 861        my ($in, $out) = ($self->{cat_blob_in}, $self->{cat_blob_out});
 862
 863        unless (print $out $sha1, "\n") {
 864                $self->_close_cat_blob();
 865                throw Error::Simple("out pipe went bad");
 866        }
 867
 868        my $description = <$in>;
 869        if ($description =~ / missing$/) {
 870                carp "$sha1 doesn't exist in the repository";
 871                return -1;
 872        }
 873
 874        if ($description !~ /^[0-9a-fA-F]{40} \S+ (\d+)$/) {
 875                carp "Unexpected result returned from git cat-file";
 876                return -1;
 877        }
 878
 879        my $size = $1;
 880
 881        my $blob;
 882        my $bytesRead = 0;
 883
 884        while (1) {
 885                my $bytesLeft = $size - $bytesRead;
 886                last unless $bytesLeft;
 887
 888                my $bytesToRead = $bytesLeft < 1024 ? $bytesLeft : 1024;
 889                my $read = read($in, $blob, $bytesToRead, $bytesRead);
 890                unless (defined($read)) {
 891                        $self->_close_cat_blob();
 892                        throw Error::Simple("in pipe went bad");
 893                }
 894
 895                $bytesRead += $read;
 896        }
 897
 898        # Skip past the trailing newline.
 899        my $newline;
 900        my $read = read($in, $newline, 1);
 901        unless (defined($read)) {
 902                $self->_close_cat_blob();
 903                throw Error::Simple("in pipe went bad");
 904        }
 905        unless ($read == 1 && $newline eq "\n") {
 906                $self->_close_cat_blob();
 907                throw Error::Simple("didn't find newline after blob");
 908        }
 909
 910        unless (print $fh $blob) {
 911                $self->_close_cat_blob();
 912                throw Error::Simple("couldn't write to passed in filehandle");
 913        }
 914
 915        return $size;
 916}
 917
 918sub _open_cat_blob_if_needed {
 919        my ($self) = @_;
 920
 921        return if defined($self->{cat_blob_pid});
 922
 923        ($self->{cat_blob_pid}, $self->{cat_blob_in},
 924         $self->{cat_blob_out}, $self->{cat_blob_ctx}) =
 925                command_bidi_pipe(qw(cat-file --batch));
 926}
 927
 928sub _close_cat_blob {
 929        my ($self) = @_;
 930
 931        return unless defined($self->{cat_blob_pid});
 932
 933        my @vars = map { 'cat_blob_' . $_ } qw(pid in out ctx);
 934
 935        command_close_bidi_pipe(@$self{@vars});
 936        delete @$self{@vars};
 937}
 938
 939
 940{ # %TEMP_* Lexical Context
 941
 942my (%TEMP_LOCKS, %TEMP_FILES);
 943
 944=item temp_acquire ( NAME )
 945
 946Attempts to retreive the temporary file mapped to the string C<NAME>. If an
 947associated temp file has not been created this session or was closed, it is
 948created, cached, and set for autoflush and binmode.
 949
 950Internally locks the file mapped to C<NAME>. This lock must be released with
 951C<temp_release()> when the temp file is no longer needed. Subsequent attempts
 952to retrieve temporary files mapped to the same C<NAME> while still locked will
 953cause an error. This locking mechanism provides a weak guarantee and is not
 954threadsafe. It does provide some error checking to help prevent temp file refs
 955writing over one another.
 956
 957In general, the L<File::Handle> returned should not be closed by consumers as
 958it defeats the purpose of this caching mechanism. If you need to close the temp
 959file handle, then you should use L<File::Temp> or another temp file faculty
 960directly. If a handle is closed and then requested again, then a warning will
 961issue.
 962
 963=cut
 964
 965sub temp_acquire {
 966        my ($self, $name) = _maybe_self(@_);
 967
 968        my $temp_fd = _temp_cache($name);
 969
 970        $TEMP_LOCKS{$temp_fd} = 1;
 971        $temp_fd;
 972}
 973
 974=item temp_release ( NAME )
 975
 976=item temp_release ( FILEHANDLE )
 977
 978Releases a lock acquired through C<temp_acquire()>. Can be called either with
 979the C<NAME> mapping used when acquiring the temp file or with the C<FILEHANDLE>
 980referencing a locked temp file.
 981
 982Warns if an attempt is made to release a file that is not locked.
 983
 984The temp file will be truncated before being released. This can help to reduce
 985disk I/O where the system is smart enough to detect the truncation while data
 986is in the output buffers. Beware that after the temp file is released and
 987truncated, any operations on that file may fail miserably until it is
 988re-acquired. All contents are lost between each release and acquire mapped to
 989the same string.
 990
 991=cut
 992
 993sub temp_release {
 994        my ($self, $temp_fd, $trunc) = _maybe_self(@_);
 995
 996        if (ref($temp_fd) ne 'File::Temp') {
 997                $temp_fd = $TEMP_FILES{$temp_fd};
 998        }
 999        unless ($TEMP_LOCKS{$temp_fd}) {
1000                carp "Attempt to release temp file '",
1001                        $temp_fd, "' that has not been locked";
1002        }
1003        temp_reset($temp_fd) if $trunc and $temp_fd->opened;
1004
1005        $TEMP_LOCKS{$temp_fd} = 0;
1006        undef;
1007}
1008
1009sub _temp_cache {
1010        my ($name) = @_;
1011
1012        my $temp_fd = \$TEMP_FILES{$name};
1013        if (defined $$temp_fd and $$temp_fd->opened) {
1014                if ($TEMP_LOCKS{$$temp_fd}) {
1015                        throw Error::Simple("Temp file with moniker '",
1016                                $name, "' already in use");
1017                }
1018        } else {
1019                if (defined $$temp_fd) {
1020                        # then we're here because of a closed handle.
1021                        carp "Temp file '", $name,
1022                                "' was closed. Opening replacement.";
1023                }
1024                $$temp_fd = File::Temp->new(
1025                        TEMPLATE => 'Git_XXXXXX',
1026                        DIR => File::Spec->tmpdir
1027                        ) or throw Error::Simple("couldn't open new temp file");
1028                $$temp_fd->autoflush;
1029                binmode $$temp_fd;
1030        }
1031        $$temp_fd;
1032}
1033
1034=item temp_reset ( FILEHANDLE )
1035
1036Truncates and resets the position of the C<FILEHANDLE>.
1037
1038=cut
1039
1040sub temp_reset {
1041        my ($self, $temp_fd) = _maybe_self(@_);
1042
1043        truncate $temp_fd, 0
1044                or throw Error::Simple("couldn't truncate file");
1045        sysseek($temp_fd, 0, SEEK_SET) and seek($temp_fd, 0, SEEK_SET)
1046                or throw Error::Simple("couldn't seek to beginning of file");
1047        sysseek($temp_fd, 0, SEEK_CUR) == 0 and tell($temp_fd) == 0
1048                or throw Error::Simple("expected file position to be reset");
1049}
1050
1051sub END {
1052        unlink values %TEMP_FILES if %TEMP_FILES;
1053}
1054
1055} # %TEMP_* Lexical Context
1056
1057=back
1058
1059=head1 ERROR HANDLING
1060
1061All functions are supposed to throw Perl exceptions in case of errors.
1062See the L<Error> module on how to catch those. Most exceptions are mere
1063L<Error::Simple> instances.
1064
1065However, the C<command()>, C<command_oneline()> and C<command_noisy()>
1066functions suite can throw C<Git::Error::Command> exceptions as well: those are
1067thrown when the external command returns an error code and contain the error
1068code as well as access to the captured command's output. The exception class
1069provides the usual C<stringify> and C<value> (command's exit code) methods and
1070in addition also a C<cmd_output> method that returns either an array or a
1071string with the captured command output (depending on the original function
1072call context; C<command_noisy()> returns C<undef>) and $<cmdline> which
1073returns the command and its arguments (but without proper quoting).
1074
1075Note that the C<command_*_pipe()> functions cannot throw this exception since
1076it has no idea whether the command failed or not. You will only find out
1077at the time you C<close> the pipe; if you want to have that automated,
1078use C<command_close_pipe()>, which can throw the exception.
1079
1080=cut
1081
1082{
1083        package Git::Error::Command;
1084
1085        @Git::Error::Command::ISA = qw(Error);
1086
1087        sub new {
1088                my $self = shift;
1089                my $cmdline = '' . shift;
1090                my $value = 0 + shift;
1091                my $outputref = shift;
1092                my(@args) = ();
1093
1094                local $Error::Depth = $Error::Depth + 1;
1095
1096                push(@args, '-cmdline', $cmdline);
1097                push(@args, '-value', $value);
1098                push(@args, '-outputref', $outputref);
1099
1100                $self->SUPER::new(-text => 'command returned error', @args);
1101        }
1102
1103        sub stringify {
1104                my $self = shift;
1105                my $text = $self->SUPER::stringify;
1106                $self->cmdline() . ': ' . $text . ': ' . $self->value() . "\n";
1107        }
1108
1109        sub cmdline {
1110                my $self = shift;
1111                $self->{'-cmdline'};
1112        }
1113
1114        sub cmd_output {
1115                my $self = shift;
1116                my $ref = $self->{'-outputref'};
1117                defined $ref or undef;
1118                if (ref $ref eq 'ARRAY') {
1119                        return @$ref;
1120                } else { # SCALAR
1121                        return $$ref;
1122                }
1123        }
1124}
1125
1126=over 4
1127
1128=item git_cmd_try { CODE } ERRMSG
1129
1130This magical statement will automatically catch any C<Git::Error::Command>
1131exceptions thrown by C<CODE> and make your program die with C<ERRMSG>
1132on its lips; the message will have %s substituted for the command line
1133and %d for the exit status. This statement is useful mostly for producing
1134more user-friendly error messages.
1135
1136In case of no exception caught the statement returns C<CODE>'s return value.
1137
1138Note that this is the only auto-exported function.
1139
1140=cut
1141
1142sub git_cmd_try(&$) {
1143        my ($code, $errmsg) = @_;
1144        my @result;
1145        my $err;
1146        my $array = wantarray;
1147        try {
1148                if ($array) {
1149                        @result = &$code;
1150                } else {
1151                        $result[0] = &$code;
1152                }
1153        } catch Git::Error::Command with {
1154                my $E = shift;
1155                $err = $errmsg;
1156                $err =~ s/\%s/$E->cmdline()/ge;
1157                $err =~ s/\%d/$E->value()/ge;
1158                # We can't croak here since Error.pm would mangle
1159                # that to Error::Simple.
1160        };
1161        $err and croak $err;
1162        return $array ? @result : $result[0];
1163}
1164
1165
1166=back
1167
1168=head1 COPYRIGHT
1169
1170Copyright 2006 by Petr Baudis E<lt>pasky@suse.czE<gt>.
1171
1172This module is free software; it may be used, copied, modified
1173and distributed under the terms of the GNU General Public Licence,
1174either version 2, or (at your option) any later version.
1175
1176=cut
1177
1178
1179# Take raw method argument list and return ($obj, @args) in case
1180# the method was called upon an instance and (undef, @args) if
1181# it was called directly.
1182sub _maybe_self {
1183        # This breaks inheritance. Oh well.
1184        ref $_[0] eq 'Git' ? @_ : (undef, @_);
1185}
1186
1187# Check if the command id is something reasonable.
1188sub _check_valid_cmd {
1189        my ($cmd) = @_;
1190        $cmd =~ /^[a-z0-9A-Z_-]+$/ or throw Error::Simple("bad command: $cmd");
1191}
1192
1193# Common backend for the pipe creators.
1194sub _command_common_pipe {
1195        my $direction = shift;
1196        my ($self, @p) = _maybe_self(@_);
1197        my (%opts, $cmd, @args);
1198        if (ref $p[0]) {
1199                ($cmd, @args) = @{shift @p};
1200                %opts = ref $p[0] ? %{$p[0]} : @p;
1201        } else {
1202                ($cmd, @args) = @p;
1203        }
1204        _check_valid_cmd($cmd);
1205
1206        my $fh;
1207        if ($^O eq 'MSWin32') {
1208                # ActiveState Perl
1209                #defined $opts{STDERR} and
1210                #       warn 'ignoring STDERR option - running w/ ActiveState';
1211                $direction eq '-|' or
1212                        die 'input pipe for ActiveState not implemented';
1213                # the strange construction with *ACPIPE is just to
1214                # explain the tie below that we want to bind to
1215                # a handle class, not scalar. It is not known if
1216                # it is something specific to ActiveState Perl or
1217                # just a Perl quirk.
1218                tie (*ACPIPE, 'Git::activestate_pipe', $cmd, @args);
1219                $fh = *ACPIPE;
1220
1221        } else {
1222                my $pid = open($fh, $direction);
1223                if (not defined $pid) {
1224                        throw Error::Simple("open failed: $!");
1225                } elsif ($pid == 0) {
1226                        if (defined $opts{STDERR}) {
1227                                close STDERR;
1228                        }
1229                        if ($opts{STDERR}) {
1230                                open (STDERR, '>&', $opts{STDERR})
1231                                        or die "dup failed: $!";
1232                        }
1233                        _cmd_exec($self, $cmd, @args);
1234                }
1235        }
1236        return wantarray ? ($fh, join(' ', $cmd, @args)) : $fh;
1237}
1238
1239# When already in the subprocess, set up the appropriate state
1240# for the given repository and execute the git command.
1241sub _cmd_exec {
1242        my ($self, @args) = @_;
1243        if ($self) {
1244                $self->repo_path() and $ENV{'GIT_DIR'} = $self->repo_path();
1245                $self->wc_path() and chdir($self->wc_path());
1246                $self->wc_subdir() and chdir($self->wc_subdir());
1247        }
1248        _execv_git_cmd(@args);
1249        die qq[exec "@args" failed: $!];
1250}
1251
1252# Execute the given Git command ($_[0]) with arguments ($_[1..])
1253# by searching for it at proper places.
1254sub _execv_git_cmd { exec('git', @_); }
1255
1256# Close pipe to a subprocess.
1257sub _cmd_close {
1258        my ($fh, $ctx) = @_;
1259        if (not close $fh) {
1260                if ($!) {
1261                        # It's just close, no point in fatalities
1262                        carp "error closing pipe: $!";
1263                } elsif ($? >> 8) {
1264                        # The caller should pepper this.
1265                        throw Git::Error::Command($ctx, $? >> 8);
1266                }
1267                # else we might e.g. closed a live stream; the command
1268                # dying of SIGPIPE would drive us here.
1269        }
1270}
1271
1272
1273sub DESTROY {
1274        my ($self) = @_;
1275        $self->_close_hash_and_insert_object();
1276        $self->_close_cat_blob();
1277}
1278
1279
1280# Pipe implementation for ActiveState Perl.
1281
1282package Git::activestate_pipe;
1283use strict;
1284
1285sub TIEHANDLE {
1286        my ($class, @params) = @_;
1287        # FIXME: This is probably horrible idea and the thing will explode
1288        # at the moment you give it arguments that require some quoting,
1289        # but I have no ActiveState clue... --pasky
1290        # Let's just hope ActiveState Perl does at least the quoting
1291        # correctly.
1292        my @data = qx{git @params};
1293        bless { i => 0, data => \@data }, $class;
1294}
1295
1296sub READLINE {
1297        my $self = shift;
1298        if ($self->{i} >= scalar @{$self->{data}}) {
1299                return undef;
1300        }
1301        my $i = $self->{i};
1302        if (wantarray) {
1303                $self->{i} = $#{$self->{'data'}} + 1;
1304                return splice(@{$self->{'data'}}, $i);
1305        }
1306        $self->{i} = $i + 1;
1307        return $self->{'data'}->[ $i ];
1308}
1309
1310sub CLOSE {
1311        my $self = shift;
1312        delete $self->{data};
1313        delete $self->{i};
1314}
1315
1316sub EOF {
1317        my $self = shift;
1318        return ($self->{i} >= scalar @{$self->{data}});
1319}
1320
1321
13221; # Famous last words