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= {}; 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 entereing 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 appropiate 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-var -l`; 175if($?) { 176print"E problems executing git-var on the server -- this is not a git repository or the PATH is not set correcly.\n"; 177print"E\n"; 178print"error 1 - problem executing git-var\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 218# TODO : is this data useful ??? 219} 220 221# Valid-responses request-list \n 222# Response expected: no. Tell the server what responses the client will 223# accept. request-list is a space separated list of tokens. 224sub req_Validresponses 225{ 226my($cmd,$data) =@_; 227$log->debug("req_Validrepsonses :$data"); 228 229# TODO : re-enable this, currently it's not particularly useful 230#$state->{validresponses} = [ split /\s+/, $data ]; 231} 232 233# valid-requests \n 234# Response expected: yes. Ask the server to send back a Valid-requests 235# response. 236sub req_validrequests 237{ 238my($cmd,$data) =@_; 239 240$log->debug("req_validrequests"); 241 242$log->debug("SEND : Valid-requests ".join(" ",keys%$methods)); 243$log->debug("SEND : ok"); 244 245print"Valid-requests ".join(" ",keys%$methods) ."\n"; 246print"ok\n"; 247} 248 249# Directory local-directory \n 250# Additional data: repository \n. Response expected: no. Tell the server 251# what directory to use. The repository should be a directory name from a 252# previous server response. Note that this both gives a default for Entry 253# and Modified and also for ci and the other commands; normal usage is to 254# send Directory for each directory in which there will be an Entry or 255# Modified, and then a final Directory for the original directory, then the 256# command. The local-directory is relative to the top level at which the 257# command is occurring (i.e. the last Directory which is sent before the 258# command); to indicate that top level, `.' should be sent for 259# local-directory. 260sub req_Directory 261{ 262my($cmd,$data) =@_; 263 264my$repository= <STDIN>; 265chomp$repository; 266 267 268$state->{localdir} =$data; 269$state->{repository} =$repository; 270$state->{directory} =$repository; 271$state->{directory} =~s/^$state->{CVSROOT}\///; 272$state->{module} =$1if($state->{directory} =~s/^(.*?)(\/|$)//); 273$state->{directory} .="/"if($state->{directory} =~ /\S/ ); 274 275$log->debug("req_Directory : localdir=$datarepository=$repositorydirectory=$state->{directory} module=$state->{module}"); 276} 277 278# Entry entry-line \n 279# Response expected: no. Tell the server what version of a file is on the 280# local machine. The name in entry-line is a name relative to the directory 281# most recently specified with Directory. If the user is operating on only 282# some files in a directory, Entry requests for only those files need be 283# included. If an Entry request is sent without Modified, Is-modified, or 284# Unchanged, it means the file is lost (does not exist in the working 285# directory). If both Entry and one of Modified, Is-modified, or Unchanged 286# are sent for the same file, Entry must be sent first. For a given file, 287# one can send Modified, Is-modified, or Unchanged, but not more than one 288# of these three. 289sub req_Entry 290{ 291my($cmd,$data) =@_; 292 293$log->debug("req_Entry :$data"); 294 295my@data=split(/\//,$data); 296 297$state->{entries}{$state->{directory}.$data[1]} = { 298 revision =>$data[2], 299 conflict =>$data[3], 300 options =>$data[4], 301 tag_or_date =>$data[5], 302}; 303} 304 305# add \n 306# Response expected: yes. Add a file or directory. This uses any previous 307# Argument, Directory, Entry, or Modified requests, if they have been sent. 308# The last Directory sent specifies the working directory at the time of 309# the operation. To add a directory, send the directory to be added using 310# Directory and Argument requests. 311sub req_add 312{ 313my($cmd,$data) =@_; 314 315 argsplit("add"); 316 317my$addcount=0; 318 319foreachmy$filename( @{$state->{args}} ) 320{ 321$filename= filecleanup($filename); 322 323unless(defined($state->{entries}{$filename}{modified_filename} ) ) 324{ 325print"E cvs add: nothing known about `$filename'\n"; 326next; 327} 328# TODO : check we're not squashing an already existing file 329if(defined($state->{entries}{$filename}{revision} ) ) 330{ 331print"E cvs add: `$filename' has already been entered\n"; 332next; 333} 334 335 336my($filepart,$dirpart) = filenamesplit($filename); 337 338print"E cvs add: scheduling file `$filename' for addition\n"; 339 340print"Checked-in$dirpart\n"; 341print"$filename\n"; 342print"/$filepart/0///\n"; 343 344$addcount++; 345} 346 347if($addcount==1) 348{ 349print"E cvs add: use `cvs commit' to add this file permanently\n"; 350} 351elsif($addcount>1) 352{ 353print"E cvs add: use `cvs commit' to add these files permanently\n"; 354} 355 356print"ok\n"; 357} 358 359# remove \n 360# Response expected: yes. Remove a file. This uses any previous Argument, 361# Directory, Entry, or Modified requests, if they have been sent. The last 362# Directory sent specifies the working directory at the time of the 363# operation. Note that this request does not actually do anything to the 364# repository; the only effect of a successful remove request is to supply 365# the client with a new entries line containing `-' to indicate a removed 366# file. In fact, the client probably could perform this operation without 367# contacting the server, although using remove may cause the server to 368# perform a few more checks. The client sends a subsequent ci request to 369# actually record the removal in the repository. 370sub req_remove 371{ 372my($cmd,$data) =@_; 373 374 argsplit("remove"); 375 376# Grab a handle to the SQLite db and do any necessary updates 377my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 378$updater->update(); 379 380#$log->debug("add state : " . Dumper($state)); 381 382my$rmcount=0; 383 384foreachmy$filename( @{$state->{args}} ) 385{ 386$filename= filecleanup($filename); 387 388if(defined($state->{entries}{$filename}{unchanged} )or defined($state->{entries}{$filename}{modified_filename} ) ) 389{ 390print"E cvs remove: file `$filename' still in working directory\n"; 391next; 392} 393 394my$meta=$updater->getmeta($filename); 395my$wrev= revparse($filename); 396 397unless(defined($wrev) ) 398{ 399print"E cvs remove: nothing known about `$filename'\n"; 400next; 401} 402 403if(defined($wrev)and$wrev<0) 404{ 405print"E cvs remove: file `$filename' already scheduled for removal\n"; 406next; 407} 408 409unless($wrev==$meta->{revision} ) 410{ 411# TODO : not sure if the format of this message is quite correct. 412print"E cvs remove: Up to date check failed for `$filename'\n"; 413next; 414} 415 416 417my($filepart,$dirpart) = filenamesplit($filename); 418 419print"E cvs remove: scheduling `$filename' for removal\n"; 420 421print"Checked-in$dirpart\n"; 422print"$filename\n"; 423print"/$filepart/-1.$wrev///\n"; 424 425$rmcount++; 426} 427 428if($rmcount==1) 429{ 430print"E cvs remove: use `cvs commit' to remove this file permanently\n"; 431} 432elsif($rmcount>1) 433{ 434print"E cvs remove: use `cvs commit' to remove these files permanently\n"; 435} 436 437print"ok\n"; 438} 439 440# Modified filename \n 441# Response expected: no. Additional data: mode, \n, file transmission. Send 442# the server a copy of one locally modified file. filename is a file within 443# the most recent directory sent with Directory; it must not contain `/'. 444# If the user is operating on only some files in a directory, only those 445# files need to be included. This can also be sent without Entry, if there 446# is no entry for the file. 447sub req_Modified 448{ 449my($cmd,$data) =@_; 450 451my$mode= <STDIN>; 452chomp$mode; 453my$size= <STDIN>; 454chomp$size; 455 456# Grab config information 457my$blocksize=8192; 458my$bytesleft=$size; 459my$tmp; 460 461# Get a filehandle/name to write it to 462my($fh,$filename) = tempfile( DIR =>$TEMP_DIR); 463 464# Loop over file data writing out to temporary file. 465while($bytesleft) 466{ 467$blocksize=$bytesleftif($bytesleft<$blocksize); 468read STDIN,$tmp,$blocksize; 469print$fh $tmp; 470$bytesleft-=$blocksize; 471} 472 473close$fh; 474 475# Ensure we have something sensible for the file mode 476if($mode=~/u=(\w+)/) 477{ 478$mode=$1; 479}else{ 480$mode="rw"; 481} 482 483# Save the file data in $state 484$state->{entries}{$state->{directory}.$data}{modified_filename} =$filename; 485$state->{entries}{$state->{directory}.$data}{modified_mode} =$mode; 486$state->{entries}{$state->{directory}.$data}{modified_hash} =`git-hash-object$filename`; 487$state->{entries}{$state->{directory}.$data}{modified_hash} =~ s/\s.*$//s; 488 489 #$log->debug("req_Modified : file=$datamode=$modesize=$size"); 490} 491 492# Unchanged filename\n 493# Response expected: no. Tell the server that filename has not been 494# modified in the checked out directory. The filename is a file within the 495# most recent directory sent with Directory; it must not contain `/'. 496sub req_Unchanged 497{ 498 my ($cmd,$data) =@_; 499 500$state->{entries}{$state->{directory}.$data}{unchanged} = 1; 501 502 #$log->debug("req_Unchanged :$data"); 503} 504 505# Questionable filename\n 506# Response expected: no. Additional data: no. 507# Tell the server to check whether filename should be ignored, 508# and if not, next time the server sends responses, send (in 509# a M response) `?' followed by the directory and filename. 510# filename must not contain `/'; it needs to be a file in the 511# directory named by the most recent Directory request. 512sub req_Questionable 513{ 514my($cmd,$data) =@_; 515 516$state->{entries}{$state->{directory}.$data}{questionable} =1; 517 518#$log->debug("req_Questionable : $data"); 519} 520 521# Argument text \n 522# Response expected: no. Save argument for use in a subsequent command. 523# Arguments accumulate until an argument-using command is given, at which 524# point they are forgotten. 525# Argumentx text \n 526# Response expected: no. Append \n followed by text to the current argument 527# being saved. 528sub req_Argument 529{ 530my($cmd,$data) =@_; 531 532# TODO : Not quite sure how Argument and Argumentx differ, but I assume 533# it's for multi-line arguments ... somehow ... 534 535$log->debug("$cmd:$data"); 536 537push@{$state->{arguments}},$data; 538} 539 540# expand-modules \n 541# Response expected: yes. Expand the modules which are specified in the 542# arguments. Returns the data in Module-expansion responses. Note that the 543# server can assume that this is checkout or export, not rtag or rdiff; the 544# latter do not access the working directory and thus have no need to 545# expand modules on the client side. Expand may not be the best word for 546# what this request does. It does not necessarily tell you all the files 547# contained in a module, for example. Basically it is a way of telling you 548# which working directories the server needs to know about in order to 549# handle a checkout of the specified modules. For example, suppose that the 550# server has a module defined by 551# aliasmodule -a 1dir 552# That is, one can check out aliasmodule and it will take 1dir in the 553# repository and check it out to 1dir in the working directory. Now suppose 554# the client already has this module checked out and is planning on using 555# the co request to update it. Without using expand-modules, the client 556# would have two bad choices: it could either send information about all 557# working directories under the current directory, which could be 558# unnecessarily slow, or it could be ignorant of the fact that aliasmodule 559# stands for 1dir, and neglect to send information for 1dir, which would 560# lead to incorrect operation. With expand-modules, the client would first 561# ask for the module to be expanded: 562sub req_expandmodules 563{ 564my($cmd,$data) =@_; 565 566 argsplit(); 567 568$log->debug("req_expandmodules : ". (defined($data) ?$data:"[NULL]") ); 569 570unless(ref$state->{arguments}eq"ARRAY") 571{ 572print"ok\n"; 573return; 574} 575 576foreachmy$module( @{$state->{arguments}} ) 577{ 578$log->debug("SEND : Module-expansion$module"); 579print"Module-expansion$module\n"; 580} 581 582print"ok\n"; 583 statecleanup(); 584} 585 586# co \n 587# Response expected: yes. Get files from the repository. This uses any 588# previous Argument, Directory, Entry, or Modified requests, if they have 589# been sent. Arguments to this command are module names; the client cannot 590# know what directories they correspond to except by (1) just sending the 591# co request, and then seeing what directory names the server sends back in 592# its responses, and (2) the expand-modules request. 593sub req_co 594{ 595my($cmd,$data) =@_; 596 597 argsplit("co"); 598 599my$module=$state->{args}[0]; 600my$checkout_path=$module; 601 602# use the user specified directory if we're given it 603$checkout_path=$state->{opt}{d}if(exists($state->{opt}{d} ) ); 604 605$log->debug("req_co : ". (defined($data) ?$data:"[NULL]") ); 606 607$log->info("Checking out module '$module' ($state->{CVSROOT}) to '$checkout_path'"); 608 609$ENV{GIT_DIR} =$state->{CVSROOT} ."/"; 610 611# Grab a handle to the SQLite db and do any necessary updates 612my$updater= GITCVS::updater->new($state->{CVSROOT},$module,$log); 613$updater->update(); 614 615$checkout_path=~ s|/$||;# get rid of trailing slashes 616 617# Eclipse seems to need the Clear-sticky command 618# to prepare the 'Entries' file for the new directory. 619print"Clear-sticky$checkout_path/\n"; 620print$state->{CVSROOT} ."/$module/\n"; 621print"Clear-static-directory$checkout_path/\n"; 622print$state->{CVSROOT} ."/$module/\n"; 623print"Clear-sticky$checkout_path/\n";# yes, twice 624print$state->{CVSROOT} ."/$module/\n"; 625print"Template$checkout_path/\n"; 626print$state->{CVSROOT} ."/$module/\n"; 627print"0\n"; 628 629# instruct the client that we're checking out to $checkout_path 630print"E cvs checkout: Updating$checkout_path\n"; 631 632my%seendirs= (); 633my$lastdir=''; 634 635# recursive 636sub prepdir { 637my($dir,$repodir,$remotedir,$seendirs) =@_; 638my$parent= dirname($dir); 639$dir=~ s|/+$||; 640$repodir=~ s|/+$||; 641$remotedir=~ s|/+$||; 642$parent=~ s|/+$||; 643$log->debug("announcedir$dir,$repodir,$remotedir"); 644 645if($parenteq'.'||$parenteq'./') { 646$parent=''; 647} 648# recurse to announce unseen parents first 649if(length($parent) && !exists($seendirs->{$parent})) { 650 prepdir($parent,$repodir,$remotedir,$seendirs); 651} 652# Announce that we are going to modify at the parent level 653if($parent) { 654print"E cvs checkout: Updating$remotedir/$parent\n"; 655}else{ 656print"E cvs checkout: Updating$remotedir\n"; 657} 658print"Clear-sticky$remotedir/$parent/\n"; 659print"$repodir/$parent/\n"; 660 661print"Clear-static-directory$remotedir/$dir/\n"; 662print"$repodir/$dir/\n"; 663print"Clear-sticky$remotedir/$parent/\n";# yes, twice 664print"$repodir/$parent/\n"; 665print"Template$remotedir/$dir/\n"; 666print"$repodir/$dir/\n"; 667print"0\n"; 668 669$seendirs->{$dir} =1; 670} 671 672foreachmy$git( @{$updater->gethead} ) 673{ 674# Don't want to check out deleted files 675next if($git->{filehash}eq"deleted"); 676 677($git->{name},$git->{dir} ) = filenamesplit($git->{name}); 678 679if(length($git->{dir}) &&$git->{dir}ne'./' 680&&$git->{dir}ne$lastdir) { 681unless(exists($seendirs{$git->{dir}})) { 682 prepdir($git->{dir},$state->{CVSROOT} ."/$module/", 683$checkout_path, \%seendirs); 684$lastdir=$git->{dir}; 685$seendirs{$git->{dir}} =1; 686} 687print"E cvs checkout: Updating /$checkout_path/$git->{dir}\n"; 688} 689 690# modification time of this file 691print"Mod-time$git->{modified}\n"; 692 693# print some information to the client 694if(defined($git->{dir} )and$git->{dir}ne"./") 695{ 696print"M U$checkout_path/$git->{dir}$git->{name}\n"; 697}else{ 698print"M U$checkout_path/$git->{name}\n"; 699} 700 701# instruct client we're sending a file to put in this path 702print"Created$checkout_path/". (defined($git->{dir} )and$git->{dir}ne"./"?$git->{dir} ."/":"") ."\n"; 703 704print$state->{CVSROOT} ."/$module/". (defined($git->{dir} )and$git->{dir}ne"./"?$git->{dir} ."/":"") ."$git->{name}\n"; 705 706# this is an "entries" line 707print"/$git->{name}/1.$git->{revision}///\n"; 708# permissions 709print"u=$git->{mode},g=$git->{mode},o=$git->{mode}\n"; 710 711# transmit file 712 transmitfile($git->{filehash}); 713} 714 715print"ok\n"; 716 717 statecleanup(); 718} 719 720# update \n 721# Response expected: yes. Actually do a cvs update command. This uses any 722# previous Argument, Directory, Entry, or Modified requests, if they have 723# been sent. The last Directory sent specifies the working directory at the 724# time of the operation. The -I option is not used--files which the client 725# can decide whether to ignore are not mentioned and the client sends the 726# Questionable request for others. 727sub req_update 728{ 729my($cmd,$data) =@_; 730 731$log->debug("req_update : ". (defined($data) ?$data:"[NULL]")); 732 733 argsplit("update"); 734 735# 736# It may just be a client exploring the available heads/modukles 737# in that case, list them as top level directories and leave it 738# at that. Eclipse uses this technique to offer you a list of 739# projects (heads in this case) to checkout. 740# 741if($state->{module}eq'') { 742print"E cvs update: Updating .\n"; 743opendir HEADS,$state->{CVSROOT} .'/refs/heads'; 744while(my$head=readdir(HEADS)) { 745if(-f $state->{CVSROOT} .'/refs/heads/'.$head) { 746print"E cvs update: New directory `$head'\n"; 747} 748} 749closedir HEADS; 750print"ok\n"; 751return1; 752} 753 754 755# Grab a handle to the SQLite db and do any necessary updates 756my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 757 758$updater->update(); 759 760# if no files were specified, we need to work out what files we should be providing status on ... 761 argsfromdir($updater)if(scalar( @{$state->{args}} ) ==0); 762 763#$log->debug("update state : " . Dumper($state)); 764 765# foreach file specified on the commandline ... 766foreachmy$filename( @{$state->{args}} ) 767{ 768$filename= filecleanup($filename); 769 770# if we have a -C we should pretend we never saw modified stuff 771if(exists($state->{opt}{C} ) ) 772{ 773delete$state->{entries}{$filename}{modified_hash}; 774delete$state->{entries}{$filename}{modified_filename}; 775$state->{entries}{$filename}{unchanged} =1; 776} 777 778my$meta; 779if(defined($state->{opt}{r})and$state->{opt}{r} =~/^1\.(\d+)/) 780{ 781$meta=$updater->getmeta($filename,$1); 782}else{ 783$meta=$updater->getmeta($filename); 784} 785 786next unless($meta->{revision} ); 787 788my$oldmeta=$meta; 789 790my$wrev= revparse($filename); 791 792# If the working copy is an old revision, lets get that version too for comparison. 793if(defined($wrev)and$wrev!=$meta->{revision} ) 794{ 795$oldmeta=$updater->getmeta($filename,$wrev); 796} 797 798#$log->debug("Target revision is $meta->{revision}, current working revision is $wrev"); 799 800# Files are up to date if the working copy and repo copy have the same revision, 801# and the working copy is unmodified _and_ the user hasn't specified -C 802next if(defined($wrev) 803and defined($meta->{revision}) 804and$wrev==$meta->{revision} 805and$state->{entries}{$filename}{unchanged} 806and not exists($state->{opt}{C} ) ); 807 808# If the working copy and repo copy have the same revision, 809# but the working copy is modified, tell the client it's modified 810if(defined($wrev) 811and defined($meta->{revision}) 812and$wrev==$meta->{revision} 813and not exists($state->{opt}{C} ) ) 814{ 815$log->info("Tell the client the file is modified"); 816print"MT text U\n"; 817print"MT fname$filename\n"; 818print"MT newline\n"; 819next; 820} 821 822if($meta->{filehash}eq"deleted") 823{ 824my($filepart,$dirpart) = filenamesplit($filename); 825 826$log->info("Removing '$filename' from working copy (no longer in the repo)"); 827 828print"E cvs update: `$filename' is no longer in the repository\n"; 829print"Removed$dirpart\n"; 830print"$filepart\n"; 831} 832elsif(not defined($state->{entries}{$filename}{modified_hash} ) 833or$state->{entries}{$filename}{modified_hash}eq$oldmeta->{filehash} ) 834{ 835$log->info("Updating '$filename'"); 836# normal update, just send the new revision (either U=Update, or A=Add, or R=Remove) 837print"MT +updated\n"; 838print"MT text U\n"; 839print"MT fname$filename\n"; 840print"MT newline\n"; 841print"MT -updated\n"; 842 843my($filepart,$dirpart) = filenamesplit($filename); 844$dirpart=~s/^$state->{directory}//; 845 846if(defined($wrev) ) 847{ 848# instruct client we're sending a file to put in this path as a replacement 849print"Update-existing$dirpart\n"; 850$log->debug("Updating existing file 'Update-existing$dirpart'"); 851}else{ 852# instruct client we're sending a file to put in this path as a new file 853print"Created$dirpart\n"; 854$log->debug("Creating new file 'Created$dirpart'"); 855} 856print$state->{CVSROOT} ."/$state->{module}/$filename\n"; 857 858# this is an "entries" line 859$log->debug("/$filepart/1.$meta->{revision}///"); 860print"/$filepart/1.$meta->{revision}///\n"; 861 862# permissions 863$log->debug("SEND : u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}"); 864print"u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}\n"; 865 866# transmit file 867 transmitfile($meta->{filehash}); 868}else{ 869$log->info("Updating '$filename'"); 870my($filepart,$dirpart) = filenamesplit($meta->{name}); 871 872my$dir= tempdir( DIR =>$TEMP_DIR, CLEANUP =>1) ."/"; 873 874chdir$dir; 875my$file_local=$filepart.".mine"; 876system("ln","-s",$state->{entries}{$filename}{modified_filename},$file_local); 877my$file_old=$filepart.".".$oldmeta->{revision}; 878 transmitfile($oldmeta->{filehash},$file_old); 879my$file_new=$filepart.".".$meta->{revision}; 880 transmitfile($meta->{filehash},$file_new); 881 882# we need to merge with the local changes ( M=successful merge, C=conflict merge ) 883$log->info("Merging$file_local,$file_old,$file_new"); 884 885$log->debug("Temporary directory for merge is$dir"); 886 887my$return=system("merge",$file_local,$file_old,$file_new); 888$return>>=8; 889 890if($return==0) 891{ 892$log->info("Merged successfully"); 893print"M M$filename\n"; 894$log->debug("Update-existing$dirpart"); 895print"Update-existing$dirpart\n"; 896$log->debug($state->{CVSROOT} ."/$state->{module}/$filename"); 897print$state->{CVSROOT} ."/$state->{module}/$filename\n"; 898$log->debug("/$filepart/1.$meta->{revision}///"); 899print"/$filepart/1.$meta->{revision}///\n"; 900} 901elsif($return==1) 902{ 903$log->info("Merged with conflicts"); 904print"M C$filename\n"; 905print"Update-existing$dirpart\n"; 906print$state->{CVSROOT} ."/$state->{module}/$filename\n"; 907print"/$filepart/1.$meta->{revision}/+//\n"; 908} 909else 910{ 911$log->warn("Merge failed"); 912next; 913} 914 915# permissions 916$log->debug("SEND : u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}"); 917print"u=$meta->{mode},g=$meta->{mode},o=$meta->{mode}\n"; 918 919# transmit file, format is single integer on a line by itself (file 920# size) followed by the file contents 921# TODO : we should copy files in blocks 922my$data=`cat$file_local`; 923$log->debug("File size : " . length($data)); 924 print length($data) . "\n"; 925 print$data; 926 927 chdir "/"; 928 } 929 930 } 931 932 print "ok\n"; 933} 934 935sub req_ci 936{ 937 my ($cmd,$data) =@_; 938 939 argsplit("ci"); 940 941 #$log->debug("State : " . Dumper($state)); 942 943$log->info("req_ci : " . ( defined($data) ?$data: "[NULL]" )); 944 945 if (@ARGV&&$ARGV[0] eq 'pserver') 946 { 947 print "error 1 pserver access cannot commit\n"; 948 exit; 949 } 950 951 if ( -e$state->{CVSROOT} . "/index" ) 952 { 953 print "error 1 Index already exists in git repo\n"; 954 exit; 955 } 956 957 my$lockfile= "$state->{CVSROOT}/refs/heads/$state->{module}.lock"; 958 unless ( sysopen(LOCKFILE,$lockfile,O_EXCL|O_CREAT|O_WRONLY) ) 959 { 960 print "error 1 Lock file '$lockfile' already exists, please try again\n"; 961 exit; 962 } 963 964 # Grab a handle to the SQLite db and do any necessary updates 965 my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log); 966$updater->update(); 967 968 my$tmpdir= tempdir ( DIR =>$TEMP_DIR); 969 my ( undef,$file_index) = tempfile ( DIR =>$TEMP_DIR, OPEN => 0 ); 970$log->info("Lock successful, basing commit on '$tmpdir', index file is '$file_index'"); 971 972$ENV{GIT_DIR} =$state->{CVSROOT} . "/"; 973$ENV{GIT_INDEX_FILE} =$file_index; 974 975 chdir$tmpdir; 976 977 # populate the temporary index based 978 system("git-read-tree",$state->{module}); 979 unless ($?== 0) 980 { 981 die "Error running git-read-tree$state->{module}$file_index$!"; 982 } 983$log->info("Created index '$file_index' with for head$state->{module} - exit status$?"); 984 985 986 my@committedfiles= (); 987 988 # foreach file specified on the commandline ... 989 foreach my$filename( @{$state->{args}} ) 990 { 991$filename= filecleanup($filename); 992 993 next unless ( exists$state->{entries}{$filename}{modified_filename} or not$state->{entries}{$filename}{unchanged} ); 994 995 my$meta=$updater->getmeta($filename); 996 997 my$wrev= revparse($filename); 998 999 my ($filepart,$dirpart) = filenamesplit($filename);10001001 # do a checkout of the file if it part of this tree1002 if ($wrev) {1003 system('git-checkout-index', '-f', '-u',$filename);1004 unless ($?== 0) {1005 die "Error running git-checkout-index -f -u$filename:$!";1006 }1007 }10081009 my$addflag= 0;1010 my$rmflag= 0;1011$rmflag= 1 if ( defined($wrev) and$wrev< 0 );1012$addflag= 1 unless ( -e$filename);10131014 # Do up to date checking1015 unless ($addflagor$wrev==$meta->{revision} or ($rmflagand -$wrev==$meta->{revision} ) )1016 {1017 # fail everything if an up to date check fails1018 print "error 1 Up to date check failed for$filename\n";1019 close LOCKFILE;1020 unlink($lockfile);1021 chdir "/";1022 exit;1023 }10241025 push@committedfiles,$filename;1026$log->info("Committing$filename");10271028 system("mkdir","-p",$dirpart) unless ( -d$dirpart);10291030 unless ($rmflag)1031 {1032$log->debug("rename$state->{entries}{$filename}{modified_filename}$filename");1033 rename$state->{entries}{$filename}{modified_filename},$filename;10341035 # Calculate modes to remove1036 my$invmode= "";1037 foreach ( qw (r w x) ) {$invmode.=$_unless ($state->{entries}{$filename}{modified_mode} =~ /$_/); }10381039$log->debug("chmod u+" .$state->{entries}{$filename}{modified_mode} . "-" .$invmode. "$filename");1040 system("chmod","u+" .$state->{entries}{$filename}{modified_mode} . "-" .$invmode,$filename);1041 }10421043 if ($rmflag)1044 {1045$log->info("Removing file '$filename'");1046 unlink($filename);1047 system("git-update-index", "--remove",$filename);1048 }1049 elsif ($addflag)1050 {1051$log->info("Adding file '$filename'");1052 system("git-update-index", "--add",$filename);1053 } else {1054$log->info("Updating file '$filename'");1055 system("git-update-index",$filename);1056 }1057 }10581059 unless ( scalar(@committedfiles) > 0 )1060 {1061 print "E No files to commit\n";1062 print "ok\n";1063 close LOCKFILE;1064 unlink($lockfile);1065 chdir "/";1066 return;1067 }10681069 my$treehash= `git-write-tree`;1070 my$parenthash= `cat $ENV{GIT_DIR}refs/heads/$state->{module}`;1071 chomp$treehash;1072 chomp$parenthash;10731074$log->debug("Treehash :$treehash, Parenthash :$parenthash");10751076 # write our commit message out if we have one ...1077 my ($msg_fh,$msg_filename) = tempfile( DIR =>$TEMP_DIR);1078 print$msg_fh$state->{opt}{m};# if ( exists ($state->{opt}{m} ) );1079 print$msg_fh"\n\nvia git-CVS emulator\n";1080 close$msg_fh;10811082 my$commithash= `git-commit-tree $treehash-p $parenthash<$msg_filename`;1083$log->info("Commit hash :$commithash");10841085unless($commithash=~/[a-zA-Z0-9]{40}/)1086{1087$log->warn("Commit failed (Invalid commit hash)");1088print"error 1 Commit failed (unknown reason)\n";1089close LOCKFILE;1090unlink($lockfile);1091chdir"/";1092exit;1093}10941095open FILE,">","$ENV{GIT_DIR}refs/heads/$state->{module}";1096print FILE $commithash;1097close FILE;10981099$updater->update();11001101# foreach file specified on the commandline ...1102foreachmy$filename(@committedfiles)1103{1104$filename= filecleanup($filename);11051106my$meta=$updater->getmeta($filename);11071108my($filepart,$dirpart) = filenamesplit($filename);11091110$log->debug("Checked-in$dirpart:$filename");11111112if($meta->{filehash}eq"deleted")1113{1114print"Remove-entry$dirpart\n";1115print"$filename\n";1116}else{1117print"Checked-in$dirpart\n";1118print"$filename\n";1119print"/$filepart/1.$meta->{revision}///\n";1120}1121}11221123close LOCKFILE;1124unlink($lockfile);1125chdir"/";11261127print"ok\n";1128}11291130sub req_status1131{1132my($cmd,$data) =@_;11331134 argsplit("status");11351136$log->info("req_status : ". (defined($data) ?$data:"[NULL]"));1137#$log->debug("status state : " . Dumper($state));11381139# Grab a handle to the SQLite db and do any necessary updates1140my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1141$updater->update();11421143# if no files were specified, we need to work out what files we should be providing status on ...1144 argsfromdir($updater)if(scalar( @{$state->{args}} ) ==0);11451146# foreach file specified on the commandline ...1147foreachmy$filename( @{$state->{args}} )1148{1149$filename= filecleanup($filename);11501151my$meta=$updater->getmeta($filename);1152my$oldmeta=$meta;11531154my$wrev= revparse($filename);11551156# If the working copy is an old revision, lets get that version too for comparison.1157if(defined($wrev)and$wrev!=$meta->{revision} )1158{1159$oldmeta=$updater->getmeta($filename,$wrev);1160}11611162# TODO : All possible statuses aren't yet implemented1163my$status;1164# Files are up to date if the working copy and repo copy have the same revision, and the working copy is unmodified1165$status="Up-to-date"if(defined($wrev)and defined($meta->{revision})and$wrev==$meta->{revision}1166and1167( ($state->{entries}{$filename}{unchanged}and(not defined($state->{entries}{$filename}{conflict} )or$state->{entries}{$filename}{conflict} !~/^\+=/) )1168or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$meta->{filehash} ) )1169);11701171# Need checkout if the working copy has an older revision than the repo copy, and the working copy is unmodified1172$status||="Needs Checkout"if(defined($wrev)and defined($meta->{revision} )and$meta->{revision} >$wrev1173and1174($state->{entries}{$filename}{unchanged}1175or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$oldmeta->{filehash} ) )1176);11771178# Need checkout if it exists in the repo but doesn't have a working copy1179$status||="Needs Checkout"if(not defined($wrev)and defined($meta->{revision} ) );11801181# Locally modified if working copy and repo copy have the same revision but there are local changes1182$status||="Locally Modified"if(defined($wrev)and defined($meta->{revision})and$wrev==$meta->{revision}and$state->{entries}{$filename}{modified_filename} );11831184# Needs Merge if working copy revision is less than repo copy and there are local changes1185$status||="Needs Merge"if(defined($wrev)and defined($meta->{revision} )and$meta->{revision} >$wrevand$state->{entries}{$filename}{modified_filename} );11861187$status||="Locally Added"if(defined($state->{entries}{$filename}{revision} )and not defined($meta->{revision} ) );1188$status||="Locally Removed"if(defined($wrev)and defined($meta->{revision} )and-$wrev==$meta->{revision} );1189$status||="Unresolved Conflict"if(defined($state->{entries}{$filename}{conflict} )and$state->{entries}{$filename}{conflict} =~/^\+=/);1190$status||="File had conflicts on merge"if(0);11911192$status||="Unknown";11931194print"M ===================================================================\n";1195print"M File:$filename\tStatus:$status\n";1196if(defined($state->{entries}{$filename}{revision}) )1197{1198print"M Working revision:\t".$state->{entries}{$filename}{revision} ."\n";1199}else{1200print"M Working revision:\tNo entry for$filename\n";1201}1202if(defined($meta->{revision}) )1203{1204print"M Repository revision:\t1.".$meta->{revision} ."\t$state->{repository}/$filename,v\n";1205print"M Sticky Tag:\t\t(none)\n";1206print"M Sticky Date:\t\t(none)\n";1207print"M Sticky Options:\t\t(none)\n";1208}else{1209print"M Repository revision:\tNo revision control file\n";1210}1211print"M\n";1212}12131214print"ok\n";1215}12161217sub req_diff1218{1219my($cmd,$data) =@_;12201221 argsplit("diff");12221223$log->debug("req_diff : ". (defined($data) ?$data:"[NULL]"));1224#$log->debug("status state : " . Dumper($state));12251226my($revision1,$revision2);1227if(defined($state->{opt}{r} )and ref$state->{opt}{r}eq"ARRAY")1228{1229$revision1=$state->{opt}{r}[0];1230$revision2=$state->{opt}{r}[1];1231}else{1232$revision1=$state->{opt}{r};1233}12341235$revision1=~s/^1\.//if(defined($revision1) );1236$revision2=~s/^1\.//if(defined($revision2) );12371238$log->debug("Diffing revisions ". (defined($revision1) ?$revision1:"[NULL]") ." and ". (defined($revision2) ?$revision2:"[NULL]") );12391240# Grab a handle to the SQLite db and do any necessary updates1241my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1242$updater->update();12431244# if no files were specified, we need to work out what files we should be providing status on ...1245 argsfromdir($updater)if(scalar( @{$state->{args}} ) ==0);12461247# foreach file specified on the commandline ...1248foreachmy$filename( @{$state->{args}} )1249{1250$filename= filecleanup($filename);12511252my($fh,$file1,$file2,$meta1,$meta2,$filediff);12531254my$wrev= revparse($filename);12551256# We need _something_ to diff against1257next unless(defined($wrev) );12581259# if we have a -r switch, use it1260if(defined($revision1) )1261{1262(undef,$file1) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1263$meta1=$updater->getmeta($filename,$revision1);1264unless(defined($meta1)and$meta1->{filehash}ne"deleted")1265{1266print"E File$filenameat revision 1.$revision1doesn't exist\n";1267next;1268}1269 transmitfile($meta1->{filehash},$file1);1270}1271# otherwise we just use the working copy revision1272else1273{1274(undef,$file1) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1275$meta1=$updater->getmeta($filename,$wrev);1276 transmitfile($meta1->{filehash},$file1);1277}12781279# if we have a second -r switch, use it too1280if(defined($revision2) )1281{1282(undef,$file2) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1283$meta2=$updater->getmeta($filename,$revision2);12841285unless(defined($meta2)and$meta2->{filehash}ne"deleted")1286{1287print"E File$filenameat revision 1.$revision2doesn't exist\n";1288next;1289}12901291 transmitfile($meta2->{filehash},$file2);1292}1293# otherwise we just use the working copy1294else1295{1296$file2=$state->{entries}{$filename}{modified_filename};1297}12981299# if we have been given -r, and we don't have a $file2 yet, lets get one1300if(defined($revision1)and not defined($file2) )1301{1302(undef,$file2) = tempfile( DIR =>$TEMP_DIR, OPEN =>0);1303$meta2=$updater->getmeta($filename,$wrev);1304 transmitfile($meta2->{filehash},$file2);1305}13061307# We need to have retrieved something useful1308next unless(defined($meta1) );13091310# Files to date if the working copy and repo copy have the same revision, and the working copy is unmodified1311next if(not defined($meta2)and$wrev==$meta1->{revision}1312and1313( ($state->{entries}{$filename}{unchanged}and(not defined($state->{entries}{$filename}{conflict} )or$state->{entries}{$filename}{conflict} !~/^\+=/) )1314or(defined($state->{entries}{$filename}{modified_hash})and$state->{entries}{$filename}{modified_hash}eq$meta1->{filehash} ) )1315);13161317# Apparently we only show diffs for locally modified files1318next unless(defined($meta2)or defined($state->{entries}{$filename}{modified_filename} ) );13191320print"M Index:$filename\n";1321print"M ===================================================================\n";1322print"M RCS file:$state->{CVSROOT}/$state->{module}/$filename,v\n";1323print"M retrieving revision 1.$meta1->{revision}\n"if(defined($meta1) );1324print"M retrieving revision 1.$meta2->{revision}\n"if(defined($meta2) );1325print"M diff ";1326foreachmy$opt(keys%{$state->{opt}} )1327{1328if(ref$state->{opt}{$opt}eq"ARRAY")1329{1330foreachmy$value( @{$state->{opt}{$opt}} )1331{1332print"-$opt$value";1333}1334}else{1335print"-$opt";1336print"$state->{opt}{$opt} "if(defined($state->{opt}{$opt} ) );1337}1338}1339print"$filename\n";13401341$log->info("Diffing$filename-r$meta1->{revision} -r ". ($meta2->{revision}or"workingcopy"));13421343($fh,$filediff) = tempfile ( DIR =>$TEMP_DIR);13441345if(exists$state->{opt}{u} )1346{1347system("diff -u -L '$filenamerevision 1.$meta1->{revision}' -L '$filename". (defined($meta2->{revision}) ?"revision 1.$meta2->{revision}":"working copy") ."'$file1$file2>$filediff");1348}else{1349system("diff$file1$file2>$filediff");1350}13511352while( <$fh> )1353{1354print"M$_";1355}1356close$fh;1357}13581359print"ok\n";1360}13611362sub req_log1363{1364my($cmd,$data) =@_;13651366 argsplit("log");13671368$log->debug("req_log : ". (defined($data) ?$data:"[NULL]"));1369#$log->debug("log state : " . Dumper($state));13701371my($minrev,$maxrev);1372if(defined($state->{opt}{r} )and$state->{opt}{r} =~/([\d.]+)?(::?)([\d.]+)?/)1373{1374my$control=$2;1375$minrev=$1;1376$maxrev=$3;1377$minrev=~s/^1\.//if(defined($minrev) );1378$maxrev=~s/^1\.//if(defined($maxrev) );1379$minrev++if(defined($minrev)and$controleq"::");1380}13811382# Grab a handle to the SQLite db and do any necessary updates1383my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1384$updater->update();13851386# if no files were specified, we need to work out what files we should be providing status on ...1387 argsfromdir($updater)if(scalar( @{$state->{args}} ) ==0);13881389# foreach file specified on the commandline ...1390foreachmy$filename( @{$state->{args}} )1391{1392$filename= filecleanup($filename);13931394my$headmeta=$updater->getmeta($filename);13951396my$revisions=$updater->getlog($filename);1397my$totalrevisions=scalar(@$revisions);13981399if(defined($minrev) )1400{1401$log->debug("Removing revisions less than$minrev");1402while(scalar(@$revisions) >0and$revisions->[-1]{revision} <$minrev)1403{1404pop@$revisions;1405}1406}1407if(defined($maxrev) )1408{1409$log->debug("Removing revisions greater than$maxrev");1410while(scalar(@$revisions) >0and$revisions->[0]{revision} >$maxrev)1411{1412shift@$revisions;1413}1414}14151416next unless(scalar(@$revisions) );14171418print"M\n";1419print"M RCS file:$state->{CVSROOT}/$state->{module}/$filename,v\n";1420print"M Working file:$filename\n";1421print"M head: 1.$headmeta->{revision}\n";1422print"M branch:\n";1423print"M locks: strict\n";1424print"M access list:\n";1425print"M symbolic names:\n";1426print"M keyword substitution: kv\n";1427print"M total revisions:$totalrevisions;\tselected revisions: ".scalar(@$revisions) ."\n";1428print"M description:\n";14291430foreachmy$revision(@$revisions)1431{1432print"M ----------------------------\n";1433print"M revision 1.$revision->{revision}\n";1434# reformat the date for log output1435$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}) );1436$revision->{author} =~s/\s+.*//;1437$revision->{author} =~s/^(.{8}).*/$1/;1438print"M date:$revision->{modified}; author:$revision->{author}; state: ". ($revision->{filehash}eq"deleted"?"dead":"Exp") ."; lines: +2 -3\n";1439my$commitmessage=$updater->commitmessage($revision->{commithash});1440$commitmessage=~s/^/M /mg;1441print$commitmessage."\n";1442}1443print"M =============================================================================\n";1444}14451446print"ok\n";1447}14481449sub req_annotate1450{1451my($cmd,$data) =@_;14521453 argsplit("annotate");14541455$log->info("req_annotate : ". (defined($data) ?$data:"[NULL]"));1456#$log->debug("status state : " . Dumper($state));14571458# Grab a handle to the SQLite db and do any necessary updates1459my$updater= GITCVS::updater->new($state->{CVSROOT},$state->{module},$log);1460$updater->update();14611462# if no files were specified, we need to work out what files we should be providing annotate on ...1463 argsfromdir($updater)if(scalar( @{$state->{args}} ) ==0);14641465# we'll need a temporary checkout dir1466my$tmpdir= tempdir ( DIR =>$TEMP_DIR);1467my(undef,$file_index) = tempfile ( DIR =>$TEMP_DIR, OPEN =>0);1468$log->info("Temp checkoutdir creation successful, basing annotate session work on '$tmpdir', index file is '$file_index'");14691470$ENV{GIT_DIR} =$state->{CVSROOT} ."/";1471$ENV{GIT_INDEX_FILE} =$file_index;14721473chdir$tmpdir;14741475# foreach file specified on the commandline ...1476foreachmy$filename( @{$state->{args}} )1477{1478$filename= filecleanup($filename);14791480my$meta=$updater->getmeta($filename);14811482next unless($meta->{revision} );14831484# get all the commits that this file was in1485# in dense format -- aka skip dead revisions1486my$revisions=$updater->gethistorydense($filename);1487my$lastseenin=$revisions->[0][2];14881489# populate the temporary index based on the latest commit were we saw1490# the file -- but do it cheaply without checking out any files1491# TODO: if we got a revision from the client, use that instead1492# to look up the commithash in sqlite (still good to default to1493# the current head as we do now)1494system("git-read-tree",$lastseenin);1495unless($?==0)1496{1497die"Error running git-read-tree$lastseenin$file_index$!";1498}1499$log->info("Created index '$file_index' with commit$lastseenin- exit status$?");15001501# do a checkout of the file1502system('git-checkout-index','-f','-u',$filename);1503unless($?==0) {1504die"Error running git-checkout-index -f -u$filename:$!";1505}15061507$log->info("Annotate$filename");15081509# Prepare a file with the commits from the linearized1510# history that annotate should know about. This prevents1511# git-jsannotate telling us about commits we are hiding1512# from the client.15131514open(ANNOTATEHINTS,">$tmpdir/.annotate_hints")or die"Error opening >$tmpdir/.annotate_hints$!";1515for(my$i=0;$i<@$revisions;$i++)1516{1517print ANNOTATEHINTS $revisions->[$i][2];1518if($i+1<@$revisions) {# have we got a parent?1519print ANNOTATEHINTS ' '.$revisions->[$i+1][2];1520}1521print ANNOTATEHINTS "\n";1522}15231524print ANNOTATEHINTS "\n";1525close ANNOTATEHINTS;15261527my$annotatecmd='git-annotate';1528open(ANNOTATE,"-|",$annotatecmd,'-l','-S',"$tmpdir/.annotate_hints",$filename)1529or die"Error invoking$annotatecmd-l -S$tmpdir/.annotate_hints$filename:$!";1530my$metadata= {};1531print"E Annotations for$filename\n";1532print"E ***************\n";1533while( <ANNOTATE> )1534{1535if(m/^([a-zA-Z0-9]{40})\t\([^\)]*\)(.*)$/i)1536{1537my$commithash=$1;1538my$data=$2;1539unless(defined($metadata->{$commithash} ) )1540{1541$metadata->{$commithash} =$updater->getmeta($filename,$commithash);1542$metadata->{$commithash}{author} =~s/\s+.*//;1543$metadata->{$commithash}{author} =~s/^(.{8}).*/$1/;1544$metadata->{$commithash}{modified} =sprintf("%02d-%s-%02d",$1,$2,$3)if($metadata->{$commithash}{modified} =~/^(\d+)\s(\w+)\s\d\d(\d\d)/);1545}1546printf("M 1.%-5d (%-8s%10s):%s\n",1547$metadata->{$commithash}{revision},1548$metadata->{$commithash}{author},1549$metadata->{$commithash}{modified},1550$data1551);1552}else{1553$log->warn("Error in annotate output! LINE:$_");1554print"E Annotate error\n";1555next;1556}1557}1558close ANNOTATE;1559}15601561# done; get out of the tempdir1562chdir"/";15631564print"ok\n";15651566}15671568# This method takes the state->{arguments} array and produces two new arrays.1569# The first is $state->{args} which is everything before the '--' argument, and1570# the second is $state->{files} which is everything after it.1571sub argsplit1572{1573return unless(defined($state->{arguments})and ref$state->{arguments}eq"ARRAY");15741575my$type=shift;15761577$state->{args} = [];1578$state->{files} = [];1579$state->{opt} = {};15801581if(defined($type) )1582{1583my$opt= {};1584$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");1585$opt= { v =>0, l =>0, R =>0}if($typeeq"status");1586$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");1587$opt= { l =>0, R =>0, k =>1, D =>1, D =>1, r =>2}if($typeeq"diff");1588$opt= { c =>0, R =>0, l =>0, f =>0, F =>1, m =>1, r =>1}if($typeeq"ci");1589$opt= { k =>1, m =>1}if($typeeq"add");1590$opt= { f =>0, l =>0, R =>0}if($typeeq"remove");1591$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");159215931594while(scalar( @{$state->{arguments}} ) >0)1595{1596my$arg=shift@{$state->{arguments}};15971598next if($argeq"--");1599next unless($arg=~/\S/);16001601# if the argument looks like a switch1602if($arg=~/^-(\w)(.*)/)1603{1604# if it's a switch that takes an argument1605if($opt->{$1} )1606{1607# If this switch has already been provided1608if($opt->{$1} >1and exists($state->{opt}{$1} ) )1609{1610$state->{opt}{$1} = [$state->{opt}{$1} ];1611if(length($2) >0)1612{1613push@{$state->{opt}{$1}},$2;1614}else{1615push@{$state->{opt}{$1}},shift@{$state->{arguments}};1616}1617}else{1618# if there's extra data in the arg, use that as the argument for the switch1619if(length($2) >0)1620{1621$state->{opt}{$1} =$2;1622}else{1623$state->{opt}{$1} =shift@{$state->{arguments}};1624}1625}1626}else{1627$state->{opt}{$1} =undef;1628}1629}1630else1631{1632push@{$state->{args}},$arg;1633}1634}1635}1636else1637{1638my$mode=0;16391640foreachmy$value( @{$state->{arguments}} )1641{1642if($valueeq"--")1643{1644$mode++;1645next;1646}1647push@{$state->{args}},$valueif($mode==0);1648push@{$state->{files}},$valueif($mode==1);1649}1650}1651}16521653# This method uses $state->{directory} to populate $state->{args} with a list of filenames1654sub argsfromdir1655{1656my$updater=shift;16571658$state->{args} = [];16591660foreachmy$file( @{$updater->gethead} )1661{1662next if($file->{filehash}eq"deleted"and not defined($state->{entries}{$file->{name}} ) );1663next unless($file->{name} =~s/^$state->{directory}//);1664push@{$state->{args}},$file->{name};1665}1666}16671668# This method cleans up the $state variable after a command that uses arguments has run1669sub statecleanup1670{1671$state->{files} = [];1672$state->{args} = [];1673$state->{arguments} = [];1674$state->{entries} = {};1675}16761677sub revparse1678{1679my$filename=shift;16801681returnundefunless(defined($state->{entries}{$filename}{revision} ) );16821683return$1if($state->{entries}{$filename}{revision} =~/^1\.(\d+)/);1684return-$1if($state->{entries}{$filename}{revision} =~/^-1\.(\d+)/);16851686returnundef;1687}16881689# This method takes a file hash and does a CVS "file transfer" which transmits the1690# size of the file, and then the file contents.1691# If a second argument $targetfile is given, the file is instead written out to1692# a file by the name of $targetfile1693sub transmitfile1694{1695my$filehash=shift;1696my$targetfile=shift;16971698if(defined($filehash)and$filehasheq"deleted")1699{1700$log->warn("filehash is 'deleted'");1701return;1702}17031704die"Need filehash"unless(defined($filehash)and$filehash=~/^[a-zA-Z0-9]{40}$/);17051706my$type=`git-cat-file -t$filehash`;1707 chomp$type;17081709 die ( "Invalid type '$type' (expected 'blob')" ) unless ( defined ($type) and$typeeq "blob" );17101711 my$size= `git-cat-file -s $filehash`;1712chomp$size;17131714$log->debug("transmitfile($filehash) size=$size, type=$type");17151716if(open my$fh,'-|',"git-cat-file","blob",$filehash)1717{1718if(defined($targetfile) )1719{1720open NEWFILE,">",$targetfileor die("Couldn't open '$targetfile' for writing :$!");1721print NEWFILE $_while( <$fh> );1722close NEWFILE;1723}else{1724print"$size\n";1725printwhile( <$fh> );1726}1727close$fhor die("Couldn't close filehandle for transmitfile()");1728}else{1729die("Couldn't execute git-cat-file");1730}1731}17321733# This method takes a file name, and returns ( $dirpart, $filepart ) which1734# refers to the directory porition and the file portion of the filename1735# respectively1736sub filenamesplit1737{1738my$filename=shift;17391740my($filepart,$dirpart) = ($filename,".");1741($filepart,$dirpart) = ($2,$1)if($filename=~/(.*)\/(.*)/ );1742$dirpart.="/";17431744return($filepart,$dirpart);1745}17461747sub filecleanup1748{1749my$filename=shift;17501751returnundefunless(defined($filename));1752if($filename=~/^\// )1753{1754print"E absolute filenames '$filename' not supported by server\n";1755returnundef;1756}17571758$filename=~s/^\.\///g;1759$filename=$state->{directory} .$filename;17601761return$filename;1762}17631764package GITCVS::log;17651766####1767#### Copyright The Open University UK - 2006.1768####1769#### Authors: Martyn Smith <martyn@catalyst.net.nz>1770#### Martin Langhoff <martin@catalyst.net.nz>1771####1772####17731774use strict;1775use warnings;17761777=head1 NAME17781779GITCVS::log17801781=head1 DESCRIPTION17821783This module provides very crude logging with a similar interface to1784Log::Log4perl17851786=head1 METHODS17871788=cut17891790=head2 new17911792Creates a new log object, optionally you can specify a filename here to1793indicate the file to log to. If no log file is specified, you can specifiy one1794later with method setfile, or indicate you no longer want logging with method1795nofile.17961797Until one of these methods is called, all log calls will buffer messages ready1798to write out.17991800=cut1801sub new1802{1803my$class=shift;1804my$filename=shift;18051806my$self= {};18071808bless$self,$class;18091810if(defined($filename) )1811{1812open$self->{fh},">>",$filenameor die("Couldn't open '$filename' for writing :$!");1813}18141815return$self;1816}18171818=head2 setfile18191820This methods takes a filename, and attempts to open that file as the log file.1821If successful, all buffered data is written out to the file, and any further1822logging is written directly to the file.18231824=cut1825sub setfile1826{1827my$self=shift;1828my$filename=shift;18291830if(defined($filename) )1831{1832open$self->{fh},">>",$filenameor die("Couldn't open '$filename' for writing :$!");1833}18341835return unless(defined($self->{buffer} )and ref$self->{buffer}eq"ARRAY");18361837while(my$line=shift@{$self->{buffer}} )1838{1839print{$self->{fh}}$line;1840}1841}18421843=head2 nofile18441845This method indicates no logging is going to be used. It flushes any entries in1846the internal buffer, and sets a flag to ensure no further data is put there.18471848=cut1849sub nofile1850{1851my$self=shift;18521853$self->{nolog} =1;18541855return unless(defined($self->{buffer} )and ref$self->{buffer}eq"ARRAY");18561857$self->{buffer} = [];1858}18591860=head2 _logopen18611862Internal method. Returns true if the log file is open, false otherwise.18631864=cut1865sub _logopen1866{1867my$self=shift;18681869return1if(defined($self->{fh} )and ref$self->{fh}eq"GLOB");1870return0;1871}18721873=head2 debug info warn fatal18741875These four methods are wrappers to _log. They provide the actual interface for1876logging data.18771878=cut1879sub debug {my$self=shift;$self->_log("debug",@_); }1880sub info {my$self=shift;$self->_log("info",@_); }1881subwarn{my$self=shift;$self->_log("warn",@_); }1882sub fatal {my$self=shift;$self->_log("fatal",@_); }18831884=head2 _log18851886This is an internal method called by the logging functions. It generates a1887timestamp and pushes the logged line either to file, or internal buffer.18881889=cut1890sub _log1891{1892my$self=shift;1893my$level=shift;18941895return if($self->{nolog} );18961897my@time=localtime;1898my$timestring=sprintf("%4d-%02d-%02d%02d:%02d:%02d: %-5s",1899$time[5] +1900,1900$time[4] +1,1901$time[3],1902$time[2],1903$time[1],1904$time[0],1905uc$level,1906);19071908if($self->_logopen)1909{1910print{$self->{fh}}$timestring." - ".join(" ",@_) ."\n";1911}else{1912push@{$self->{buffer}},$timestring." - ".join(" ",@_) ."\n";1913}1914}19151916=head2 DESTROY19171918This method simply closes the file handle if one is open19191920=cut1921sub DESTROY1922{1923my$self=shift;19241925if($self->_logopen)1926{1927close$self->{fh};1928}1929}19301931package GITCVS::updater;19321933####1934#### Copyright The Open University UK - 2006.1935####1936#### Authors: Martyn Smith <martyn@catalyst.net.nz>1937#### Martin Langhoff <martin@catalyst.net.nz>1938####1939####19401941use strict;1942use warnings;1943use DBI;19441945=head1 METHODS19461947=cut19481949=head2 new19501951=cut1952sub new1953{1954my$class=shift;1955my$config=shift;1956my$module=shift;1957my$log=shift;19581959die"Need to specify a git repository"unless(defined($config)and-d $config);1960die"Need to specify a module"unless(defined($module) );19611962$class=ref($class) ||$class;19631964my$self= {};19651966bless$self,$class;19671968$self->{dbdir} =$config."/";1969die"Database dir '$self->{dbdir}' isn't a directory"unless(defined($self->{dbdir})and-d $self->{dbdir} );19701971$self->{module} =$module;1972$self->{file} =$self->{dbdir} ."/gitcvs.$module.sqlite";19731974$self->{git_path} =$config."/";19751976$self->{log} =$log;19771978die"Git repo '$self->{git_path}' doesn't exist"unless( -d $self->{git_path} );19791980$self->{dbh} = DBI->connect("dbi:SQLite:dbname=".$self->{file},"","");19811982$self->{tables} = {};1983foreachmy$table($self->{dbh}->tables)1984{1985$table=~s/^"//;1986$table=~s/"$//;1987$self->{tables}{$table} =1;1988}19891990# Construct the revision table if required1991unless($self->{tables}{revision} )1992{1993$self->{dbh}->do("1994 CREATE TABLE revision (1995 name TEXT NOT NULL,1996 revision INTEGER NOT NULL,1997 filehash TEXT NOT NULL,1998 commithash TEXT NOT NULL,1999 author TEXT NOT NULL,2000 modified TEXT NOT NULL,2001 mode TEXT NOT NULL2002 )2003 ");2004}20052006# Construct the revision table if required2007unless($self->{tables}{head} )2008{2009$self->{dbh}->do("2010 CREATE TABLE head (2011 name TEXT NOT NULL,2012 revision INTEGER NOT NULL,2013 filehash TEXT NOT NULL,2014 commithash TEXT NOT NULL,2015 author TEXT NOT NULL,2016 modified TEXT NOT NULL,2017 mode TEXT NOT NULL2018 )2019 ");2020}20212022# Construct the properties table if required2023unless($self->{tables}{properties} )2024{2025$self->{dbh}->do("2026 CREATE TABLE properties (2027 key TEXT NOT NULL PRIMARY KEY,2028 value TEXT2029 )2030 ");2031}20322033# Construct the commitmsgs table if required2034unless($self->{tables}{commitmsgs} )2035{2036$self->{dbh}->do("2037 CREATE TABLE commitmsgs (2038 key TEXT NOT NULL PRIMARY KEY,2039 value TEXT2040 )2041 ");2042}20432044return$self;2045}20462047=head2 update20482049=cut2050sub update2051{2052my$self=shift;20532054# first lets get the commit list2055$ENV{GIT_DIR} =$self->{git_path};20562057# prepare database queries2058my$db_insert_rev=$self->{dbh}->prepare_cached("INSERT INTO revision (name, revision, filehash, commithash, modified, author, mode) VALUES (?,?,?,?,?,?,?)",{},1);2059my$db_insert_mergelog=$self->{dbh}->prepare_cached("INSERT INTO commitmsgs (key, value) VALUES (?,?)",{},1);2060my$db_delete_head=$self->{dbh}->prepare_cached("DELETE FROM head",{},1);2061my$db_insert_head=$self->{dbh}->prepare_cached("INSERT INTO head (name, revision, filehash, commithash, modified, author, mode) VALUES (?,?,?,?,?,?,?)",{},1);20622063my$commitinfo=`git-cat-file commit$self->{module} 2>&1`;2064unless($commitinfo=~/tree\s+[a-zA-Z0-9]{40}/)2065{2066die("Invalid module '$self->{module}'");2067}206820692070my$git_log;2071my$lastcommit=$self->_get_prop("last_commit");20722073# Start exclusive lock here...2074$self->{dbh}->begin_work()or die"Cannot lock database for BEGIN";20752076# TODO: log processing is memory bound2077# if we can parse into a 2nd file that is in reverse order2078# we can probably do something really efficient2079my@git_log_params= ('--parents','--topo-order');20802081if(defined$lastcommit) {2082push@git_log_params,"$lastcommit..$self->{module}";2083}else{2084push@git_log_params,$self->{module};2085}2086open(GITLOG,'-|','git-log',@git_log_params)or die"Cannot call git-log:$!";20872088my@commits;20892090my%commit= ();20912092while( <GITLOG> )2093{2094chomp;2095if(m/^commit\s+(.*)$/) {2096# on ^commit lines put the just seen commit in the stack2097# and prime things for the next one2098if(keys%commit) {2099my%copy=%commit;2100unshift@commits, \%copy;2101%commit= ();2102}2103my@parents=split(m/\s+/,$1);2104$commit{hash} =shift@parents;2105$commit{parents} = \@parents;2106}elsif(m/^(\w+?):\s+(.*)$/&& !exists($commit{message})) {2107# on rfc822-like lines seen before we see any message,2108# lowercase the entry and put it in the hash as key-value2109$commit{lc($1)} =$2;2110}else{2111# message lines - skip initial empty line2112# and trim whitespace2113if(!exists($commit{message}) &&m/^\s*$/) {2114# define it to mark the end of headers2115$commit{message} ='';2116next;2117}2118s/^\s+//;s/\s+$//;# trim ws2119$commit{message} .=$_."\n";2120}2121}2122close GITLOG;21232124unshift@commits, \%commitif(keys%commit);21252126# Now all the commits are in the @commits bucket2127# ordered by time DESC. for each commit that needs processing,2128# determine whether it's following the last head we've seen or if2129# it's on its own branch, grab a file list, and add whatever's changed2130# NOTE: $lastcommit refers to the last commit from previous run2131# $lastpicked is the last commit we picked in this run2132my$lastpicked;2133my$head= {};2134if(defined$lastcommit) {2135$lastpicked=$lastcommit;2136}21372138my$committotal=scalar(@commits);2139my$commitcount=0;21402141# Load the head table into $head (for cached lookups during the update process)2142foreachmy$file( @{$self->gethead()} )2143{2144$head->{$file->{name}} =$file;2145}21462147foreachmy$commit(@commits)2148{2149$self->{log}->debug("GITCVS::updater - Processing commit$commit->{hash} (". (++$commitcount) ." of$committotal)");2150if(defined$lastpicked)2151{2152if(!in_array($lastpicked, @{$commit->{parents}}))2153{2154# skip, we'll see this delta2155# as part of a merge later2156# warn "skipping off-track $commit->{hash}\n";2157next;2158}elsif(@{$commit->{parents}} >1) {2159# it is a merge commit, for each parent that is2160# not $lastpicked, see if we can get a log2161# from the merge-base to that parent to put it2162# in the message as a merge summary.2163my@parents= @{$commit->{parents}};2164foreachmy$parent(@parents) {2165# git-merge-base can potentially (but rarely) throw2166# several candidate merge bases. let's assume2167# that the first one is the best one.2168if($parenteq$lastpicked) {2169next;2170}2171open my$p,'git-merge-base '.$lastpicked.' '2172.$parent.'|';2173my@output= (<$p>);2174close$p;2175my$base=join('',@output);2176chomp$base;2177if($base) {2178my@merged;2179# print "want to log between $base $parent \n";2180open(GITLOG,'-|','git-log',"$base..$parent")2181or die"Cannot call git-log:$!";2182my$mergedhash;2183while(<GITLOG>) {2184chomp;2185if(!defined$mergedhash) {2186if(m/^commit\s+(.+)$/) {2187$mergedhash=$1;2188}else{2189next;2190}2191}else{2192# grab the first line that looks non-rfc8222193# aka has content after leading space2194if(m/^\s+(\S.*)$/) {2195my$title=$1;2196$title=substr($title,0,100);# truncate2197unshift@merged,"$mergedhash$title";2198undef$mergedhash;2199}2200}2201}2202close GITLOG;2203if(@merged) {2204$commit->{mergemsg} =$commit->{message};2205$commit->{mergemsg} .="\nSummary of merged commits:\n\n";2206foreachmy$summary(@merged) {2207$commit->{mergemsg} .="\t$summary\n";2208}2209$commit->{mergemsg} .="\n\n";2210# print "Message for $commit->{hash} \n$commit->{mergemsg}";2211}2212}2213}2214}2215}22162217# convert the date to CVS-happy format2218$commit->{date} ="$2$1$4$3$5"if($commit->{date} =~/^\w+\s+(\w+)\s+(\d+)\s+(\d+:\d+:\d+)\s+(\d+)\s+([+-]\d+)$/);22192220if(defined($lastpicked) )2221{2222my$filepipe=open(FILELIST,'-|','git-diff-tree','-r',$lastpicked,$commit->{hash})or die("Cannot call git-diff-tree :$!");2223while( <FILELIST> )2224{2225unless(/^:\d{6}\s+\d{3}(\d)\d{2}\s+[a-zA-Z0-9]{40}\s+([a-zA-Z0-9]{40})\s+(\w)\s+(.*)$/o)2226{2227die("Couldn't process git-diff-tree line :$_");2228}22292230# $log->debug("File mode=$1, hash=$2, change=$3, name=$4");22312232my$git_perms="";2233$git_perms.="r"if($1&4);2234$git_perms.="w"if($1&2);2235$git_perms.="x"if($1&1);2236$git_perms="rw"if($git_permseq"");22372238if($3eq"D")2239{2240#$log->debug("DELETE $4");2241$head->{$4} = {2242 name =>$4,2243 revision =>$head->{$4}{revision} +1,2244 filehash =>"deleted",2245 commithash =>$commit->{hash},2246 modified =>$commit->{date},2247 author =>$commit->{author},2248 mode =>$git_perms,2249};2250$db_insert_rev->execute($4,$head->{$4}{revision},$2,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2251}2252elsif($3eq"M")2253{2254#$log->debug("MODIFIED $4");2255$head->{$4} = {2256 name =>$4,2257 revision =>$head->{$4}{revision} +1,2258 filehash =>$2,2259 commithash =>$commit->{hash},2260 modified =>$commit->{date},2261 author =>$commit->{author},2262 mode =>$git_perms,2263};2264$db_insert_rev->execute($4,$head->{$4}{revision},$2,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2265}2266elsif($3eq"A")2267{2268#$log->debug("ADDED $4");2269$head->{$4} = {2270 name =>$4,2271 revision =>1,2272 filehash =>$2,2273 commithash =>$commit->{hash},2274 modified =>$commit->{date},2275 author =>$commit->{author},2276 mode =>$git_perms,2277};2278$db_insert_rev->execute($4,$head->{$4}{revision},$2,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2279}2280else2281{2282$log->warn("UNKNOWN FILE CHANGE mode=$1, hash=$2, change=$3, name=$4");2283die;2284}2285}2286close FILELIST;2287}else{2288# this is used to detect files removed from the repo2289my$seen_files= {};22902291my$filepipe=open(FILELIST,'-|','git-ls-tree','-r',$commit->{hash})or die("Cannot call git-ls-tree :$!");2292while( <FILELIST> )2293{2294unless(/^(\d+)\s+(\w+)\s+([a-zA-Z0-9]+)\s+(.*)$/o)2295{2296die("Couldn't process git-ls-tree line :$_");2297}22982299my($git_perms,$git_type,$git_hash,$git_filename) = ($1,$2,$3,$4);23002301$seen_files->{$git_filename} =1;23022303my($oldhash,$oldrevision,$oldmode) = (2304$head->{$git_filename}{filehash},2305$head->{$git_filename}{revision},2306$head->{$git_filename}{mode}2307);23082309if($git_perms=~/^\d\d\d(\d)\d\d/o)2310{2311$git_perms="";2312$git_perms.="r"if($1&4);2313$git_perms.="w"if($1&2);2314$git_perms.="x"if($1&1);2315}else{2316$git_perms="rw";2317}23182319# unless the file exists with the same hash, we need to update it ...2320unless(defined($oldhash)and$oldhasheq$git_hashand defined($oldmode)and$oldmodeeq$git_perms)2321{2322my$newrevision= ($oldrevisionor0) +1;23232324$head->{$git_filename} = {2325 name =>$git_filename,2326 revision =>$newrevision,2327 filehash =>$git_hash,2328 commithash =>$commit->{hash},2329 modified =>$commit->{date},2330 author =>$commit->{author},2331 mode =>$git_perms,2332};233323342335$db_insert_rev->execute($git_filename,$newrevision,$git_hash,$commit->{hash},$commit->{date},$commit->{author},$git_perms);2336}2337}2338close FILELIST;23392340# Detect deleted files2341foreachmy$file(keys%$head)2342{2343unless(exists$seen_files->{$file}or$head->{$file}{filehash}eq"deleted")2344{2345$head->{$file}{revision}++;2346$head->{$file}{filehash} ="deleted";2347$head->{$file}{commithash} =$commit->{hash};2348$head->{$file}{modified} =$commit->{date};2349$head->{$file}{author} =$commit->{author};23502351$db_insert_rev->execute($file,$head->{$file}{revision},$head->{$file}{filehash},$commit->{hash},$commit->{date},$commit->{author},$head->{$file}{mode});2352}2353}2354# END : "Detect deleted files"2355}235623572358if(exists$commit->{mergemsg})2359{2360$db_insert_mergelog->execute($commit->{hash},$commit->{mergemsg});2361}23622363$lastpicked=$commit->{hash};23642365$self->_set_prop("last_commit",$commit->{hash});2366}23672368$db_delete_head->execute();2369foreachmy$file(keys%$head)2370{2371$db_insert_head->execute(2372$file,2373$head->{$file}{revision},2374$head->{$file}{filehash},2375$head->{$file}{commithash},2376$head->{$file}{modified},2377$head->{$file}{author},2378$head->{$file}{mode},2379);2380}2381# invalidate the gethead cache2382$self->{gethead_cache} =undef;238323842385# Ending exclusive lock here2386$self->{dbh}->commit()or die"Failed to commit changes to SQLite";2387}23882389sub _headrev2390{2391my$self=shift;2392my$filename=shift;23932394my$db_query=$self->{dbh}->prepare_cached("SELECT filehash, revision, mode FROM head WHERE name=?",{},1);2395$db_query->execute($filename);2396my($hash,$revision,$mode) =$db_query->fetchrow_array;23972398return($hash,$revision,$mode);2399}24002401sub _get_prop2402{2403my$self=shift;2404my$key=shift;24052406my$db_query=$self->{dbh}->prepare_cached("SELECT value FROM properties WHERE key=?",{},1);2407$db_query->execute($key);2408my($value) =$db_query->fetchrow_array;24092410return$value;2411}24122413sub _set_prop2414{2415my$self=shift;2416my$key=shift;2417my$value=shift;24182419my$db_query=$self->{dbh}->prepare_cached("UPDATE properties SET value=? WHERE key=?",{},1);2420$db_query->execute($value,$key);24212422unless($db_query->rows)2423{2424$db_query=$self->{dbh}->prepare_cached("INSERT INTO properties (key, value) VALUES (?,?)",{},1);2425$db_query->execute($key,$value);2426}24272428return$value;2429}24302431=head2 gethead24322433=cut24342435sub gethead2436{2437my$self=shift;24382439return$self->{gethead_cache}if(defined($self->{gethead_cache} ) );24402441my$db_query=$self->{dbh}->prepare_cached("SELECT name, filehash, mode, revision, modified, commithash, author FROM head ORDER BY name ASC",{},1);2442$db_query->execute();24432444my$tree= [];2445while(my$file=$db_query->fetchrow_hashref)2446{2447push@$tree,$file;2448}24492450$self->{gethead_cache} =$tree;24512452return$tree;2453}24542455=head2 getlog24562457=cut24582459sub getlog2460{2461my$self=shift;2462my$filename=shift;24632464my$db_query=$self->{dbh}->prepare_cached("SELECT name, filehash, author, mode, revision, modified, commithash FROM revision WHERE name=? ORDER BY revision DESC",{},1);2465$db_query->execute($filename);24662467my$tree= [];2468while(my$file=$db_query->fetchrow_hashref)2469{2470push@$tree,$file;2471}24722473return$tree;2474}24752476=head2 getmeta24772478This function takes a filename (with path) argument and returns a hashref of2479metadata for that file.24802481=cut24822483sub getmeta2484{2485my$self=shift;2486my$filename=shift;2487my$revision=shift;24882489my$db_query;2490if(defined($revision)and$revision=~/^\d+$/)2491{2492$db_query=$self->{dbh}->prepare_cached("SELECT * FROM revision WHERE name=? AND revision=?",{},1);2493$db_query->execute($filename,$revision);2494}2495elsif(defined($revision)and$revision=~/^[a-zA-Z0-9]{40}$/)2496{2497$db_query=$self->{dbh}->prepare_cached("SELECT * FROM revision WHERE name=? AND commithash=?",{},1);2498$db_query->execute($filename,$revision);2499}else{2500$db_query=$self->{dbh}->prepare_cached("SELECT * FROM head WHERE name=?",{},1);2501$db_query->execute($filename);2502}25032504return$db_query->fetchrow_hashref;2505}25062507=head2 commitmessage25082509this function takes a commithash and returns the commit message for that commit25102511=cut2512sub commitmessage2513{2514my$self=shift;2515my$commithash=shift;25162517die("Need commithash")unless(defined($commithash)and$commithash=~/^[a-zA-Z0-9]{40}$/);25182519my$db_query;2520$db_query=$self->{dbh}->prepare_cached("SELECT value FROM commitmsgs WHERE key=?",{},1);2521$db_query->execute($commithash);25222523my($message) =$db_query->fetchrow_array;25242525if(defined($message) )2526{2527$message.=" "if($message=~/\n$/);2528return$message;2529}25302531my@lines= safe_pipe_capture("git-cat-file","commit",$commithash);2532shift@lineswhile($lines[0] =~/\S/);2533$message=join("",@lines);2534$message.=" "if($message=~/\n$/);2535return$message;2536}25372538=head2 gethistory25392540This function takes a filename (with path) argument and returns an arrayofarrays2541containing revision,filehash,commithash ordered by revision descending25422543=cut2544sub gethistory2545{2546my$self=shift;2547my$filename=shift;25482549my$db_query;2550$db_query=$self->{dbh}->prepare_cached("SELECT revision, filehash, commithash FROM revision WHERE name=? ORDER BY revision DESC",{},1);2551$db_query->execute($filename);25522553return$db_query->fetchall_arrayref;2554}25552556=head2 gethistorydense25572558This function takes a filename (with path) argument and returns an arrayofarrays2559containing revision,filehash,commithash ordered by revision descending.25602561This version of gethistory skips deleted entries -- so it is useful for annotate.2562The 'dense' part is a reference to a '--dense' option available for git-rev-list2563and other git tools that depend on it.25642565=cut2566sub gethistorydense2567{2568my$self=shift;2569my$filename=shift;25702571my$db_query;2572$db_query=$self->{dbh}->prepare_cached("SELECT revision, filehash, commithash FROM revision WHERE name=? AND filehash!='deleted' ORDER BY revision DESC",{},1);2573$db_query->execute($filename);25742575return$db_query->fetchall_arrayref;2576}25772578=head2 in_array()25792580from Array::PAT - mimics the in_array() function2581found in PHP. Yuck but works for small arrays.25822583=cut2584sub in_array2585{2586my($check,@array) =@_;2587my$retval=0;2588foreachmy$test(@array){2589if($checkeq$test){2590$retval=1;2591}2592}2593return$retval;2594}25952596=head2 safe_pipe_capture25972598an alterative to `command` that allows input to be passed as an array2599to work around shell problems with weird characters in arguments26002601=cut2602sub safe_pipe_capture {26032604my@output;26052606if(my$pid=open my$child,'-|') {2607@output= (<$child>);2608close$childor die join(' ',@_).":$!$?";2609}else{2610exec(@_)or die"$!$?";# exec() can fail the executable can't be found2611}2612returnwantarray?@output:join('',@output);2613}2614261526161;