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; 20 21use Fcntl; 22use File::Temp qw/tempdir tempfile/; 23use File::Basename; 24 25my$log= GITCVS::log->new(); 26my$cfg; 27 28my$DATE_LIST= { 29 Jan =>"01", 30 Feb =>"02", 31 Mar =>"03", 32 Apr =>"04", 33 May =>"05", 34 Jun =>"06", 35 Jul =>"07", 36 Aug =>"08", 37 Sep =>"09", 38 Oct =>"10", 39 Nov =>"11", 40 Dec =>"12", 41}; 42 43# Enable autoflush for STDOUT (otherwise the whole thing falls apart) 44$| =1; 45 46#### Definition and mappings of functions #### 47 48my$methods= { 49'Root'=> \&req_Root, 50'Valid-responses'=> \&req_Validresponses, 51'valid-requests'=> \&req_validrequests, 52'Directory'=> \&req_Directory, 53'Entry'=> \&req_Entry, 54'Modified'=> \&req_Modified, 55'Unchanged'=> \&req_Unchanged, 56'Questionable'=> \&req_Questionable, 57'Argument'=> \&req_Argument, 58'Argumentx'=> \&req_Argument, 59'expand-modules'=> \&req_expandmodules, 60'add'=> \&req_add, 61'remove'=> \&req_remove, 62'co'=> \&req_co, 63'update'=> \&req_update, 64'ci'=> \&req_ci, 65'diff'=> \&req_diff, 66'log'=> \&req_log, 67'rlog'=> \&req_log, 68'tag'=> \&req_CATCHALL, 69'status'=> \&req_status, 70'admin'=> \&req_CATCHALL, 71'history'=> \&req_CATCHALL, 72'watchers'=> \&req_CATCHALL, 73'editors'=> \&req_CATCHALL, 74'annotate'=> \&req_annotate, 75'Global_option'=> \&req_Globaloption, 76#'annotate' => \&req_CATCHALL, 77}; 78 79############################################## 80 81 82# $state holds all the bits of information the clients sends us that could 83# potentially be useful when it comes to actually _doing_ something. 84my$state= { prependdir =>''}; 85$log->info("--------------- STARTING -----------------"); 86 87my$TEMP_DIR= tempdir( CLEANUP =>1); 88$log->debug("Temporary directory is '$TEMP_DIR'"); 89 90# if we are called with a pserver argument, 91# deal with the authentication cat before entering the 92# main loop 93if(@ARGV&&$ARGV[0]eq'pserver') { 94my$line= <STDIN>;chomp$line; 95unless($lineeq'BEGIN AUTH REQUEST') { 96die"E Do not understand$line- expecting BEGIN AUTH REQUEST\n"; 97} 98$line= <STDIN>;chomp$line; 99 req_Root('root',$line)# reuse Root 100or die"E Invalid root$line\n"; 101$line= <STDIN>;chomp$line; 102unless($lineeq'anonymous') { 103print"E Only anonymous user allowed via pserver\n"; 104print"I HATE YOU\n"; 105} 106$line= <STDIN>;chomp$line;# validate the password? 107$line= <STDIN>;chomp$line; 108unless($lineeq'END AUTH REQUEST') { 109die"E Do not understand$line-- expecting END AUTH REQUEST\n"; 110} 111print"I LOVE YOU\n"; 112# and now back to our regular programme... 113} 114 115# Keep going until the client closes the connection 116while(<STDIN>) 117{ 118chomp; 119 120# Check to see if we've seen this method, and call appropriate function. 121if(/^([\w-]+)(?:\s+(.*))?$/and defined($methods->{$1}) ) 122{ 123# use the $methods hash to call the appropriate sub for this command 124#$log->info("Method : $1"); 125&{$methods->{$1}}($1,$2); 126}else{ 127# log fatal because we don't understand this function. If this happens 128# we're fairly screwed because we don't know if the client is expecting 129# a response. If it is, the client will hang, we'll hang, and the whole 130# thing will be custard. 131$log->fatal("Don't understand command$_\n"); 132die("Unknown command$_"); 133} 134} 135 136$log->debug("Processing time : user=". (times)[0] ." system=". (times)[1]); 137$log->info("--------------- FINISH -----------------"); 138 139# Magic catchall method. 140# This is the method that will handle all commands we haven't yet 141# implemented. It simply sends a warning to the log file indicating a 142# command that hasn't been implemented has been invoked. 143sub req_CATCHALL 144{ 145my($cmd,$data) =@_; 146$log->warn("Unhandled command : req_$cmd:$data"); 147} 148 149 150# Root pathname \n 151# Response expected: no. Tell the server which CVSROOT to use. Note that 152# pathname is a local directory and not a fully qualified CVSROOT variable. 153# pathname must already exist; if creating a new root, use the init 154# request, not Root. pathname does not include the hostname of the server, 155# how to access the server, etc.; by the time the CVS protocol is in use, 156# connection, authentication, etc., are already taken care of. The Root 157# request must be sent only once, and it must be sent before any requests 158# other than Valid-responses, valid-requests, UseUnchanged, Set or init. 159sub req_Root 160{ 161my($cmd,$data) =@_; 162$log->debug("req_Root :$data"); 163 164$state->{CVSROOT} =$data; 165 166$ENV{GIT_DIR} =$state->{CVSROOT} ."/"; 167unless(-d $ENV{GIT_DIR} && -e $ENV{GIT_DIR}.'HEAD') { 168print"E$ENV{GIT_DIR} does not seem to be a valid GIT repository\n"; 169print"E\n"; 170print"error 1$ENV{GIT_DIR} is not a valid repository\n"; 171return0; 172} 173 174my@gitvars=`git-repo-config -l`; 175if($?) { 176print"E problems executing git-repo-config on the server -- this is not a git repository or the PATH is not set correctly.\n"; 177print"E\n"; 178print"error 1 - problem executing git-repo-config\n"; 179return0; 180} 181foreachmy$line(@gitvars) 182{ 183next unless($line=~/^(.*?)\.(.*?)=(.*)$/); 184$cfg->{$1}{$2} =$3; 185} 186 187unless(defined($cfg->{gitcvs}{enabled} )and$cfg->{gitcvs}{enabled} =~/^\s*(1|true|yes)\s*$/i) 188{ 189print"E GITCVS emulation needs to be enabled on this repo\n"; 190print"E the repo config file needs a [gitcvs] section added, and the parameter 'enabled' set to 1\n"; 191print"E\n"; 192print"error 1 GITCVS emulation disabled\n"; 193return0; 194} 195 196if(defined($cfg->{gitcvs}{logfile} ) ) 197{ 198$log->setfile($cfg->{gitcvs}{logfile}); 199}else{ 200$log->nofile(); 201} 202 203return1; 204} 205 206# Global_option option \n 207# Response expected: no. Transmit one of the global options `-q', `-Q', 208# `-l', `-t', `-r', or `-n'. option must be one of those strings, no 209# variations (such as combining of options) are allowed. For graceful 210# handling of valid-requests, it is probably better to make new global 211# options separate requests, rather than trying to add them to this 212# request. 213sub req_Globaloption 214{ 215my($cmd,$data) =@_; 216$log->debug("req_Globaloption :$data"); 217$state->{globaloptions}{$data} =1; 218} 219 220# Valid-responses request-list \n 221# Response expected: no. Tell the server what responses the client will 222# accept. request-list is a space separated list of tokens. 223sub req_Validresponses 224{ 225my($cmd,$data) =@_; 226$log->debug("req_Validresponses :$data"); 227 228# TODO : re-enable this, currently it's not particularly useful 229#$state->{validresponses} = [ split /\s+/, $data ]; 230} 231 232# valid-requests \n 233# Response expected: yes. Ask the server to send back a Valid-requests 234# response. 235sub req_validrequests 236{ 237my($cmd,$data) =@_; 238 239$log->debug("req_validrequests"); 240 241$log->debug("SEND : Valid-requests ".join(" ",keys%$methods)); 242$log->debug("SEND : ok"); 243 244print"Valid-requests ".join(" ",keys%$methods) ."\n"; 245print"ok\n"; 246} 247 248# Directory local-directory \n 249# Additional data: repository \n. Response expected: no. Tell the server 250# what directory to use. The repository should be a directory name from a 251# previous server response. Note that this both gives a default for Entry 252# and Modified and also for ci and the other commands; normal usage is to 253# send Directory for each directory in which there will be an Entry or 254# Modified, and then a final Directory for the original directory, then the 255# command. The local-directory is relative to the top level at which the 256# command is occurring (i.e. the last Directory which is sent before the 257# command); to indicate that top level, `.' should be sent for 258# local-directory. 259sub req_Directory 260{ 261my($cmd,$data) =@_; 262 263my$repository= <STDIN>; 264chomp$repository; 265 266 267$state->{localdir} =$data; 268$state->{repository} =$repository; 269$state->{path} =$repository; 270$state->{path} =~s/^$state->{CVSROOT}\///; 271$state->{module} =$1if($state->{path} =~s/^(.*?)(\/|$)//); 272$state->{path} .="/"if($state->{path} =~ /\S/ ); 273 274$state->{directory} =$state->{localdir}; 275$state->{directory} =""if($state->{directory}eq"."); 276$state->{directory} .="/"if($state->{directory} =~ /\S/ ); 277 278if( (not defined($state->{prependdir})or$state->{prependdir}eq'')and$state->{localdir}eq"."and$state->{path} =~/\S/) 279{ 280$log->info("Setting prepend to '$state->{path}'"); 281$state->{prependdir} =$state->{path}; 282foreachmy$entry(keys%{$state->{entries}} ) 283{ 284$state->{entries}{$state->{prependdir} .$entry} =$state->{entries}{$entry}; 285delete$state->{entries}{$entry}; 286} 287} 288 289if(defined($state->{prependdir} ) ) 290{ 291$log->debug("Prepending '$state->{prependdir}' to state|directory"); 292$state->{directory} =$state->{prependdir} .$state->{directory} 293} 294$log->debug("req_Directory : localdir=$datarepository=$repositorypath=$state->{path} directory=$state->{directory} module=$state->{module}"); 295} 296 297# Entry entry-line \n 298# Response expected: no. Tell the server what version of a file is on the 299# local machine. The name in entry-line is a name relative to the directory 300# most recently specified with Directory. If the user is operating on only 301# some files in a directory, Entry requests for only those files need be 302# included. If an Entry request is sent without Modified, Is-modified, or 303# Unchanged, it means the file is lost (does not exist in the working 304# directory). If both Entry and one of Modified, Is-modified, or Unchanged 305# are sent for the same file, Entry must be sent first. For a given file, 306# one can send Modified, Is-modified, or Unchanged, but not more than one 307# of these three. 308sub req_Entry 309{ 310my($cmd,$data) =@_; 311 312#$log->debug("req_Entry : $data"); 313 314my@data=split(/\//,$data); 315 316$state->{entries}{$state->{directory}.$data[1]} = { 317 revision =>$data[2], 318 conflict =>$data[3], 319 options =>$data[4], 320 tag_or_date =>$data[5], 321}; 322 323$log->info("Received entry line '$data' => '".$state->{directory} .$data[1] ."'"); 324} 325 326# Questionable filename \n 327# Response expected: no. Additional data: no. Tell the server to check 328# whether filename should be ignored, and if not, next time the server 329# sends responses, send (in a M response) `?' followed by the directory and 330# filename. filename must not contain `/'; it needs to be a file in the 331# directory named by the most recent Directory request. 332sub req_Questionable 333{ 334my($cmd,$data) =@_; 335 336$log->debug("req_Questionable :$data"); 337$state->{entries}{$state->{directory}.$data}{questionable} =1; 338} 339 340# add \n 341# Response expected: yes. Add a file or directory. This uses any previous 342# Argument, Directory, Entry, or Modified requests, if they have been sent. 343# The last Directory sent specifies the working directory at the time of 344# the operation. To add a directory, send the directory to be added using 345# Directory and Argument requests. 346sub req_add 347{ 348my($cmd,$data) =@_; 349 350 argsplit("add"); 351 352my$addcount=0; 353 354foreachmy$filename( @{$state->{args}} ) 355{ 356$filename= filecleanup($filename); 357 358unless(defined($state->{entries}{$filename}{modified_filename} ) ) 359{ 360print"E cvs add: nothing known about `$filename'\n"; 361next; 362} 363# TODO : check we're not squashing an already existing file 364if(defined($state->{entries}{$filename}{revision} ) ) 365{ 366print"E cvs add: `$filename' has already been entered\n"; 367next; 368} 369 370my($filepart,$dirpart) = filenamesplit($filename,1); 371 372print"E cvs add: scheduling file `$filename' for addition\n"; 373 374print"Checked-in$dirpart\n"; 375print"$filename\n"; 376print"/$filepart/0///\n"; 377 378$addcount++; 379} 380 381if($addcount==1) 382{ 383print"E cvs add: use `cvs commit' to add this file permanently\n"; 384} 385elsif($addcount>1) 386{ 387print"E cvs add: use `cvs commit' to add these files permanently\n"; 388} 389 390print"ok\n"; 391} 392 393# remove \n 394# Response expected: yes. Remove a file. This uses any previous Argument, 395# Directory, Entry, or Modified requests, if they have been sent. The last 396# Directory sent specifies the working directory at the time of the 397# operation. Note that this request does not actually do anything to the 398# repository; the only effect of a successful remove request is to supply 399# the client with a new entries line containing `-' to indicate a removed 400# file. In fact, the client probably could perform this operation without 401# contacting the server, although using remove may cause the server to 402# perform a few more checks. The client sends a subsequent ci request to 403# actually record the removal in the repository. 404sub req_remove 405{ 406my($cmd,$data) =@_; 407 408 argsplit("remove"); 409 410# Grab a handle to the SQLite db and do any necessary updates 411my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 412$updater->update(); 413 414#$log->debug("add state : " . Dumper($state)); 415 416my$rmcount=0; 417 418foreachmy$filename( @{$state->{args}} ) 419{ 420$filename= filecleanup($filename); 421 422if(defined($state->{entries}{$filename}{unchanged} )or defined($state->{entries}{$filename}{modified_filename} ) ) 423{ 424print"E cvs remove: file `$filename' still in working directory\n"; 425next; 426} 427 428my$meta=$updater->getmeta($filename); 429my$wrev= revparse($filename); 430 431unless(defined($wrev) ) 432{ 433print"E cvs remove: nothing known about `$filename'\n"; 434next; 435} 436 437if(defined($wrev)and$wrev<0) 438{ 439print"E cvs remove: file `$filename' already scheduled for removal\n"; 440next; 441} 442 443unless($wrev==$meta->{revision} ) 444{ 445# TODO : not sure if the format of this message is quite correct. 446print"E cvs remove: Up to date check failed for `$filename'\n"; 447next; 448} 449 450 451my($filepart,$dirpart) = filenamesplit($filename,1); 452 453print"E cvs remove: scheduling `$filename' for removal\n"; 454 455print"Checked-in$dirpart\n"; 456print"$filename\n"; 457print"/$filepart/-1.$wrev///\n"; 458 459$rmcount++; 460} 461 462if($rmcount==1) 463{ 464print"E cvs remove: use `cvs commit' to remove this file permanently\n"; 465} 466elsif($rmcount>1) 467{ 468print"E cvs remove: use `cvs commit' to remove these files permanently\n"; 469} 470 471print"ok\n"; 472} 473 474# Modified filename \n 475# Response expected: no. Additional data: mode, \n, file transmission. Send 476# the server a copy of one locally modified file. filename is a file within 477# the most recent directory sent with Directory; it must not contain `/'. 478# If the user is operating on only some files in a directory, only those 479# files need to be included. This can also be sent without Entry, if there 480# is no entry for the file. 481sub req_Modified 482{ 483my($cmd,$data) =@_; 484 485my$mode= <STDIN>; 486chomp$mode; 487my$size= <STDIN>; 488chomp$size; 489 490# Grab config information 491my$blocksize=8192; 492my$bytesleft=$size; 493my$tmp; 494 495# Get a filehandle/name to write it to 496my($fh,$filename) = tempfile( DIR =>$TEMP_DIR); 497 498# Loop over file data writing out to temporary file. 499while($bytesleft) 500{ 501$blocksize=$bytesleftif($bytesleft<$blocksize); 502read STDIN,$tmp,$blocksize; 503print$fh $tmp; 504$bytesleft-=$blocksize; 505} 506 507close$fh; 508 509# Ensure we have something sensible for the file mode 510if($mode=~/u=(\w+)/) 511{ 512$mode=$1; 513}else{ 514$mode="rw"; 515} 516 517# Save the file data in $state 518$state->{entries}{$state->{directory}.$data}{modified_filename} =$filename; 519$state->{entries}{$state->{directory}.$data}{modified_mode} =$mode; 520$state->{entries}{$state->{directory}.$data}{modified_hash} =`git-hash-object$filename`; 521$state->{entries}{$state->{directory}.$data}{modified_hash} =~ s/\s.*$//s; 522 523 #$log->debug("req_Modified : file=$datamode=$modesize=$size"); 524} 525 526# Unchanged filename\n 527# Response expected: no. Tell the server that filename has not been 528# modified in the checked out directory. The filename is a file within the 529# most recent directory sent with Directory; it must not contain `/'. 530sub req_Unchanged 531{ 532 my ($cmd,$data) =@_; 533 534$state->{entries}{$state->{directory}.$data}{unchanged} = 1; 535 536 #$log->debug("req_Unchanged :$data"); 537} 538 539# Argument text\n 540# Response expected: no. Save argument for use in a subsequent command. 541# Arguments accumulate until an argument-using command is given, at which 542# point they are forgotten. 543# Argumentx text\n 544# Response expected: no. Append\nfollowed by text to the current argument 545# being saved. 546sub req_Argument 547{ 548 my ($cmd,$data) =@_; 549 550 # Argumentx means: append to last Argument (with a newline in front) 551 552$log->debug("$cmd:$data"); 553 554 if ($cmdeq 'Argumentx') { 555 ${$state->{arguments}}[$#{$state->{arguments}}] .= "\n" .$data; 556 } else { 557 push @{$state->{arguments}},$data; 558 } 559} 560 561# expand-modules\n 562# Response expected: yes. Expand the modules which are specified in the 563# arguments. Returns the data in Module-expansion responses. Note that the 564# server can assume that this is checkout or export, not rtag or rdiff; the 565# latter do not access the working directory and thus have no need to 566# expand modules on the client side. Expand may not be the best word for 567# what this request does. It does not necessarily tell you all the files 568# contained in a module, for example. Basically it is a way of telling you 569# which working directories the server needs to know about in order to 570# handle a checkout of the specified modules. For example, suppose that the 571# server has a module defined by 572# aliasmodule -a 1dir 573# That is, one can check out aliasmodule and it will take 1dir in the 574# repository and check it out to 1dir in the working directory. Now suppose 575# the client already has this module checked out and is planning on using 576# the co request to update it. Without using expand-modules, the client 577# would have two bad choices: it could either send information about all 578# working directories under the current directory, which could be 579# unnecessarily slow, or it could be ignorant of the fact that aliasmodule 580# stands for 1dir, and neglect to send information for 1dir, which would 581# lead to incorrect operation. With expand-modules, the client would first 582# ask for the module to be expanded: 583sub req_expandmodules 584{ 585 my ($cmd,$data) =@_; 586 587 argsplit(); 588 589$log->debug("req_expandmodules : " . ( defined($data) ?$data: "[NULL]" ) ); 590 591 unless ( ref$state->{arguments} eq "ARRAY" ) 592 { 593 print "ok\n"; 594 return; 595 } 596 597 foreach my$module( @{$state->{arguments}} ) 598 { 599$log->debug("SEND : Module-expansion$module"); 600 print "Module-expansion$module\n"; 601 } 602 603 print "ok\n"; 604 statecleanup(); 605} 606 607# co\n 608# Response expected: yes. Get files from the repository. This uses any 609# previous Argument, Directory, Entry, or Modified requests, if they have 610# been sent. Arguments to this command are module names; the client cannot 611# know what directories they correspond to except by (1) just sending the 612# co request, and then seeing what directory names the server sends back in 613# its responses, and (2) the expand-modules request. 614sub req_co 615{ 616 my ($cmd,$data) =@_; 617 618 argsplit("co"); 619 620 my$module=$state->{args}[0]; 621 my$checkout_path=$module; 622 623 # use the user specified directory if we're given it 624$checkout_path=$state->{opt}{d}if(exists($state->{opt}{d} ) ); 625 626$log->debug("req_co : ". (defined($data) ?$data:"[NULL]") ); 627 628$log->info("Checking out module '$module' ($state->{CVSROOT}) to '$checkout_path'"); 629 630$ENV{GIT_DIR} =$state->{CVSROOT} ."/"; 631 632# Grab a handle to the SQLite db and do any necessary updates 633my$updater= GITCVS::updater->new($state->{CVSROOT},$module,$log); 634$updater->update(); 635 636$checkout_path=~ s|/$||;# get rid of trailing slashes 637 638# Eclipse seems to need the Clear-sticky command 639# to prepare the 'Entries' file for the new directory. 640print"Clear-sticky$checkout_path/\n"; 641print$state->{CVSROOT} ."/$module/\n"; 642print"Clear-static-directory$checkout_path/\n"; 643print$state->{CVSROOT} ."/$module/\n"; 644print"Clear-sticky$checkout_path/\n";# yes, twice 645print$state->{CVSROOT} ."/$module/\n"; 646print"Template$checkout_path/\n"; 647print$state->{CVSROOT} ."/$module/\n"; 648print"0\n"; 649 650# instruct the client that we're checking out to $checkout_path 651print"E cvs checkout: Updating$checkout_path\n"; 652 653my%seendirs= (); 654my$lastdir=''; 655 656# recursive 657sub prepdir { 658my($dir,$repodir,$remotedir,$seendirs) =@_; 659my$parent= dirname($dir); 660$dir=~ s|/+$||; 661$repodir=~ s|/+$||; 662$remotedir=~ s|/+$||; 663$parent=~ s|/+$||; 664$log->debug("announcedir$dir,$repodir,$remotedir"); 665 666if($parenteq'.'||$parenteq'./') { 667$parent=''; 668} 669# recurse to announce unseen parents first 670if(length($parent) && !exists($seendirs->{$parent})) { 671 prepdir($parent,$repodir,$remotedir,$seendirs); 672} 673# Announce that we are going to modify at the parent level 674if($parent) { 675print"E cvs checkout: Updating$remotedir/$parent\n"; 676}else{ 677print"E cvs checkout: Updating$remotedir\n"; 678} 679print"Clear-sticky$remotedir/$parent/\n"; 680print"$repodir/$parent/\n"; 681 682print"Clear-static-directory$remotedir/$dir/\n"; 683print"$repodir/$dir/\n"; 684print"Clear-sticky$remotedir/$parent/\n";# yes, twice 685print"$repodir/$parent/\n"; 686print"Template$remotedir/$dir/\n"; 687print"$repodir/$dir/\n"; 688print"0\n"; 689 690$seendirs->{$dir} =1; 691} 692 693foreachmy$git( @{$updater->gethead} ) 694{ 695# Don't want to check out deleted files 696next if($git->{filehash}eq"deleted"); 697 698($git->{name},$git->{dir} ) = filenamesplit($git->{name}); 699 700if(length($git->{dir}) &&$git->{dir}ne'./' 701&&$git->{dir}ne$lastdir) { 702unless(exists($seendirs{$git->{dir}})) { 703 prepdir($git->{dir},$state->{CVSROOT} ."/$module/", 704$checkout_path, \%seendirs); 705$lastdir=$git->{dir}; 706$seendirs{$git->{dir}} =1; 707} 708print"E cvs checkout: Updating /$checkout_path/$git->{dir}\n"; 709} 710 711# modification time of this file 712print"Mod-time$git->{modified}\n"; 713 714# print some information to the client 715if(defined($git->{dir} )and$git->{dir}ne"./") 716{ 717print"M U$checkout_path/$git->{dir}$git->{name}\n"; 718}else{ 719print"M U$checkout_path/$git->{name}\n"; 720} 721 722# instruct client we're sending a file to put in this path 723print"Created$checkout_path/". (defined($git->{dir} )and$git->{dir}ne"./"?$git->{dir} ."/":"") ."\n"; 724 725print$state->{CVSROOT} ."/$module/". (defined($git->{dir} )and$git->{dir}ne"./"?$git->{dir} ."/":"") ."$git->{name}\n"; 726 727# this is an "entries" line 728print"/$git->{name}/1.$git->{revision}///\n"; 729# permissions 730print"u=$git->{mode},g=$git->{mode},o=$git->{mode}\n"; 731 732# transmit file 733 transmitfile($git->{filehash}); 734} 735 736print"ok\n"; 737 738 statecleanup(); 739} 740 741# update \n 742# Response expected: yes. Actually do a cvs update command. This uses any 743# previous Argument, Directory, Entry, or Modified requests, if they have 744# been sent. The last Directory sent specifies the working directory at the 745# time of the operation. The -I option is not used--files which the client 746# can decide whether to ignore are not mentioned and the client sends the 747# Questionable request for others. 748sub req_update 749{ 750my($cmd,$data) =@_; 751 752$log->debug("req_update : ". (defined($data) ?$data:"[NULL]")); 753 754 argsplit("update"); 755 756# 757# It may just be a client exploring the available heads/modules 758# in that case, list them as top level directories and leave it 759# at that. Eclipse uses this technique to offer you a list of 760# projects (heads in this case) to checkout. 761# 762if($state->{module}eq'') { 763print"E cvs update: Updating .\n"; 764opendir HEADS,$state->{CVSROOT} .'/refs/heads'; 765while(my$head=readdir(HEADS)) { 766if(-f $state->{CVSROOT} .'/refs/heads/'.$head) { 767print"E cvs update: New directory `$head'\n"; 768} 769} 770closedir HEADS; 771print"ok\n"; 772return1; 773} 774 775 776# Grab a handle to the SQLite db and do any necessary updates 777my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 778 779$updater->update(); 780 781 argsfromdir($updater); 782 783#$log->debug("update state : " . Dumper($state)); 784 785# foreach file specified on the command line ... 786foreachmy$filename( @{$state->{args}} ) 787{ 788$filename= filecleanup($filename); 789 790$log->debug("Processing file$filename"); 791 792# if we have a -C we should pretend we never saw modified stuff 793if(exists($state->{opt}{C} ) ) 794{ 795delete$state->{entries}{$filename}{modified_hash}; 796delete$state->{entries}{$filename}{modified_filename}; 797$state->{entries}{$filename}{unchanged} =1; 798} 799 800my$meta; 801if(defined($state->{opt}{r})and$state->{opt}{r} =~/^1\.(\d+)/) 802{ 803$meta=$updater->getmeta($filename,$1); 804}else{ 805$meta=$updater->getmeta($filename); 806} 807 808if( !defined$meta) 809{ 810$meta= { 811 name =>$filename, 812 revision =>0, 813 filehash =>'added' 814}; 815} 816 817my$oldmeta=$meta; 818 819my$wrev= revparse($filename); 820 821# If the working copy is an old revision, lets get that version too for comparison. 822if(defined($wrev)and$wrev!=$meta->{revision} ) 823{ 824$oldmeta=$updater->getmeta($filename,$wrev); 825} 826 827#$log->debug("Target revision is $meta->{revision}, current working revision is $wrev"); 828 829# Files are up to date if the working copy and repo copy have the same revision, 830# and the working copy is unmodified _and_ the user hasn't specified -C 831next if(defined($wrev) 832and defined($meta->{revision}) 833and$wrev==$meta->{revision} 834and$state->{entries}{$filename}{unchanged} 835and not exists($state->{opt}{C} ) ); 836 837# If the working copy and repo copy have the same revision, 838# but the working copy is modified, tell the client it's modified 839if(defined($wrev) 840and defined($meta->{revision}) 841and$wrev==$meta->{revision} 842and not exists($state->{opt}{C} ) ) 843{ 844$log->info("Tell the client the file is modified"); 845print"MT text M\n"; 846print"MT fname$filename\n"; 847print"MT newline\n"; 848next; 849} 850 851if($meta->{filehash}eq"deleted") 852{ 853my($filepart,$dirpart) = filenamesplit($filename,1); 854 855$log->info("Removing '$filename' from working copy (no longer in the repo)"); 856 857print"E cvs update: `$filename' is no longer in the repository\n"; 858# Don't want to actually _DO_ the update if -n specified 859unless($state->{globaloptions}{-n} ) { 860print"Removed$dirpart\n"; 861print"$filepart\n"; 862} 863} 864elsif(not defined($state->{entries}{$filename}{modified_hash} ) 865or$state->{entries}{$filename}{modified_hash}eq$oldmeta->{filehash} 866or$meta->{filehash}eq'added') 867{ 868# normal update, just send the new revision (either U=Update, 869# or A=Add, or R=Remove) 870if(defined($wrev) &&$wrev<0) 871{ 872$log->info("Tell the client the file is scheduled for removal"); 873print"MT text R\n"; 874print"MT fname$filename\n"; 875print"MT newline\n"; 876next; 877} 878elsif( !defined($wrev) ||$wrev==0) 879{ 880$log->info("Tell the client the file will be added"); 881print"MT text A\n"; 882print"MT fname$filename\n"; 883print"MT newline\n"; 884next; 885 886} 887else{ 888$log->info("Updating '$filename'$wrev"); 889print"MT +updated\n"; 890print"MT text U\n"; 891print"MT fname$filename\n"; 892print"MT newline\n"; 893print"MT -updated\n"; 894} 895 896my($filepart,$dirpart) = filenamesplit($filename,1); 897 898# Don't want to actually _DO_ the update if -n specified 899unless($state->{globaloptions}{-n} ) 900{ 901if(defined($wrev) ) 902{ 903# instruct client we're sending a file to put in this path as a replacement 904print"Update-existing$dirpart\n"; 905$log->debug("Updating existing file 'Update-existing$dirpart'"); 906}else{ 907# instruct client we're sending a file to put in this path as a new file 908print"Clear-static-directory$dirpart\n"; 909print$state->{CVSROOT} ."/$state->{module}/$dirpart\n"; 910print"Clear-sticky$dirpart\n"; 911print$state->{CVSROOT} ."/$state->{module}/$dirpart\n"; 912 913$log->debug("Creating new file 'Created$dirpart'"); 914print"Created$dirpart\n"; 915} 916print$state->{CVSROOT} ."/$state->{module}/$filename\n"; 917 918# this is an "entries" line 919$log->debug("/$filepart/1.$meta->{revision}///"); 920print"/$filepart/1.$meta->{revision}///\n"; 921 922# permissions 923$log->debug("SEND : u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}"); 924print"u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}\n"; 925 926# transmit file 927 transmitfile($meta->{filehash}); 928} 929}else{ 930$log->info("Updating '$filename'"); 931my($filepart,$dirpart) = filenamesplit($meta->{name},1); 932 933my$dir= tempdir( DIR =>$TEMP_DIR, CLEANUP =>1) ."/"; 934 935chdir$dir; 936my$file_local=$filepart.".mine"; 937system("ln","-s",$state->{entries}{$filename}{modified_filename},$file_local); 938my$file_old=$filepart.".".$oldmeta->{revision}; 939 transmitfile($oldmeta->{filehash},$file_old); 940my$file_new=$filepart.".".$meta->{revision}; 941 transmitfile($meta->{filehash},$file_new); 942 943# we need to merge with the local changes ( M=successful merge, C=conflict merge ) 944$log->info("Merging$file_local,$file_old,$file_new"); 945 946$log->debug("Temporary directory for merge is$dir"); 947 948my$return=system("merge",$file_local,$file_old,$file_new); 949$return>>=8; 950 951if($return==0) 952{ 953$log->info("Merged successfully"); 954print"M M$filename\n"; 955$log->debug("Update-existing$dirpart"); 956 957# Don't want to actually _DO_ the update if -n specified 958unless($state->{globaloptions}{-n} ) 959{ 960print"Update-existing$dirpart\n"; 961$log->debug($state->{CVSROOT} ."/$state->{module}/$filename"); 962print$state->{CVSROOT} ."/$state->{module}/$filename\n"; 963$log->debug("/$filepart/1.$meta->{revision}///"); 964print"/$filepart/1.$meta->{revision}///\n"; 965} 966} 967elsif($return==1) 968{ 969$log->info("Merged with conflicts"); 970print"M C$filename\n"; 971 972# Don't want to actually _DO_ the update if -n specified 973unless($state->{globaloptions}{-n} ) 974{ 975print"Update-existing$dirpart\n"; 976print$state->{CVSROOT} ."/$state->{module}/$filename\n"; 977print"/$filepart/1.$meta->{revision}/+//\n"; 978} 979} 980else 981{ 982$log->warn("Merge failed"); 983next; 984} 985 986# Don't want to actually _DO_ the update if -n specified 987unless($state->{globaloptions}{-n} ) 988{ 989# permissions 990$log->debug("SEND : u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}"); 991print"u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}\n"; 992 993# transmit file, format is single integer on a line by itself (file 994# size) followed by the file contents 995# TODO : we should copy files in blocks 996my$data=`cat$file_local`; 997$log->debug("File size : " . length($data)); 998 print length($data) . "\n"; 999 print$data;1000 }10011002 chdir "/";1003 }10041005 }10061007 print "ok\n";1008}10091010sub req_ci1011{1012 my ($cmd,$data) =@_;10131014 argsplit("ci");10151016 #$log->debug("State : " . Dumper($state));10171018$log->info("req_ci : " . ( defined($data) ?$data: "[NULL]" ));10191020 if (@ARGV&&$ARGV[0] eq 'pserver')1021 {1022 print "error 1 pserver access cannot commit\n";1023 exit;1024 }10251026 if ( -e$state->{CVSROOT} . "/index" )1027 {1028$log->warn("file 'index' already exists in the git repository");1029 print "error 1 Index already exists in git repo\n";1030 exit;1031 }10321033 my$lockfile= "$state->{CVSROOT}/refs/heads/$state->{module}.lock";1034 unless ( sysopen(LOCKFILE,$lockfile,O_EXCL|O_CREAT|O_WRONLY) )1035 {1036$log->warn("lockfile '$lockfile' already exists, please try again");1037 print "error 1 Lock file '$lockfile' already exists, please try again\n";1038 exit;1039 }10401041 # Grab a handle to the SQLite db and do any necessary updates1042 my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1043$updater->update();10441045 my$tmpdir= tempdir ( DIR =>$TEMP_DIR);1046 my ( undef,$file_index) = tempfile ( DIR =>$TEMP_DIR, OPEN => 0 );1047$log->info("Lock successful, basing commit on '$tmpdir', index file is '$file_index'");10481049$ENV{GIT_DIR} =$state->{CVSROOT} . "/";1050$ENV{GIT_INDEX_FILE} =$file_index;10511052 chdir$tmpdir;10531054 # populate the temporary index based1055 system("git-read-tree",$state->{module});1056 unless ($?== 0)1057 {1058 die "Error running git-read-tree$state->{module}$file_index$!";1059 }1060$log->info("Created index '$file_index' with for head$state->{module} - exit status$?");106110621063 my@committedfiles= ();10641065 # foreach file specified on the command line ...1066 foreach my$filename( @{$state->{args}} )1067 {1068 my$committedfile=$filename;1069$filename= filecleanup($filename);10701071 next unless ( exists$state->{entries}{$filename}{modified_filename} or not$state->{entries}{$filename}{unchanged} );10721073 my$meta=$updater->getmeta($filename);10741075 my$wrev= revparse($filename);10761077 my ($filepart,$dirpart) = filenamesplit($filename);10781079 # do a checkout of the file if it part of this tree1080 if ($wrev) {1081 system('git-checkout-index', '-f', '-u',$filename);1082 unless ($?== 0) {1083 die "Error running git-checkout-index -f -u$filename:$!";1084 }1085 }10861087 my$addflag= 0;1088 my$rmflag= 0;1089$rmflag= 1 if ( defined($wrev) and$wrev< 0 );1090$addflag= 1 unless ( -e$filename);10911092 # Do up to date checking1093 unless ($addflagor$wrev==$meta->{revision} or ($rmflagand -$wrev==$meta->{revision} ) )1094 {1095 # fail everything if an up to date check fails1096 print "error 1 Up to date check failed for$filename\n";1097 close LOCKFILE;1098 unlink($lockfile);1099 chdir "/";1100 exit;1101 }11021103 push@committedfiles,$committedfile;1104$log->info("Committing$filename");11051106 system("mkdir","-p",$dirpart) unless ( -d$dirpart);11071108 unless ($rmflag)1109 {1110$log->debug("rename$state->{entries}{$filename}{modified_filename}$filename");1111 rename$state->{entries}{$filename}{modified_filename},$filename;11121113 # Calculate modes to remove1114 my$invmode= "";1115 foreach ( qw (r w x) ) {$invmode.=$_unless ($state->{entries}{$filename}{modified_mode} =~ /$_/); }11161117$log->debug("chmod u+" .$state->{entries}{$filename}{modified_mode} . "-" .$invmode. "$filename");1118 system("chmod","u+" .$state->{entries}{$filename}{modified_mode} . "-" .$invmode,$filename);1119 }11201121 if ($rmflag)1122 {1123$log->info("Removing file '$filename'");1124 unlink($filename);1125 system("git-update-index", "--remove",$filename);1126 }1127 elsif ($addflag)1128 {1129$log->info("Adding file '$filename'");1130 system("git-update-index", "--add",$filename);1131 } else {1132$log->info("Updating file '$filename'");1133 system("git-update-index",$filename);1134 }1135 }11361137 unless ( scalar(@committedfiles) > 0 )1138 {1139 print "E No files to commit\n";1140 print "ok\n";1141 close LOCKFILE;1142 unlink($lockfile);1143 chdir "/";1144 return;1145 }11461147 my$treehash= `git-write-tree`;1148 my$parenthash= `cat $ENV{GIT_DIR}refs/heads/$state->{module}`;1149 chomp$treehash;1150 chomp$parenthash;11511152$log->debug("Treehash :$treehash, Parenthash :$parenthash");11531154 # write our commit message out if we have one ...1155 my ($msg_fh,$msg_filename) = tempfile( DIR =>$TEMP_DIR);1156 print$msg_fh$state->{opt}{m};# if ( exists ($state->{opt}{m} ) );1157 print$msg_fh"\n\nvia git-CVS emulator\n";1158 close$msg_fh;11591160 my$commithash= `git-commit-tree $treehash-p $parenthash<$msg_filename`;1161$log->info("Commit hash :$commithash");11621163unless($commithash=~/[a-zA-Z0-9]{40}/)1164{1165$log->warn("Commit failed (Invalid commit hash)");1166print"error 1 Commit failed (unknown reason)\n";1167close LOCKFILE;1168unlink($lockfile);1169chdir"/";1170exit;1171}11721173print LOCKFILE $commithash;11741175$updater->update();11761177# foreach file specified on the command line ...1178foreachmy$filename(@committedfiles)1179{1180$filename= filecleanup($filename);11811182my$meta=$updater->getmeta($filename);11831184my($filepart,$dirpart) = filenamesplit($filename,1);11851186$log->debug("Checked-in$dirpart:$filename");11871188if($meta->{filehash}eq"deleted")1189{1190print"Remove-entry$dirpart\n";1191print"$filename\n";1192}else{1193print"Checked-in$dirpart\n";1194print"$filename\n";1195print"/$filepart/1.$meta->{revision}///\n";1196}1197}11981199close LOCKFILE;1200my$reffile="$ENV{GIT_DIR}refs/heads/$state->{module}";1201unlink($reffile);1202rename($lockfile,$reffile);1203chdir"/";12041205print"ok\n";1206}12071208sub req_status1209{1210my($cmd,$data) =@_;12111212 argsplit("status");12131214$log->info("req_status : ". (defined($data) ?$data:"[NULL]"));1215#$log->debug("status state : " . Dumper($state));12161217# Grab a handle to the SQLite db and do any necessary updates1218my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1219$updater->update();12201221# if no files were specified, we need to work out what files we should be providing status on ...1222 argsfromdir($updater);12231224# foreach file specified on the command line ...1225foreachmy$filename( @{$state->{args}} )1226{1227$filename= filecleanup($filename);12281229my$meta=$updater->getmeta($filename);1230my$oldmeta=$meta;12311232my$wrev= revparse($filename);12331234# If the working copy is an old revision, lets get that version too for comparison.1235if(defined($wrev)and$wrev!=$meta->{revision} )1236{1237$oldmeta=$updater->getmeta($filename,$wrev);1238}12391240# TODO : All possible statuses aren't yet implemented1241my$status;1242# Files are up to date if the working copy and repo copy have the same revision, and the working copy is unmodified1243$status="Up-to-date"if(defined($wrev)and defined($meta->{revision})and$wrev==$meta->{revision}1244and1245( ($state->{entries}{$filename}{unchanged}and(not defined($state->{entries}{$filename}{conflict} )or$state->{entries}{$filename}{conflict} !~/^\+=/) )1246or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$meta->{filehash} ) )1247);12481249# Need checkout if the working copy has an older revision than the repo copy, and the working copy is unmodified1250$status||="Needs Checkout"if(defined($wrev)and defined($meta->{revision} )and$meta->{revision} >$wrev1251and1252($state->{entries}{$filename}{unchanged}1253or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$oldmeta->{filehash} ) )1254);12551256# Need checkout if it exists in the repo but doesn't have a working copy1257$status||="Needs Checkout"if(not defined($wrev)and defined($meta->{revision} ) );12581259# Locally modified if working copy and repo copy have the same revision but there are local changes1260$status||="Locally Modified"if(defined($wrev)and defined($meta->{revision})and$wrev==$meta->{revision}and$state->{entries}{$filename}{modified_filename} );12611262# Needs Merge if working copy revision is less than repo copy and there are local changes1263$status||="Needs Merge"if(defined($wrev)and defined($meta->{revision} )and$meta->{revision} >$wrevand$state->{entries}{$filename}{modified_filename} );12641265$status||="Locally Added"if(defined($state->{entries}{$filename}{revision} )and not defined($meta->{revision} ) );1266$status||="Locally Removed"if(defined($wrev)and defined($meta->{revision} )and-$wrev==$meta->{revision} );1267$status||="Unresolved Conflict"if(defined($state->{entries}{$filename}{conflict} )and$state->{entries}{$filename}{conflict} =~/^\+=/);1268$status||="File had conflicts on merge"if(0);12691270$status||="Unknown";12711272print"M ===================================================================\n";1273print"M File:$filename\tStatus:$status\n";1274if(defined($state->{entries}{$filename}{revision}) )1275{1276print"M Working revision:\t".$state->{entries}{$filename}{revision} ."\n";1277}else{1278print"M Working revision:\tNo entry for$filename\n";1279}1280if(defined($meta->{revision}) )1281{1282print"M Repository revision:\t1.".$meta->{revision} ."\t$state->{repository}/$filename,v\n";1283print"M Sticky Tag:\t\t(none)\n";1284print"M Sticky Date:\t\t(none)\n";1285print"M Sticky Options:\t\t(none)\n";1286}else{1287print"M Repository revision:\tNo revision control file\n";1288}1289print"M\n";1290}12911292print"ok\n";1293}12941295sub req_diff1296{1297my($cmd,$data) =@_;12981299 argsplit("diff");13001301$log->debug("req_diff : ". (defined($data) ?$data:"[NULL]"));1302#$log->debug("status state : " . Dumper($state));13031304my($revision1,$revision2);1305if(defined($state->{opt}{r} )and ref$state->{opt}{r}eq"ARRAY")1306{1307$revision1=$state->{opt}{r}[0];1308$revision2=$state->{opt}{r}[1];1309}else{1310$revision1=$state->{opt}{r};1311}13121313$revision1=~s/^1\.//if(defined($revision1) );1314$revision2=~s/^1\.//if(defined($revision2) );13151316$log->debug("Diffing revisions ". (defined($revision1) ?$revision1:"[NULL]") ." and ". (defined($revision2) ?$revision2:"[NULL]") );13171318# Grab a handle to the SQLite db and do any necessary updates1319my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1320$updater->update();13211322# if no files were specified, we need to work out what files we should be providing status on ...1323 argsfromdir($updater);13241325# foreach file specified on the command line ...1326foreachmy$filename( @{$state->{args}} )1327{1328$filename= filecleanup($filename);13291330my($fh,$file1,$file2,$meta1,$meta2,$filediff);13311332my$wrev= revparse($filename);13331334# We need _something_ to diff against1335next unless(defined($wrev) );13361337# if we have a -r switch, use it1338if(defined($revision1) )1339{1340(undef,$file1) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1341$meta1=$updater->getmeta($filename,$revision1);1342unless(defined($meta1)and$meta1->{filehash}ne"deleted")1343{1344print"E File$filenameat revision 1.$revision1doesn't exist\n";1345next;1346}1347 transmitfile($meta1->{filehash},$file1);1348}1349# otherwise we just use the working copy revision1350else1351{1352(undef,$file1) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1353$meta1=$updater->getmeta($filename,$wrev);1354 transmitfile($meta1->{filehash},$file1);1355}13561357# if we have a second -r switch, use it too1358if(defined($revision2) )1359{1360(undef,$file2) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1361$meta2=$updater->getmeta($filename,$revision2);13621363unless(defined($meta2)and$meta2->{filehash}ne"deleted")1364{1365print"E File$filenameat revision 1.$revision2doesn't exist\n";1366next;1367}13681369 transmitfile($meta2->{filehash},$file2);1370}1371# otherwise we just use the working copy1372else1373{1374$file2=$state->{entries}{$filename}{modified_filename};1375}13761377# if we have been given -r, and we don't have a $file2 yet, lets get one1378if(defined($revision1)and not defined($file2) )1379{1380(undef,$file2) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1381$meta2=$updater->getmeta($filename,$wrev);1382 transmitfile($meta2->{filehash},$file2);1383}13841385# We need to have retrieved something useful1386next unless(defined($meta1) );13871388# Files to date if the working copy and repo copy have the same revision, and the working copy is unmodified1389next if(not defined($meta2)and$wrev==$meta1->{revision}1390and1391( ($state->{entries}{$filename}{unchanged}and(not defined($state->{entries}{$filename}{conflict} )or$state->{entries}{$filename}{conflict} !~/^\+=/) )1392or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$meta1->{filehash} ) )1393);13941395# Apparently we only show diffs for locally modified files1396next unless(defined($meta2)or defined($state->{entries}{$filename}{modified_filename} ) );13971398print"M Index:$filename\n";1399print"M ===================================================================\n";1400print"M RCS file:$state->{CVSROOT}/$state->{module}/$filename,v\n";1401print"M retrieving revision 1.$meta1->{revision}\n"if(defined($meta1) );1402print"M retrieving revision 1.$meta2->{revision}\n"if(defined($meta2) );1403print"M diff ";1404foreachmy$opt(keys%{$state->{opt}} )1405{1406if(ref$state->{opt}{$opt}eq"ARRAY")1407{1408foreachmy$value( @{$state->{opt}{$opt}} )1409{1410print"-$opt$value";1411}1412}else{1413print"-$opt";1414print"$state->{opt}{$opt} "if(defined($state->{opt}{$opt} ) );1415}1416}1417print"$filename\n";14181419$log->info("Diffing$filename-r$meta1->{revision} -r ". ($meta2->{revision}or"workingcopy"));14201421($fh,$filediff) = tempfile ( DIR =>$TEMP_DIR);14221423if(exists$state->{opt}{u} )1424{1425system("diff -u -L '$filenamerevision 1.$meta1->{revision}' -L '$filename". (defined($meta2->{revision}) ?"revision 1.$meta2->{revision}":"working copy") ."'$file1$file2>$filediff");1426}else{1427system("diff$file1$file2>$filediff");1428}14291430while( <$fh> )1431{1432print"M$_";1433}1434close$fh;1435}14361437print"ok\n";1438}14391440sub req_log1441{1442my($cmd,$data) =@_;14431444 argsplit("log");14451446$log->debug("req_log : ". (defined($data) ?$data:"[NULL]"));1447#$log->debug("log state : " . Dumper($state));14481449my($minrev,$maxrev);1450if(defined($state->{opt}{r} )and$state->{opt}{r} =~/([\d.]+)?(::?)([\d.]+)?/)1451{1452my$control=$2;1453$minrev=$1;1454$maxrev=$3;1455$minrev=~s/^1\.//if(defined($minrev) );1456$maxrev=~s/^1\.//if(defined($maxrev) );1457$minrev++if(defined($minrev)and$controleq"::");1458}14591460# Grab a handle to the SQLite db and do any necessary updates1461my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1462$updater->update();14631464# if no files were specified, we need to work out what files we should be providing status on ...1465 argsfromdir($updater);14661467# foreach file specified on the command line ...1468foreachmy$filename( @{$state->{args}} )1469{1470$filename= filecleanup($filename);14711472my$headmeta=$updater->getmeta($filename);14731474my$revisions=$updater->getlog($filename);1475my$totalrevisions=scalar(@$revisions);14761477if(defined($minrev) )1478{1479$log->debug("Removing revisions less than$minrev");1480while(scalar(@$revisions) >0and$revisions->[-1]{revision} <$minrev)1481{1482pop@$revisions;1483}1484}1485if(defined($maxrev) )1486{1487$log->debug("Removing revisions greater than$maxrev");1488while(scalar(@$revisions) >0and$revisions->[0]{revision} >$maxrev)1489{1490shift@$revisions;1491}1492}14931494next unless(scalar(@$revisions) );14951496print"M\n";1497print"M RCS file:$state->{CVSROOT}/$state->{module}/$filename,v\n";1498print"M Working file:$filename\n";1499print"M head: 1.$headmeta->{revision}\n";1500print"M branch:\n";1501print"M locks: strict\n";1502print"M access list:\n";1503print"M symbolic names:\n";1504print"M keyword substitution: kv\n";1505print"M total revisions:$totalrevisions;\tselected revisions: ".scalar(@$revisions) ."\n";1506print"M description:\n";15071508foreachmy$revision(@$revisions)1509{1510print"M ----------------------------\n";1511print"M revision 1.$revision->{revision}\n";1512# reformat the date for log output1513$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}) );1514$revision->{author} =~s/\s+.*//;1515$revision->{author} =~s/^(.{8}).*/$1/;1516print"M date:$revision->{modified}; author:$revision->{author}; state: ". ($revision->{filehash}eq"deleted"?"dead":"Exp") ."; lines: +2 -3\n";1517my$commitmessage=$updater->commitmessage($revision->{commithash});1518$commitmessage=~s/^/M /mg;1519print$commitmessage."\n";1520}1521print"M =============================================================================\n";1522}15231524print"ok\n";1525}15261527sub req_annotate1528{1529my($cmd,$data) =@_;15301531 argsplit("annotate");15321533$log->info("req_annotate : ". (defined($data) ?$data:"[NULL]"));1534#$log->debug("status state : " . Dumper($state));15351536# Grab a handle to the SQLite db and do any necessary updates1537my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1538$updater->update();15391540# if no files were specified, we need to work out what files we should be providing annotate on ...1541 argsfromdir($updater);15421543# we'll need a temporary checkout dir1544my$tmpdir= tempdir ( DIR =>$TEMP_DIR);1545my(undef,$file_index) = tempfile ( DIR =>$TEMP_DIR, OPEN =>0);1546$log->info("Temp checkoutdir creation successful, basing annotate session work on '$tmpdir', index file is '$file_index'");15471548$ENV{GIT_DIR} =$state->{CVSROOT} ."/";1549$ENV{GIT_INDEX_FILE} =$file_index;15501551chdir$tmpdir;15521553# foreach file specified on the command line ...1554foreachmy$filename( @{$state->{args}} )1555{1556$filename= filecleanup($filename);15571558my$meta=$updater->getmeta($filename);15591560next unless($meta->{revision} );15611562# get all the commits that this file was in1563# in dense format -- aka skip dead revisions1564my$revisions=$updater->gethistorydense($filename);1565my$lastseenin=$revisions->[0][2];15661567# populate the temporary index based on the latest commit were we saw1568# the file -- but do it cheaply without checking out any files1569# TODO: if we got a revision from the client, use that instead1570# to look up the commithash in sqlite (still good to default to1571# the current head as we do now)1572system("git-read-tree",$lastseenin);1573unless($?==0)1574{1575die"Error running git-read-tree$lastseenin$file_index$!";1576}1577$log->info("Created index '$file_index' with commit$lastseenin- exit status$?");15781579# do a checkout of the file1580system('git-checkout-index','-f','-u',$filename);1581unless($?==0) {1582die"Error running git-checkout-index -f -u$filename:$!";1583}15841585$log->info("Annotate$filename");15861587# Prepare a file with the commits from the linearized1588# history that annotate should know about. This prevents1589# git-jsannotate telling us about commits we are hiding1590# from the client.15911592open(ANNOTATEHINTS,">$tmpdir/.annotate_hints")or die"Error opening >$tmpdir/.annotate_hints$!";1593for(my$i=0;$i<@$revisions;$i++)1594{1595print ANNOTATEHINTS $revisions->[$i][2];1596if($i+1<@$revisions) {# have we got a parent?1597print ANNOTATEHINTS ' '.$revisions->[$i+1][2];1598}1599print ANNOTATEHINTS "\n";1600}16011602print ANNOTATEHINTS "\n";1603close ANNOTATEHINTS;16041605my$annotatecmd='git-annotate';1606open(ANNOTATE,"-|",$annotatecmd,'-l','-S',"$tmpdir/.annotate_hints",$filename)1607or die"Error invoking$annotatecmd-l -S$tmpdir/.annotate_hints$filename:$!";1608my$metadata= {};1609print"E Annotations for$filename\n";1610print"E ***************\n";1611while( <ANNOTATE> )1612{1613if(m/^([a-zA-Z0-9]{40})\t\([^\)]*\)(.*)$/i)1614{1615my$commithash=$1;1616my$data=$2;1617unless(defined($metadata->{$commithash} ) )1618{1619$metadata->{$commithash} =$updater->getmeta($filename,$commithash);1620$metadata->{$commithash}{author} =~s/\s+.*//;1621$metadata->{$commithash}{author} =~s/^(.{8}).*/$1/;1622$metadata->{$commithash}{modified} =sprintf("%02d-%s-%02d",$1,$2,$3)if($metadata->{$commithash}{modified} =~/^(\d+)\s(\w+)\s\d\d(\d\d)/);1623}1624printf("M 1.%-5d (%-8s%10s):%s\n",1625$metadata->{$commithash}{revision},1626$metadata->{$commithash}{author},1627$metadata->{$commithash}{modified},1628$data1629);1630}else{1631$log->warn("Error in annotate output! LINE:$_");1632print"E Annotate error\n";1633next;1634}1635}1636close ANNOTATE;1637}16381639# done; get out of the tempdir1640chdir"/";16411642print"ok\n";16431644}16451646# This method takes the state->{arguments} array and produces two new arrays.1647# The first is $state->{args} which is everything before the '--' argument, and1648# the second is $state->{files} which is everything after it.1649sub argsplit1650{1651return unless(defined($state->{arguments})and ref$state->{arguments}eq"ARRAY");16521653my$type=shift;16541655$state->{args} = [];1656$state->{files} = [];1657$state->{opt} = {};16581659if(defined($type) )1660{1661my$opt= {};1662$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");1663$opt= { v =>0, l =>0, R =>0}if($typeeq"status");1664$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");1665$opt= { l =>0, R =>0, k =>1, D =>1, D =>1, r =>2}if($typeeq"diff");1666$opt= { c =>0, R =>0, l =>0, f =>0, F =>1, m =>1, r =>1}if($typeeq"ci");1667$opt= { k =>1, m =>1}if($typeeq"add");1668$opt= { f =>0, l =>0, R =>0}if($typeeq"remove");1669$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");167016711672while(scalar( @{$state->{arguments}} ) >0)1673{1674my$arg=shift@{$state->{arguments}};16751676next if($argeq"--");1677next unless($arg=~/\S/);16781679# if the argument looks like a switch1680if($arg=~/^-(\w)(.*)/)1681{1682# if it's a switch that takes an argument1683if($opt->{$1} )1684{1685# If this switch has already been provided1686if($opt->{$1} >1and exists($state->{opt}{$1} ) )1687{1688$state->{opt}{$1} = [$state->{opt}{$1} ];1689if(length($2) >0)1690{1691push@{$state->{opt}{$1}},$2;1692}else{1693push@{$state->{opt}{$1}},shift@{$state->{arguments}};1694}1695}else{1696# if there's extra data in the arg, use that as the argument for the switch1697if(length($2) >0)1698{1699$state->{opt}{$1} =$2;1700}else{1701$state->{opt}{$1} =shift@{$state->{arguments}};1702}1703}1704}else{1705$state->{opt}{$1} =undef;1706}1707}1708else1709{1710push@{$state->{args}},$arg;1711}1712}1713}1714else1715{1716my$mode=0;17171718foreachmy$value( @{$state->{arguments}} )1719{1720if($valueeq"--")1721{1722$mode++;1723next;1724}1725push@{$state->{args}},$valueif($mode==0);1726push@{$state->{files}},$valueif($mode==1);1727}1728}1729}17301731# This method uses $state->{directory} to populate $state->{args} with a list of filenames1732sub argsfromdir1733{1734my$updater=shift;17351736$state->{args} = []if(scalar(@{$state->{args}}) ==1and$state->{args}[0]eq".");17371738return if(scalar( @{$state->{args}} ) >1);17391740my@gethead= @{$updater->gethead};17411742# push added files1743foreachmy$file(keys%{$state->{entries}}) {1744if(exists$state->{entries}{$file}{revision} &&1745$state->{entries}{$file}{revision} ==0)1746{1747push@gethead, { name =>$file, filehash =>'added'};1748}1749}17501751if(scalar(@{$state->{args}}) ==1)1752{1753my$arg=$state->{args}[0];1754$arg.=$state->{prependdir}if(defined($state->{prependdir} ) );17551756$log->info("Only one arg specified, checking for directory expansion on '$arg'");17571758foreachmy$file(@gethead)1759{1760next if($file->{filehash}eq"deleted"and not defined($state->{entries}{$file->{name}} ) );1761next unless($file->{name} =~/^$arg\//or$file->{name}eq$arg);1762push@{$state->{args}},$file->{name};1763}17641765shift@{$state->{args}}if(scalar(@{$state->{args}}) >1);1766}else{1767$log->info("Only one arg specified, populating file list automatically");17681769$state->{args} = [];17701771foreachmy$file(@gethead)1772{1773next if($file->{filehash}eq"deleted"and not defined($state->{entries}{$file->{name}} ) );1774next unless($file->{name} =~s/^$state->{prependdir}//);1775push@{$state->{args}},$file->{name};1776}1777}1778}17791780# This method cleans up the $state variable after a command that uses arguments has run1781sub statecleanup1782{1783$state->{files} = [];1784$state->{args} = [];1785$state->{arguments} = [];1786$state->{entries} = {};1787}17881789sub revparse1790{1791my$filename=shift;17921793returnundefunless(defined($state->{entries}{$filename}{revision} ) );17941795return$1if($state->{entries}{$filename}{revision} =~/^1\.(\d+)/);1796return-$1if($state->{entries}{$filename}{revision} =~/^-1\.(\d+)/);17971798returnundef;1799}18001801# This method takes a file hash and does a CVS "file transfer" which transmits the1802# size of the file, and then the file contents.1803# If a second argument $targetfile is given, the file is instead written out to1804# a file by the name of $targetfile1805sub transmitfile1806{1807my$filehash=shift;1808my$targetfile=shift;18091810if(defined($filehash)and$filehasheq"deleted")1811{1812$log->warn("filehash is 'deleted'");1813return;1814}18151816die"Need filehash"unless(defined($filehash)and$filehash=~/^[a-zA-Z0-9]{40}$/);18171818my$type=`git-cat-file -t$filehash`;1819 chomp$type;18201821 die ( "Invalid type '$type' (expected 'blob')" ) unless ( defined ($type) and$typeeq "blob" );18221823 my$size= `git-cat-file -s $filehash`;1824chomp$size;18251826$log->debug("transmitfile($filehash) size=$size, type=$type");18271828if(open my$fh,'-|',"git-cat-file","blob",$filehash)1829{1830if(defined($targetfile) )1831{1832open NEWFILE,">",$targetfileor die("Couldn't open '$targetfile' for writing :$!");1833print NEWFILE $_while( <$fh> );1834close NEWFILE;1835}else{1836print"$size\n";1837printwhile( <$fh> );1838}1839close$fhor die("Couldn't close filehandle for transmitfile()");1840}else{1841die("Couldn't execute git-cat-file");1842}1843}18441845# This method takes a file name, and returns ( $dirpart, $filepart ) which1846# refers to the directory portion and the file portion of the filename1847# respectively1848sub filenamesplit1849{1850my$filename=shift;1851my$fixforlocaldir=shift;18521853my($filepart,$dirpart) = ($filename,".");1854($filepart,$dirpart) = ($2,$1)if($filename=~/(.*)\/(.*)/ );1855$dirpart.="/";18561857if($fixforlocaldir)1858{1859$dirpart=~s/^$state->{prependdir}//;1860}18611862return($filepart,$dirpart);1863}18641865sub filecleanup1866{1867my$filename=shift;18681869returnundefunless(defined($filename));1870if($filename=~/^\// )1871{1872print"E absolute filenames '$filename' not supported by server\n";1873returnundef;1874}18751876$filename=~s/^\.\///g;1877$filename=$state->{prependdir} .$filename;1878return$filename;1879}18801881package GITCVS::log;18821883####1884#### Copyright The Open University UK - 2006.1885####1886#### Authors: Martyn Smith <martyn@catalyst.net.nz>1887#### Martin Langhoff <martin@catalyst.net.nz>1888####1889####18901891use strict;1892use warnings;18931894=head1 NAME18951896GITCVS::log18971898=head1 DESCRIPTION18991900This module provides very crude logging with a similar interface to1901Log::Log4perl19021903=head1 METHODS19041905=cut19061907=head2 new19081909Creates a new log object, optionally you can specify a filename here to1910indicate the file to log to. If no log file is specified, you can specify one1911later with method setfile, or indicate you no longer want logging with method1912nofile.19131914Until one of these methods is called, all log calls will buffer messages ready1915to write out.19161917=cut1918sub new1919{1920my$class=shift;1921my$filename=shift;19221923my$self= {};19241925bless$self,$class;19261927if(defined($filename) )1928{1929open$self->{fh},">>",$filenameor die("Couldn't open '$filename' for writing :$!");1930}19311932return$self;1933}19341935=head2 setfile19361937This methods takes a filename, and attempts to open that file as the log file.1938If successful, all buffered data is written out to the file, and any further1939logging is written directly to the file.19401941=cut1942sub setfile1943{1944my$self=shift;1945my$filename=shift;19461947if(defined($filename) )1948{1949open$self->{fh},">>",$filenameor die("Couldn't open '$filename' for writing :$!");1950}19511952return unless(defined($self->{buffer} )and ref$self->{buffer}eq"ARRAY");19531954while(my$line=shift@{$self->{buffer}} )1955{1956print{$self->{fh}}$line;1957}1958}19591960=head2 nofile19611962This method indicates no logging is going to be used. It flushes any entries in1963the internal buffer, and sets a flag to ensure no further data is put there.19641965=cut1966sub nofile1967{1968my$self=shift;19691970$self->{nolog} =1;19711972return unless(defined($self->{buffer} )and ref$self->{buffer}eq"ARRAY");19731974$self->{buffer} = [];1975}19761977=head2 _logopen19781979Internal method. Returns true if the log file is open, false otherwise.19801981=cut1982sub _logopen1983{1984my$self=shift;19851986return1if(defined($self->{fh} )and ref$self->{fh}eq"GLOB");1987return0;1988}19891990=head2 debug info warn fatal19911992These four methods are wrappers to _log. They provide the actual interface for1993logging data.19941995=cut1996sub debug {my$self=shift;$self->_log("debug",@_); }1997sub info {my$self=shift;$self->_log("info",@_); }1998subwarn{my$self=shift;$self->_log("warn",@_); }1999sub fatal {my$self=shift;$self->_log("fatal",@_); }20002001=head2 _log20022003This is an internal method called by the logging functions. It generates a2004timestamp and pushes the logged line either to file, or internal buffer.20052006=cut2007sub _log2008{2009my$self=shift;2010my$level=shift;20112012return if($self->{nolog} );20132014my@time=localtime;2015my$timestring=sprintf("%4d-%02d-%02d%02d:%02d:%02d: %-5s",2016$time[5] +1900,2017$time[4] +1,2018$time[3],2019$time[2],2020$time[1],2021$time[0],2022uc$level,2023);20242025if($self->_logopen)2026{2027print{$self->{fh}}$timestring." - ".join(" ",@_) ."\n";2028}else{2029push@{$self->{buffer}},$timestring." - ".join(" ",@_) ."\n";2030}2031}20322033=head2 DESTROY20342035This method simply closes the file handle if one is open20362037=cut2038sub DESTROY2039{2040my$self=shift;20412042if($self->_logopen)2043{2044close$self->{fh};2045}2046}20472048package GITCVS::updater;20492050####2051#### Copyright The Open University UK - 2006.2052####2053#### Authors: Martyn Smith <martyn@catalyst.net.nz>2054#### Martin Langhoff <martin@catalyst.net.nz>2055####2056####20572058use strict;2059use warnings;2060use DBI;20612062=head1 METHODS20632064=cut20652066=head2 new20672068=cut2069sub new2070{2071my$class=shift;2072my$config=shift;2073my$module=shift;2074my$log=shift;20752076die"Need to specify a git repository"unless(defined($config)and-d $config);2077die"Need to specify a module"unless(defined($module) );20782079$class=ref($class) ||$class;20802081my$self= {};20822083bless$self,$class;20842085$self->{dbdir} =$config."/";2086die"Database dir '$self->{dbdir}' isn't a directory"unless(defined($self->{dbdir})and-d $self->{dbdir} );20872088$self->{module} =$module;2089$self->{file} =$self->{dbdir} ."/gitcvs.$module.sqlite";20902091$self->{git_path} =$config."/";20922093$self->{log} =$log;20942095die"Git repo '$self->{git_path}' doesn't exist"unless( -d $self->{git_path} );20962097$self->{dbh} = DBI->connect("dbi:SQLite:dbname=".$self->{file},"","");20982099$self->{tables} = {};2100foreachmy$table($self->{dbh}->tables)2101{2102$table=~s/^"//;2103$table=~s/"$//;2104$self->{tables}{$table} =1;2105}21062107# Construct the revision table if required2108unless($self->{tables}{revision} )2109{2110$self->{dbh}->do("2111 CREATE TABLE revision (2112 name TEXT NOT NULL,2113 revision INTEGER NOT NULL,2114 filehash TEXT NOT NULL,2115 commithash TEXT NOT NULL,2116 author TEXT NOT NULL,2117 modified TEXT NOT NULL,2118 mode TEXT NOT NULL2119 )2120 ");2121$self->{dbh}->do("2122 CREATE INDEX revision_ix12123 ON revision (name,revision)2124 ");2125$self->{dbh}->do("2126 CREATE INDEX revision_ix22127 ON revision (name,commithash)2128 ");2129}21302131# Construct the head table if required2132unless($self->{tables}{head} )2133{2134$self->{dbh}->do("2135 CREATE TABLE head (2136 name TEXT NOT NULL,2137 revision INTEGER NOT NULL,2138 filehash TEXT NOT NULL,2139 commithash TEXT NOT NULL,2140 author TEXT NOT NULL,2141 modified TEXT NOT NULL,2142 mode TEXT NOT NULL2143 )2144 ");2145$self->{dbh}->do("2146 CREATE INDEX head_ix12147 ON head (name)2148 ");2149}21502151# Construct the properties table if required2152unless($self->{tables}{properties} )2153{2154$self->{dbh}->do("2155 CREATE TABLE properties (2156 key TEXT NOT NULL PRIMARY KEY,2157 value TEXT2158 )2159 ");2160}21612162# Construct the commitmsgs table if required2163unless($self->{tables}{commitmsgs} )2164{2165$self->{dbh}->do("2166 CREATE TABLE commitmsgs (2167 key TEXT NOT NULL PRIMARY KEY,2168 value TEXT2169 )2170 ");2171}21722173return$self;2174}21752176=head2 update21772178=cut2179sub update2180{2181my$self=shift;21822183# first lets get the commit list2184$ENV{GIT_DIR} =$self->{git_path};21852186my$commitinfo=`git-cat-file commit$self->{module} 2>&1`;2187unless($commitinfo=~/tree\s+[a-zA-Z0-9]{40}/)2188{2189die("Invalid module '$self->{module}'");2190}219121922193my$git_log;2194my$lastcommit=$self->_get_prop("last_commit");21952196# Start exclusive lock here...2197$self->{dbh}->begin_work()or die"Cannot lock database for BEGIN";21982199# TODO: log processing is memory bound2200# if we can parse into a 2nd file that is in reverse order2201# we can probably do something really efficient2202my@git_log_params= ('--pretty','--parents','--topo-order');22032204if(defined$lastcommit) {2205push@git_log_params,"$lastcommit..$self->{module}";2206}else{2207push@git_log_params,$self->{module};2208}2209# git-rev-list is the backend / plumbing version of git-log2210open(GITLOG,'-|','git-rev-list',@git_log_params)or die"Cannot call git-rev-list:$!";22112212my@commits;22132214my%commit= ();22152216while( <GITLOG> )2217{2218chomp;2219if(m/^commit\s+(.*)$/) {2220# on ^commit lines put the just seen commit in the stack2221# and prime things for the next one2222if(keys%commit) {2223my%copy=%commit;2224unshift@commits, \%copy;2225%commit= ();2226}2227my@parents=split(m/\s+/,$1);2228$commit{hash} =shift@parents;2229$commit{parents} = \@parents;2230}elsif(m/^(\w+?):\s+(.*)$/&& !exists($commit{message})) {2231# on rfc822-like lines seen before we see any message,2232# lowercase the entry and put it in the hash as key-value2233$commit{lc($1)} =$2;2234}else{2235# message lines - skip initial empty line2236# and trim whitespace2237if(!exists($commit{message}) &&m/^\s*$/) {2238# define it to mark the end of headers2239$commit{message} ='';2240next;2241}2242s/^\s+//;s/\s+$//;# trim ws2243$commit{message} .=$_."\n";2244}2245}2246close GITLOG;22472248unshift@commits, \%commitif(keys%commit);22492250# Now all the commits are in the @commits bucket2251# ordered by time DESC. for each commit that needs processing,2252# determine whether it's following the last head we've seen or if2253# it's on its own branch, grab a file list, and add whatever's changed2254# NOTE: $lastcommit refers to the last commit from previous run2255# $lastpicked is the last commit we picked in this run2256my$lastpicked;2257my$head= {};2258if(defined$lastcommit) {2259$lastpicked=$lastcommit;2260}22612262my$committotal=scalar(@commits);2263my$commitcount=0;22642265# Load the head table into $head (for cached lookups during the update process)2266foreachmy$file( @{$self->gethead()} )2267{2268$head->{$file->{name}} =$file;2269}22702271foreachmy$commit(@commits)2272{2273$self->{log}->debug("GITCVS::updater - Processing commit$commit->{hash} (". (++$commitcount) ." of$committotal)");2274if(defined$lastpicked)2275{2276if(!in_array($lastpicked, @{$commit->{parents}}))2277{2278# skip, we'll see this delta2279# as part of a merge later2280# warn "skipping off-track $commit->{hash}\n";2281next;2282}elsif(@{$commit->{parents}} >1) {2283# it is a merge commit, for each parent that is2284# not $lastpicked, see if we can get a log2285# from the merge-base to that parent to put it2286# in the message as a merge summary.2287my@parents= @{$commit->{parents}};2288foreachmy$parent(@parents) {2289# git-merge-base can potentially (but rarely) throw2290# several candidate merge bases. let's assume2291# that the first one is the best one.2292if($parenteq$lastpicked) {2293next;2294}2295open my$p,'git-merge-base '.$lastpicked.' '2296.$parent.'|';2297my@output= (<$p>);2298close$p;2299my$base=join('',@output);2300chomp$base;2301if($base) {2302my@merged;2303# print "want to log between $base $parent \n";2304open(GITLOG,'-|','git-log',"$base..$parent")2305or die"Cannot call git-log:$!";2306my$mergedhash;2307while(<GITLOG>) {2308chomp;2309if(!defined$mergedhash) {2310if(m/^commit\s+(.+)$/) {2311$mergedhash=$1;2312}else{2313next;2314}2315}else{2316# grab the first line that looks non-rfc8222317# aka has content after leading space2318if(m/^\s+(\S.*)$/) {2319my$title=$1;2320$title=substr($title,0,100);# truncate2321unshift@merged,"$mergedhash$title";2322undef$mergedhash;2323}2324}2325}2326close GITLOG;2327if(@merged) {2328$commit->{mergemsg} =$commit->{message};2329$commit->{mergemsg} .="\nSummary of merged commits:\n\n";2330foreachmy$summary(@merged) {2331$commit->{mergemsg} .="\t$summary\n";2332}2333$commit->{mergemsg} .="\n\n";2334# print "Message for $commit->{hash} \n$commit->{mergemsg}";2335}2336}2337}2338}2339}23402341# convert the date to CVS-happy format2342$commit->{date} ="$2$1$4$3$5"if($commit->{date} =~/^\w+\s+(\w+)\s+(\d+)\s+(\d+:\d+:\d+)\s+(\d+)\s+([+-]\d+)$/);23432344if(defined($lastpicked) )2345{2346my$filepipe=open(FILELIST,'-|','git-diff-tree','-r',$lastpicked,$commit->{hash})or die("Cannot call git-diff-tree :$!");2347while( <FILELIST> )2348{2349unless(/^:\d{6}\s+\d{3}(\d)\d{2}\s+[a-zA-Z0-9]{40}\s+([a-zA-Z0-9]{40})\s+(\w)\s+(.*)$/o)2350{2351die("Couldn't process git-diff-tree line :$_");2352}23532354# $log->debug("File mode=$1, hash=$2, change=$3, name=$4");23552356my$git_perms="";2357$git_perms.="r"if($1&4);2358$git_perms.="w"if($1&2);2359$git_perms.="x"if($1&1);2360$git_perms="rw"if($git_permseq"");23612362if($3eq"D")2363{2364#$log->debug("DELETE $4");2365$head->{$4} = {2366 name =>$4,2367 revision =>$head->{$4}{revision} +1,2368 filehash =>"deleted",2369 commithash =>$commit->{hash},2370 modified =>$commit->{date},2371 author =>$commit->{author},2372 mode =>$git_perms,2373};2374$self->insert_rev($4,$head->{$4}{revision},$2,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2375}2376elsif($3eq"M")2377{2378#$log->debug("MODIFIED $4");2379$head->{$4} = {2380 name =>$4,2381 revision =>$head->{$4}{revision} +1,2382 filehash =>$2,2383 commithash =>$commit->{hash},2384 modified =>$commit->{date},2385 author =>$commit->{author},2386 mode =>$git_perms,2387};2388$self->insert_rev($4,$head->{$4}{revision},$2,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2389}2390elsif($3eq"A")2391{2392#$log->debug("ADDED $4");2393$head->{$4} = {2394 name =>$4,2395 revision =>1,2396 filehash =>$2,2397 commithash =>$commit->{hash},2398 modified =>$commit->{date},2399 author =>$commit->{author},2400 mode =>$git_perms,2401};2402$self->insert_rev($4,$head->{$4}{revision},$2,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2403}2404else2405{2406$log->warn("UNKNOWN FILE CHANGE mode=$1, hash=$2, change=$3, name=$4");2407die;2408}2409}2410close FILELIST;2411}else{2412# this is used to detect files removed from the repo2413my$seen_files= {};24142415my$filepipe=open(FILELIST,'-|','git-ls-tree','-r',$commit->{hash})or die("Cannot call git-ls-tree :$!");2416while( <FILELIST> )2417{2418unless(/^(\d+)\s+(\w+)\s+([a-zA-Z0-9]+)\s+(.*)$/o)2419{2420die("Couldn't process git-ls-tree line :$_");2421}24222423my($git_perms,$git_type,$git_hash,$git_filename) = ($1,$2,$3,$4);24242425$seen_files->{$git_filename} =1;24262427my($oldhash,$oldrevision,$oldmode) = (2428$head->{$git_filename}{filehash},2429$head->{$git_filename}{revision},2430$head->{$git_filename}{mode}2431);24322433if($git_perms=~/^\d\d\d(\d)\d\d/o)2434{2435$git_perms="";2436$git_perms.="r"if($1&4);2437$git_perms.="w"if($1&2);2438$git_perms.="x"if($1&1);2439}else{2440$git_perms="rw";2441}24422443# unless the file exists with the same hash, we need to update it ...2444unless(defined($oldhash)and$oldhasheq$git_hashand defined($oldmode)and$oldmodeeq$git_perms)2445{2446my$newrevision= ($oldrevisionor0) +1;24472448$head->{$git_filename} = {2449 name =>$git_filename,2450 revision =>$newrevision,2451 filehash =>$git_hash,2452 commithash =>$commit->{hash},2453 modified =>$commit->{date},2454 author =>$commit->{author},2455 mode =>$git_perms,2456};245724582459$self->insert_rev($git_filename,$newrevision,$git_hash,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2460}2461}2462close FILELIST;24632464# Detect deleted files2465foreachmy$file(keys%$head)2466{2467unless(exists$seen_files->{$file}or$head->{$file}{filehash}eq"deleted")2468{2469$head->{$file}{revision}++;2470$head->{$file}{filehash} ="deleted";2471$head->{$file}{commithash} =$commit->{hash};2472$head->{$file}{modified} =$commit->{date};2473$head->{$file}{author} =$commit->{author};24742475$self->insert_rev($file,$head->{$file}{revision},$head->{$file}{filehash},$commit->{hash},$commit->{date},$commit->{author},$head->{$file}{mode});2476}2477}2478# END : "Detect deleted files"2479}248024812482if(exists$commit->{mergemsg})2483{2484$self->insert_mergelog($commit->{hash},$commit->{mergemsg});2485}24862487$lastpicked=$commit->{hash};24882489$self->_set_prop("last_commit",$commit->{hash});2490}24912492$self->delete_head();2493foreachmy$file(keys%$head)2494{2495$self->insert_head(2496$file,2497$head->{$file}{revision},2498$head->{$file}{filehash},2499$head->{$file}{commithash},2500$head->{$file}{modified},2501$head->{$file}{author},2502$head->{$file}{mode},2503);2504}2505# invalidate the gethead cache2506$self->{gethead_cache} =undef;250725082509# Ending exclusive lock here2510$self->{dbh}->commit()or die"Failed to commit changes to SQLite";2511}25122513sub insert_rev2514{2515my$self=shift;2516my$name=shift;2517my$revision=shift;2518my$filehash=shift;2519my$commithash=shift;2520my$modified=shift;2521my$author=shift;2522my$mode=shift;25232524my$insert_rev=$self->{dbh}->prepare_cached("INSERT INTO revision (name, revision, filehash, commithash, modified, author, mode) VALUES (?,?,?,?,?,?,?)",{},1);2525$insert_rev->execute($name,$revision,$filehash,$commithash,$modified,$author,$mode);2526}25272528sub insert_mergelog2529{2530my$self=shift;2531my$key=shift;2532my$value=shift;25332534my$insert_mergelog=$self->{dbh}->prepare_cached("INSERT INTO commitmsgs (key, value) VALUES (?,?)",{},1);2535$insert_mergelog->execute($key,$value);2536}25372538sub delete_head2539{2540my$self=shift;25412542my$delete_head=$self->{dbh}->prepare_cached("DELETE FROM head",{},1);2543$delete_head->execute();2544}25452546sub insert_head2547{2548my$self=shift;2549my$name=shift;2550my$revision=shift;2551my$filehash=shift;2552my$commithash=shift;2553my$modified=shift;2554my$author=shift;2555my$mode=shift;25562557my$insert_head=$self->{dbh}->prepare_cached("INSERT INTO head (name, revision, filehash, commithash, modified, author, mode) VALUES (?,?,?,?,?,?,?)",{},1);2558$insert_head->execute($name,$revision,$filehash,$commithash,$modified,$author,$mode);2559}25602561sub _headrev2562{2563my$self=shift;2564my$filename=shift;25652566my$db_query=$self->{dbh}->prepare_cached("SELECT filehash, revision, mode FROM head WHERE name=?",{},1);2567$db_query->execute($filename);2568my($hash,$revision,$mode) =$db_query->fetchrow_array;25692570return($hash,$revision,$mode);2571}25722573sub _get_prop2574{2575my$self=shift;2576my$key=shift;25772578my$db_query=$self->{dbh}->prepare_cached("SELECT value FROM properties WHERE key=?",{},1);2579$db_query->execute($key);2580my($value) =$db_query->fetchrow_array;25812582return$value;2583}25842585sub _set_prop2586{2587my$self=shift;2588my$key=shift;2589my$value=shift;25902591my$db_query=$self->{dbh}->prepare_cached("UPDATE properties SET value=? WHERE key=?",{},1);2592$db_query->execute($value,$key);25932594unless($db_query->rows)2595{2596$db_query=$self->{dbh}->prepare_cached("INSERT INTO properties (key, value) VALUES (?,?)",{},1);2597$db_query->execute($key,$value);2598}25992600return$value;2601}26022603=head2 gethead26042605=cut26062607sub gethead2608{2609my$self=shift;26102611return$self->{gethead_cache}if(defined($self->{gethead_cache} ) );26122613my$db_query=$self->{dbh}->prepare_cached("SELECT name, filehash, mode, revision, modified, commithash, author FROM head ORDER BY name ASC",{},1);2614$db_query->execute();26152616my$tree= [];2617while(my$file=$db_query->fetchrow_hashref)2618{2619push@$tree,$file;2620}26212622$self->{gethead_cache} =$tree;26232624return$tree;2625}26262627=head2 getlog26282629=cut26302631sub getlog2632{2633my$self=shift;2634my$filename=shift;26352636my$db_query=$self->{dbh}->prepare_cached("SELECT name, filehash, author, mode, revision, modified, commithash FROM revision WHERE name=? ORDER BY revision DESC",{},1);2637$db_query->execute($filename);26382639my$tree= [];2640while(my$file=$db_query->fetchrow_hashref)2641{2642push@$tree,$file;2643}26442645return$tree;2646}26472648=head2 getmeta26492650This function takes a filename (with path) argument and returns a hashref of2651metadata for that file.26522653=cut26542655sub getmeta2656{2657my$self=shift;2658my$filename=shift;2659my$revision=shift;26602661my$db_query;2662if(defined($revision)and$revision=~/^\d+$/)2663{2664$db_query=$self->{dbh}->prepare_cached("SELECT * FROM revision WHERE name=? AND revision=?",{},1);2665$db_query->execute($filename,$revision);2666}2667elsif(defined($revision)and$revision=~/^[a-zA-Z0-9]{40}$/)2668{2669$db_query=$self->{dbh}->prepare_cached("SELECT * FROM revision WHERE name=? AND commithash=?",{},1);2670$db_query->execute($filename,$revision);2671}else{2672$db_query=$self->{dbh}->prepare_cached("SELECT * FROM head WHERE name=?",{},1);2673$db_query->execute($filename);2674}26752676return$db_query->fetchrow_hashref;2677}26782679=head2 commitmessage26802681this function takes a commithash and returns the commit message for that commit26822683=cut2684sub commitmessage2685{2686my$self=shift;2687my$commithash=shift;26882689die("Need commithash")unless(defined($commithash)and$commithash=~/^[a-zA-Z0-9]{40}$/);26902691my$db_query;2692$db_query=$self->{dbh}->prepare_cached("SELECT value FROM commitmsgs WHERE key=?",{},1);2693$db_query->execute($commithash);26942695my($message) =$db_query->fetchrow_array;26962697if(defined($message) )2698{2699$message.=" "if($message=~/\n$/);2700return$message;2701}27022703my@lines= safe_pipe_capture("git-cat-file","commit",$commithash);2704shift@lineswhile($lines[0] =~/\S/);2705$message=join("",@lines);2706$message.=" "if($message=~/\n$/);2707return$message;2708}27092710=head2 gethistory27112712This function takes a filename (with path) argument and returns an arrayofarrays2713containing revision,filehash,commithash ordered by revision descending27142715=cut2716sub gethistory2717{2718my$self=shift;2719my$filename=shift;27202721my$db_query;2722$db_query=$self->{dbh}->prepare_cached("SELECT revision, filehash, commithash FROM revision WHERE name=? ORDER BY revision DESC",{},1);2723$db_query->execute($filename);27242725return$db_query->fetchall_arrayref;2726}27272728=head2 gethistorydense27292730This function takes a filename (with path) argument and returns an arrayofarrays2731containing revision,filehash,commithash ordered by revision descending.27322733This version of gethistory skips deleted entries -- so it is useful for annotate.2734The 'dense' part is a reference to a '--dense' option available for git-rev-list2735and other git tools that depend on it.27362737=cut2738sub gethistorydense2739{2740my$self=shift;2741my$filename=shift;27422743my$db_query;2744$db_query=$self->{dbh}->prepare_cached("SELECT revision, filehash, commithash FROM revision WHERE name=? AND filehash!='deleted' ORDER BY revision DESC",{},1);2745$db_query->execute($filename);27462747return$db_query->fetchall_arrayref;2748}27492750=head2 in_array()27512752from Array::PAT - mimics the in_array() function2753found in PHP. Yuck but works for small arrays.27542755=cut2756sub in_array2757{2758my($check,@array) =@_;2759my$retval=0;2760foreachmy$test(@array){2761if($checkeq$test){2762$retval=1;2763}2764}2765return$retval;2766}27672768=head2 safe_pipe_capture27692770an alternative to `command` that allows input to be passed as an array2771to work around shell problems with weird characters in arguments27722773=cut2774sub safe_pipe_capture {27752776my@output;27772778if(my$pid=open my$child,'-|') {2779@output= (<$child>);2780close$childor die join(' ',@_).":$!$?";2781}else{2782exec(@_)or die"$!$?";# exec() can fail the executable can't be found2783}2784returnwantarray?@output:join('',@output);2785}2786278727881;