git-cvsimport.perl 22.0 KB
Newer Older
1
#!/usr/bin/perl -w
2

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# This tool is copyright (c) 2005, Matthias Urlichs.
# It is released under the Gnu Public License, version 2.
#
# The basic idea is to aggregate CVS check-ins into related changes.
# Fortunately, "cvsps" does that for us; all we have to do is to parse
# its output.
#
# Checking out the files is done by a single long-running CVS connection
# / server process.
#
# The head revision is on branch "origin" by default.
# You can change that with the '-o' option.

use strict;
use warnings;
use Getopt::Std;
19 20
use File::Spec;
use File::Temp qw(tempfile);
21 22 23
use File::Path qw(mkpath);
use File::Basename qw(basename dirname);
use Time::Local;
M
Matthias Urlichs 已提交
24 25 26
use IO::Socket;
use IO::Pipe;
use POSIX qw(strftime dup2);
27
use IPC::Open2;
28 29 30 31

$SIG{'PIPE'}="IGNORE";
$ENV{'TZ'}="UTC";

32
our($opt_h,$opt_o,$opt_v,$opt_k,$opt_u,$opt_d,$opt_p,$opt_C,$opt_z,$opt_i,$opt_P, $opt_s,$opt_m,$opt_M,$opt_A,$opt_S);
33
my (%conv_author_name, %conv_author_email);
34 35 36

sub usage() {
	print STDERR <<END;
M
Matthias Urlichs 已提交
37
Usage: ${\basename $0}     # fetch/update GIT from CVS
38 39
       [-o branch-for-HEAD] [-h] [-v] [-d CVSROOT] [-A author-conv-file]
       [-p opts-for-cvsps] [-C GIT_repository] [-z fuzz] [-i] [-k] [-u]
40
       [-s subst] [-m] [-M regex] [-S regex] [CVS_module]
41 42 43 44
END
	exit(1);
}

45 46 47 48 49 50
sub read_author_info($) {
	my ($file) = @_;
	my $user;
	open my $f, '<', "$file" or die("Failed to open $file: $!\n");

	while (<$f>) {
51
		# Expected format is this:
52
		#   exon=Andreas Ericsson <ae@op5.se>
53
		if (m/^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/) {
54
			$user = $1;
55 56
			$conv_author_name{$user} = $2;
			$conv_author_email{$user} = $3;
57
		}
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
		# However, we also read from CVSROOT/users format
		# to ease migration.
		elsif (/^(\w+):(['"]?)(.+?)\2\s*$/) {
			my $mapped;
			($user, $mapped) = ($1, $3);
			if ($mapped =~ /^\s*(.*?)\s*<(.*)>\s*$/) {
				$conv_author_name{$user} = $1;
				$conv_author_email{$user} = $2;
			}
			elsif ($mapped =~ /^<?(.*)>?$/) {
				$conv_author_name{$user} = $user;
				$conv_author_email{$user} = $1;
			}
		}
		# NEEDSWORK: Maybe warn on unrecognized lines?
73 74 75 76 77 78 79 80 81 82
	}
	close ($f);
}

sub write_author_info($) {
	my ($file) = @_;
	open my $f, '>', $file or
	  die("Failed to open $file for writing: $!");

	foreach (keys %conv_author_name) {
83
		print $f "$_=$conv_author_name{$_} <$conv_author_email{$_}>\n";
84 85 86 87
	}
	close ($f);
}

88
getopts("hivmkuo:d:p:C:z:s:M:P:A:S:") or usage();
89 90
usage if $opt_h;

91
@ARGV <= 1 or usage();
92

M
Matthias Urlichs 已提交
93 94
if($opt_d) {
	$ENV{"CVSROOT"} = $opt_d;
95 96 97 98 99 100
} elsif(-f 'CVS/Root') {
	open my $f, '<', 'CVS/Root' or die 'Failed to open CVS/Root';
	$opt_d = <$f>;
	chomp $opt_d;
	close $f;
	$ENV{"CVSROOT"} = $opt_d;
M
Matthias Urlichs 已提交
101 102 103 104 105 106
} elsif($ENV{"CVSROOT"}) {
	$opt_d = $ENV{"CVSROOT"};
} else {
	die "CVSROOT needs to be set";
}
$opt_o ||= "origin";
107
$opt_s ||= "-";
108
my $git_tree = $opt_C;
M
Matthias Urlichs 已提交
109 110
$git_tree ||= ".";

111 112 113 114 115 116 117 118
my $cvs_tree;
if ($#ARGV == 0) {
	$cvs_tree = $ARGV[0];
} elsif (-f 'CVS/Repository') {
	open my $f, '<', 'CVS/Repository' or 
	    die 'Failed to open CVS/Repository';
	$cvs_tree = <$f>;
	chomp $cvs_tree;
119
	close $f;
120 121 122 123
} else {
	usage();
}

124 125 126 127 128 129 130 131
our @mergerx = ();
if ($opt_m) {
	@mergerx = ( qr/\W(?:from|of|merge|merging|merged) (\w+)/i );
}
if ($opt_M) {
	push (@mergerx, qr/$opt_M/);
}

132 133 134 135 136
select(STDERR); $|=1; select(STDOUT);


package CVSconn;
# Basic CVS dialog.
M
Matthias Urlichs 已提交
137
# We're only interested in connecting and downloading, so ...
138

139 140
use File::Spec;
use File::Temp qw(tempfile);
M
Matthias Urlichs 已提交
141 142
use POSIX qw(strftime dup2);

143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
sub new {
	my($what,$repo,$subdir) = @_;
	$what=ref($what) if ref($what);

	my $self = {};
	$self->{'buffer'} = "";
	bless($self,$what);

	$repo =~ s#/+$##;
	$self->{'fullrep'} = $repo;
	$self->conn();

	$self->{'subdir'} = $subdir;
	$self->{'lines'} = undef;

	return $self;
}

sub conn {
	my $self = shift;
	my $repo = $self->{'fullrep'};
	if($repo =~ s/^:pserver:(?:(.*?)(?::(.*?))?@)?([^:\/]*)(?::(\d*))?//) {
		my($user,$pass,$serv,$port) = ($1,$2,$3,$4);
		$user="anonymous" unless defined $user;
M
Matthias Urlichs 已提交
167
		my $rr2 = "-";
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
		unless($port) {
			$rr2 = ":pserver:$user\@$serv:$repo";
			$port=2401;
		}
		my $rr = ":pserver:$user\@$serv:$port$repo";

		unless($pass) {
			open(H,$ENV{'HOME'}."/.cvspass") and do {
				# :pserver:cvs@mea.tmt.tele.fi:/cvsroot/zmailer Ah<Z
				while(<H>) {
					chomp;
					s/^\/\d+\s+//;
					my ($w,$p) = split(/\s/,$_,2);
					if($w eq $rr or $w eq $rr2) {
						$pass = $p;
						last;
					}
				}
			};
		}
		$pass="A" unless $pass;

		my $s = IO::Socket::INET->new(PeerHost => $serv, PeerPort => $port);
		die "Socket to $serv: $!\n" unless defined $s;
		$s->write("BEGIN AUTH REQUEST\n$repo\n$user\n$pass\nEND AUTH REQUEST\n")
			or die "Write to $serv: $!\n";
		$s->flush();

		my $rep = <$s>;

		if($rep ne "I LOVE YOU\n") {
			$rep="<unknown>" unless $rep;
			die "AuthReply: $rep\n";
		}
		$self->{'socketo'} = $s;
		$self->{'socketi'} = $s;
S
Sven Verdoolaege 已提交
204
	} else { # local or ext: Fork off our own cvs server.
205 206 207 208
		my $pr = IO::Pipe->new();
		my $pw = IO::Pipe->new();
		my $pid = fork();
		die "Fork: $!\n" unless defined $pid;
S
Sven Verdoolaege 已提交
209 210
		my $cvs = 'cvs';
		$cvs = $ENV{CVS_SERVER} if exists $ENV{CVS_SERVER};
S
Sven Verdoolaege 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
		my $rsh = 'rsh';
		$rsh = $ENV{CVS_RSH} if exists $ENV{CVS_RSH};

		my @cvs = ($cvs, 'server');
		my ($local, $user, $host);
		$local = $repo =~ s/:local://;
		if (!$local) {
		    $repo =~ s/:ext://;
		    $local = !($repo =~ s/^(?:([^\@:]+)\@)?([^:]+)://);
		    ($user, $host) = ($1, $2);
		}
		if (!$local) {
		    if ($user) {
			unshift @cvs, $rsh, '-l', $user, $host;
		    } else {
			unshift @cvs, $rsh, $host;
		    }
		}

230 231 232 233 234 235 236
		unless($pid) {
			$pr->writer();
			$pw->reader();
			dup2($pw->fileno(),0);
			dup2($pr->fileno(),1);
			$pr->close();
			$pw->close();
S
Sven Verdoolaege 已提交
237
			exec(@cvs);
238 239 240 241 242 243 244 245 246
		}
		$pw->writer();
		$pr->reader();
		$self->{'socketo'} = $pw;
		$self->{'socketi'} = $pr;
	}
	$self->{'socketo'}->write("Root $repo\n");

	# Trial and error says that this probably is the minimum set
247
	$self->{'socketo'}->write("Valid-responses ok error Valid-requests Mode M Mbinary E Checked-in Created Updated Merged Removed\n");
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274

	$self->{'socketo'}->write("valid-requests\n");
	$self->{'socketo'}->flush();

	chomp(my $rep=$self->readline());
	if($rep !~ s/^Valid-requests\s*//) {
		$rep="<unknown>" unless $rep;
		die "Expected Valid-requests from server, but got: $rep\n";
	}
	chomp(my $res=$self->readline());
	die "validReply: $res\n" if $res ne "ok";

	$self->{'socketo'}->write("UseUnchanged\n") if $rep =~ /\bUseUnchanged\b/;
	$self->{'repo'} = $repo;
}

sub readline {
	my($self) = @_;
	return $self->{'socketi'}->getline();
}

sub _file {
	# Request a file with a given revision.
	# Trial and error says this is a good way to do it. :-/
	my($self,$fn,$rev) = @_;
	$self->{'socketo'}->write("Argument -N\n") or return undef;
	$self->{'socketo'}->write("Argument -P\n") or return undef;
275 276 277 278
	# -kk: Linus' version doesn't use it - defaults to off
	if ($opt_k) {
	    $self->{'socketo'}->write("Argument -kk\n") or return undef;
	}
279 280 281 282 283 284
	$self->{'socketo'}->write("Argument -r\n") or return undef;
	$self->{'socketo'}->write("Argument $rev\n") or return undef;
	$self->{'socketo'}->write("Argument --\n") or return undef;
	$self->{'socketo'}->write("Argument $self->{'subdir'}/$fn\n") or return undef;
	$self->{'socketo'}->write("Directory .\n") or return undef;
	$self->{'socketo'}->write("$self->{'repo'}\n") or return undef;
285
	# $self->{'socketo'}->write("Sticky T1.0\n") or return undef;
286 287 288 289 290 291 292 293
	$self->{'socketo'}->write("co\n") or return undef;
	$self->{'socketo'}->flush() or return undef;
	$self->{'lines'} = 0;
	return 1;
}
sub _line {
	# Read a line from the server.
	# ... except that 'line' may be an entire file. ;-)
294
	my($self, $fh) = @_;
295 296 297
	die "Not in lines" unless defined $self->{'lines'};

	my $line;
298
	my $res=0;
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
	while(defined($line = $self->readline())) {
		# M U gnupg-cvs-rep/AUTHORS
		# Updated gnupg-cvs-rep/
		# /daten/src/rsync/gnupg-cvs-rep/AUTHORS
		# /AUTHORS/1.1///T1.1
		# u=rw,g=rw,o=rw
		# 0
		# ok

		if($line =~ s/^(?:Created|Updated) //) {
			$line = $self->readline(); # path
			$line = $self->readline(); # Entries line
			my $mode = $self->readline(); chomp $mode;
			$self->{'mode'} = $mode;
			defined (my $cnt = $self->readline())
				or die "EOF from server after 'Changed'\n";
			chomp $cnt;
			die "Duh: Filesize $cnt" if $cnt !~ /^\d+$/;
			$line="";
318
			$res=0;
319 320 321 322
			while($cnt) {
				my $buf;
				my $num = $self->{'socketi'}->read($buf,$cnt);
				die "Server: Filesize $cnt: $num: $!\n" if not defined $num or $num<=0;
323 324
				print $fh $buf;
				$res += $num;
325 326 327
				$cnt -= $num;
			}
		} elsif($line =~ s/^ //) {
328 329
			print $fh $line;
			$res += length($line);
330 331 332 333 334 335 336 337 338 339 340 341
		} elsif($line =~ /^M\b/) {
			# output, do nothing
		} elsif($line =~ /^Mbinary\b/) {
			my $cnt;
			die "EOF from server after 'Mbinary'" unless defined ($cnt = $self->readline());
			chomp $cnt;
			die "Duh: Mbinary $cnt" if $cnt !~ /^\d+$/ or $cnt<1;
			$line="";
			while($cnt) {
				my $buf;
				my $num = $self->{'socketi'}->read($buf,$cnt);
				die "S: Mbinary $cnt: $num: $!\n" if not defined $num or $num<=0;
342 343
				print $fh $buf;
				$res += $num;
344 345 346 347 348 349 350 351 352
				$cnt -= $num;
			}
		} else {
			chomp $line;
			if($line eq "ok") {
				# print STDERR "S: ok (".length($res).")\n";
				return $res;
			} elsif($line =~ s/^E //) {
				# print STDERR "S: $line\n";
353 354 355 356 357 358
			} elsif($line =~ /^Remove-entry /i) {
				$line = $self->readline(); # filename
				$line = $self->readline(); # OK
				chomp $line;
				die "Unknown: $line" if $line ne "ok";
				return -1;
359 360 361 362 363
			} else {
				die "Unknown: $line\n";
			}
		}
	}
M
Martin Mares 已提交
364
	return undef;
365 366 367 368 369
}
sub file {
	my($self,$fn,$rev) = @_;
	my $res;

370 371 372 373 374 375
	my ($fh, $name) = tempfile('gitcvs.XXXXXX', 
		    DIR => File::Spec->tmpdir(), UNLINK => 1);

	$self->_file($fn,$rev) and $res = $self->_line($fh);

	if (!defined $res) {
M
Martin Mares 已提交
376 377
	    print STDERR "Server has gone away while fetching $fn $rev, retrying...\n";
	    truncate $fh, 0;
378
	    $self->conn();
M
Martin Mares 已提交
379
	    $self->_file($fn,$rev) or die "No file command send";
380
	    $res = $self->_line($fh);
M
Martin Mares 已提交
381
	    die "Retry failed" unless defined $res;
382
	}
383
	close ($fh);
384

385
	return ($name, $res);
386 387 388 389 390
}


package main;

M
Matthias Urlichs 已提交
391
my $cvs = CVSconn->new($opt_d, $cvs_tree);
392 393 394 395 396 397 398 399


sub pdate($) {
	my($d) = @_;
	m#(\d{2,4})/(\d\d)/(\d\d)\s(\d\d):(\d\d)(?::(\d\d))?#
		or die "Unparseable date: $d\n";
	my $y=$1; $y-=1900 if $y>1900;
	return timegm($6||0,$5,$4,$3,$2-1,$y);
400 401
}

402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
sub pmode($) {
	my($mode) = @_;
	my $m = 0;
	my $mm = 0;
	my $um = 0;
	for my $x(split(//,$mode)) {
		if($x eq ",") {
			$m |= $mm&$um;
			$mm = 0;
			$um = 0;
		} elsif($x eq "u") { $um |= 0700;
		} elsif($x eq "g") { $um |= 0070;
		} elsif($x eq "o") { $um |= 0007;
		} elsif($x eq "r") { $mm |= 0444;
		} elsif($x eq "w") { $mm |= 0222;
		} elsif($x eq "x") { $mm |= 0111;
		} elsif($x eq "=") { # do nothing
		} else { die "Unknown mode: $mode\n";
		}
	}
	$m |= $mm&$um;
	return $m;
}
425

426 427 428 429
sub getwd() {
	my $pwd = `pwd`;
	chomp $pwd;
	return $pwd;
430 431
}

432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447

sub get_headref($$) {
    my $name    = shift;
    my $git_dir = shift; 
    my $sha;
    
    if (open(C,"$git_dir/refs/heads/$name")) {
	chomp($sha = <C>);
	close(C);
	length($sha) == 40
	    or die "Cannot get head id for $name ($sha): $!\n";
    }
    return $sha;
}


448 449 450 451
-d $git_tree
	or mkdir($git_tree,0777)
	or die "Could not create $git_tree: $!";
chdir($git_tree);
452

453
my $last_branch = "";
454
my $orig_branch = "";
455 456 457 458 459
my %branch_date;

my $git_dir = $ENV{"GIT_DIR"} || ".git";
$git_dir = getwd()."/".$git_dir unless $git_dir =~ m#^/#;
$ENV{"GIT_DIR"} = $git_dir;
460 461 462 463 464 465
my $orig_git_index;
$orig_git_index = $ENV{GIT_INDEX_FILE} if exists $ENV{GIT_INDEX_FILE};
my ($git_ih, $git_index) = tempfile('gitXXXXXX', SUFFIX => '.idx',
				    DIR => File::Spec->tmpdir());
close ($git_ih);
$ENV{GIT_INDEX_FILE} = $git_index;
466 467 468 469 470 471 472
unless(-d $git_dir) {
	system("git-init-db");
	die "Cannot init the GIT db at $git_tree: $?\n" if $?;
	system("git-read-tree");
	die "Cannot init an empty tree: $?\n" if $?;

	$last_branch = $opt_o;
473
	$orig_branch = "";
474
} else {
475
	-f "$git_dir/refs/heads/$opt_o"
476 477 478 479
		or die "Branch '$opt_o' does not exist.\n".
		       "Either use the correct '-o branch' option,\n".
		       "or import to a new repository.\n";

P
Pavel Roskin 已提交
480 481 482 483 484
	open(F, "git-symbolic-ref HEAD |") or
		die "Cannot run git-symbolic-ref: $!\n";
	chomp ($last_branch = <F>);
	$last_branch = basename($last_branch);
	close(F);
485 486 487 488 489
	unless($last_branch) {
		warn "Cannot read the last branch name: $! -- assuming 'master'\n";
		$last_branch = "master";
	}
	$orig_branch = $last_branch;
490

491 492
	# populate index
	system('git-read-tree', $last_branch);
493
	die "read-tree failed: $?\n" if $?;
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516

	# Get the last import timestamps
	opendir(D,"$git_dir/refs/heads");
	while(defined(my $head = readdir(D))) {
		next if $head =~ /^\./;
		open(F,"$git_dir/refs/heads/$head")
			or die "Bad head branch: $head: $!\n";
		chomp(my $ftag = <F>);
		close(F);
		open(F,"git-cat-file commit $ftag |");
		while(<F>) {
			next unless /^author\s.*\s(\d+)\s[-+]\d{4}$/;
			$branch_date{$head} = $1;
			last;
		}
		close(F);
	}
	closedir(D);
}

-d $git_dir
	or die "Could not create git subdir ($git_dir).\n";

517 518 519 520 521 522 523 524
# now we read (and possibly save) author-info as well
-f "$git_dir/cvs-authors" and
  read_author_info("$git_dir/cvs-authors");
if ($opt_A) {
	read_author_info($opt_A);
	write_author_info("$git_dir/cvs-authors");
}

525 526 527
my $pid = open(CVS,"-|");
die "Cannot fork: $!\n" unless defined $pid;
unless($pid) {
528 529
	my @opt;
	@opt = split(/,/,$opt_p) if defined $opt_p;
530
	unshift @opt, '-z', $opt_z if defined $opt_z;
531
	unshift @opt, '-q'         unless defined $opt_v;
532
	unless (defined($opt_p) && $opt_p =~ m/--no-cvs-direct/) {
533 534
		push @opt, '--cvs-direct';
	}
535 536 537
	if ($opt_P) {
	    exec("cat", $opt_P);
	} else {
538
	    exec("cvsps","--norc",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
539 540
	    die "Could not start cvsps: $!\n";
	}
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
}


## cvsps output:
#---------------------
#PatchSet 314
#Date: 1999/09/18 13:03:59
#Author: wkoch
#Branch: STABLE-BRANCH-1-0
#Ancestor branch: HEAD
#Tag: (none)
#Log:
#    See ChangeLog: Sat Sep 18 13:03:28 CEST 1999  Werner Koch
#Members:
#	README:1.57->1.57.2.1
#	VERSION:1.96->1.96.2.1
#
#---------------------

my $state = 0;

562
my($patchset,$date,$author_name,$author_email,$branch,$ancestor,$tag,$logmsg);
563
my(@old,@new,@skipped);
564 565
my $commit = sub {
	my $pid;
566 567 568 569 570 571 572 573
	while(@old) {
		my @o2;
		if(@old > 55) {
			@o2 = splice(@old,0,50);
		} else {
			@o2 = @old;
			@old = ();
		}
J
Junio C Hamano 已提交
574
		system("git-update-index","--force-remove","--",@o2);
575 576 577 578
		die "Cannot remove files: $?\n" if $?;
	}
	while(@new) {
		my @n2;
579 580
		if(@new > 12) {
			@n2 = splice(@new,0,10);
581 582 583 584
		} else {
			@n2 = @new;
			@new = ();
		}
J
Junio C Hamano 已提交
585
		system("git-update-index","--add",
586
			(map { ('--cacheinfo', @$_) } @n2));
587 588
		die "Cannot add files: $?\n" if $?;
	}
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611

	$pid = open(C,"-|");
	die "Cannot fork: $!" unless defined $pid;
	unless($pid) {
		exec("git-write-tree");
		die "Cannot exec git-write-tree: $!\n";
	}
	chomp(my $tree = <C>);
	length($tree) == 40
		or die "Cannot get tree id ($tree): $!\n";
	close(C)
		or die "Error running git-write-tree: $?\n";
	print "Tree ID $tree\n" if $opt_v;

	my $parent = "";
	if(open(C,"$git_dir/refs/heads/$last_branch")) {
		chomp($parent = <C>);
		close(C);
		length($parent) == 40
			or die "Cannot get parent id ($parent): $!\n";
		print "Parent ID $parent\n" if $opt_v;
	}

612 613
	my $pr = IO::Pipe->new() or die "Cannot open pipe: $!\n";
	my $pw = IO::Pipe->new() or die "Cannot open pipe: $!\n";
M
Matthias Urlichs 已提交
614 615
	$pid = fork();
	die "Fork: $!\n" unless defined $pid;
616
	unless($pid) {
M
Matthias Urlichs 已提交
617 618
		$pr->writer();
		$pw->reader();
M
Matthias Urlichs 已提交
619
		open(OUT,">&STDOUT");
M
Matthias Urlichs 已提交
620 621 622 623 624
		dup2($pw->fileno(),0);
		dup2($pr->fileno(),1);
		$pr->close();
		$pw->close();

625 626
		my @par = ();
		@par = ("-p",$parent) if $parent;
627 628 629 630 631 632

		# loose detection of merges
		# based on the commit msg
		foreach my $rx (@mergerx) {
			if ($logmsg =~ $rx) {
				my $mparent = $1;
633
				if ($mparent eq 'HEAD') { $mparent = $opt_o };
634 635 636
				if ( -e "$git_dir/refs/heads/$mparent") {
					$mparent = get_headref($mparent, $git_dir);
					push @par, '-p', $mparent;
M
Matthias Urlichs 已提交
637
					print OUT "Merge parent branch: $mparent\n" if $opt_v;
638
				}
639
			}
640 641
		}

642
		exec("env",
643 644
			"GIT_AUTHOR_NAME=$author_name",
			"GIT_AUTHOR_EMAIL=$author_email",
645
			"GIT_AUTHOR_DATE=".strftime("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
646 647
			"GIT_COMMITTER_NAME=$author_name",
			"GIT_COMMITTER_EMAIL=$author_email",
648 649 650 651
			"GIT_COMMITTER_DATE=".strftime("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
			"git-commit-tree", $tree,@par);
		die "Cannot exec git-commit-tree: $!\n";
	}
M
Matthias Urlichs 已提交
652 653
	$pw->writer();
	$pr->reader();
654 655 656 657 658

	# compatibility with git2cvs
	substr($logmsg,32767) = "" if length($logmsg) > 32767;
	$logmsg =~ s/[\s\n]+\z//;

659 660 661 662 663
	if (@skipped) {
	    $logmsg .= "\n\n\nSKIPPED:\n\t";
	    $logmsg .= join("\n\t", @skipped) . "\n";
	}

664
	print $pw "$logmsg\n"
665
		or die "Error writing to git-commit-tree: $!\n";
M
Matthias Urlichs 已提交
666 667
	$pw->close();

668
	print "Committed patch $patchset ($branch ".strftime("%Y-%m-%d %H:%M:%S",gmtime($date)).")\n" if $opt_v;
M
Matthias Urlichs 已提交
669
	chomp(my $cid = <$pr>);
670 671 672
	length($cid) == 40
		or die "Cannot get commit id ($cid): $!\n";
	print "Commit ID $cid\n" if $opt_v;
M
Matthias Urlichs 已提交
673 674 675 676
	$pr->close();

	waitpid($pid,0);
	die "Error running git-commit-tree: $?\n" if $?;
677 678 679 680 681 682 683 684 685

	open(C,">$git_dir/refs/heads/$branch")
		or die "Cannot open branch $branch for update: $!\n";
	print C "$cid\n"
		or die "Cannot write branch $branch for update: $!\n";
	close(C)
		or die "Cannot write branch $branch for update: $!\n";

	if($tag) {
686 687 688 689
		my($in, $out) = ('','');
	        my($xtag) = $tag;
		$xtag =~ s/\s+\*\*.*$//; # Remove stuff like ** INVALID ** and ** FUNKY **
		$xtag =~ tr/_/\./ if ( $opt_u );
690
		$xtag =~ s/[\/]/$opt_s/g;
691 692 693 694 695
		
		my $pid = open2($in, $out, 'git-mktag');
		print $out "object $cid\n".
		    "type commit\n".
		    "tag $xtag\n".
696
		    "tagger $author_name <$author_email>\n"
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
		    or die "Cannot create tag object $xtag: $!\n";
		close($out)
		    or die "Cannot create tag object $xtag: $!\n";

		my $tagobj = <$in>;
		chomp $tagobj;

		if ( !close($in) or waitpid($pid, 0) != $pid or
		     $? != 0 or $tagobj !~ /^[0123456789abcdef]{40}$/ ) {
		    die "Cannot create tag object $xtag: $!\n";
	        }
		

		open(C,">$git_dir/refs/tags/$xtag")
			or die "Cannot create tag $xtag: $!\n";
		print C "$tagobj\n"
			or die "Cannot write tag $xtag: $!\n";
714
		close(C)
715 716 717
			or die "Cannot write tag $xtag: $!\n";

		print "Created tag '$xtag' on '$branch'\n" if $opt_v;
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
	}
};

while(<CVS>) {
	chomp;
	if($state == 0 and /^-+$/) {
		$state = 1;
	} elsif($state == 0) {
		$state = 1;
		redo;
	} elsif(($state==0 or $state==1) and s/^PatchSet\s+//) {
		$patchset = 0+$_;
		$state=2;
	} elsif($state == 2 and s/^Date:\s+//) {
		$date = pdate($_);
		unless($date) {
			print STDERR "Could not parse date: $_\n";
			$state=0;
			next;
		}
		$state=3;
	} elsif($state == 3 and s/^Author:\s+//) {
		s/\s+$//;
741 742
		if (/^(.*?)\s+<(.*)>/) {
		    ($author_name, $author_email) = ($1, $2);
743 744 745
		} elsif ($conv_author_name{$_}) {
			$author_name = $conv_author_name{$_};
			$author_email = $conv_author_email{$_};
746 747 748
		} else {
		    $author_name = $author_email = $_;
		}
749 750 751
		$state = 4;
	} elsif($state == 4 and s/^Branch:\s+//) {
		s/\s+$//;
752
		s/[\/]/$opt_s/g;
753 754 755 756 757
		$branch = $_;
		$state = 5;
	} elsif($state == 5 and s/^Ancestor branch:\s+//) {
		s/\s+$//;
		$ancestor = $_;
758
		$ancestor = $opt_o if $ancestor eq "HEAD";
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
		$state = 6;
	} elsif($state == 5) {
		$ancestor = undef;
		$state = 6;
		redo;
	} elsif($state == 6 and s/^Tag:\s+//) {
		s/\s+$//;
		if($_ eq "(none)") {
			$tag = undef;
		} else {
			$tag = $_;
		}
		$state = 7;
	} elsif($state == 7 and /^Log:/) {
		$logmsg = "";
		$state = 8;
	} elsif($state == 8 and /^Members:/) {
		$branch = $opt_o if $branch eq "HEAD";
		if(defined $branch_date{$branch} and $branch_date{$branch} >= $date) {
			# skip
779
			print "skip patchset $patchset: $date before $branch_date{$branch}\n" if $opt_v;
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
			$state = 11;
			next;
		}
		if($ancestor) {
			if(-f "$git_dir/refs/heads/$branch") {
				print STDERR "Branch $branch already exists!\n";
				$state=11;
				next;
			}
			unless(open(H,"$git_dir/refs/heads/$ancestor")) {
				print STDERR "Branch $ancestor does not exist!\n";
				$state=11;
				next;
			}
			chomp(my $id = <H>);
			close(H);
			unless(open(H,"> $git_dir/refs/heads/$branch")) {
				print STDERR "Could not create branch $branch: $!\n";
				$state=11;
				next;
			}
			print H "$id\n"
				or die "Could not write branch $branch: $!";
			close(H)
				or die "Could not write branch $branch: $!";
		}
		if(($ancestor || $branch) ne $last_branch) {
M
Matthias Urlichs 已提交
807
			print "Switching from $last_branch to $branch\n" if $opt_v;
808
			system("git-read-tree", $branch);
809
			die "read-tree failed: $?\n" if $?;
810
		}
811
		$last_branch = $branch if $branch ne $last_branch;
812 813 814
		$state = 9;
	} elsif($state == 8) {
		$logmsg .= "$_\n";
815
	} elsif($state == 9 and /^\s+(.+?):(INITIAL|\d+(?:\.\d+)+)->(\d+(?:\.\d+)+)\s*$/) {
816
#	VERSION:1.96->1.96.2.1
M
Matthias Urlichs 已提交
817
		my $init = ($2 eq "INITIAL");
818
		my $fn = $1;
M
Matthias Urlichs 已提交
819 820
		my $rev = $3;
		$fn =~ s#^/+##;
821 822 823 824 825 826
		if ($opt_S && $fn =~ m/$opt_S/) {
		    print "SKIPPING $fn v $rev\n";
		    push(@skipped, $fn);
		    next;
		}
		print "Fetching $fn   v $rev\n" if $opt_v;
827
		my ($tmpname, $size) = $cvs->file($fn,$rev);
828 829 830 831 832
		if($size == -1) {
			push(@old,$fn);
			print "Drop $fn\n" if $opt_v;
		} else {
			print "".($init ? "New" : "Update")." $fn: $size bytes\n" if $opt_v;
833 834 835 836
			my $pid = open(my $F, '-|');
			die $! unless defined $pid;
			if (!$pid) {
			    exec("git-hash-object", "-w", $tmpname)
837
				or die "Cannot create object: $!\n";
838
			}
839 840 841 842 843 844
			my $sha = <$F>;
			chomp $sha;
			close $F;
			my $mode = pmode($cvs->{'mode'});
			push(@new,[$mode, $sha, $fn]); # may be resurrected!
		}
845
		unlink($tmpname);
846
	} elsif($state == 9 and /^\s+(.+?):\d+(?:\.\d+)+->(\d+(?:\.\d+)+)\(DEAD\)\s*$/) {
M
Matthias Urlichs 已提交
847 848 849
		my $fn = $1;
		$fn =~ s#^/+##;
		push(@old,$fn);
850
		print "Delete $fn\n" if $opt_v;
851 852 853 854 855 856 857 858 859 860 861 862 863 864
	} elsif($state == 9 and /^\s*$/) {
		$state = 10;
	} elsif(($state == 9 or $state == 10) and /^-+$/) {
		&$commit();
		$state = 1;
	} elsif($state == 11 and /^-+$/) {
		$state = 1;
	} elsif(/^-+$/) { # end of unknown-line processing
		$state = 1;
	} elsif($state != 11) { # ignore stuff when skipping
		print "* UNKNOWN LINE * $_\n";
	}
}
&$commit() if $branch and $state != 11;
865

866 867
unlink($git_index);

868 869 870 871 872 873
if (defined $orig_git_index) {
	$ENV{GIT_INDEX_FILE} = $orig_git_index;
} else {
	delete $ENV{GIT_INDEX_FILE};
}

874 875
# Now switch back to the branch we were in before all of this happened
if($orig_branch) {
876
	print "DONE; you may need to merge manually.\n" if $opt_v;
877 878 879
} else {
	$orig_branch = "master";
	print "DONE; creating $orig_branch branch\n" if $opt_v;
880
	system("git-update-ref", "refs/heads/master", "refs/heads/$opt_o")
881
		unless -f "$git_dir/refs/heads/master";
P
Pavel Roskin 已提交
882
	system('git-update-ref', 'HEAD', "$orig_branch");
883 884 885 886
	unless ($opt_i) {
		system('git checkout');
		die "checkout failed: $?\n" if $?;
	}
887
}