git-cvsimport.perl 25.6 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
use File::Spec;
20
use File::Temp qw(tempfile tmpnam);
21 22 23
use File::Path qw(mkpath);
use File::Basename qw(basename dirname);
use Time::Local;
M
Matthias Urlichs 已提交
24 25
use IO::Socket;
use IO::Pipe;
J
Jeff King 已提交
26
use POSIX qw(strftime dup2 ENOENT);
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,$opt_L, $opt_a);
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] [-a] [-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:L:") or usage();
89 90
usage if $opt_h;

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

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

110
my $git_tree = $opt_C;
M
Matthias Urlichs 已提交
111 112
$git_tree ||= ".";

113 114 115 116 117 118 119 120
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;
121
	close $f;
122 123 124 125
} else {
	usage();
}

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

134 135 136 137 138
# Remember UTC of our starting time
# we'll want to avoid importing commits
# that are too recent
our $starttime = time();

139 140 141 142 143
select(STDERR); $|=1; select(STDOUT);


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

146 147
use File::Spec;
use File::Temp qw(tempfile);
M
Matthias Urlichs 已提交
148 149
use POSIX qw(strftime dup2);

150
sub new {
J
Junio C Hamano 已提交
151
	my ($what,$repo,$subdir) = @_;
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
	$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'};
J
Junio C Hamano 已提交
171 172
	if ($repo =~ s/^:pserver(?:([^:]*)):(?:(.*?)(?::(.*?))?@)?([^:\/]*)(?::(\d*))?//) {
		my ($param,$user,$pass,$serv,$port) = ($1,$2,$3,$4,$5);
173

J
Junio C Hamano 已提交
174 175
		my ($proxyhost,$proxyport);
		if ($param && ($param =~ m/proxy=([^;]+)/)) {
176 177 178
			$proxyhost = $1;
			# Default proxyport, if not specified, is 8080.
			$proxyport = 8080;
J
Junio C Hamano 已提交
179
			if ($ENV{"CVS_PROXY_PORT"}) {
180 181
				$proxyport = $ENV{"CVS_PROXY_PORT"};
			}
J
Junio C Hamano 已提交
182
			if ($param =~ m/proxyport=([^;]+)/) {
183 184 185 186
				$proxyport = $1;
			}
		}

187
		$user="anonymous" unless defined $user;
M
Matthias Urlichs 已提交
188
		my $rr2 = "-";
J
Junio C Hamano 已提交
189
		unless ($port) {
190 191 192 193 194
			$rr2 = ":pserver:$user\@$serv:$repo";
			$port=2401;
		}
		my $rr = ":pserver:$user\@$serv:$port$repo";

J
Junio C Hamano 已提交
195
		unless ($pass) {
196 197
			open(H,$ENV{'HOME'}."/.cvspass") and do {
				# :pserver:cvs@mea.tmt.tele.fi:/cvsroot/zmailer Ah<Z
J
Junio C Hamano 已提交
198
				while (<H>) {
199 200 201
					chomp;
					s/^\/\d+\s+//;
					my ($w,$p) = split(/\s/,$_,2);
J
Junio C Hamano 已提交
202
					if ($w eq $rr or $w eq $rr2) {
203 204 205 206 207 208 209 210
						$pass = $p;
						last;
					}
				}
			};
		}
		$pass="A" unless $pass;

211
		my ($s, $rep);
J
Junio C Hamano 已提交
212
		if ($proxyhost) {
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227

			# Use a HTTP Proxy. Only works for HTTP proxies that
			# don't require user authentication
			#
			# See: http://www.ietf.org/rfc/rfc2817.txt

			$s = IO::Socket::INET->new(PeerHost => $proxyhost, PeerPort => $proxyport);
			die "Socket to $proxyhost: $!\n" unless defined $s;
			$s->write("CONNECT $serv:$port HTTP/1.1\r\nHost: $serv:$port\r\n\r\n")
	                        or die "Write to $proxyhost: $!\n";
	                $s->flush();

			$rep = <$s>;

			# The answer should look like 'HTTP/1.x 2yy ....'
J
Junio C Hamano 已提交
228
			if (!($rep =~ m#^HTTP/1\.. 2[0-9][0-9]#)) {
229 230 231 232 233 234 235 236 237 238 239 240 241 242
				die "Proxy connect: $rep\n";
			}
			# Skip up to the empty line of the proxy server output
			# including the response headers.
			while ($rep = <$s>) {
				last if (!defined $rep ||
					 $rep eq "\n" ||
					 $rep eq "\r\n");
			}
		} else {
			$s = IO::Socket::INET->new(PeerHost => $serv, PeerPort => $port);
			die "Socket to $serv: $!\n" unless defined $s;
		}

243 244 245 246
		$s->write("BEGIN AUTH REQUEST\n$repo\n$user\n$pass\nEND AUTH REQUEST\n")
			or die "Write to $serv: $!\n";
		$s->flush();

247
		$rep = <$s>;
248

J
Junio C Hamano 已提交
249
		if ($rep ne "I LOVE YOU\n") {
250 251 252 253 254
			$rep="<unknown>" unless $rep;
			die "AuthReply: $rep\n";
		}
		$self->{'socketo'} = $s;
		$self->{'socketi'} = $s;
S
Sven Verdoolaege 已提交
255
	} else { # local or ext: Fork off our own cvs server.
256 257 258 259
		my $pr = IO::Pipe->new();
		my $pw = IO::Pipe->new();
		my $pid = fork();
		die "Fork: $!\n" unless defined $pid;
S
Sven Verdoolaege 已提交
260 261
		my $cvs = 'cvs';
		$cvs = $ENV{CVS_SERVER} if exists $ENV{CVS_SERVER};
S
Sven Verdoolaege 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
		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;
		    }
		}

J
Junio C Hamano 已提交
281
		unless ($pid) {
282 283 284 285 286 287
			$pr->writer();
			$pw->reader();
			dup2($pw->fileno(),0);
			dup2($pr->fileno(),1);
			$pr->close();
			$pw->close();
S
Sven Verdoolaege 已提交
288
			exec(@cvs);
289 290 291 292 293 294 295 296 297
		}
		$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
298
	$self->{'socketo'}->write("Valid-responses ok error Valid-requests Mode M Mbinary E Checked-in Created Updated Merged Removed\n");
299 300 301 302 303

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

	chomp(my $rep=$self->readline());
J
Junio C Hamano 已提交
304
	if ($rep !~ s/^Valid-requests\s*//) {
305 306 307 308 309 310 311 312 313 314 315
		$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 {
J
Junio C Hamano 已提交
316
	my ($self) = @_;
317 318 319 320 321 322
	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. :-/
J
Junio C Hamano 已提交
323
	my ($self,$fn,$rev) = @_;
324 325
	$self->{'socketo'}->write("Argument -N\n") or return undef;
	$self->{'socketo'}->write("Argument -P\n") or return undef;
326 327 328 329
	# -kk: Linus' version doesn't use it - defaults to off
	if ($opt_k) {
	    $self->{'socketo'}->write("Argument -kk\n") or return undef;
	}
330 331 332 333 334 335
	$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;
336
	# $self->{'socketo'}->write("Sticky T1.0\n") or return undef;
337 338 339 340 341 342 343 344
	$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. ;-)
J
Junio C Hamano 已提交
345
	my ($self, $fh) = @_;
346 347 348
	die "Not in lines" unless defined $self->{'lines'};

	my $line;
349
	my $res=0;
J
Junio C Hamano 已提交
350
	while (defined($line = $self->readline())) {
351 352 353 354 355 356 357 358
		# 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

J
Junio C Hamano 已提交
359
		if ($line =~ s/^(?:Created|Updated) //) {
360 361 362 363 364 365 366 367 368
			$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="";
369
			$res = $self->_fetchfile($fh, $cnt);
J
Junio C Hamano 已提交
370
		} elsif ($line =~ s/^ //) {
371 372
			print $fh $line;
			$res += length($line);
J
Junio C Hamano 已提交
373
		} elsif ($line =~ /^M\b/) {
374
			# output, do nothing
J
Junio C Hamano 已提交
375
		} elsif ($line =~ /^Mbinary\b/) {
376 377 378 379 380
			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="";
381
			$res += $self->_fetchfile($fh, $cnt);
382 383
		} else {
			chomp $line;
J
Junio C Hamano 已提交
384
			if ($line eq "ok") {
385 386
				# print STDERR "S: ok (".length($res).")\n";
				return $res;
J
Junio C Hamano 已提交
387
			} elsif ($line =~ s/^E //) {
388
				# print STDERR "S: $line\n";
J
Junio C Hamano 已提交
389
			} elsif ($line =~ /^(Remove-entry|Removed) /i) {
390 391 392 393 394
				$line = $self->readline(); # filename
				$line = $self->readline(); # OK
				chomp $line;
				die "Unknown: $line" if $line ne "ok";
				return -1;
395 396 397 398 399
			} else {
				die "Unknown: $line\n";
			}
		}
	}
M
Martin Mares 已提交
400
	return undef;
401 402
}
sub file {
J
Junio C Hamano 已提交
403
	my ($self,$fn,$rev) = @_;
404 405
	my $res;

406 407 408 409 410 411
	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 已提交
412 413
	    print STDERR "Server has gone away while fetching $fn $rev, retrying...\n";
	    truncate $fh, 0;
414
	    $self->conn();
M
Martin Mares 已提交
415
	    $self->_file($fn,$rev) or die "No file command send";
416
	    $res = $self->_line($fh);
M
Martin Mares 已提交
417
	    die "Retry failed" unless defined $res;
418
	}
419
	close ($fh);
420

421
	return ($name, $res);
422
}
423 424
sub _fetchfile {
	my ($self, $fh, $cnt) = @_;
425
	my $res = 0;
426
	my $bufsize = 1024 * 1024;
J
Junio C Hamano 已提交
427
	while ($cnt) {
428 429 430 431 432 433 434 435 436 437 438 439
	    if ($bufsize > $cnt) {
		$bufsize = $cnt;
	    }
	    my $buf;
	    my $num = $self->{'socketi'}->read($buf,$bufsize);
	    die "Server: Filesize $cnt: $num: $!\n" if not defined $num or $num<=0;
	    print $fh $buf;
	    $res += $num;
	    $cnt -= $num;
	}
	return $res;
}
440 441 442 443


package main;

M
Matthias Urlichs 已提交
444
my $cvs = CVSconn->new($opt_d, $cvs_tree);
445 446 447


sub pdate($) {
J
Junio C Hamano 已提交
448
	my ($d) = @_;
449 450 451 452
	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);
453 454
}

455
sub pmode($) {
J
Junio C Hamano 已提交
456
	my ($mode) = @_;
457 458 459 460
	my $m = 0;
	my $mm = 0;
	my $um = 0;
	for my $x(split(//,$mode)) {
J
Junio C Hamano 已提交
461
		if ($x eq ",") {
462 463 464
			$m |= $mm&$um;
			$mm = 0;
			$um = 0;
J
Junio C Hamano 已提交
465 466 467 468 469 470 471
		} 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
472 473 474 475 476 477
		} else { die "Unknown mode: $mode\n";
		}
	}
	$m |= $mm&$um;
	return $m;
}
478

479 480 481 482
sub getwd() {
	my $pwd = `pwd`;
	chomp $pwd;
	return $pwd;
483 484
}

J
Jeff King 已提交
485 486 487 488
sub is_sha1 {
	my $s = shift;
	return $s =~ /^[a-f0-9]{40}$/;
}
489

J
Jeff King 已提交
490
sub get_headref ($$) {
491 492 493
    my $name    = shift;
    my $git_dir = shift; 
    
J
Jeff King 已提交
494
    my $f = "$git_dir/refs/heads/$name";
J
Junio C Hamano 已提交
495
    if (open(my $fh, $f)) {
J
Jeff King 已提交
496 497 498
	    chomp(my $r = <$fh>);
	    is_sha1($r) or die "Cannot get head id for $name ($r): $!";
	    return $r;
499
    }
J
Jeff King 已提交
500 501
    die "unable to open $f: $!" unless $! == POSIX::ENOENT;
    return undef;
502 503
}

504 505 506 507
-d $git_tree
	or mkdir($git_tree,0777)
	or die "Could not create $git_tree: $!";
chdir($git_tree);
508

509
my $last_branch = "";
510
my $orig_branch = "";
511
my %branch_date;
512
my $tip_at_start = undef;
513 514 515 516

my $git_dir = $ENV{"GIT_DIR"} || ".git";
$git_dir = getwd()."/".$git_dir unless $git_dir =~ m#^/#;
$ENV{"GIT_DIR"} = $git_dir;
517 518
my $orig_git_index;
$orig_git_index = $ENV{GIT_INDEX_FILE} if exists $ENV{GIT_INDEX_FILE};
519 520

my %index; # holds filenames of one index per branch
521

J
Junio C Hamano 已提交
522
unless (-d $git_dir) {
523 524 525 526 527 528
	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;
529
	$orig_branch = "";
530
} else {
531
	-f "$git_dir/refs/heads/$opt_o"
532 533 534 535
		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 已提交
536 537 538 539 540
	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);
J
Junio C Hamano 已提交
541
	unless ($last_branch) {
542 543 544 545
		warn "Cannot read the last branch name: $! -- assuming 'master'\n";
		$last_branch = "master";
	}
	$orig_branch = $last_branch;
546
	$tip_at_start = `git-rev-parse --verify HEAD`;
547 548

	# Get the last import timestamps
549 550 551
	my $fmt = '($ref, $author) = (%(refname), %(author));';
	open(H, "git-for-each-ref --perl --format='$fmt' refs/heads |") or
		die "Cannot run git-for-each-ref: $!\n";
J
Junio C Hamano 已提交
552
	while (defined(my $entry = <H>)) {
553 554 555 556 557
		my ($ref, $author);
		eval($entry) || die "cannot eval refs list: $@";
		my ($head) = ($ref =~ m|^refs/heads/(.*)|);
		$author =~ /^.*\s(\d+)\s[-+]\d{4}$/;
		$branch_date{$head} = $1;
558
	}
559
	close(H);
560 561 562 563 564
}

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

565 566 567 568 569 570 571 572
# 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");
}

573 574 575 576 577

#
# run cvsps into a file unless we are getting
# it passed as a file via $opt_P
#
578
my $cvspsfile;
579 580 581
unless ($opt_P) {
	print "Running cvsps...\n" if $opt_v;
	my $pid = open(CVSPS,"-|");
582
	my $cvspsfh;
583
	die "Cannot fork: $!\n" unless defined $pid;
J
Junio C Hamano 已提交
584
	unless ($pid) {
585 586 587 588 589 590 591 592 593
		my @opt;
		@opt = split(/,/,$opt_p) if defined $opt_p;
		unshift @opt, '-z', $opt_z if defined $opt_z;
		unshift @opt, '-q'         unless defined $opt_v;
		unless (defined($opt_p) && $opt_p =~ m/--no-cvs-direct/) {
			push @opt, '--cvs-direct';
		}
		exec("cvsps","--norc",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
		die "Could not start cvsps: $!\n";
594
	}
595 596
	($cvspsfh, $cvspsfile) = tempfile('gitXXXXXX', SUFFIX => '.cvsps',
					  DIR => File::Spec->tmpdir());
597 598
	while (<CVSPS>) {
	    print $cvspsfh $_;
599
	}
600 601
	close CVSPS;
	close $cvspsfh;
602 603
} else {
	$cvspsfile = $opt_P;
604 605
}

606
open(CVS, "<$cvspsfile") or die $!;
607

608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
## 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;

J
Jeff King 已提交
626 627 628
sub update_index (\@\@) {
	my $old = shift;
	my $new = shift;
629 630 631 632
	open(my $fh, '|-', qw(git-update-index -z --index-info))
		or die "unable to open git-update-index: $!";
	print $fh
		(map { "0 0000000000000000000000000000000000000000\t$_\0" }
J
Jeff King 已提交
633
			@$old),
634
		(map { '100' . sprintf('%o', $_->[0]) . " $_->[1]\t$_->[2]\0" }
J
Jeff King 已提交
635
			@$new)
636 637 638 639
		or die "unable to write to git-update-index: $!";
	close $fh
		or die "unable to write to git-update-index: $!";
	$? and die "git-update-index reported error: $?";
J
Jeff King 已提交
640
}
641

J
Jeff King 已提交
642 643 644 645 646 647 648
sub write_tree () {
	open(my $fh, '-|', qw(git-write-tree))
		or die "unable to open git-write-tree: $!";
	chomp(my $tree = <$fh>);
	is_sha1($tree)
		or die "Cannot get tree id ($tree): $!";
	close($fh)
649 650
		or die "Error running git-write-tree: $?\n";
	print "Tree ID $tree\n" if $opt_v;
J
Jeff King 已提交
651 652
	return $tree;
}
653

J
Junio C Hamano 已提交
654 655
my ($patchset,$date,$author_name,$author_email,$branch,$ancestor,$tag,$logmsg);
my (@old,@new,@skipped,%ignorebranch);
656 657 658 659

# commits that cvsps cannot place anywhere...
$ignorebranch{'#CVSPS_NO_BRANCH'} = 1;

J
Jeff King 已提交
660
sub commit {
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
	if ($branch eq $opt_o && !$index{branch} && !get_headref($branch, $git_dir)) {
	    # looks like an initial commit
	    # use the index primed by git-init-db
	    $ENV{GIT_INDEX_FILE} = '.git/index';
	    $index{$branch} = '.git/index';
	} else {
	    # use an index per branch to speed up
	    # imports of projects with many branches
	    unless ($index{$branch}) {
		$index{$branch} = tmpnam();
		$ENV{GIT_INDEX_FILE} = $index{$branch};
		if ($ancestor) {
		    system("git-read-tree", $ancestor);
		} else {
		    system("git-read-tree", $branch);
		}
		die "read-tree failed: $?\n" if $?;
	    }
	}
        $ENV{GIT_INDEX_FILE} = $index{$branch};

J
Jeff King 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694 695
	update_index(@old, @new);
	@old = @new = ();
	my $tree = write_tree();
	my $parent = get_headref($last_branch, $git_dir);
	print "Parent ID " . ($parent ? $parent : "(empty)") . "\n" if $opt_v;

	my @commit_args;
	push @commit_args, ("-p", $parent) if $parent;

	# loose detection of merges
	# based on the commit msg
	foreach my $rx (@mergerx) {
		next unless $logmsg =~ $rx && $1;
		my $mparent = $1 eq 'HEAD' ? $opt_o : $1;
J
Junio C Hamano 已提交
696
		if (my $sha1 = get_headref($mparent, $git_dir)) {
J
Jeff King 已提交
697 698
			push @commit_args, '-p', $mparent;
			print "Merge parent branch: $mparent\n" if $opt_v;
699
		}
700
	}
J
Jeff King 已提交
701 702

	my $commit_date = strftime("+0000 %Y-%m-%d %H:%M:%S",gmtime($date));
703 704 705 706 707 708
	$ENV{GIT_AUTHOR_NAME} = $author_name;
	$ENV{GIT_AUTHOR_EMAIL} = $author_email;
	$ENV{GIT_AUTHOR_DATE} = $commit_date;
	$ENV{GIT_COMMITTER_NAME} = $author_name;
	$ENV{GIT_COMMITTER_EMAIL} = $author_email;
	$ENV{GIT_COMMITTER_DATE} = $commit_date;
J
Jeff King 已提交
709 710
	my $pid = open2(my $commit_read, my $commit_write,
		'git-commit-tree', $tree, @commit_args);
711 712 713 714 715

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

716 717 718
	if (@skipped) {
	    $logmsg .= "\n\n\nSKIPPED:\n\t";
	    $logmsg .= join("\n\t", @skipped) . "\n";
M
Martin Langhoff 已提交
719
	    @skipped = ();
720 721
	}

J
Jeff King 已提交
722
	print($commit_write "$logmsg\n") && close($commit_write)
723
		or die "Error writing to git-commit-tree: $!\n";
M
Matthias Urlichs 已提交
724

J
Jeff King 已提交
725 726 727
	print "Committed patch $patchset ($branch $commit_date)\n" if $opt_v;
	chomp(my $cid = <$commit_read>);
	is_sha1($cid) or die "Cannot get commit id ($cid): $!\n";
728
	print "Commit ID $cid\n" if $opt_v;
J
Jeff King 已提交
729
	close($commit_read);
M
Matthias Urlichs 已提交
730 731 732

	waitpid($pid,0);
	die "Error running git-commit-tree: $?\n" if $?;
733

734
	system("git-update-ref refs/heads/$branch $cid") == 0
735 736
		or die "Cannot write branch $branch for update: $!\n";

J
Junio C Hamano 已提交
737 738 739
	if ($tag) {
		my ($in, $out) = ('','');
	        my ($xtag) = $tag;
740 741
		$xtag =~ s/\s+\*\*.*$//; # Remove stuff like ** INVALID ** and ** FUNKY **
		$xtag =~ tr/_/\./ if ( $opt_u );
742
		$xtag =~ s/[\/]/$opt_s/g;
743 744 745 746 747
		
		my $pid = open2($in, $out, 'git-mktag');
		print $out "object $cid\n".
		    "type commit\n".
		    "tag $xtag\n".
748
		    "tagger $author_name <$author_email>\n"
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
		    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";
766
		close(C)
767 768 769
			or die "Cannot write tag $xtag: $!\n";

		print "Created tag '$xtag' on '$branch'\n" if $opt_v;
770 771 772
	}
};

773
my $commitcount = 1;
J
Junio C Hamano 已提交
774
while (<CVS>) {
775
	chomp;
J
Junio C Hamano 已提交
776
	if ($state == 0 and /^-+$/) {
777
		$state = 1;
J
Junio C Hamano 已提交
778
	} elsif ($state == 0) {
779 780
		$state = 1;
		redo;
J
Junio C Hamano 已提交
781
	} elsif (($state==0 or $state==1) and s/^PatchSet\s+//) {
782 783
		$patchset = 0+$_;
		$state=2;
J
Junio C Hamano 已提交
784
	} elsif ($state == 2 and s/^Date:\s+//) {
785
		$date = pdate($_);
J
Junio C Hamano 已提交
786
		unless ($date) {
787 788 789 790 791
			print STDERR "Could not parse date: $_\n";
			$state=0;
			next;
		}
		$state=3;
J
Junio C Hamano 已提交
792
	} elsif ($state == 3 and s/^Author:\s+//) {
793
		s/\s+$//;
794 795
		if (/^(.*?)\s+<(.*)>/) {
		    ($author_name, $author_email) = ($1, $2);
796 797 798
		} elsif ($conv_author_name{$_}) {
			$author_name = $conv_author_name{$_};
			$author_email = $conv_author_email{$_};
799 800 801
		} else {
		    $author_name = $author_email = $_;
		}
802
		$state = 4;
J
Junio C Hamano 已提交
803
	} elsif ($state == 4 and s/^Branch:\s+//) {
804
		s/\s+$//;
805
		s/[\/]/$opt_s/g;
806 807
		$branch = $_;
		$state = 5;
J
Junio C Hamano 已提交
808
	} elsif ($state == 5 and s/^Ancestor branch:\s+//) {
809 810
		s/\s+$//;
		$ancestor = $_;
811
		$ancestor = $opt_o if $ancestor eq "HEAD";
812
		$state = 6;
J
Junio C Hamano 已提交
813
	} elsif ($state == 5) {
814 815 816
		$ancestor = undef;
		$state = 6;
		redo;
J
Junio C Hamano 已提交
817
	} elsif ($state == 6 and s/^Tag:\s+//) {
818
		s/\s+$//;
J
Junio C Hamano 已提交
819
		if ($_ eq "(none)") {
820 821 822 823 824
			$tag = undef;
		} else {
			$tag = $_;
		}
		$state = 7;
J
Junio C Hamano 已提交
825
	} elsif ($state == 7 and /^Log:/) {
826 827
		$logmsg = "";
		$state = 8;
J
Junio C Hamano 已提交
828
	} elsif ($state == 8 and /^Members:/) {
829
		$branch = $opt_o if $branch eq "HEAD";
J
Junio C Hamano 已提交
830
		if (defined $branch_date{$branch} and $branch_date{$branch} >= $date) {
831
			# skip
832
			print "skip patchset $patchset: $date before $branch_date{$branch}\n" if $opt_v;
833 834 835
			$state = 11;
			next;
		}
836
		if (!$opt_a && $starttime - 300 - (defined $opt_z ? $opt_z : 300) <= $date) {
837 838 839 840 841 842 843 844
			# skip if the commit is too recent
			# that the cvsps default fuzz is 300s, we give ourselves another
			# 300s just in case -- this also prevents skipping commits
			# due to server clock drift
			print "skip patchset $patchset: $date too recent\n" if $opt_v;
			$state = 11;
			next;
		}
845 846 847 848 849
		if (exists $ignorebranch{$branch}) {
			print STDERR "Skipping $branch\n";
			$state = 11;
			next;
		}
J
Junio C Hamano 已提交
850 851
		if ($ancestor) {
			if ($ancestor eq $branch) {
852 853 854
				print STDERR "Branch $branch erroneously stems from itself -- changed ancestor to $opt_o\n";
				$ancestor = $opt_o;
			}
J
Junio C Hamano 已提交
855
			if (-f "$git_dir/refs/heads/$branch") {
856 857 858 859
				print STDERR "Branch $branch already exists!\n";
				$state=11;
				next;
			}
J
Junio C Hamano 已提交
860
			unless (open(H,"$git_dir/refs/heads/$ancestor")) {
861
				print STDERR "Branch $ancestor does not exist!\n";
862
				$ignorebranch{$branch} = 1;
863 864 865 866 867
				$state=11;
				next;
			}
			chomp(my $id = <H>);
			close(H);
J
Junio C Hamano 已提交
868
			unless (open(H,"> $git_dir/refs/heads/$branch")) {
869
				print STDERR "Could not create branch $branch: $!\n";
870
				$ignorebranch{$branch} = 1;
871 872 873 874 875 876 877 878
				$state=11;
				next;
			}
			print H "$id\n"
				or die "Could not write branch $branch: $!";
			close(H)
				or die "Could not write branch $branch: $!";
		}
879
		$last_branch = $branch if $branch ne $last_branch;
880
		$state = 9;
J
Junio C Hamano 已提交
881
	} elsif ($state == 8) {
882
		$logmsg .= "$_\n";
J
Junio C Hamano 已提交
883
	} elsif ($state == 9 and /^\s+(.+?):(INITIAL|\d+(?:\.\d+)+)->(\d+(?:\.\d+)+)\s*$/) {
884
#	VERSION:1.96->1.96.2.1
M
Matthias Urlichs 已提交
885
		my $init = ($2 eq "INITIAL");
886
		my $fn = $1;
M
Matthias Urlichs 已提交
887 888
		my $rev = $3;
		$fn =~ s#^/+##;
889 890 891 892 893 894
		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;
895
		my ($tmpname, $size) = $cvs->file($fn,$rev);
J
Junio C Hamano 已提交
896
		if ($size == -1) {
897 898 899 900
			push(@old,$fn);
			print "Drop $fn\n" if $opt_v;
		} else {
			print "".($init ? "New" : "Update")." $fn: $size bytes\n" if $opt_v;
901 902 903 904
			my $pid = open(my $F, '-|');
			die $! unless defined $pid;
			if (!$pid) {
			    exec("git-hash-object", "-w", $tmpname)
905
				or die "Cannot create object: $!\n";
906
			}
907 908 909 910 911 912
			my $sha = <$F>;
			chomp $sha;
			close $F;
			my $mode = pmode($cvs->{'mode'});
			push(@new,[$mode, $sha, $fn]); # may be resurrected!
		}
913
		unlink($tmpname);
J
Junio C Hamano 已提交
914
	} elsif ($state == 9 and /^\s+(.+?):\d+(?:\.\d+)+->(\d+(?:\.\d+)+)\(DEAD\)\s*$/) {
M
Matthias Urlichs 已提交
915 916 917
		my $fn = $1;
		$fn =~ s#^/+##;
		push(@old,$fn);
918
		print "Delete $fn\n" if $opt_v;
J
Junio C Hamano 已提交
919
	} elsif ($state == 9 and /^\s*$/) {
920
		$state = 10;
J
Junio C Hamano 已提交
921
	} elsif (($state == 9 or $state == 10) and /^-+$/) {
922 923
		$commitcount++;
		if ($opt_L && $commitcount > $opt_L) {
924 925
			last;
		}
926
		commit();
927 928 929
		if (($commitcount & 1023) == 0) {
			system("git repack -a -d");
		}
930
		$state = 1;
J
Junio C Hamano 已提交
931
	} elsif ($state == 11 and /^-+$/) {
932
		$state = 1;
J
Junio C Hamano 已提交
933
	} elsif (/^-+$/) { # end of unknown-line processing
934
		$state = 1;
J
Junio C Hamano 已提交
935
	} elsif ($state != 11) { # ignore stuff when skipping
936 937 938
		print "* UNKNOWN LINE * $_\n";
	}
}
939
commit() if $branch and $state != 11;
940

941 942 943 944
unless ($opt_P) {
	unlink($cvspsfile);
}

945 946 947 948 949 950 951 952 953 954
# The heuristic of repacking every 1024 commits can leave a
# lot of unpacked data.  If there is more than 1MB worth of
# not-packed objects, repack once more.
my $line = `git-count-objects`;
if ($line =~ /^(\d+) objects, (\d+) kilobytes$/) {
  my ($n_objects, $kb) = ($1, $2);
  1024 < $kb
    and system("git repack -a -d");
}

955
foreach my $git_index (values %index) {
956 957 958
    if ($git_index ne '.git/index') {
	unlink($git_index);
    }
959
}
960

961 962 963 964 965 966
if (defined $orig_git_index) {
	$ENV{GIT_INDEX_FILE} = $orig_git_index;
} else {
	delete $ENV{GIT_INDEX_FILE};
}

967
# Now switch back to the branch we were in before all of this happened
J
Junio C Hamano 已提交
968
if ($orig_branch) {
969 970 971 972 973 974
	print "DONE.\n" if $opt_v;
	if ($opt_i) {
		exit 0;
	}
	my $tip_at_end = `git-rev-parse --verify HEAD`;
	if ($tip_at_start ne $tip_at_end) {
975
		for ($tip_at_start, $tip_at_end) { chomp; }
976 977 978 979 980 981 982 983 984
		print "Fetched into the current branch.\n" if $opt_v;
		system(qw(git-read-tree -u -m),
		       $tip_at_start, $tip_at_end);
		die "Fast-forward update failed: $?\n" if $?;
	}
	else {
		system(qw(git-merge cvsimport HEAD), "refs/heads/$opt_o");
		die "Could not merge $opt_o into the current branch.\n" if $?;
	}
985 986 987
} else {
	$orig_branch = "master";
	print "DONE; creating $orig_branch branch\n" if $opt_v;
988
	system("git-update-ref", "refs/heads/master", "refs/heads/$opt_o")
989
		unless -f "$git_dir/refs/heads/master";
P
Pavel Roskin 已提交
990
	system('git-update-ref', 'HEAD', "$orig_branch");
991 992 993 994
	unless ($opt_i) {
		system('git checkout');
		die "checkout failed: $?\n" if $?;
	}
995
}