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 { 156my$class=shift; 157my@args=@_; 158my%opts= (); 159my$self; 160 161if(defined$args[0]) { 162if($#args%2!=1) { 163# Not a hash. 164$#args==0or throw Error::Simple("bad usage"); 165%opts= ( Directory =>$args[0] ); 166}else{ 167%opts=@args; 168} 169} 170 171if(not defined$opts{Repository}and not defined$opts{WorkingCopy}) { 172$opts{Directory} ||='.'; 173} 174 175if($opts{Directory}) { 176-d $opts{Directory}or throw Error::Simple("Directory not found:$!"); 177 178my$search= Git->repository(WorkingCopy =>$opts{Directory}); 179my$dir; 180try{ 181$dir=$search->command_oneline(['rev-parse','--git-dir'], 182 STDERR =>0); 183} catch Git::Error::Command with { 184$dir=undef; 185}; 186 187if($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. 192my$prefix=$search->command_oneline('rev-parse','--show-prefix'); 193$dir= abs_path($opts{Directory}) .'/'; 194if($prefix) { 195if(substr($dir, -length($prefix))ne$prefix) { 196 throw Error::Simple("rev-parse confused me -$dirdoes not have trailing$prefix"); 197} 198substr($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 207unless(-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} 211my$search= Git->repository(Repository =>$dir); 212try{ 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 222delete$opts{Directory}; 223} 224 225$self= { opts => \%opts}; 226bless$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 { 266my($fh,$ctx) = command_output_pipe(@_); 267 268if(not defined wantarray) { 269# Nothing to pepper the possible exception with. 270 _cmd_close($fh,$ctx); 271 272}elsif(not wantarray) { 273local$/; 274my$text= <$fh>; 275try{ 276 _cmd_close($fh,$ctx); 277} catch Git::Error::Command with { 278# Pepper with the output: 279my$E=shift; 280$E->{'-outputref'} = \$text; 281 throw $E; 282}; 283return$text; 284 285}else{ 286my@lines= <$fh>; 287defined and chompfor@lines; 288try{ 289 _cmd_close($fh,$ctx); 290} catch Git::Error::Command with { 291my$E=shift; 292$E->{'-outputref'} = \@lines; 293 throw $E; 294}; 295return@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 { 311my($fh,$ctx) = command_output_pipe(@_); 312 313my$line= <$fh>; 314defined$lineand chomp$line; 315try{ 316 _cmd_close($fh,$ctx); 317} catch Git::Error::Command with { 318# Pepper with the output: 319my$E=shift; 320$E->{'-outputref'} = \$line; 321 throw $E; 322}; 323return$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 { 382my($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 { 398my($pid,$in,$out); 399$pid= open2($in,$out,'git',@_); 400return($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 { 423local$?; 424my($pid,$in,$out,$ctx) =@_; 425foreachmy$fh($in,$out) { 426unless(close$fh) { 427if($!) { 428 carp "error closing pipe:$!"; 429}elsif($?>>8) { 430 throw Git::Error::Command($ctx,$?>>8); 431} 432} 433} 434 435waitpid$pid,0; 436 437if($?>>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 { 458my($self,$cmd,@args) = _maybe_self(@_); 459 _check_valid_cmd($cmd); 460 461my$pid=fork; 462if(not defined$pid) { 463 throw Error::Simple("fork failed:$!"); 464}elsif($pid==0) { 465 _cmd_exec($self,$cmd,@args); 466} 467if(waitpid($pid,0) >0and$?>>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 { 480my$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 { 534my($self,$subdir) =@_; 535$self->wc_path() 536or throw Error::Simple("bare repository"); 537 538-d $self->wc_path().'/'.$subdir 539or 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 { 559my($self,$var) = _maybe_self(@_); 560 561try{ 562my@cmd= ('config'); 563unshift@cmd,$selfif$self; 564if(wantarray) { 565return command(@cmd,'--get-all',$var); 566}else{ 567return command_oneline(@cmd,'--get',$var); 568} 569} catch Git::Error::Command with { 570my$E=shift; 571if($E->value() ==1) { 572# Key not found. 573return; 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 { 592my($self,$var) = _maybe_self(@_); 593 594try{ 595my@cmd= ('config','--bool','--get',$var); 596unshift@cmd,$selfif$self; 597my$val= command_oneline(@cmd); 598returnundefunlessdefined$val; 599return$valeq'true'; 600} catch Git::Error::Command with { 601my$E=shift; 602if($E->value() ==1) { 603# Key not found. 604returnundef; 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 { 624my($self,$var) = _maybe_self(@_); 625 626try{ 627my@cmd= ('config','--int','--get',$var); 628unshift@cmd,$selfif$self; 629return command_oneline(@cmd); 630} catch Git::Error::Command with { 631my$E=shift; 632if($E->value() ==1) { 633# Key not found. 634returnundef; 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 { 649my($self,$var) =@_; 650my$stdout_to_tty= (-t STDOUT) ?"true":"false"; 651my$use_color=$self->command_oneline('config','--get-colorbool', 652$var,$stdout_to_tty); 653return($use_coloreq'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 { 668my($self,$slot,$default) =@_; 669my$color=$self->command_oneline('config','--get-color',$slot,$default); 670if(!defined$color) { 671$color=""; 672} 673return$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 { 697my($self,$repo,$groups,$refglobs) = _maybe_self(@_); 698my@args; 699if(ref$groupseq'ARRAY') { 700foreach(@$groups) { 701if($_eq'heads') { 702push(@args,'--heads'); 703}elsif($_eq'tags') { 704push(@args,'--tags'); 705}else{ 706# Ignore unknown groups for future 707# compatibility 708} 709} 710} 711push(@args,$repo); 712if(ref$refglobseq'ARRAY') { 713push(@args,@$refglobs); 714} 715 716my@self=$self? ($self) : ();# Ultra trickery 717my($fh,$ctx) = Git::command_output_pipe(@self,'ls-remote',@args); 718my%refs; 719while(<$fh>) { 720chomp; 721my($hash,$ref) =split(/\t/,$_,2); 722$refs{$ref} =$hash; 723} 724 Git::command_close_pipe(@self,$fh,$ctx); 725return \%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 { 755my($self,$type) = _maybe_self(@_); 756my$identstr; 757if(lc$typeeq lc'committer'or lc$typeeq lc'author') { 758my@cmd= ('var','GIT_'.uc($type).'_IDENT'); 759unshift@cmd,$selfif$self; 760$identstr= command_oneline(@cmd); 761}else{ 762$identstr=$type; 763} 764if(wantarray) { 765return$identstr=~/^(.*) <(.*)> (\d+ [+-]\d{4})$/; 766}else{ 767return$identstr; 768} 769} 770 771sub ident_person { 772my($self,@ident) = _maybe_self(@_); 773$#ident==0and@ident=$self?$self->ident($ident[0]) : ident($ident[0]); 774return"$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 { 792my($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 { 808my($self,$filename) =@_; 809 810 carp "Bad filename\"$filename\""if$filename=~/[\r\n]/; 811 812$self->_open_hash_and_insert_object_if_needed(); 813my($in,$out) = ($self->{hash_object_in},$self->{hash_object_out}); 814 815unless(print$out $filename,"\n") { 816$self->_close_hash_and_insert_object(); 817 throw Error::Simple("out pipe went bad"); 818} 819 820chomp(my$hash= <$in>); 821unless(defined($hash)) { 822$self->_close_hash_and_insert_object(); 823 throw Error::Simple("in pipe went bad"); 824} 825 826return$hash; 827} 828 829sub _open_hash_and_insert_object_if_needed { 830my($self) =@_; 831 832return ifdefined($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 { 840my($self) =@_; 841 842return unlessdefined($self->{hash_object_pid}); 843 844my@vars=map{'hash_object_'.$_}qw(pid in out ctx); 845 846 command_close_bidi_pipe(@$self{@vars}); 847delete@$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 { 858my($self,$sha1,$fh) =@_; 859 860$self->_open_cat_blob_if_needed(); 861my($in,$out) = ($self->{cat_blob_in},$self->{cat_blob_out}); 862 863unless(print$out $sha1,"\n") { 864$self->_close_cat_blob(); 865 throw Error::Simple("out pipe went bad"); 866} 867 868my$description= <$in>; 869if($description=~/ missing$/) { 870 carp "$sha1doesn't exist in the repository"; 871return-1; 872} 873 874if($description!~/^[0-9a-fA-F]{40} \S+ (\d+)$/) { 875 carp "Unexpected result returned from git cat-file"; 876return-1; 877} 878 879my$size=$1; 880 881my$blob; 882my$bytesRead=0; 883 884while(1) { 885my$bytesLeft=$size-$bytesRead; 886last unless$bytesLeft; 887 888my$bytesToRead=$bytesLeft<1024?$bytesLeft:1024; 889my$read=read($in,$blob,$bytesToRead,$bytesRead); 890unless(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. 899my$newline; 900my$read=read($in,$newline,1); 901unless(defined($read)) { 902$self->_close_cat_blob(); 903 throw Error::Simple("in pipe went bad"); 904} 905unless($read==1&&$newlineeq"\n") { 906$self->_close_cat_blob(); 907 throw Error::Simple("didn't find newline after blob"); 908} 909 910unless(print$fh $blob) { 911$self->_close_cat_blob(); 912 throw Error::Simple("couldn't write to passed in filehandle"); 913} 914 915return$size; 916} 917 918sub _open_cat_blob_if_needed { 919my($self) =@_; 920 921return ifdefined($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 { 929my($self) =@_; 930 931return unlessdefined($self->{cat_blob_pid}); 932 933my@vars=map{'cat_blob_'.$_}qw(pid in out ctx); 934 935 command_close_bidi_pipe(@$self{@vars}); 936delete@$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 { 966my($self,$name) = _maybe_self(@_); 967 968my$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 { 994my($self,$temp_fd,$trunc) = _maybe_self(@_); 995 996if(ref($temp_fd)ne'File::Temp') { 997$temp_fd=$TEMP_FILES{$temp_fd}; 998} 999unless($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$truncand$temp_fd->opened;10041005$TEMP_LOCKS{$temp_fd} =0;1006undef;1007}10081009sub _temp_cache {1010my($name) =@_;10111012my$temp_fd= \$TEMP_FILES{$name};1013if(defined$$temp_fdand$$temp_fd->opened) {1014if($TEMP_LOCKS{$$temp_fd}) {1015 throw Error::Simple("Temp file with moniker '",1016$name,"' already in use");1017}1018}else{1019if(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->tmpdir1027)or throw Error::Simple("couldn't open new temp file");1028$$temp_fd->autoflush;1029binmode$$temp_fd;1030}1031$$temp_fd;1032}10331034=item temp_reset ( FILEHANDLE )10351036Truncates and resets the position of the C<FILEHANDLE>.10371038=cut10391040sub temp_reset {1041my($self,$temp_fd) = _maybe_self(@_);10421043truncate$temp_fd,01044or throw Error::Simple("couldn't truncate file");1045sysseek($temp_fd,0, SEEK_SET)and seek($temp_fd,0, SEEK_SET)1046or throw Error::Simple("couldn't seek to beginning of file");1047sysseek($temp_fd,0, SEEK_CUR) ==0and tell($temp_fd) ==01048or throw Error::Simple("expected file position to be reset");1049}10501051sub END{1052unlink values%TEMP_FILESif%TEMP_FILES;1053}10541055}# %TEMP_* Lexical Context10561057=back10581059=head1 ERROR HANDLING10601061All functions are supposed to throw Perl exceptions in case of errors.1062See the L<Error> module on how to catch those. Most exceptions are mere1063L<Error::Simple> instances.10641065However, the C<command()>, C<command_oneline()> and C<command_noisy()>1066functions suite can throw C<Git::Error::Command> exceptions as well: those are1067thrown when the external command returns an error code and contain the error1068code as well as access to the captured command's output. The exception class1069provides the usual C<stringify> and C<value> (command's exit code) methods and1070in addition also a C<cmd_output> method that returns either an array or a1071string with the captured command output (depending on the original function1072call context; C<command_noisy()> returns C<undef>) and $<cmdline> which1073returns the command and its arguments (but without proper quoting).10741075Note that the C<command_*_pipe()> functions cannot throw this exception since1076it has no idea whether the command failed or not. You will only find out1077at the time you C<close> the pipe; if you want to have that automated,1078use C<command_close_pipe()>, which can throw the exception.10791080=cut10811082{1083package Git::Error::Command;10841085@Git::Error::Command::ISA =qw(Error);10861087sub new {1088my$self=shift;1089my$cmdline=''.shift;1090my$value=0+shift;1091my$outputref=shift;1092my(@args) = ();10931094local$Error::Depth =$Error::Depth +1;10951096push(@args,'-cmdline',$cmdline);1097push(@args,'-value',$value);1098push(@args,'-outputref',$outputref);10991100$self->SUPER::new(-text =>'command returned error',@args);1101}11021103sub stringify {1104my$self=shift;1105my$text=$self->SUPER::stringify;1106$self->cmdline() .': '.$text.': '.$self->value() ."\n";1107}11081109sub cmdline {1110my$self=shift;1111$self->{'-cmdline'};1112}11131114sub cmd_output {1115my$self=shift;1116my$ref=$self->{'-outputref'};1117defined$refor undef;1118if(ref$refeq'ARRAY') {1119return@$ref;1120}else{# SCALAR1121return$$ref;1122}1123}1124}11251126=over 411271128=item git_cmd_try { CODE } ERRMSG11291130This 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 line1133and %d for the exit status. This statement is useful mostly for producing1134more user-friendly error messages.11351136In case of no exception caught the statement returns C<CODE>'s return value.11371138Note that this is the only auto-exported function.11391140=cut11411142sub git_cmd_try(&$) {1143my($code,$errmsg) =@_;1144my@result;1145my$err;1146my$array=wantarray;1147try{1148if($array) {1149@result= &$code;1150}else{1151$result[0] = &$code;1152}1153} catch Git::Error::Command with {1154my$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 mangle1159# that to Error::Simple.1160};1161$errand croak $err;1162return$array?@result:$result[0];1163}116411651166=back11671168=head1 COPYRIGHT11691170Copyright 2006 by Petr Baudis E<lt>pasky@suse.czE<gt>.11711172This module is free software; it may be used, copied, modified1173and distributed under the terms of the GNU General Public Licence,1174either version 2, or (at your option) any later version.11751176=cut117711781179# Take raw method argument list and return ($obj, @args) in case1180# the method was called upon an instance and (undef, @args) if1181# it was called directly.1182sub _maybe_self {1183# This breaks inheritance. Oh well.1184ref$_[0]eq'Git'?@_: (undef,@_);1185}11861187# Check if the command id is something reasonable.1188sub _check_valid_cmd {1189my($cmd) =@_;1190$cmd=~/^[a-z0-9A-Z_-]+$/or throw Error::Simple("bad command:$cmd");1191}11921193# Common backend for the pipe creators.1194sub _command_common_pipe {1195my$direction=shift;1196my($self,@p) = _maybe_self(@_);1197my(%opts,$cmd,@args);1198if(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);12051206my$fh;1207if($^Oeq'MSWin32') {1208# ActiveState Perl1209#defined $opts{STDERR} and1210# warn 'ignoring STDERR option - running w/ ActiveState';1211$directioneq'-|'or1212die'input pipe for ActiveState not implemented';1213# the strange construction with *ACPIPE is just to1214# explain the tie below that we want to bind to1215# a handle class, not scalar. It is not known if1216# it is something specific to ActiveState Perl or1217# just a Perl quirk.1218 tie (*ACPIPE,'Git::activestate_pipe',$cmd,@args);1219$fh= *ACPIPE;12201221}else{1222my$pid=open($fh,$direction);1223if(not defined$pid) {1224 throw Error::Simple("open failed:$!");1225}elsif($pid==0) {1226if(defined$opts{STDERR}) {1227close STDERR;1228}1229if($opts{STDERR}) {1230open(STDERR,'>&',$opts{STDERR})1231or die"dup failed:$!";1232}1233 _cmd_exec($self,$cmd,@args);1234}1235}1236returnwantarray? ($fh,join(' ',$cmd,@args)) :$fh;1237}12381239# When already in the subprocess, set up the appropriate state1240# for the given repository and execute the git command.1241sub _cmd_exec {1242my($self,@args) =@_;1243if($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);1249dieqq[exec "@args" failed:$!];1250}12511252# Execute the given Git command ($_[0]) with arguments ($_[1..])1253# by searching for it at proper places.1254sub _execv_git_cmd {exec('git',@_); }12551256# Close pipe to a subprocess.1257sub _cmd_close {1258my($fh,$ctx) =@_;1259if(not close$fh) {1260if($!) {1261# It's just close, no point in fatalities1262 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 command1268# dying of SIGPIPE would drive us here.1269}1270}127112721273sub DESTROY {1274my($self) =@_;1275$self->_close_hash_and_insert_object();1276$self->_close_cat_blob();1277}127812791280# Pipe implementation for ActiveState Perl.12811282package Git::activestate_pipe;1283use strict;12841285sub TIEHANDLE {1286my($class,@params) =@_;1287# FIXME: This is probably horrible idea and the thing will explode1288# at the moment you give it arguments that require some quoting,1289# but I have no ActiveState clue... --pasky1290# Let's just hope ActiveState Perl does at least the quoting1291# correctly.1292my@data=qx{git@params};1293bless{ i =>0, data => \@data},$class;1294}12951296sub READLINE {1297my$self=shift;1298if($self->{i} >=scalar@{$self->{data}}) {1299returnundef;1300}1301my$i=$self->{i};1302if(wantarray) {1303$self->{i} =$#{$self->{'data'}} +1;1304returnsplice(@{$self->{'data'}},$i);1305}1306$self->{i} =$i+1;1307return$self->{'data'}->[$i];1308}13091310sub CLOSE {1311my$self=shift;1312delete$self->{data};1313delete$self->{i};1314}13151316sub EOF {1317my$self=shift;1318return($self->{i} >=scalar@{$self->{data}});1319}1320132113221;# Famous last words