1#!/usr/bin/perl 2 3#### 4#### This application is a CVS emulation layer for git. 5#### It is intended for clients to connect over SSH. 6#### See the documentation for more details. 7#### 8#### Copyright The Open University UK - 2006. 9#### 10#### Authors: Martyn Smith <martyn@catalyst.net.nz> 11#### Martin Langhoff <martin@catalyst.net.nz> 12#### 13#### 14#### Released under the GNU Public License, version 2. 15#### 16#### 17 18use strict; 19use warnings; 20use bytes; 21 22use Fcntl; 23use File::Temp qw/tempdir tempfile/; 24use File::Basename; 25use Getopt::Long qw(:config require_order no_ignore_case); 26 27my$VERSION='@@GIT_VERSION@@'; 28 29my$log= GITCVS::log->new(); 30my$cfg; 31 32my$DATE_LIST= { 33 Jan =>"01", 34 Feb =>"02", 35 Mar =>"03", 36 Apr =>"04", 37 May =>"05", 38 Jun =>"06", 39 Jul =>"07", 40 Aug =>"08", 41 Sep =>"09", 42 Oct =>"10", 43 Nov =>"11", 44 Dec =>"12", 45}; 46 47# Enable autoflush for STDOUT (otherwise the whole thing falls apart) 48$| =1; 49 50#### Definition and mappings of functions #### 51 52my$methods= { 53'Root'=> \&req_Root, 54'Valid-responses'=> \&req_Validresponses, 55'valid-requests'=> \&req_validrequests, 56'Directory'=> \&req_Directory, 57'Entry'=> \&req_Entry, 58'Modified'=> \&req_Modified, 59'Unchanged'=> \&req_Unchanged, 60'Questionable'=> \&req_Questionable, 61'Argument'=> \&req_Argument, 62'Argumentx'=> \&req_Argument, 63'expand-modules'=> \&req_expandmodules, 64'add'=> \&req_add, 65'remove'=> \&req_remove, 66'co'=> \&req_co, 67'update'=> \&req_update, 68'ci'=> \&req_ci, 69'diff'=> \&req_diff, 70'log'=> \&req_log, 71'rlog'=> \&req_log, 72'tag'=> \&req_CATCHALL, 73'status'=> \&req_status, 74'admin'=> \&req_CATCHALL, 75'history'=> \&req_CATCHALL, 76'watchers'=> \&req_CATCHALL, 77'editors'=> \&req_CATCHALL, 78'annotate'=> \&req_annotate, 79'Global_option'=> \&req_Globaloption, 80#'annotate' => \&req_CATCHALL, 81}; 82 83############################################## 84 85 86# $state holds all the bits of information the clients sends us that could 87# potentially be useful when it comes to actually _doing_ something. 88my$state= { prependdir =>''}; 89$log->info("--------------- STARTING -----------------"); 90 91my$usage= 92"Usage: git-cvsserver [options] [pserver|server] [<directory> ...]\n". 93" --base-path <path> : Prepend to requested CVSROOT\n". 94" --strict-paths : Don't allow recursing into subdirectories\n". 95" --export-all : Don't check for gitcvs.enabled in config\n". 96" --version, -V : Print version information and exit\n". 97" --help, -h, -H : Print usage information and exit\n". 98"\n". 99"<directory> ... is a list of allowed directories. If no directories\n". 100"are given, all are allowed. This is an additional restriction, gitcvs\n". 101"access still needs to be enabled by the gitcvs.enabled config option.\n"; 102 103my@opts= ('help|h|H','version|V', 104'base-path=s','strict-paths','export-all'); 105GetOptions($state,@opts) 106or die$usage; 107 108if($state->{version}) { 109print"git-cvsserver version$VERSION\n"; 110exit; 111} 112if($state->{help}) { 113print$usage; 114exit; 115} 116 117my$TEMP_DIR= tempdir( CLEANUP =>1); 118$log->debug("Temporary directory is '$TEMP_DIR'"); 119 120$state->{method} ='ext'; 121if(@ARGV) { 122if($ARGV[0]eq'pserver') { 123$state->{method} ='pserver'; 124shift@ARGV; 125}elsif($ARGV[0]eq'server') { 126shift@ARGV; 127} 128} 129 130# everything else is a directory 131$state->{allowed_roots} = [@ARGV]; 132 133# don't export the whole system unless the users requests it 134if($state->{'export-all'} && !@{$state->{allowed_roots}}) { 135die"--export-all can only be used together with an explicit whitelist\n"; 136} 137 138# if we are called with a pserver argument, 139# deal with the authentication cat before entering the 140# main loop 141if($state->{method}eq'pserver') { 142my$line= <STDIN>;chomp$line; 143unless($line=~/^BEGIN (AUTH|VERIFICATION) REQUEST$/) { 144die"E Do not understand$line- expecting BEGIN AUTH REQUEST\n"; 145} 146my$request=$1; 147$line= <STDIN>;chomp$line; 148unless(req_Root('root',$line)) {# reuse Root 149print"E Invalid root$line\n"; 150exit1; 151} 152$line= <STDIN>;chomp$line; 153unless($lineeq'anonymous') { 154print"E Only anonymous user allowed via pserver\n"; 155print"I HATE YOU\n"; 156exit1; 157} 158$line= <STDIN>;chomp$line;# validate the password? 159$line= <STDIN>;chomp$line; 160unless($lineeq"END$requestREQUEST") { 161die"E Do not understand$line-- expecting END$requestREQUEST\n"; 162} 163print"I LOVE YOU\n"; 164exit if$requesteq'VERIFICATION';# cvs login 165# and now back to our regular programme... 166} 167 168# Keep going until the client closes the connection 169while(<STDIN>) 170{ 171chomp; 172 173# Check to see if we've seen this method, and call appropriate function. 174if(/^([\w-]+)(?:\s+(.*))?$/and defined($methods->{$1}) ) 175{ 176# use the $methods hash to call the appropriate sub for this command 177#$log->info("Method : $1"); 178&{$methods->{$1}}($1,$2); 179}else{ 180# log fatal because we don't understand this function. If this happens 181# we're fairly screwed because we don't know if the client is expecting 182# a response. If it is, the client will hang, we'll hang, and the whole 183# thing will be custard. 184$log->fatal("Don't understand command$_\n"); 185die("Unknown command$_"); 186} 187} 188 189$log->debug("Processing time : user=". (times)[0] ." system=". (times)[1]); 190$log->info("--------------- FINISH -----------------"); 191 192# Magic catchall method. 193# This is the method that will handle all commands we haven't yet 194# implemented. It simply sends a warning to the log file indicating a 195# command that hasn't been implemented has been invoked. 196sub req_CATCHALL 197{ 198my($cmd,$data) =@_; 199$log->warn("Unhandled command : req_$cmd:$data"); 200} 201 202 203# Root pathname \n 204# Response expected: no. Tell the server which CVSROOT to use. Note that 205# pathname is a local directory and not a fully qualified CVSROOT variable. 206# pathname must already exist; if creating a new root, use the init 207# request, not Root. pathname does not include the hostname of the server, 208# how to access the server, etc.; by the time the CVS protocol is in use, 209# connection, authentication, etc., are already taken care of. The Root 210# request must be sent only once, and it must be sent before any requests 211# other than Valid-responses, valid-requests, UseUnchanged, Set or init. 212sub req_Root 213{ 214my($cmd,$data) =@_; 215$log->debug("req_Root :$data"); 216 217unless($data=~ m#^/#) { 218print"error 1 Root must be an absolute pathname\n"; 219return0; 220} 221 222my$cvsroot=$state->{'base-path'} ||''; 223$cvsroot=~ s#/+$##; 224$cvsroot.=$data; 225 226if($state->{CVSROOT} 227&& ($state->{CVSROOT}ne$cvsroot)) { 228print"error 1 Conflicting roots specified\n"; 229return0; 230} 231 232$state->{CVSROOT} =$cvsroot; 233 234$ENV{GIT_DIR} =$state->{CVSROOT} ."/"; 235 236if(@{$state->{allowed_roots}}) { 237my$allowed=0; 238foreachmy$dir(@{$state->{allowed_roots}}) { 239next unless$dir=~ m#^/#; 240$dir=~ s#/+$##; 241if($state->{'strict-paths'}) { 242if($ENV{GIT_DIR} =~ m#^\Q$dir\E/?$#) { 243$allowed=1; 244last; 245} 246}elsif($ENV{GIT_DIR} =~ m#^\Q$dir\E(/?$|/)#) { 247$allowed=1; 248last; 249} 250} 251 252unless($allowed) { 253print"E$ENV{GIT_DIR} does not seem to be a valid GIT repository\n"; 254print"E\n"; 255print"error 1$ENV{GIT_DIR} is not a valid repository\n"; 256return0; 257} 258} 259 260unless(-d $ENV{GIT_DIR} && -e $ENV{GIT_DIR}.'HEAD') { 261print"E$ENV{GIT_DIR} does not seem to be a valid GIT repository\n"; 262print"E\n"; 263print"error 1$ENV{GIT_DIR} is not a valid repository\n"; 264return0; 265} 266 267my@gitvars=`git-config -l`; 268if($?) { 269print"E problems executing git-config on the server -- this is not a git repository or the PATH is not set correctly.\n"; 270print"E\n"; 271print"error 1 - problem executing git-config\n"; 272return0; 273} 274foreachmy$line(@gitvars) 275{ 276next unless($line=~/^(gitcvs)\.(?:(ext|pserver)\.)?([\w-]+)=(.*)$/); 277unless($2) { 278$cfg->{$1}{$3} =$4; 279}else{ 280$cfg->{$1}{$2}{$3} =$4; 281} 282} 283 284my$enabled= ($cfg->{gitcvs}{$state->{method}}{enabled} 285||$cfg->{gitcvs}{enabled}); 286unless($state->{'export-all'} || 287($enabled&&$enabled=~/^\s*(1|true|yes)\s*$/i)) { 288print"E GITCVS emulation needs to be enabled on this repo\n"; 289print"E the repo config file needs a [gitcvs] section added, and the parameter 'enabled' set to 1\n"; 290print"E\n"; 291print"error 1 GITCVS emulation disabled\n"; 292return0; 293} 294 295my$logfile=$cfg->{gitcvs}{$state->{method}}{logfile} ||$cfg->{gitcvs}{logfile}; 296if($logfile) 297{ 298$log->setfile($logfile); 299}else{ 300$log->nofile(); 301} 302 303return1; 304} 305 306# Global_option option \n 307# Response expected: no. Transmit one of the global options `-q', `-Q', 308# `-l', `-t', `-r', or `-n'. option must be one of those strings, no 309# variations (such as combining of options) are allowed. For graceful 310# handling of valid-requests, it is probably better to make new global 311# options separate requests, rather than trying to add them to this 312# request. 313sub req_Globaloption 314{ 315my($cmd,$data) =@_; 316$log->debug("req_Globaloption :$data"); 317$state->{globaloptions}{$data} =1; 318} 319 320# Valid-responses request-list \n 321# Response expected: no. Tell the server what responses the client will 322# accept. request-list is a space separated list of tokens. 323sub req_Validresponses 324{ 325my($cmd,$data) =@_; 326$log->debug("req_Validresponses :$data"); 327 328# TODO : re-enable this, currently it's not particularly useful 329#$state->{validresponses} = [ split /\s+/, $data ]; 330} 331 332# valid-requests \n 333# Response expected: yes. Ask the server to send back a Valid-requests 334# response. 335sub req_validrequests 336{ 337my($cmd,$data) =@_; 338 339$log->debug("req_validrequests"); 340 341$log->debug("SEND : Valid-requests ".join(" ",keys%$methods)); 342$log->debug("SEND : ok"); 343 344print"Valid-requests ".join(" ",keys%$methods) ."\n"; 345print"ok\n"; 346} 347 348# Directory local-directory \n 349# Additional data: repository \n. Response expected: no. Tell the server 350# what directory to use. The repository should be a directory name from a 351# previous server response. Note that this both gives a default for Entry 352# and Modified and also for ci and the other commands; normal usage is to 353# send Directory for each directory in which there will be an Entry or 354# Modified, and then a final Directory for the original directory, then the 355# command. The local-directory is relative to the top level at which the 356# command is occurring (i.e. the last Directory which is sent before the 357# command); to indicate that top level, `.' should be sent for 358# local-directory. 359sub req_Directory 360{ 361my($cmd,$data) =@_; 362 363my$repository= <STDIN>; 364chomp$repository; 365 366 367$state->{localdir} =$data; 368$state->{repository} =$repository; 369$state->{path} =$repository; 370$state->{path} =~s/^$state->{CVSROOT}\///; 371$state->{module} =$1if($state->{path} =~s/^(.*?)(\/|$)//); 372$state->{path} .="/"if($state->{path} =~ /\S/ ); 373 374$state->{directory} =$state->{localdir}; 375$state->{directory} =""if($state->{directory}eq"."); 376$state->{directory} .="/"if($state->{directory} =~ /\S/ ); 377 378if( (not defined($state->{prependdir})or$state->{prependdir}eq'')and$state->{localdir}eq"."and$state->{path} =~/\S/) 379{ 380$log->info("Setting prepend to '$state->{path}'"); 381$state->{prependdir} =$state->{path}; 382foreachmy$entry(keys%{$state->{entries}} ) 383{ 384$state->{entries}{$state->{prependdir} .$entry} =$state->{entries}{$entry}; 385delete$state->{entries}{$entry}; 386} 387} 388 389if(defined($state->{prependdir} ) ) 390{ 391$log->debug("Prepending '$state->{prependdir}' to state|directory"); 392$state->{directory} =$state->{prependdir} .$state->{directory} 393} 394$log->debug("req_Directory : localdir=$datarepository=$repositorypath=$state->{path} directory=$state->{directory} module=$state->{module}"); 395} 396 397# Entry entry-line \n 398# Response expected: no. Tell the server what version of a file is on the 399# local machine. The name in entry-line is a name relative to the directory 400# most recently specified with Directory. If the user is operating on only 401# some files in a directory, Entry requests for only those files need be 402# included. If an Entry request is sent without Modified, Is-modified, or 403# Unchanged, it means the file is lost (does not exist in the working 404# directory). If both Entry and one of Modified, Is-modified, or Unchanged 405# are sent for the same file, Entry must be sent first. For a given file, 406# one can send Modified, Is-modified, or Unchanged, but not more than one 407# of these three. 408sub req_Entry 409{ 410my($cmd,$data) =@_; 411 412#$log->debug("req_Entry : $data"); 413 414my@data=split(/\//,$data); 415 416$state->{entries}{$state->{directory}.$data[1]} = { 417 revision =>$data[2], 418 conflict =>$data[3], 419 options =>$data[4], 420 tag_or_date =>$data[5], 421}; 422 423$log->info("Received entry line '$data' => '".$state->{directory} .$data[1] ."'"); 424} 425 426# Questionable filename \n 427# Response expected: no. Additional data: no. Tell the server to check 428# whether filename should be ignored, and if not, next time the server 429# sends responses, send (in a M response) `?' followed by the directory and 430# filename. filename must not contain `/'; it needs to be a file in the 431# directory named by the most recent Directory request. 432sub req_Questionable 433{ 434my($cmd,$data) =@_; 435 436$log->debug("req_Questionable :$data"); 437$state->{entries}{$state->{directory}.$data}{questionable} =1; 438} 439 440# add \n 441# Response expected: yes. Add a file or directory. This uses any previous 442# Argument, Directory, Entry, or Modified requests, if they have been sent. 443# The last Directory sent specifies the working directory at the time of 444# the operation. To add a directory, send the directory to be added using 445# Directory and Argument requests. 446sub req_add 447{ 448my($cmd,$data) =@_; 449 450 argsplit("add"); 451 452my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 453$updater->update(); 454 455 argsfromdir($updater); 456 457my$addcount=0; 458 459foreachmy$filename( @{$state->{args}} ) 460{ 461$filename= filecleanup($filename); 462 463my$meta=$updater->getmeta($filename); 464my$wrev= revparse($filename); 465 466if($wrev&&$meta&& ($wrev<0)) 467{ 468# previously removed file, add back 469$log->info("added file$filenamewas previously removed, send 1.$meta->{revision}"); 470 471print"MT +updated\n"; 472print"MT text U\n"; 473print"MT fname$filename\n"; 474print"MT newline\n"; 475print"MT -updated\n"; 476 477unless($state->{globaloptions}{-n} ) 478{ 479my($filepart,$dirpart) = filenamesplit($filename,1); 480 481print"Created$dirpart\n"; 482print$state->{CVSROOT} ."/$state->{module}/$filename\n"; 483 484# this is an "entries" line 485my$kopts= kopts_from_path($filepart); 486$log->debug("/$filepart/1.$meta->{revision}//$kopts/"); 487print"/$filepart/1.$meta->{revision}//$kopts/\n"; 488# permissions 489$log->debug("SEND : u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}"); 490print"u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}\n"; 491# transmit file 492 transmitfile($meta->{filehash}); 493} 494 495next; 496} 497 498unless(defined($state->{entries}{$filename}{modified_filename} ) ) 499{ 500print"E cvs add: nothing known about `$filename'\n"; 501next; 502} 503# TODO : check we're not squashing an already existing file 504if(defined($state->{entries}{$filename}{revision} ) ) 505{ 506print"E cvs add: `$filename' has already been entered\n"; 507next; 508} 509 510my($filepart,$dirpart) = filenamesplit($filename,1); 511 512print"E cvs add: scheduling file `$filename' for addition\n"; 513 514print"Checked-in$dirpart\n"; 515print"$filename\n"; 516my$kopts= kopts_from_path($filepart); 517print"/$filepart/0//$kopts/\n"; 518 519$addcount++; 520} 521 522if($addcount==1) 523{ 524print"E cvs add: use `cvs commit' to add this file permanently\n"; 525} 526elsif($addcount>1) 527{ 528print"E cvs add: use `cvs commit' to add these files permanently\n"; 529} 530 531print"ok\n"; 532} 533 534# remove \n 535# Response expected: yes. Remove a file. This uses any previous Argument, 536# Directory, Entry, or Modified requests, if they have been sent. The last 537# Directory sent specifies the working directory at the time of the 538# operation. Note that this request does not actually do anything to the 539# repository; the only effect of a successful remove request is to supply 540# the client with a new entries line containing `-' to indicate a removed 541# file. In fact, the client probably could perform this operation without 542# contacting the server, although using remove may cause the server to 543# perform a few more checks. The client sends a subsequent ci request to 544# actually record the removal in the repository. 545sub req_remove 546{ 547my($cmd,$data) =@_; 548 549 argsplit("remove"); 550 551# Grab a handle to the SQLite db and do any necessary updates 552my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 553$updater->update(); 554 555#$log->debug("add state : " . Dumper($state)); 556 557my$rmcount=0; 558 559foreachmy$filename( @{$state->{args}} ) 560{ 561$filename= filecleanup($filename); 562 563if(defined($state->{entries}{$filename}{unchanged} )or defined($state->{entries}{$filename}{modified_filename} ) ) 564{ 565print"E cvs remove: file `$filename' still in working directory\n"; 566next; 567} 568 569my$meta=$updater->getmeta($filename); 570my$wrev= revparse($filename); 571 572unless(defined($wrev) ) 573{ 574print"E cvs remove: nothing known about `$filename'\n"; 575next; 576} 577 578if(defined($wrev)and$wrev<0) 579{ 580print"E cvs remove: file `$filename' already scheduled for removal\n"; 581next; 582} 583 584unless($wrev==$meta->{revision} ) 585{ 586# TODO : not sure if the format of this message is quite correct. 587print"E cvs remove: Up to date check failed for `$filename'\n"; 588next; 589} 590 591 592my($filepart,$dirpart) = filenamesplit($filename,1); 593 594print"E cvs remove: scheduling `$filename' for removal\n"; 595 596print"Checked-in$dirpart\n"; 597print"$filename\n"; 598my$kopts= kopts_from_path($filepart); 599print"/$filepart/-1.$wrev//$kopts/\n"; 600 601$rmcount++; 602} 603 604if($rmcount==1) 605{ 606print"E cvs remove: use `cvs commit' to remove this file permanently\n"; 607} 608elsif($rmcount>1) 609{ 610print"E cvs remove: use `cvs commit' to remove these files permanently\n"; 611} 612 613print"ok\n"; 614} 615 616# Modified filename \n 617# Response expected: no. Additional data: mode, \n, file transmission. Send 618# the server a copy of one locally modified file. filename is a file within 619# the most recent directory sent with Directory; it must not contain `/'. 620# If the user is operating on only some files in a directory, only those 621# files need to be included. This can also be sent without Entry, if there 622# is no entry for the file. 623sub req_Modified 624{ 625my($cmd,$data) =@_; 626 627my$mode= <STDIN>; 628defined$mode 629or(print"E end of file reading mode for$data\n"),return; 630chomp$mode; 631my$size= <STDIN>; 632defined$size 633or(print"E end of file reading size of$data\n"),return; 634chomp$size; 635 636# Grab config information 637my$blocksize=8192; 638my$bytesleft=$size; 639my$tmp; 640 641# Get a filehandle/name to write it to 642my($fh,$filename) = tempfile( DIR =>$TEMP_DIR); 643 644# Loop over file data writing out to temporary file. 645while($bytesleft) 646{ 647$blocksize=$bytesleftif($bytesleft<$blocksize); 648read STDIN,$tmp,$blocksize; 649print$fh $tmp; 650$bytesleft-=$blocksize; 651} 652 653close$fh 654or(print"E failed to write temporary,$filename:$!\n"),return; 655 656# Ensure we have something sensible for the file mode 657if($mode=~/u=(\w+)/) 658{ 659$mode=$1; 660}else{ 661$mode="rw"; 662} 663 664# Save the file data in $state 665$state->{entries}{$state->{directory}.$data}{modified_filename} =$filename; 666$state->{entries}{$state->{directory}.$data}{modified_mode} =$mode; 667$state->{entries}{$state->{directory}.$data}{modified_hash} =`git-hash-object$filename`; 668$state->{entries}{$state->{directory}.$data}{modified_hash} =~ s/\s.*$//s; 669 670 #$log->debug("req_Modified : file=$datamode=$modesize=$size"); 671} 672 673# Unchanged filename\n 674# Response expected: no. Tell the server that filename has not been 675# modified in the checked out directory. The filename is a file within the 676# most recent directory sent with Directory; it must not contain `/'. 677sub req_Unchanged 678{ 679 my ($cmd,$data) =@_; 680 681$state->{entries}{$state->{directory}.$data}{unchanged} = 1; 682 683 #$log->debug("req_Unchanged :$data"); 684} 685 686# Argument text\n 687# Response expected: no. Save argument for use in a subsequent command. 688# Arguments accumulate until an argument-using command is given, at which 689# point they are forgotten. 690# Argumentx text\n 691# Response expected: no. Append\nfollowed by text to the current argument 692# being saved. 693sub req_Argument 694{ 695 my ($cmd,$data) =@_; 696 697 # Argumentx means: append to last Argument (with a newline in front) 698 699$log->debug("$cmd:$data"); 700 701 if ($cmdeq 'Argumentx') { 702 ${$state->{arguments}}[$#{$state->{arguments}}] .= "\n" .$data; 703 } else { 704 push @{$state->{arguments}},$data; 705 } 706} 707 708# expand-modules\n 709# Response expected: yes. Expand the modules which are specified in the 710# arguments. Returns the data in Module-expansion responses. Note that the 711# server can assume that this is checkout or export, not rtag or rdiff; the 712# latter do not access the working directory and thus have no need to 713# expand modules on the client side. Expand may not be the best word for 714# what this request does. It does not necessarily tell you all the files 715# contained in a module, for example. Basically it is a way of telling you 716# which working directories the server needs to know about in order to 717# handle a checkout of the specified modules. For example, suppose that the 718# server has a module defined by 719# aliasmodule -a 1dir 720# That is, one can check out aliasmodule and it will take 1dir in the 721# repository and check it out to 1dir in the working directory. Now suppose 722# the client already has this module checked out and is planning on using 723# the co request to update it. Without using expand-modules, the client 724# would have two bad choices: it could either send information about all 725# working directories under the current directory, which could be 726# unnecessarily slow, or it could be ignorant of the fact that aliasmodule 727# stands for 1dir, and neglect to send information for 1dir, which would 728# lead to incorrect operation. With expand-modules, the client would first 729# ask for the module to be expanded: 730sub req_expandmodules 731{ 732 my ($cmd,$data) =@_; 733 734 argsplit(); 735 736$log->debug("req_expandmodules : " . ( defined($data) ?$data: "[NULL]" ) ); 737 738 unless ( ref$state->{arguments} eq "ARRAY" ) 739 { 740 print "ok\n"; 741 return; 742 } 743 744 foreach my$module( @{$state->{arguments}} ) 745 { 746$log->debug("SEND : Module-expansion$module"); 747 print "Module-expansion$module\n"; 748 } 749 750 print "ok\n"; 751 statecleanup(); 752} 753 754# co\n 755# Response expected: yes. Get files from the repository. This uses any 756# previous Argument, Directory, Entry, or Modified requests, if they have 757# been sent. Arguments to this command are module names; the client cannot 758# know what directories they correspond to except by (1) just sending the 759# co request, and then seeing what directory names the server sends back in 760# its responses, and (2) the expand-modules request. 761sub req_co 762{ 763 my ($cmd,$data) =@_; 764 765 argsplit("co"); 766 767 my$module=$state->{args}[0]; 768 my$checkout_path=$module; 769 770 # use the user specified directory if we're given it 771$checkout_path=$state->{opt}{d}if(exists($state->{opt}{d} ) ); 772 773$log->debug("req_co : ". (defined($data) ?$data:"[NULL]") ); 774 775$log->info("Checking out module '$module' ($state->{CVSROOT}) to '$checkout_path'"); 776 777$ENV{GIT_DIR} =$state->{CVSROOT} ."/"; 778 779# Grab a handle to the SQLite db and do any necessary updates 780my$updater= GITCVS::updater->new($state->{CVSROOT},$module,$log); 781$updater->update(); 782 783$checkout_path=~ s|/$||;# get rid of trailing slashes 784 785# Eclipse seems to need the Clear-sticky command 786# to prepare the 'Entries' file for the new directory. 787print"Clear-sticky$checkout_path/\n"; 788print$state->{CVSROOT} ."/$module/\n"; 789print"Clear-static-directory$checkout_path/\n"; 790print$state->{CVSROOT} ."/$module/\n"; 791print"Clear-sticky$checkout_path/\n";# yes, twice 792print$state->{CVSROOT} ."/$module/\n"; 793print"Template$checkout_path/\n"; 794print$state->{CVSROOT} ."/$module/\n"; 795print"0\n"; 796 797# instruct the client that we're checking out to $checkout_path 798print"E cvs checkout: Updating$checkout_path\n"; 799 800my%seendirs= (); 801my$lastdir=''; 802 803# recursive 804sub prepdir { 805my($dir,$repodir,$remotedir,$seendirs) =@_; 806my$parent= dirname($dir); 807$dir=~ s|/+$||; 808$repodir=~ s|/+$||; 809$remotedir=~ s|/+$||; 810$parent=~ s|/+$||; 811$log->debug("announcedir$dir,$repodir,$remotedir"); 812 813if($parenteq'.'||$parenteq'./') { 814$parent=''; 815} 816# recurse to announce unseen parents first 817if(length($parent) && !exists($seendirs->{$parent})) { 818 prepdir($parent,$repodir,$remotedir,$seendirs); 819} 820# Announce that we are going to modify at the parent level 821if($parent) { 822print"E cvs checkout: Updating$remotedir/$parent\n"; 823}else{ 824print"E cvs checkout: Updating$remotedir\n"; 825} 826print"Clear-sticky$remotedir/$parent/\n"; 827print"$repodir/$parent/\n"; 828 829print"Clear-static-directory$remotedir/$dir/\n"; 830print"$repodir/$dir/\n"; 831print"Clear-sticky$remotedir/$parent/\n";# yes, twice 832print"$repodir/$parent/\n"; 833print"Template$remotedir/$dir/\n"; 834print"$repodir/$dir/\n"; 835print"0\n"; 836 837$seendirs->{$dir} =1; 838} 839 840foreachmy$git( @{$updater->gethead} ) 841{ 842# Don't want to check out deleted files 843next if($git->{filehash}eq"deleted"); 844 845($git->{name},$git->{dir} ) = filenamesplit($git->{name}); 846 847if(length($git->{dir}) &&$git->{dir}ne'./' 848&&$git->{dir}ne$lastdir) { 849unless(exists($seendirs{$git->{dir}})) { 850 prepdir($git->{dir},$state->{CVSROOT} ."/$module/", 851$checkout_path, \%seendirs); 852$lastdir=$git->{dir}; 853$seendirs{$git->{dir}} =1; 854} 855print"E cvs checkout: Updating /$checkout_path/$git->{dir}\n"; 856} 857 858# modification time of this file 859print"Mod-time$git->{modified}\n"; 860 861# print some information to the client 862if(defined($git->{dir} )and$git->{dir}ne"./") 863{ 864print"M U$checkout_path/$git->{dir}$git->{name}\n"; 865}else{ 866print"M U$checkout_path/$git->{name}\n"; 867} 868 869# instruct client we're sending a file to put in this path 870print"Created$checkout_path/". (defined($git->{dir} )and$git->{dir}ne"./"?$git->{dir} ."/":"") ."\n"; 871 872print$state->{CVSROOT} ."/$module/". (defined($git->{dir} )and$git->{dir}ne"./"?$git->{dir} ."/":"") ."$git->{name}\n"; 873 874# this is an "entries" line 875my$kopts= kopts_from_path($git->{name}); 876print"/$git->{name}/1.$git->{revision}//$kopts/\n"; 877# permissions 878print"u=$git->{mode},g=$git->{mode},o=$git->{mode}\n"; 879 880# transmit file 881 transmitfile($git->{filehash}); 882} 883 884print"ok\n"; 885 886 statecleanup(); 887} 888 889# update \n 890# Response expected: yes. Actually do a cvs update command. This uses any 891# previous Argument, Directory, Entry, or Modified requests, if they have 892# been sent. The last Directory sent specifies the working directory at the 893# time of the operation. The -I option is not used--files which the client 894# can decide whether to ignore are not mentioned and the client sends the 895# Questionable request for others. 896sub req_update 897{ 898my($cmd,$data) =@_; 899 900$log->debug("req_update : ". (defined($data) ?$data:"[NULL]")); 901 902 argsplit("update"); 903 904# 905# It may just be a client exploring the available heads/modules 906# in that case, list them as top level directories and leave it 907# at that. Eclipse uses this technique to offer you a list of 908# projects (heads in this case) to checkout. 909# 910if($state->{module}eq'') { 911my$heads_dir=$state->{CVSROOT} .'/refs/heads'; 912if(!opendir HEADS,$heads_dir) { 913print"E [server aborted]: Failed to open directory, " 914."$heads_dir:$!\nerror\n"; 915return0; 916} 917print"E cvs update: Updating .\n"; 918while(my$head=readdir(HEADS)) { 919if(-f $state->{CVSROOT} .'/refs/heads/'.$head) { 920print"E cvs update: New directory `$head'\n"; 921} 922} 923closedir HEADS; 924print"ok\n"; 925return1; 926} 927 928 929# Grab a handle to the SQLite db and do any necessary updates 930my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 931 932$updater->update(); 933 934 argsfromdir($updater); 935 936#$log->debug("update state : " . Dumper($state)); 937 938# foreach file specified on the command line ... 939foreachmy$filename( @{$state->{args}} ) 940{ 941$filename= filecleanup($filename); 942 943$log->debug("Processing file$filename"); 944 945# if we have a -C we should pretend we never saw modified stuff 946if(exists($state->{opt}{C} ) ) 947{ 948delete$state->{entries}{$filename}{modified_hash}; 949delete$state->{entries}{$filename}{modified_filename}; 950$state->{entries}{$filename}{unchanged} =1; 951} 952 953my$meta; 954if(defined($state->{opt}{r})and$state->{opt}{r} =~/^1\.(\d+)/) 955{ 956$meta=$updater->getmeta($filename,$1); 957}else{ 958$meta=$updater->getmeta($filename); 959} 960 961if( !defined$meta) 962{ 963$meta= { 964 name =>$filename, 965 revision =>0, 966 filehash =>'added' 967}; 968} 969 970my$oldmeta=$meta; 971 972my$wrev= revparse($filename); 973 974# If the working copy is an old revision, lets get that version too for comparison. 975if(defined($wrev)and$wrev!=$meta->{revision} ) 976{ 977$oldmeta=$updater->getmeta($filename,$wrev); 978} 979 980#$log->debug("Target revision is $meta->{revision}, current working revision is $wrev"); 981 982# Files are up to date if the working copy and repo copy have the same revision, 983# and the working copy is unmodified _and_ the user hasn't specified -C 984next if(defined($wrev) 985and defined($meta->{revision}) 986and$wrev==$meta->{revision} 987and$state->{entries}{$filename}{unchanged} 988and not exists($state->{opt}{C} ) ); 989 990# If the working copy and repo copy have the same revision, 991# but the working copy is modified, tell the client it's modified 992if(defined($wrev) 993and defined($meta->{revision}) 994and$wrev==$meta->{revision} 995and defined($state->{entries}{$filename}{modified_hash}) 996and not exists($state->{opt}{C} ) ) 997{ 998$log->info("Tell the client the file is modified"); 999print"MT text M\n";1000print"MT fname$filename\n";1001print"MT newline\n";1002next;1003}10041005if($meta->{filehash}eq"deleted")1006{1007my($filepart,$dirpart) = filenamesplit($filename,1);10081009$log->info("Removing '$filename' from working copy (no longer in the repo)");10101011print"E cvs update: `$filename' is no longer in the repository\n";1012# Don't want to actually _DO_ the update if -n specified1013unless($state->{globaloptions}{-n} ) {1014print"Removed$dirpart\n";1015print"$filepart\n";1016}1017}1018elsif(not defined($state->{entries}{$filename}{modified_hash} )1019or$state->{entries}{$filename}{modified_hash}eq$oldmeta->{filehash}1020or$meta->{filehash}eq'added')1021{1022# normal update, just send the new revision (either U=Update,1023# or A=Add, or R=Remove)1024if(defined($wrev) &&$wrev<0)1025{1026$log->info("Tell the client the file is scheduled for removal");1027print"MT text R\n";1028print"MT fname$filename\n";1029print"MT newline\n";1030next;1031}1032elsif( (!defined($wrev) ||$wrev==0) && (!defined($meta->{revision}) ||$meta->{revision} ==0) )1033{1034$log->info("Tell the client the file is scheduled for addition");1035print"MT text A\n";1036print"MT fname$filename\n";1037print"MT newline\n";1038next;10391040}1041else{1042$log->info("Updating '$filename' to ".$meta->{revision});1043print"MT +updated\n";1044print"MT text U\n";1045print"MT fname$filename\n";1046print"MT newline\n";1047print"MT -updated\n";1048}10491050my($filepart,$dirpart) = filenamesplit($filename,1);10511052# Don't want to actually _DO_ the update if -n specified1053unless($state->{globaloptions}{-n} )1054{1055if(defined($wrev) )1056{1057# instruct client we're sending a file to put in this path as a replacement1058print"Update-existing$dirpart\n";1059$log->debug("Updating existing file 'Update-existing$dirpart'");1060}else{1061# instruct client we're sending a file to put in this path as a new file1062print"Clear-static-directory$dirpart\n";1063print$state->{CVSROOT} ."/$state->{module}/$dirpart\n";1064print"Clear-sticky$dirpart\n";1065print$state->{CVSROOT} ."/$state->{module}/$dirpart\n";10661067$log->debug("Creating new file 'Created$dirpart'");1068print"Created$dirpart\n";1069}1070print$state->{CVSROOT} ."/$state->{module}/$filename\n";10711072# this is an "entries" line1073my$kopts= kopts_from_path($filepart);1074$log->debug("/$filepart/1.$meta->{revision}//$kopts/");1075print"/$filepart/1.$meta->{revision}//$kopts/\n";10761077# permissions1078$log->debug("SEND : u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}");1079print"u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}\n";10801081# transmit file1082 transmitfile($meta->{filehash});1083}1084}else{1085$log->info("Updating '$filename'");1086my($filepart,$dirpart) = filenamesplit($meta->{name},1);10871088my$dir= tempdir( DIR =>$TEMP_DIR, CLEANUP =>1) ."/";10891090chdir$dir;1091my$file_local=$filepart.".mine";1092system("ln","-s",$state->{entries}{$filename}{modified_filename},$file_local);1093my$file_old=$filepart.".".$oldmeta->{revision};1094 transmitfile($oldmeta->{filehash},$file_old);1095my$file_new=$filepart.".".$meta->{revision};1096 transmitfile($meta->{filehash},$file_new);10971098# we need to merge with the local changes ( M=successful merge, C=conflict merge )1099$log->info("Merging$file_local,$file_old,$file_new");1100print"M Merging differences between 1.$oldmeta->{revision} and 1.$meta->{revision} into$filename\n";11011102$log->debug("Temporary directory for merge is$dir");11031104my$return=system("git","merge-file",$file_local,$file_old,$file_new);1105$return>>=8;11061107if($return==0)1108{1109$log->info("Merged successfully");1110print"M M$filename\n";1111$log->debug("Merged$dirpart");11121113# Don't want to actually _DO_ the update if -n specified1114unless($state->{globaloptions}{-n} )1115{1116print"Merged$dirpart\n";1117$log->debug($state->{CVSROOT} ."/$state->{module}/$filename");1118print$state->{CVSROOT} ."/$state->{module}/$filename\n";1119my$kopts= kopts_from_path($filepart);1120$log->debug("/$filepart/1.$meta->{revision}//$kopts/");1121print"/$filepart/1.$meta->{revision}//$kopts/\n";1122}1123}1124elsif($return==1)1125{1126$log->info("Merged with conflicts");1127print"E cvs update: conflicts found in$filename\n";1128print"M C$filename\n";11291130# Don't want to actually _DO_ the update if -n specified1131unless($state->{globaloptions}{-n} )1132{1133print"Merged$dirpart\n";1134print$state->{CVSROOT} ."/$state->{module}/$filename\n";1135my$kopts= kopts_from_path($filepart);1136print"/$filepart/1.$meta->{revision}/+/$kopts/\n";1137}1138}1139else1140{1141$log->warn("Merge failed");1142next;1143}11441145# Don't want to actually _DO_ the update if -n specified1146unless($state->{globaloptions}{-n} )1147{1148# permissions1149$log->debug("SEND : u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}");1150print"u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}\n";11511152# transmit file, format is single integer on a line by itself (file1153# size) followed by the file contents1154# TODO : we should copy files in blocks1155my$data=`cat$file_local`;1156$log->debug("File size : " . length($data));1157 print length($data) . "\n";1158 print$data;1159 }11601161 chdir "/";1162 }11631164 }11651166 print "ok\n";1167}11681169sub req_ci1170{1171 my ($cmd,$data) =@_;11721173 argsplit("ci");11741175 #$log->debug("State : " . Dumper($state));11761177$log->info("req_ci : " . ( defined($data) ?$data: "[NULL]" ));11781179 if ($state->{method} eq 'pserver')1180 {1181 print "error 1 pserver access cannot commit\n";1182 exit;1183 }11841185 if ( -e$state->{CVSROOT} . "/index" )1186 {1187$log->warn("file 'index' already exists in the git repository");1188 print "error 1 Index already exists in git repo\n";1189 exit;1190 }11911192 # Grab a handle to the SQLite db and do any necessary updates1193 my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1194$updater->update();11951196 my$tmpdir= tempdir ( DIR =>$TEMP_DIR);1197 my ( undef,$file_index) = tempfile ( DIR =>$TEMP_DIR, OPEN => 0 );1198$log->info("Lockless commit start, basing commit on '$tmpdir', index file is '$file_index'");11991200$ENV{GIT_DIR} =$state->{CVSROOT} . "/";1201$ENV{GIT_WORK_TREE} = ".";1202$ENV{GIT_INDEX_FILE} =$file_index;12031204 # Remember where the head was at the beginning.1205 my$parenthash= `git show-ref -s refs/heads/$state->{module}`;1206 chomp$parenthash;1207 if ($parenthash!~ /^[0-9a-f]{40}$/) {1208 print "error 1 pserver cannot find the current HEAD of module";1209 exit;1210 }12111212 chdir$tmpdir;12131214 # populate the temporary index1215 system("git-read-tree",$parenthash);1216 unless ($?== 0)1217 {1218 die "Error running git-read-tree$state->{module}$file_index$!";1219 }1220$log->info("Created index '$file_index' for head$state->{module} - exit status$?");12211222 my@committedfiles= ();1223 my%oldmeta;12241225 # foreach file specified on the command line ...1226 foreach my$filename( @{$state->{args}} )1227 {1228 my$committedfile=$filename;1229$filename= filecleanup($filename);12301231 next unless ( exists$state->{entries}{$filename}{modified_filename} or not$state->{entries}{$filename}{unchanged} );12321233 my$meta=$updater->getmeta($filename);1234$oldmeta{$filename} =$meta;12351236 my$wrev= revparse($filename);12371238 my ($filepart,$dirpart) = filenamesplit($filename);12391240 # do a checkout of the file if it is part of this tree1241 if ($wrev) {1242 system('git-checkout-index', '-f', '-u',$filename);1243 unless ($?== 0) {1244 die "Error running git-checkout-index -f -u$filename:$!";1245 }1246 }12471248 my$addflag= 0;1249 my$rmflag= 0;1250$rmflag= 1 if ( defined($wrev) and$wrev< 0 );1251$addflag= 1 unless ( -e$filename);12521253 # Do up to date checking1254 unless ($addflagor$wrev==$meta->{revision} or ($rmflagand -$wrev==$meta->{revision} ) )1255 {1256 # fail everything if an up to date check fails1257 print "error 1 Up to date check failed for$filename\n";1258 chdir "/";1259 exit;1260 }12611262 push@committedfiles,$committedfile;1263$log->info("Committing$filename");12641265 system("mkdir","-p",$dirpart) unless ( -d$dirpart);12661267 unless ($rmflag)1268 {1269$log->debug("rename$state->{entries}{$filename}{modified_filename}$filename");1270 rename$state->{entries}{$filename}{modified_filename},$filename;12711272 # Calculate modes to remove1273 my$invmode= "";1274 foreach ( qw (r w x) ) {$invmode.=$_unless ($state->{entries}{$filename}{modified_mode} =~ /$_/); }12751276$log->debug("chmod u+" .$state->{entries}{$filename}{modified_mode} . "-" .$invmode. "$filename");1277 system("chmod","u+" .$state->{entries}{$filename}{modified_mode} . "-" .$invmode,$filename);1278 }12791280 if ($rmflag)1281 {1282$log->info("Removing file '$filename'");1283 unlink($filename);1284 system("git-update-index", "--remove",$filename);1285 }1286 elsif ($addflag)1287 {1288$log->info("Adding file '$filename'");1289 system("git-update-index", "--add",$filename);1290 } else {1291$log->info("Updating file '$filename'");1292 system("git-update-index",$filename);1293 }1294 }12951296 unless ( scalar(@committedfiles) > 0 )1297 {1298 print "E No files to commit\n";1299 print "ok\n";1300 chdir "/";1301 return;1302 }13031304 my$treehash= `git-write-tree`;1305 chomp$treehash;13061307$log->debug("Treehash :$treehash, Parenthash :$parenthash");13081309 # write our commit message out if we have one ...1310 my ($msg_fh,$msg_filename) = tempfile( DIR =>$TEMP_DIR);1311 print$msg_fh$state->{opt}{m};# if ( exists ($state->{opt}{m} ) );1312 print$msg_fh"\n\nvia git-CVS emulator\n";1313 close$msg_fh;13141315 my$commithash= `git-commit-tree $treehash-p $parenthash<$msg_filename`;1316chomp($commithash);1317$log->info("Commit hash :$commithash");13181319unless($commithash=~/[a-zA-Z0-9]{40}/)1320{1321$log->warn("Commit failed (Invalid commit hash)");1322print"error 1 Commit failed (unknown reason)\n";1323chdir"/";1324exit;1325}13261327### Emulate git-receive-pack by running hooks/update1328my@hook= ($ENV{GIT_DIR}.'hooks/update',"refs/heads/$state->{module}",1329$parenthash,$commithash);1330if( -x $hook[0] ) {1331unless(system(@hook) ==0)1332{1333$log->warn("Commit failed (update hook declined to update ref)");1334print"error 1 Commit failed (update hook declined)\n";1335chdir"/";1336exit;1337}1338}13391340### Update the ref1341if(system(qw(git update-ref -m),"cvsserver ci",1342"refs/heads/$state->{module}",$commithash,$parenthash)) {1343$log->warn("update-ref for$state->{module} failed.");1344print"error 1 Cannot commit -- update first\n";1345exit;1346}13471348### Emulate git-receive-pack by running hooks/post-receive1349my$hook=$ENV{GIT_DIR}.'hooks/post-receive';1350if( -x $hook) {1351open(my$pipe,"|$hook") ||die"can't fork$!";13521353local$SIG{PIPE} =sub{die'pipe broke'};13541355print$pipe"$parenthash$commithashrefs/heads/$state->{module}\n";13561357close$pipe||die"bad pipe:$!$?";1358}13591360### Then hooks/post-update1361$hook=$ENV{GIT_DIR}.'hooks/post-update';1362if(-x $hook) {1363system($hook,"refs/heads/$state->{module}");1364}13651366$updater->update();13671368# foreach file specified on the command line ...1369foreachmy$filename(@committedfiles)1370{1371$filename= filecleanup($filename);13721373my$meta=$updater->getmeta($filename);1374unless(defined$meta->{revision}) {1375$meta->{revision} =1;1376}13771378my($filepart,$dirpart) = filenamesplit($filename,1);13791380$log->debug("Checked-in$dirpart:$filename");13811382print"M$state->{CVSROOT}/$state->{module}/$filename,v <--$dirpart$filepart\n";1383if(defined$meta->{filehash} &&$meta->{filehash}eq"deleted")1384{1385print"M new revision: delete; previous revision: 1.$oldmeta{$filename}{revision}\n";1386print"Remove-entry$dirpart\n";1387print"$filename\n";1388}else{1389if($meta->{revision} ==1) {1390print"M initial revision: 1.1\n";1391}else{1392print"M new revision: 1.$meta->{revision}; previous revision: 1.$oldmeta{$filename}{revision}\n";1393}1394print"Checked-in$dirpart\n";1395print"$filename\n";1396my$kopts= kopts_from_path($filepart);1397print"/$filepart/1.$meta->{revision}//$kopts/\n";1398}1399}14001401chdir"/";1402print"ok\n";1403}14041405sub req_status1406{1407my($cmd,$data) =@_;14081409 argsplit("status");14101411$log->info("req_status : ". (defined($data) ?$data:"[NULL]"));1412#$log->debug("status state : " . Dumper($state));14131414# Grab a handle to the SQLite db and do any necessary updates1415my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1416$updater->update();14171418# if no files were specified, we need to work out what files we should be providing status on ...1419 argsfromdir($updater);14201421# foreach file specified on the command line ...1422foreachmy$filename( @{$state->{args}} )1423{1424$filename= filecleanup($filename);14251426my$meta=$updater->getmeta($filename);1427my$oldmeta=$meta;14281429my$wrev= revparse($filename);14301431# If the working copy is an old revision, lets get that version too for comparison.1432if(defined($wrev)and$wrev!=$meta->{revision} )1433{1434$oldmeta=$updater->getmeta($filename,$wrev);1435}14361437# TODO : All possible statuses aren't yet implemented1438my$status;1439# Files are up to date if the working copy and repo copy have the same revision, and the working copy is unmodified1440$status="Up-to-date"if(defined($wrev)and defined($meta->{revision})and$wrev==$meta->{revision}1441and1442( ($state->{entries}{$filename}{unchanged}and(not defined($state->{entries}{$filename}{conflict} )or$state->{entries}{$filename}{conflict} !~/^\+=/) )1443or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$meta->{filehash} ) )1444);14451446# Need checkout if the working copy has an older revision than the repo copy, and the working copy is unmodified1447$status||="Needs Checkout"if(defined($wrev)and defined($meta->{revision} )and$meta->{revision} >$wrev1448and1449($state->{entries}{$filename}{unchanged}1450or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$oldmeta->{filehash} ) )1451);14521453# Need checkout if it exists in the repo but doesn't have a working copy1454$status||="Needs Checkout"if(not defined($wrev)and defined($meta->{revision} ) );14551456# Locally modified if working copy and repo copy have the same revision but there are local changes1457$status||="Locally Modified"if(defined($wrev)and defined($meta->{revision})and$wrev==$meta->{revision}and$state->{entries}{$filename}{modified_filename} );14581459# Needs Merge if working copy revision is less than repo copy and there are local changes1460$status||="Needs Merge"if(defined($wrev)and defined($meta->{revision} )and$meta->{revision} >$wrevand$state->{entries}{$filename}{modified_filename} );14611462$status||="Locally Added"if(defined($state->{entries}{$filename}{revision} )and not defined($meta->{revision} ) );1463$status||="Locally Removed"if(defined($wrev)and defined($meta->{revision} )and-$wrev==$meta->{revision} );1464$status||="Unresolved Conflict"if(defined($state->{entries}{$filename}{conflict} )and$state->{entries}{$filename}{conflict} =~/^\+=/);1465$status||="File had conflicts on merge"if(0);14661467$status||="Unknown";14681469print"M ===================================================================\n";1470print"M File:$filename\tStatus:$status\n";1471if(defined($state->{entries}{$filename}{revision}) )1472{1473print"M Working revision:\t".$state->{entries}{$filename}{revision} ."\n";1474}else{1475print"M Working revision:\tNo entry for$filename\n";1476}1477if(defined($meta->{revision}) )1478{1479print"M Repository revision:\t1.".$meta->{revision} ."\t$state->{CVSROOT}/$state->{module}/$filename,v\n";1480print"M Sticky Tag:\t\t(none)\n";1481print"M Sticky Date:\t\t(none)\n";1482print"M Sticky Options:\t\t(none)\n";1483}else{1484print"M Repository revision:\tNo revision control file\n";1485}1486print"M\n";1487}14881489print"ok\n";1490}14911492sub req_diff1493{1494my($cmd,$data) =@_;14951496 argsplit("diff");14971498$log->debug("req_diff : ". (defined($data) ?$data:"[NULL]"));1499#$log->debug("status state : " . Dumper($state));15001501my($revision1,$revision2);1502if(defined($state->{opt}{r} )and ref$state->{opt}{r}eq"ARRAY")1503{1504$revision1=$state->{opt}{r}[0];1505$revision2=$state->{opt}{r}[1];1506}else{1507$revision1=$state->{opt}{r};1508}15091510$revision1=~s/^1\.//if(defined($revision1) );1511$revision2=~s/^1\.//if(defined($revision2) );15121513$log->debug("Diffing revisions ". (defined($revision1) ?$revision1:"[NULL]") ." and ". (defined($revision2) ?$revision2:"[NULL]") );15141515# Grab a handle to the SQLite db and do any necessary updates1516my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1517$updater->update();15181519# if no files were specified, we need to work out what files we should be providing status on ...1520 argsfromdir($updater);15211522# foreach file specified on the command line ...1523foreachmy$filename( @{$state->{args}} )1524{1525$filename= filecleanup($filename);15261527my($fh,$file1,$file2,$meta1,$meta2,$filediff);15281529my$wrev= revparse($filename);15301531# We need _something_ to diff against1532next unless(defined($wrev) );15331534# if we have a -r switch, use it1535if(defined($revision1) )1536{1537(undef,$file1) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1538$meta1=$updater->getmeta($filename,$revision1);1539unless(defined($meta1)and$meta1->{filehash}ne"deleted")1540{1541print"E File$filenameat revision 1.$revision1doesn't exist\n";1542next;1543}1544 transmitfile($meta1->{filehash},$file1);1545}1546# otherwise we just use the working copy revision1547else1548{1549(undef,$file1) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1550$meta1=$updater->getmeta($filename,$wrev);1551 transmitfile($meta1->{filehash},$file1);1552}15531554# if we have a second -r switch, use it too1555if(defined($revision2) )1556{1557(undef,$file2) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1558$meta2=$updater->getmeta($filename,$revision2);15591560unless(defined($meta2)and$meta2->{filehash}ne"deleted")1561{1562print"E File$filenameat revision 1.$revision2doesn't exist\n";1563next;1564}15651566 transmitfile($meta2->{filehash},$file2);1567}1568# otherwise we just use the working copy1569else1570{1571$file2=$state->{entries}{$filename}{modified_filename};1572}15731574# if we have been given -r, and we don't have a $file2 yet, lets get one1575if(defined($revision1)and not defined($file2) )1576{1577(undef,$file2) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1578$meta2=$updater->getmeta($filename,$wrev);1579 transmitfile($meta2->{filehash},$file2);1580}15811582# We need to have retrieved something useful1583next unless(defined($meta1) );15841585# Files to date if the working copy and repo copy have the same revision, and the working copy is unmodified1586next if(not defined($meta2)and$wrev==$meta1->{revision}1587and1588( ($state->{entries}{$filename}{unchanged}and(not defined($state->{entries}{$filename}{conflict} )or$state->{entries}{$filename}{conflict} !~/^\+=/) )1589or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$meta1->{filehash} ) )1590);15911592# Apparently we only show diffs for locally modified files1593next unless(defined($meta2)or defined($state->{entries}{$filename}{modified_filename} ) );15941595print"M Index:$filename\n";1596print"M ===================================================================\n";1597print"M RCS file:$state->{CVSROOT}/$state->{module}/$filename,v\n";1598print"M retrieving revision 1.$meta1->{revision}\n"if(defined($meta1) );1599print"M retrieving revision 1.$meta2->{revision}\n"if(defined($meta2) );1600print"M diff ";1601foreachmy$opt(keys%{$state->{opt}} )1602{1603if(ref$state->{opt}{$opt}eq"ARRAY")1604{1605foreachmy$value( @{$state->{opt}{$opt}} )1606{1607print"-$opt$value";1608}1609}else{1610print"-$opt";1611print"$state->{opt}{$opt} "if(defined($state->{opt}{$opt} ) );1612}1613}1614print"$filename\n";16151616$log->info("Diffing$filename-r$meta1->{revision} -r ". ($meta2->{revision}or"workingcopy"));16171618($fh,$filediff) = tempfile ( DIR =>$TEMP_DIR);16191620if(exists$state->{opt}{u} )1621{1622system("diff -u -L '$filenamerevision 1.$meta1->{revision}' -L '$filename". (defined($meta2->{revision}) ?"revision 1.$meta2->{revision}":"working copy") ."'$file1$file2>$filediff");1623}else{1624system("diff$file1$file2>$filediff");1625}16261627while( <$fh> )1628{1629print"M$_";1630}1631close$fh;1632}16331634print"ok\n";1635}16361637sub req_log1638{1639my($cmd,$data) =@_;16401641 argsplit("log");16421643$log->debug("req_log : ". (defined($data) ?$data:"[NULL]"));1644#$log->debug("log state : " . Dumper($state));16451646my($minrev,$maxrev);1647if(defined($state->{opt}{r} )and$state->{opt}{r} =~/([\d.]+)?(::?)([\d.]+)?/)1648{1649my$control=$2;1650$minrev=$1;1651$maxrev=$3;1652$minrev=~s/^1\.//if(defined($minrev) );1653$maxrev=~s/^1\.//if(defined($maxrev) );1654$minrev++if(defined($minrev)and$controleq"::");1655}16561657# Grab a handle to the SQLite db and do any necessary updates1658my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1659$updater->update();16601661# if no files were specified, we need to work out what files we should be providing status on ...1662 argsfromdir($updater);16631664# foreach file specified on the command line ...1665foreachmy$filename( @{$state->{args}} )1666{1667$filename= filecleanup($filename);16681669my$headmeta=$updater->getmeta($filename);16701671my$revisions=$updater->getlog($filename);1672my$totalrevisions=scalar(@$revisions);16731674if(defined($minrev) )1675{1676$log->debug("Removing revisions less than$minrev");1677while(scalar(@$revisions) >0and$revisions->[-1]{revision} <$minrev)1678{1679pop@$revisions;1680}1681}1682if(defined($maxrev) )1683{1684$log->debug("Removing revisions greater than$maxrev");1685while(scalar(@$revisions) >0and$revisions->[0]{revision} >$maxrev)1686{1687shift@$revisions;1688}1689}16901691next unless(scalar(@$revisions) );16921693print"M\n";1694print"M RCS file:$state->{CVSROOT}/$state->{module}/$filename,v\n";1695print"M Working file:$filename\n";1696print"M head: 1.$headmeta->{revision}\n";1697print"M branch:\n";1698print"M locks: strict\n";1699print"M access list:\n";1700print"M symbolic names:\n";1701print"M keyword substitution: kv\n";1702print"M total revisions:$totalrevisions;\tselected revisions: ".scalar(@$revisions) ."\n";1703print"M description:\n";17041705foreachmy$revision(@$revisions)1706{1707print"M ----------------------------\n";1708print"M revision 1.$revision->{revision}\n";1709# reformat the date for log output1710$revision->{modified} =sprintf('%04d/%02d/%02d%s',$3,$DATE_LIST->{$2},$1,$4)if($revision->{modified} =~/(\d+)\s+(\w+)\s+(\d+)\s+(\S+)/and defined($DATE_LIST->{$2}) );1711$revision->{author} =~s/\s+.*//;1712$revision->{author} =~s/^(.{8}).*/$1/;1713print"M date:$revision->{modified}; author:$revision->{author}; state: ". ($revision->{filehash}eq"deleted"?"dead":"Exp") ."; lines: +2 -3\n";1714my$commitmessage=$updater->commitmessage($revision->{commithash});1715$commitmessage=~s/^/M /mg;1716print$commitmessage."\n";1717}1718print"M =============================================================================\n";1719}17201721print"ok\n";1722}17231724sub req_annotate1725{1726my($cmd,$data) =@_;17271728 argsplit("annotate");17291730$log->info("req_annotate : ". (defined($data) ?$data:"[NULL]"));1731#$log->debug("status state : " . Dumper($state));17321733# Grab a handle to the SQLite db and do any necessary updates1734my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1735$updater->update();17361737# if no files were specified, we need to work out what files we should be providing annotate on ...1738 argsfromdir($updater);17391740# we'll need a temporary checkout dir1741my$tmpdir= tempdir ( DIR =>$TEMP_DIR);1742my(undef,$file_index) = tempfile ( DIR =>$TEMP_DIR, OPEN =>0);1743$log->info("Temp checkoutdir creation successful, basing annotate session work on '$tmpdir', index file is '$file_index'");17441745$ENV{GIT_DIR} =$state->{CVSROOT} ."/";1746$ENV{GIT_WORK_TREE} =".";1747$ENV{GIT_INDEX_FILE} =$file_index;17481749chdir$tmpdir;17501751# foreach file specified on the command line ...1752foreachmy$filename( @{$state->{args}} )1753{1754$filename= filecleanup($filename);17551756my$meta=$updater->getmeta($filename);17571758next unless($meta->{revision} );17591760# get all the commits that this file was in1761# in dense format -- aka skip dead revisions1762my$revisions=$updater->gethistorydense($filename);1763my$lastseenin=$revisions->[0][2];17641765# populate the temporary index based on the latest commit were we saw1766# the file -- but do it cheaply without checking out any files1767# TODO: if we got a revision from the client, use that instead1768# to look up the commithash in sqlite (still good to default to1769# the current head as we do now)1770system("git-read-tree",$lastseenin);1771unless($?==0)1772{1773print"E error running git-read-tree$lastseenin$file_index$!\n";1774return;1775}1776$log->info("Created index '$file_index' with commit$lastseenin- exit status$?");17771778# do a checkout of the file1779system('git-checkout-index','-f','-u',$filename);1780unless($?==0) {1781print"E error running git-checkout-index -f -u$filename:$!\n";1782return;1783}17841785$log->info("Annotate$filename");17861787# Prepare a file with the commits from the linearized1788# history that annotate should know about. This prevents1789# git-jsannotate telling us about commits we are hiding1790# from the client.17911792my$a_hints="$tmpdir/.annotate_hints";1793if(!open(ANNOTATEHINTS,'>',$a_hints)) {1794print"E failed to open '$a_hints' for writing:$!\n";1795return;1796}1797for(my$i=0;$i<@$revisions;$i++)1798{1799print ANNOTATEHINTS $revisions->[$i][2];1800if($i+1<@$revisions) {# have we got a parent?1801print ANNOTATEHINTS ' '.$revisions->[$i+1][2];1802}1803print ANNOTATEHINTS "\n";1804}18051806print ANNOTATEHINTS "\n";1807close ANNOTATEHINTS1808or(print"E failed to write$a_hints:$!\n"),return;18091810my@cmd= (qw(git-annotate -l -S),$a_hints,$filename);1811if(!open(ANNOTATE,"-|",@cmd)) {1812print"E error invoking ".join(' ',@cmd) .":$!\n";1813return;1814}1815my$metadata= {};1816print"E Annotations for$filename\n";1817print"E ***************\n";1818while( <ANNOTATE> )1819{1820if(m/^([a-zA-Z0-9]{40})\t\([^\)]*\)(.*)$/i)1821{1822my$commithash=$1;1823my$data=$2;1824unless(defined($metadata->{$commithash} ) )1825{1826$metadata->{$commithash} =$updater->getmeta($filename,$commithash);1827$metadata->{$commithash}{author} =~s/\s+.*//;1828$metadata->{$commithash}{author} =~s/^(.{8}).*/$1/;1829$metadata->{$commithash}{modified} =sprintf("%02d-%s-%02d",$1,$2,$3)if($metadata->{$commithash}{modified} =~/^(\d+)\s(\w+)\s\d\d(\d\d)/);1830}1831printf("M 1.%-5d (%-8s%10s):%s\n",1832$metadata->{$commithash}{revision},1833$metadata->{$commithash}{author},1834$metadata->{$commithash}{modified},1835$data1836);1837}else{1838$log->warn("Error in annotate output! LINE:$_");1839print"E Annotate error\n";1840next;1841}1842}1843close ANNOTATE;1844}18451846# done; get out of the tempdir1847chdir"/";18481849print"ok\n";18501851}18521853# This method takes the state->{arguments} array and produces two new arrays.1854# The first is $state->{args} which is everything before the '--' argument, and1855# the second is $state->{files} which is everything after it.1856sub argsplit1857{1858$state->{args} = [];1859$state->{files} = [];1860$state->{opt} = {};18611862return unless(defined($state->{arguments})and ref$state->{arguments}eq"ARRAY");18631864my$type=shift;18651866if(defined($type) )1867{1868my$opt= {};1869$opt= { A =>0, N =>0, P =>0, R =>0, c =>0, f =>0, l =>0, n =>0, p =>0, s =>0, r =>1, D =>1, d =>1, k =>1, j =>1, }if($typeeq"co");1870$opt= { v =>0, l =>0, R =>0}if($typeeq"status");1871$opt= { A =>0, P =>0, C =>0, d =>0, f =>0, l =>0, R =>0, p =>0, k =>1, r =>1, D =>1, j =>1, I =>1, W =>1}if($typeeq"update");1872$opt= { l =>0, R =>0, k =>1, D =>1, D =>1, r =>2}if($typeeq"diff");1873$opt= { c =>0, R =>0, l =>0, f =>0, F =>1, m =>1, r =>1}if($typeeq"ci");1874$opt= { k =>1, m =>1}if($typeeq"add");1875$opt= { f =>0, l =>0, R =>0}if($typeeq"remove");1876$opt= { l =>0, b =>0, h =>0, R =>0, t =>0, N =>0, S =>0, r =>1, d =>1, s =>1, w =>1}if($typeeq"log");187718781879while(scalar( @{$state->{arguments}} ) >0)1880{1881my$arg=shift@{$state->{arguments}};18821883next if($argeq"--");1884next unless($arg=~/\S/);18851886# if the argument looks like a switch1887if($arg=~/^-(\w)(.*)/)1888{1889# if it's a switch that takes an argument1890if($opt->{$1} )1891{1892# If this switch has already been provided1893if($opt->{$1} >1and exists($state->{opt}{$1} ) )1894{1895$state->{opt}{$1} = [$state->{opt}{$1} ];1896if(length($2) >0)1897{1898push@{$state->{opt}{$1}},$2;1899}else{1900push@{$state->{opt}{$1}},shift@{$state->{arguments}};1901}1902}else{1903# if there's extra data in the arg, use that as the argument for the switch1904if(length($2) >0)1905{1906$state->{opt}{$1} =$2;1907}else{1908$state->{opt}{$1} =shift@{$state->{arguments}};1909}1910}1911}else{1912$state->{opt}{$1} =undef;1913}1914}1915else1916{1917push@{$state->{args}},$arg;1918}1919}1920}1921else1922{1923my$mode=0;19241925foreachmy$value( @{$state->{arguments}} )1926{1927if($valueeq"--")1928{1929$mode++;1930next;1931}1932push@{$state->{args}},$valueif($mode==0);1933push@{$state->{files}},$valueif($mode==1);1934}1935}1936}19371938# This method uses $state->{directory} to populate $state->{args} with a list of filenames1939sub argsfromdir1940{1941my$updater=shift;19421943$state->{args} = []if(scalar(@{$state->{args}}) ==1and$state->{args}[0]eq".");19441945return if(scalar( @{$state->{args}} ) >1);19461947my@gethead= @{$updater->gethead};19481949# push added files1950foreachmy$file(keys%{$state->{entries}}) {1951if(exists$state->{entries}{$file}{revision} &&1952$state->{entries}{$file}{revision} ==0)1953{1954push@gethead, { name =>$file, filehash =>'added'};1955}1956}19571958if(scalar(@{$state->{args}}) ==1)1959{1960my$arg=$state->{args}[0];1961$arg.=$state->{prependdir}if(defined($state->{prependdir} ) );19621963$log->info("Only one arg specified, checking for directory expansion on '$arg'");19641965foreachmy$file(@gethead)1966{1967next if($file->{filehash}eq"deleted"and not defined($state->{entries}{$file->{name}} ) );1968next unless($file->{name} =~/^$arg\//or$file->{name}eq$arg);1969push@{$state->{args}},$file->{name};1970}19711972shift@{$state->{args}}if(scalar(@{$state->{args}}) >1);1973}else{1974$log->info("Only one arg specified, populating file list automatically");19751976$state->{args} = [];19771978foreachmy$file(@gethead)1979{1980next if($file->{filehash}eq"deleted"and not defined($state->{entries}{$file->{name}} ) );1981next unless($file->{name} =~s/^$state->{prependdir}//);1982push@{$state->{args}},$file->{name};1983}1984}1985}19861987# This method cleans up the $state variable after a command that uses arguments has run1988sub statecleanup1989{1990$state->{files} = [];1991$state->{args} = [];1992$state->{arguments} = [];1993$state->{entries} = {};1994}19951996sub revparse1997{1998my$filename=shift;19992000returnundefunless(defined($state->{entries}{$filename}{revision} ) );20012002return$1if($state->{entries}{$filename}{revision} =~/^1\.(\d+)/);2003return-$1if($state->{entries}{$filename}{revision} =~/^-1\.(\d+)/);20042005returnundef;2006}20072008# This method takes a file hash and does a CVS "file transfer" which transmits the2009# size of the file, and then the file contents.2010# If a second argument $targetfile is given, the file is instead written out to2011# a file by the name of $targetfile2012sub transmitfile2013{2014my$filehash=shift;2015my$targetfile=shift;20162017if(defined($filehash)and$filehasheq"deleted")2018{2019$log->warn("filehash is 'deleted'");2020return;2021}20222023die"Need filehash"unless(defined($filehash)and$filehash=~/^[a-zA-Z0-9]{40}$/);20242025my$type=`git-cat-file -t$filehash`;2026 chomp$type;20272028 die ( "Invalid type '$type' (expected 'blob')" ) unless ( defined ($type) and$typeeq "blob" );20292030 my$size= `git-cat-file -s $filehash`;2031chomp$size;20322033$log->debug("transmitfile($filehash) size=$size, type=$type");20342035if(open my$fh,'-|',"git-cat-file","blob",$filehash)2036{2037if(defined($targetfile) )2038{2039open NEWFILE,">",$targetfileor die("Couldn't open '$targetfile' for writing :$!");2040print NEWFILE $_while( <$fh> );2041close NEWFILE or die("Failed to write '$targetfile':$!");2042}else{2043print"$size\n";2044printwhile( <$fh> );2045}2046close$fhor die("Couldn't close filehandle for transmitfile():$!");2047}else{2048die("Couldn't execute git-cat-file");2049}2050}20512052# This method takes a file name, and returns ( $dirpart, $filepart ) which2053# refers to the directory portion and the file portion of the filename2054# respectively2055sub filenamesplit2056{2057my$filename=shift;2058my$fixforlocaldir=shift;20592060my($filepart,$dirpart) = ($filename,".");2061($filepart,$dirpart) = ($2,$1)if($filename=~/(.*)\/(.*)/ );2062$dirpart.="/";20632064if($fixforlocaldir)2065{2066$dirpart=~s/^$state->{prependdir}//;2067}20682069return($filepart,$dirpart);2070}20712072sub filecleanup2073{2074my$filename=shift;20752076returnundefunless(defined($filename));2077if($filename=~/^\// )2078{2079print"E absolute filenames '$filename' not supported by server\n";2080returnundef;2081}20822083$filename=~s/^\.\///g;2084$filename=$state->{prependdir} .$filename;2085return$filename;2086}20872088# Given a path, this function returns a string containing the kopts2089# that should go into that path's Entries line. For example, a binary2090# file should get -kb.2091sub kopts_from_path2092{2093my($path) =@_;20942095# Once it exists, the git attributes system should be used to look up2096# what attributes apply to this path.20972098# Until then, take the setting from the config file2099unless(defined($cfg->{gitcvs}{allbinary} )and$cfg->{gitcvs}{allbinary} =~/^\s*(1|true|yes)\s*$/i)2100{2101# Return "" to give no special treatment to any path2102return"";2103}else{2104# Alternatively, to have all files treated as if they are binary (which2105# is more like git itself), always return the "-kb" option2106return"-kb";2107}2108}21092110package GITCVS::log;21112112####2113#### Copyright The Open University UK - 2006.2114####2115#### Authors: Martyn Smith <martyn@catalyst.net.nz>2116#### Martin Langhoff <martin@catalyst.net.nz>2117####2118####21192120use strict;2121use warnings;21222123=head1 NAME21242125GITCVS::log21262127=head1 DESCRIPTION21282129This module provides very crude logging with a similar interface to2130Log::Log4perl21312132=head1 METHODS21332134=cut21352136=head2 new21372138Creates a new log object, optionally you can specify a filename here to2139indicate the file to log to. If no log file is specified, you can specify one2140later with method setfile, or indicate you no longer want logging with method2141nofile.21422143Until one of these methods is called, all log calls will buffer messages ready2144to write out.21452146=cut2147sub new2148{2149my$class=shift;2150my$filename=shift;21512152my$self= {};21532154bless$self,$class;21552156if(defined($filename) )2157{2158open$self->{fh},">>",$filenameor die("Couldn't open '$filename' for writing :$!");2159}21602161return$self;2162}21632164=head2 setfile21652166This methods takes a filename, and attempts to open that file as the log file.2167If successful, all buffered data is written out to the file, and any further2168logging is written directly to the file.21692170=cut2171sub setfile2172{2173my$self=shift;2174my$filename=shift;21752176if(defined($filename) )2177{2178open$self->{fh},">>",$filenameor die("Couldn't open '$filename' for writing :$!");2179}21802181return unless(defined($self->{buffer} )and ref$self->{buffer}eq"ARRAY");21822183while(my$line=shift@{$self->{buffer}} )2184{2185print{$self->{fh}}$line;2186}2187}21882189=head2 nofile21902191This method indicates no logging is going to be used. It flushes any entries in2192the internal buffer, and sets a flag to ensure no further data is put there.21932194=cut2195sub nofile2196{2197my$self=shift;21982199$self->{nolog} =1;22002201return unless(defined($self->{buffer} )and ref$self->{buffer}eq"ARRAY");22022203$self->{buffer} = [];2204}22052206=head2 _logopen22072208Internal method. Returns true if the log file is open, false otherwise.22092210=cut2211sub _logopen2212{2213my$self=shift;22142215return1if(defined($self->{fh} )and ref$self->{fh}eq"GLOB");2216return0;2217}22182219=head2 debug info warn fatal22202221These four methods are wrappers to _log. They provide the actual interface for2222logging data.22232224=cut2225sub debug {my$self=shift;$self->_log("debug",@_); }2226sub info {my$self=shift;$self->_log("info",@_); }2227subwarn{my$self=shift;$self->_log("warn",@_); }2228sub fatal {my$self=shift;$self->_log("fatal",@_); }22292230=head2 _log22312232This is an internal method called by the logging functions. It generates a2233timestamp and pushes the logged line either to file, or internal buffer.22342235=cut2236sub _log2237{2238my$self=shift;2239my$level=shift;22402241return if($self->{nolog} );22422243my@time=localtime;2244my$timestring=sprintf("%4d-%02d-%02d%02d:%02d:%02d: %-5s",2245$time[5] +1900,2246$time[4] +1,2247$time[3],2248$time[2],2249$time[1],2250$time[0],2251uc$level,2252);22532254if($self->_logopen)2255{2256print{$self->{fh}}$timestring." - ".join(" ",@_) ."\n";2257}else{2258push@{$self->{buffer}},$timestring." - ".join(" ",@_) ."\n";2259}2260}22612262=head2 DESTROY22632264This method simply closes the file handle if one is open22652266=cut2267sub DESTROY2268{2269my$self=shift;22702271if($self->_logopen)2272{2273close$self->{fh};2274}2275}22762277package GITCVS::updater;22782279####2280#### Copyright The Open University UK - 2006.2281####2282#### Authors: Martyn Smith <martyn@catalyst.net.nz>2283#### Martin Langhoff <martin@catalyst.net.nz>2284####2285####22862287use strict;2288use warnings;2289use DBI;22902291=head1 METHODS22922293=cut22942295=head2 new22962297=cut2298sub new2299{2300my$class=shift;2301my$config=shift;2302my$module=shift;2303my$log=shift;23042305die"Need to specify a git repository"unless(defined($config)and-d $config);2306die"Need to specify a module"unless(defined($module) );23072308$class=ref($class) ||$class;23092310my$self= {};23112312bless$self,$class;23132314$self->{module} =$module;2315$self->{git_path} =$config."/";23162317$self->{log} =$log;23182319die"Git repo '$self->{git_path}' doesn't exist"unless( -d $self->{git_path} );23202321$self->{dbdriver} =$cfg->{gitcvs}{$state->{method}}{dbdriver} ||2322$cfg->{gitcvs}{dbdriver} ||"SQLite";2323$self->{dbname} =$cfg->{gitcvs}{$state->{method}}{dbname} ||2324$cfg->{gitcvs}{dbname} ||"%Ggitcvs.%m.sqlite";2325$self->{dbuser} =$cfg->{gitcvs}{$state->{method}}{dbuser} ||2326$cfg->{gitcvs}{dbuser} ||"";2327$self->{dbpass} =$cfg->{gitcvs}{$state->{method}}{dbpass} ||2328$cfg->{gitcvs}{dbpass} ||"";2329my%mapping= ( m =>$module,2330 a =>$state->{method},2331 u =>getlogin||getpwuid($<) || $<,2332 G =>$self->{git_path},2333 g => mangle_dirname($self->{git_path}),2334);2335$self->{dbname} =~s/%([mauGg])/$mapping{$1}/eg;2336$self->{dbuser} =~s/%([mauGg])/$mapping{$1}/eg;23372338die"Invalid char ':' in dbdriver"if$self->{dbdriver} =~/:/;2339die"Invalid char ';' in dbname"if$self->{dbname} =~/;/;2340$self->{dbh} = DBI->connect("dbi:$self->{dbdriver}:dbname=$self->{dbname}",2341$self->{dbuser},2342$self->{dbpass});2343die"Error connecting to database\n"unlessdefined$self->{dbh};23442345$self->{tables} = {};2346foreachmy$table(keys%{$self->{dbh}->table_info(undef,undef,undef,'TABLE')->fetchall_hashref('TABLE_NAME')} )2347{2348$self->{tables}{$table} =1;2349}23502351# Construct the revision table if required2352unless($self->{tables}{revision} )2353{2354$self->{dbh}->do("2355 CREATE TABLE revision (2356 name TEXT NOT NULL,2357 revision INTEGER NOT NULL,2358 filehash TEXT NOT NULL,2359 commithash TEXT NOT NULL,2360 author TEXT NOT NULL,2361 modified TEXT NOT NULL,2362 mode TEXT NOT NULL2363 )2364 ");2365$self->{dbh}->do("2366 CREATE INDEX revision_ix12367 ON revision (name,revision)2368 ");2369$self->{dbh}->do("2370 CREATE INDEX revision_ix22371 ON revision (name,commithash)2372 ");2373}23742375# Construct the head table if required2376unless($self->{tables}{head} )2377{2378$self->{dbh}->do("2379 CREATE TABLE head (2380 name TEXT NOT NULL,2381 revision INTEGER NOT NULL,2382 filehash TEXT NOT NULL,2383 commithash TEXT NOT NULL,2384 author TEXT NOT NULL,2385 modified TEXT NOT NULL,2386 mode TEXT NOT NULL2387 )2388 ");2389$self->{dbh}->do("2390 CREATE INDEX head_ix12391 ON head (name)2392 ");2393}23942395# Construct the properties table if required2396unless($self->{tables}{properties} )2397{2398$self->{dbh}->do("2399 CREATE TABLE properties (2400 key TEXT NOT NULL PRIMARY KEY,2401 value TEXT2402 )2403 ");2404}24052406# Construct the commitmsgs table if required2407unless($self->{tables}{commitmsgs} )2408{2409$self->{dbh}->do("2410 CREATE TABLE commitmsgs (2411 key TEXT NOT NULL PRIMARY KEY,2412 value TEXT2413 )2414 ");2415}24162417return$self;2418}24192420=head2 update24212422=cut2423sub update2424{2425my$self=shift;24262427# first lets get the commit list2428$ENV{GIT_DIR} =$self->{git_path};24292430my$commitsha1=`git rev-parse$self->{module}`;2431chomp$commitsha1;24322433my$commitinfo=`git cat-file commit$self->{module} 2>&1`;2434unless($commitinfo=~/tree\s+[a-zA-Z0-9]{40}/)2435{2436die("Invalid module '$self->{module}'");2437}243824392440my$git_log;2441my$lastcommit=$self->_get_prop("last_commit");24422443if(defined$lastcommit&&$lastcommiteq$commitsha1) {# up-to-date2444return1;2445}24462447# Start exclusive lock here...2448$self->{dbh}->begin_work()or die"Cannot lock database for BEGIN";24492450# TODO: log processing is memory bound2451# if we can parse into a 2nd file that is in reverse order2452# we can probably do something really efficient2453my@git_log_params= ('--pretty','--parents','--topo-order');24542455if(defined$lastcommit) {2456push@git_log_params,"$lastcommit..$self->{module}";2457}else{2458push@git_log_params,$self->{module};2459}2460# git-rev-list is the backend / plumbing version of git-log2461open(GITLOG,'-|','git-rev-list',@git_log_params)or die"Cannot call git-rev-list:$!";24622463my@commits;24642465my%commit= ();24662467while( <GITLOG> )2468{2469chomp;2470if(m/^commit\s+(.*)$/) {2471# on ^commit lines put the just seen commit in the stack2472# and prime things for the next one2473if(keys%commit) {2474my%copy=%commit;2475unshift@commits, \%copy;2476%commit= ();2477}2478my@parents=split(m/\s+/,$1);2479$commit{hash} =shift@parents;2480$commit{parents} = \@parents;2481}elsif(m/^(\w+?):\s+(.*)$/&& !exists($commit{message})) {2482# on rfc822-like lines seen before we see any message,2483# lowercase the entry and put it in the hash as key-value2484$commit{lc($1)} =$2;2485}else{2486# message lines - skip initial empty line2487# and trim whitespace2488if(!exists($commit{message}) &&m/^\s*$/) {2489# define it to mark the end of headers2490$commit{message} ='';2491next;2492}2493s/^\s+//;s/\s+$//;# trim ws2494$commit{message} .=$_."\n";2495}2496}2497close GITLOG;24982499unshift@commits, \%commitif(keys%commit);25002501# Now all the commits are in the @commits bucket2502# ordered by time DESC. for each commit that needs processing,2503# determine whether it's following the last head we've seen or if2504# it's on its own branch, grab a file list, and add whatever's changed2505# NOTE: $lastcommit refers to the last commit from previous run2506# $lastpicked is the last commit we picked in this run2507my$lastpicked;2508my$head= {};2509if(defined$lastcommit) {2510$lastpicked=$lastcommit;2511}25122513my$committotal=scalar(@commits);2514my$commitcount=0;25152516# Load the head table into $head (for cached lookups during the update process)2517foreachmy$file( @{$self->gethead()} )2518{2519$head->{$file->{name}} =$file;2520}25212522foreachmy$commit(@commits)2523{2524$self->{log}->debug("GITCVS::updater - Processing commit$commit->{hash} (". (++$commitcount) ." of$committotal)");2525if(defined$lastpicked)2526{2527if(!in_array($lastpicked, @{$commit->{parents}}))2528{2529# skip, we'll see this delta2530# as part of a merge later2531# warn "skipping off-track $commit->{hash}\n";2532next;2533}elsif(@{$commit->{parents}} >1) {2534# it is a merge commit, for each parent that is2535# not $lastpicked, see if we can get a log2536# from the merge-base to that parent to put it2537# in the message as a merge summary.2538my@parents= @{$commit->{parents}};2539foreachmy$parent(@parents) {2540# git-merge-base can potentially (but rarely) throw2541# several candidate merge bases. let's assume2542# that the first one is the best one.2543if($parenteq$lastpicked) {2544next;2545}2546my$base= safe_pipe_capture('git-merge-base',2547$lastpicked,$parent);2548chomp$base;2549if($base) {2550my@merged;2551# print "want to log between $base $parent \n";2552open(GITLOG,'-|','git-log',"$base..$parent")2553or die"Cannot call git-log:$!";2554my$mergedhash;2555while(<GITLOG>) {2556chomp;2557if(!defined$mergedhash) {2558if(m/^commit\s+(.+)$/) {2559$mergedhash=$1;2560}else{2561next;2562}2563}else{2564# grab the first line that looks non-rfc8222565# aka has content after leading space2566if(m/^\s+(\S.*)$/) {2567my$title=$1;2568$title=substr($title,0,100);# truncate2569unshift@merged,"$mergedhash$title";2570undef$mergedhash;2571}2572}2573}2574close GITLOG;2575if(@merged) {2576$commit->{mergemsg} =$commit->{message};2577$commit->{mergemsg} .="\nSummary of merged commits:\n\n";2578foreachmy$summary(@merged) {2579$commit->{mergemsg} .="\t$summary\n";2580}2581$commit->{mergemsg} .="\n\n";2582# print "Message for $commit->{hash} \n$commit->{mergemsg}";2583}2584}2585}2586}2587}25882589# convert the date to CVS-happy format2590$commit->{date} ="$2$1$4$3$5"if($commit->{date} =~/^\w+\s+(\w+)\s+(\d+)\s+(\d+:\d+:\d+)\s+(\d+)\s+([+-]\d+)$/);25912592if(defined($lastpicked) )2593{2594my$filepipe=open(FILELIST,'-|','git-diff-tree','-z','-r',$lastpicked,$commit->{hash})or die("Cannot call git-diff-tree :$!");2595local($/) ="\0";2596while( <FILELIST> )2597{2598chomp;2599unless(/^:\d{6}\s+\d{3}(\d)\d{2}\s+[a-zA-Z0-9]{40}\s+([a-zA-Z0-9]{40})\s+(\w)$/o)2600{2601die("Couldn't process git-diff-tree line :$_");2602}2603my($mode,$hash,$change) = ($1,$2,$3);2604my$name= <FILELIST>;2605chomp($name);26062607# $log->debug("File mode=$mode, hash=$hash, change=$change, name=$name");26082609my$git_perms="";2610$git_perms.="r"if($mode&4);2611$git_perms.="w"if($mode&2);2612$git_perms.="x"if($mode&1);2613$git_perms="rw"if($git_permseq"");26142615if($changeeq"D")2616{2617#$log->debug("DELETE $name");2618$head->{$name} = {2619 name =>$name,2620 revision =>$head->{$name}{revision} +1,2621 filehash =>"deleted",2622 commithash =>$commit->{hash},2623 modified =>$commit->{date},2624 author =>$commit->{author},2625 mode =>$git_perms,2626};2627$self->insert_rev($name,$head->{$name}{revision},$hash,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2628}2629elsif($changeeq"M")2630{2631#$log->debug("MODIFIED $name");2632$head->{$name} = {2633 name =>$name,2634 revision =>$head->{$name}{revision} +1,2635 filehash =>$hash,2636 commithash =>$commit->{hash},2637 modified =>$commit->{date},2638 author =>$commit->{author},2639 mode =>$git_perms,2640};2641$self->insert_rev($name,$head->{$name}{revision},$hash,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2642}2643elsif($changeeq"A")2644{2645#$log->debug("ADDED $name");2646$head->{$name} = {2647 name =>$name,2648 revision =>$head->{$name}{revision} ?$head->{$name}{revision}+1:1,2649 filehash =>$hash,2650 commithash =>$commit->{hash},2651 modified =>$commit->{date},2652 author =>$commit->{author},2653 mode =>$git_perms,2654};2655$self->insert_rev($name,$head->{$name}{revision},$hash,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2656}2657else2658{2659$log->warn("UNKNOWN FILE CHANGE mode=$mode, hash=$hash, change=$change, name=$name");2660die;2661}2662}2663close FILELIST;2664}else{2665# this is used to detect files removed from the repo2666my$seen_files= {};26672668my$filepipe=open(FILELIST,'-|','git-ls-tree','-z','-r',$commit->{hash})or die("Cannot call git-ls-tree :$!");2669local$/="\0";2670while( <FILELIST> )2671{2672chomp;2673unless(/^(\d+)\s+(\w+)\s+([a-zA-Z0-9]+)\t(.*)$/o)2674{2675die("Couldn't process git-ls-tree line :$_");2676}26772678my($git_perms,$git_type,$git_hash,$git_filename) = ($1,$2,$3,$4);26792680$seen_files->{$git_filename} =1;26812682my($oldhash,$oldrevision,$oldmode) = (2683$head->{$git_filename}{filehash},2684$head->{$git_filename}{revision},2685$head->{$git_filename}{mode}2686);26872688if($git_perms=~/^\d\d\d(\d)\d\d/o)2689{2690$git_perms="";2691$git_perms.="r"if($1&4);2692$git_perms.="w"if($1&2);2693$git_perms.="x"if($1&1);2694}else{2695$git_perms="rw";2696}26972698# unless the file exists with the same hash, we need to update it ...2699unless(defined($oldhash)and$oldhasheq$git_hashand defined($oldmode)and$oldmodeeq$git_perms)2700{2701my$newrevision= ($oldrevisionor0) +1;27022703$head->{$git_filename} = {2704 name =>$git_filename,2705 revision =>$newrevision,2706 filehash =>$git_hash,2707 commithash =>$commit->{hash},2708 modified =>$commit->{date},2709 author =>$commit->{author},2710 mode =>$git_perms,2711};271227132714$self->insert_rev($git_filename,$newrevision,$git_hash,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2715}2716}2717close FILELIST;27182719# Detect deleted files2720foreachmy$file(keys%$head)2721{2722unless(exists$seen_files->{$file}or$head->{$file}{filehash}eq"deleted")2723{2724$head->{$file}{revision}++;2725$head->{$file}{filehash} ="deleted";2726$head->{$file}{commithash} =$commit->{hash};2727$head->{$file}{modified} =$commit->{date};2728$head->{$file}{author} =$commit->{author};27292730$self->insert_rev($file,$head->{$file}{revision},$head->{$file}{filehash},$commit->{hash},$commit->{date},$commit->{author},$head->{$file}{mode});2731}2732}2733# END : "Detect deleted files"2734}273527362737if(exists$commit->{mergemsg})2738{2739$self->insert_mergelog($commit->{hash},$commit->{mergemsg});2740}27412742$lastpicked=$commit->{hash};27432744$self->_set_prop("last_commit",$commit->{hash});2745}27462747$self->delete_head();2748foreachmy$file(keys%$head)2749{2750$self->insert_head(2751$file,2752$head->{$file}{revision},2753$head->{$file}{filehash},2754$head->{$file}{commithash},2755$head->{$file}{modified},2756$head->{$file}{author},2757$head->{$file}{mode},2758);2759}2760# invalidate the gethead cache2761$self->{gethead_cache} =undef;276227632764# Ending exclusive lock here2765$self->{dbh}->commit()or die"Failed to commit changes to SQLite";2766}27672768sub insert_rev2769{2770my$self=shift;2771my$name=shift;2772my$revision=shift;2773my$filehash=shift;2774my$commithash=shift;2775my$modified=shift;2776my$author=shift;2777my$mode=shift;27782779my$insert_rev=$self->{dbh}->prepare_cached("INSERT INTO revision (name, revision, filehash, commithash, modified, author, mode) VALUES (?,?,?,?,?,?,?)",{},1);2780$insert_rev->execute($name,$revision,$filehash,$commithash,$modified,$author,$mode);2781}27822783sub insert_mergelog2784{2785my$self=shift;2786my$key=shift;2787my$value=shift;27882789my$insert_mergelog=$self->{dbh}->prepare_cached("INSERT INTO commitmsgs (key, value) VALUES (?,?)",{},1);2790$insert_mergelog->execute($key,$value);2791}27922793sub delete_head2794{2795my$self=shift;27962797my$delete_head=$self->{dbh}->prepare_cached("DELETE FROM head",{},1);2798$delete_head->execute();2799}28002801sub insert_head2802{2803my$self=shift;2804my$name=shift;2805my$revision=shift;2806my$filehash=shift;2807my$commithash=shift;2808my$modified=shift;2809my$author=shift;2810my$mode=shift;28112812my$insert_head=$self->{dbh}->prepare_cached("INSERT INTO head (name, revision, filehash, commithash, modified, author, mode) VALUES (?,?,?,?,?,?,?)",{},1);2813$insert_head->execute($name,$revision,$filehash,$commithash,$modified,$author,$mode);2814}28152816sub _headrev2817{2818my$self=shift;2819my$filename=shift;28202821my$db_query=$self->{dbh}->prepare_cached("SELECT filehash, revision, mode FROM head WHERE name=?",{},1);2822$db_query->execute($filename);2823my($hash,$revision,$mode) =$db_query->fetchrow_array;28242825return($hash,$revision,$mode);2826}28272828sub _get_prop2829{2830my$self=shift;2831my$key=shift;28322833my$db_query=$self->{dbh}->prepare_cached("SELECT value FROM properties WHERE key=?",{},1);2834$db_query->execute($key);2835my($value) =$db_query->fetchrow_array;28362837return$value;2838}28392840sub _set_prop2841{2842my$self=shift;2843my$key=shift;2844my$value=shift;28452846my$db_query=$self->{dbh}->prepare_cached("UPDATE properties SET value=? WHERE key=?",{},1);2847$db_query->execute($value,$key);28482849unless($db_query->rows)2850{2851$db_query=$self->{dbh}->prepare_cached("INSERT INTO properties (key, value) VALUES (?,?)",{},1);2852$db_query->execute($key,$value);2853}28542855return$value;2856}28572858=head2 gethead28592860=cut28612862sub gethead2863{2864my$self=shift;28652866return$self->{gethead_cache}if(defined($self->{gethead_cache} ) );28672868my$db_query=$self->{dbh}->prepare_cached("SELECT name, filehash, mode, revision, modified, commithash, author FROM head ORDER BY name ASC",{},1);2869$db_query->execute();28702871my$tree= [];2872while(my$file=$db_query->fetchrow_hashref)2873{2874push@$tree,$file;2875}28762877$self->{gethead_cache} =$tree;28782879return$tree;2880}28812882=head2 getlog28832884=cut28852886sub getlog2887{2888my$self=shift;2889my$filename=shift;28902891my$db_query=$self->{dbh}->prepare_cached("SELECT name, filehash, author, mode, revision, modified, commithash FROM revision WHERE name=? ORDER BY revision DESC",{},1);2892$db_query->execute($filename);28932894my$tree= [];2895while(my$file=$db_query->fetchrow_hashref)2896{2897push@$tree,$file;2898}28992900return$tree;2901}29022903=head2 getmeta29042905This function takes a filename (with path) argument and returns a hashref of2906metadata for that file.29072908=cut29092910sub getmeta2911{2912my$self=shift;2913my$filename=shift;2914my$revision=shift;29152916my$db_query;2917if(defined($revision)and$revision=~/^\d+$/)2918{2919$db_query=$self->{dbh}->prepare_cached("SELECT * FROM revision WHERE name=? AND revision=?",{},1);2920$db_query->execute($filename,$revision);2921}2922elsif(defined($revision)and$revision=~/^[a-zA-Z0-9]{40}$/)2923{2924$db_query=$self->{dbh}->prepare_cached("SELECT * FROM revision WHERE name=? AND commithash=?",{},1);2925$db_query->execute($filename,$revision);2926}else{2927$db_query=$self->{dbh}->prepare_cached("SELECT * FROM head WHERE name=?",{},1);2928$db_query->execute($filename);2929}29302931return$db_query->fetchrow_hashref;2932}29332934=head2 commitmessage29352936this function takes a commithash and returns the commit message for that commit29372938=cut2939sub commitmessage2940{2941my$self=shift;2942my$commithash=shift;29432944die("Need commithash")unless(defined($commithash)and$commithash=~/^[a-zA-Z0-9]{40}$/);29452946my$db_query;2947$db_query=$self->{dbh}->prepare_cached("SELECT value FROM commitmsgs WHERE key=?",{},1);2948$db_query->execute($commithash);29492950my($message) =$db_query->fetchrow_array;29512952if(defined($message) )2953{2954$message.=" "if($message=~/\n$/);2955return$message;2956}29572958my@lines= safe_pipe_capture("git-cat-file","commit",$commithash);2959shift@lineswhile($lines[0] =~/\S/);2960$message=join("",@lines);2961$message.=" "if($message=~/\n$/);2962return$message;2963}29642965=head2 gethistory29662967This function takes a filename (with path) argument and returns an arrayofarrays2968containing revision,filehash,commithash ordered by revision descending29692970=cut2971sub gethistory2972{2973my$self=shift;2974my$filename=shift;29752976my$db_query;2977$db_query=$self->{dbh}->prepare_cached("SELECT revision, filehash, commithash FROM revision WHERE name=? ORDER BY revision DESC",{},1);2978$db_query->execute($filename);29792980return$db_query->fetchall_arrayref;2981}29822983=head2 gethistorydense29842985This function takes a filename (with path) argument and returns an arrayofarrays2986containing revision,filehash,commithash ordered by revision descending.29872988This version of gethistory skips deleted entries -- so it is useful for annotate.2989The 'dense' part is a reference to a '--dense' option available for git-rev-list2990and other git tools that depend on it.29912992=cut2993sub gethistorydense2994{2995my$self=shift;2996my$filename=shift;29972998my$db_query;2999$db_query=$self->{dbh}->prepare_cached("SELECT revision, filehash, commithash FROM revision WHERE name=? AND filehash!='deleted' ORDER BY revision DESC",{},1);3000$db_query->execute($filename);30013002return$db_query->fetchall_arrayref;3003}30043005=head2 in_array()30063007from Array::PAT - mimics the in_array() function3008found in PHP. Yuck but works for small arrays.30093010=cut3011sub in_array3012{3013my($check,@array) =@_;3014my$retval=0;3015foreachmy$test(@array){3016if($checkeq$test){3017$retval=1;3018}3019}3020return$retval;3021}30223023=head2 safe_pipe_capture30243025an alternative to `command` that allows input to be passed as an array3026to work around shell problems with weird characters in arguments30273028=cut3029sub safe_pipe_capture {30303031my@output;30323033if(my$pid=open my$child,'-|') {3034@output= (<$child>);3035close$childor die join(' ',@_).":$!$?";3036}else{3037exec(@_)or die"$!$?";# exec() can fail the executable can't be found3038}3039returnwantarray?@output:join('',@output);3040}30413042=head2 mangle_dirname30433044create a string from a directory name that is suitable to use as3045part of a filename, mainly by converting all chars except \w.- to _30463047=cut3048sub mangle_dirname {3049my$dirname=shift;3050return unlessdefined$dirname;30513052$dirname=~s/[^\w.-]/_/g;30533054return$dirname;3055}305630571;