]> git.ipfire.org Git - thirdparty/git.git/blame - git-cvsimport.perl
git-svn: pass an unambiguous ref to rev-list when grafting-branches
[thirdparty/git.git] / git-cvsimport.perl
CommitLineData
a57a9493 1#!/usr/bin/perl -w
9718a00b 2
a57a9493
MU
3# This tool is copyright (c) 2005, Matthias Urlichs.
4# It is released under the Gnu Public License, version 2.
5#
6# The basic idea is to aggregate CVS check-ins into related changes.
7# Fortunately, "cvsps" does that for us; all we have to do is to parse
8# its output.
9#
10# Checking out the files is done by a single long-running CVS connection
11# / server process.
12#
13# The head revision is on branch "origin" by default.
14# You can change that with the '-o' option.
15
16use strict;
17use warnings;
18use Getopt::Std;
79ee456c 19use File::Spec;
7ccd9009 20use File::Temp qw(tempfile tmpnam);
a57a9493
MU
21use File::Path qw(mkpath);
22use File::Basename qw(basename dirname);
23use Time::Local;
2a3e1a85
MU
24use IO::Socket;
25use IO::Pipe;
e49289df 26use POSIX qw(strftime dup2 ENOENT);
0d821d4d 27use IPC::Open2;
a57a9493
MU
28
29$SIG{'PIPE'}="IGNORE";
30$ENV{'TZ'}="UTC";
31
86d11cf2 32our ($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);
ffd97f3a 33my (%conv_author_name, %conv_author_email);
a57a9493
MU
34
35sub usage() {
36 print STDERR <<END;
2a3e1a85 37Usage: ${\basename $0} # fetch/update GIT from CVS
ffd97f3a
AE
38 [-o branch-for-HEAD] [-h] [-v] [-d CVSROOT] [-A author-conv-file]
39 [-p opts-for-cvsps] [-C GIT_repository] [-z fuzz] [-i] [-k] [-u]
5179c8a5 40 [-s subst] [-m] [-M regex] [-S regex] [CVS_module]
a57a9493
MU
41END
42 exit(1);
43}
44
ffd97f3a
AE
45sub read_author_info($) {
46 my ($file) = @_;
47 my $user;
48 open my $f, '<', "$file" or die("Failed to open $file: $!\n");
49
50 while (<$f>) {
8cd16211 51 # Expected format is this:
ffd97f3a 52 # exon=Andreas Ericsson <ae@op5.se>
8cd16211 53 if (m/^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/) {
ffd97f3a 54 $user = $1;
8cd16211
JH
55 $conv_author_name{$user} = $2;
56 $conv_author_email{$user} = $3;
ffd97f3a 57 }
8cd16211
JH
58 # However, we also read from CVSROOT/users format
59 # to ease migration.
60 elsif (/^(\w+):(['"]?)(.+?)\2\s*$/) {
61 my $mapped;
62 ($user, $mapped) = ($1, $3);
63 if ($mapped =~ /^\s*(.*?)\s*<(.*)>\s*$/) {
64 $conv_author_name{$user} = $1;
65 $conv_author_email{$user} = $2;
66 }
67 elsif ($mapped =~ /^<?(.*)>?$/) {
68 $conv_author_name{$user} = $user;
69 $conv_author_email{$user} = $1;
70 }
71 }
72 # NEEDSWORK: Maybe warn on unrecognized lines?
ffd97f3a
AE
73 }
74 close ($f);
75}
76
77sub write_author_info($) {
78 my ($file) = @_;
79 open my $f, '>', $file or
80 die("Failed to open $file for writing: $!");
81
82 foreach (keys %conv_author_name) {
8cd16211 83 print $f "$_=$conv_author_name{$_} <$conv_author_email{$_}>\n";
ffd97f3a
AE
84 }
85 close ($f);
86}
87
06918348 88getopts("hivmkuo:d:p:C:z:s:M:P:A:S:L:") or usage();
a57a9493
MU
89usage if $opt_h;
90
f9714a4a 91@ARGV <= 1 or usage();
a57a9493 92
86d11cf2 93if ($opt_d) {
2a3e1a85 94 $ENV{"CVSROOT"} = $opt_d;
86d11cf2 95} elsif (-f 'CVS/Root') {
f9714a4a
SV
96 open my $f, '<', 'CVS/Root' or die 'Failed to open CVS/Root';
97 $opt_d = <$f>;
98 chomp $opt_d;
99 close $f;
100 $ENV{"CVSROOT"} = $opt_d;
86d11cf2 101} elsif ($ENV{"CVSROOT"}) {
2a3e1a85
MU
102 $opt_d = $ENV{"CVSROOT"};
103} else {
104 die "CVSROOT needs to be set";
105}
106$opt_o ||= "origin";
fbfd60d6 107$opt_s ||= "-";
f9714a4a 108my $git_tree = $opt_C;
2a3e1a85
MU
109$git_tree ||= ".";
110
f9714a4a
SV
111my $cvs_tree;
112if ($#ARGV == 0) {
113 $cvs_tree = $ARGV[0];
114} elsif (-f 'CVS/Repository') {
115 open my $f, '<', 'CVS/Repository' or
116 die 'Failed to open CVS/Repository';
117 $cvs_tree = <$f>;
118 chomp $cvs_tree;
db4b6582 119 close $f;
f9714a4a
SV
120} else {
121 usage();
122}
123
db4b6582
ML
124our @mergerx = ();
125if ($opt_m) {
126 @mergerx = ( qr/\W(?:from|of|merge|merging|merged) (\w+)/i );
127}
128if ($opt_M) {
129 push (@mergerx, qr/$opt_M/);
130}
131
6211988f
ML
132# Remember UTC of our starting time
133# we'll want to avoid importing commits
134# that are too recent
135our $starttime = time();
136
a57a9493
MU
137select(STDERR); $|=1; select(STDOUT);
138
139
140package CVSconn;
141# Basic CVS dialog.
2a3e1a85 142# We're only interested in connecting and downloading, so ...
a57a9493 143
2eb6d82e
SV
144use File::Spec;
145use File::Temp qw(tempfile);
f65ae603
MU
146use POSIX qw(strftime dup2);
147
a57a9493 148sub new {
86d11cf2 149 my ($what,$repo,$subdir) = @_;
a57a9493
MU
150 $what=ref($what) if ref($what);
151
152 my $self = {};
153 $self->{'buffer'} = "";
154 bless($self,$what);
155
156 $repo =~ s#/+$##;
157 $self->{'fullrep'} = $repo;
158 $self->conn();
159
160 $self->{'subdir'} = $subdir;
161 $self->{'lines'} = undef;
162
163 return $self;
164}
165
166sub conn {
167 my $self = shift;
168 my $repo = $self->{'fullrep'};
86d11cf2
JH
169 if ($repo =~ s/^:pserver(?:([^:]*)):(?:(.*?)(?::(.*?))?@)?([^:\/]*)(?::(\d*))?//) {
170 my ($param,$user,$pass,$serv,$port) = ($1,$2,$3,$4,$5);
73bcf533 171
86d11cf2
JH
172 my ($proxyhost,$proxyport);
173 if ($param && ($param =~ m/proxy=([^;]+)/)) {
73bcf533
IA
174 $proxyhost = $1;
175 # Default proxyport, if not specified, is 8080.
176 $proxyport = 8080;
86d11cf2 177 if ($ENV{"CVS_PROXY_PORT"}) {
73bcf533
IA
178 $proxyport = $ENV{"CVS_PROXY_PORT"};
179 }
86d11cf2 180 if ($param =~ m/proxyport=([^;]+)/) {
73bcf533
IA
181 $proxyport = $1;
182 }
183 }
184
a57a9493 185 $user="anonymous" unless defined $user;
2a3e1a85 186 my $rr2 = "-";
86d11cf2 187 unless ($port) {
a57a9493
MU
188 $rr2 = ":pserver:$user\@$serv:$repo";
189 $port=2401;
190 }
191 my $rr = ":pserver:$user\@$serv:$port$repo";
192
86d11cf2 193 unless ($pass) {
a57a9493
MU
194 open(H,$ENV{'HOME'}."/.cvspass") and do {
195 # :pserver:cvs@mea.tmt.tele.fi:/cvsroot/zmailer Ah<Z
86d11cf2 196 while (<H>) {
a57a9493
MU
197 chomp;
198 s/^\/\d+\s+//;
199 my ($w,$p) = split(/\s/,$_,2);
86d11cf2 200 if ($w eq $rr or $w eq $rr2) {
a57a9493
MU
201 $pass = $p;
202 last;
203 }
204 }
205 };
206 }
207 $pass="A" unless $pass;
208
73bcf533 209 my ($s, $rep);
86d11cf2 210 if ($proxyhost) {
73bcf533
IA
211
212 # Use a HTTP Proxy. Only works for HTTP proxies that
213 # don't require user authentication
214 #
215 # See: http://www.ietf.org/rfc/rfc2817.txt
216
217 $s = IO::Socket::INET->new(PeerHost => $proxyhost, PeerPort => $proxyport);
218 die "Socket to $proxyhost: $!\n" unless defined $s;
219 $s->write("CONNECT $serv:$port HTTP/1.1\r\nHost: $serv:$port\r\n\r\n")
220 or die "Write to $proxyhost: $!\n";
221 $s->flush();
222
223 $rep = <$s>;
224
225 # The answer should look like 'HTTP/1.x 2yy ....'
86d11cf2 226 if (!($rep =~ m#^HTTP/1\.. 2[0-9][0-9]#)) {
73bcf533
IA
227 die "Proxy connect: $rep\n";
228 }
229 # Skip up to the empty line of the proxy server output
230 # including the response headers.
231 while ($rep = <$s>) {
232 last if (!defined $rep ||
233 $rep eq "\n" ||
234 $rep eq "\r\n");
235 }
236 } else {
237 $s = IO::Socket::INET->new(PeerHost => $serv, PeerPort => $port);
238 die "Socket to $serv: $!\n" unless defined $s;
239 }
240
a57a9493
MU
241 $s->write("BEGIN AUTH REQUEST\n$repo\n$user\n$pass\nEND AUTH REQUEST\n")
242 or die "Write to $serv: $!\n";
243 $s->flush();
244
73bcf533 245 $rep = <$s>;
a57a9493 246
86d11cf2 247 if ($rep ne "I LOVE YOU\n") {
a57a9493
MU
248 $rep="<unknown>" unless $rep;
249 die "AuthReply: $rep\n";
250 }
251 $self->{'socketo'} = $s;
252 $self->{'socketi'} = $s;
34155390 253 } else { # local or ext: Fork off our own cvs server.
a57a9493
MU
254 my $pr = IO::Pipe->new();
255 my $pw = IO::Pipe->new();
256 my $pid = fork();
257 die "Fork: $!\n" unless defined $pid;
8d0ea311
SV
258 my $cvs = 'cvs';
259 $cvs = $ENV{CVS_SERVER} if exists $ENV{CVS_SERVER};
34155390
SV
260 my $rsh = 'rsh';
261 $rsh = $ENV{CVS_RSH} if exists $ENV{CVS_RSH};
262
263 my @cvs = ($cvs, 'server');
264 my ($local, $user, $host);
265 $local = $repo =~ s/:local://;
266 if (!$local) {
267 $repo =~ s/:ext://;
268 $local = !($repo =~ s/^(?:([^\@:]+)\@)?([^:]+)://);
269 ($user, $host) = ($1, $2);
270 }
271 if (!$local) {
272 if ($user) {
273 unshift @cvs, $rsh, '-l', $user, $host;
274 } else {
275 unshift @cvs, $rsh, $host;
276 }
277 }
278
86d11cf2 279 unless ($pid) {
a57a9493
MU
280 $pr->writer();
281 $pw->reader();
a57a9493
MU
282 dup2($pw->fileno(),0);
283 dup2($pr->fileno(),1);
284 $pr->close();
285 $pw->close();
34155390 286 exec(@cvs);
a57a9493
MU
287 }
288 $pw->writer();
289 $pr->reader();
290 $self->{'socketo'} = $pw;
291 $self->{'socketi'} = $pr;
292 }
293 $self->{'socketo'}->write("Root $repo\n");
294
295 # Trial and error says that this probably is the minimum set
b0921331 296 $self->{'socketo'}->write("Valid-responses ok error Valid-requests Mode M Mbinary E Checked-in Created Updated Merged Removed\n");
a57a9493
MU
297
298 $self->{'socketo'}->write("valid-requests\n");
299 $self->{'socketo'}->flush();
300
301 chomp(my $rep=$self->readline());
86d11cf2 302 if ($rep !~ s/^Valid-requests\s*//) {
a57a9493
MU
303 $rep="<unknown>" unless $rep;
304 die "Expected Valid-requests from server, but got: $rep\n";
305 }
306 chomp(my $res=$self->readline());
307 die "validReply: $res\n" if $res ne "ok";
308
309 $self->{'socketo'}->write("UseUnchanged\n") if $rep =~ /\bUseUnchanged\b/;
310 $self->{'repo'} = $repo;
311}
312
313sub readline {
86d11cf2 314 my ($self) = @_;
a57a9493
MU
315 return $self->{'socketi'}->getline();
316}
317
318sub _file {
319 # Request a file with a given revision.
320 # Trial and error says this is a good way to do it. :-/
86d11cf2 321 my ($self,$fn,$rev) = @_;
a57a9493
MU
322 $self->{'socketo'}->write("Argument -N\n") or return undef;
323 $self->{'socketo'}->write("Argument -P\n") or return undef;
abe05822
ML
324 # -kk: Linus' version doesn't use it - defaults to off
325 if ($opt_k) {
326 $self->{'socketo'}->write("Argument -kk\n") or return undef;
327 }
a57a9493
MU
328 $self->{'socketo'}->write("Argument -r\n") or return undef;
329 $self->{'socketo'}->write("Argument $rev\n") or return undef;
330 $self->{'socketo'}->write("Argument --\n") or return undef;
331 $self->{'socketo'}->write("Argument $self->{'subdir'}/$fn\n") or return undef;
332 $self->{'socketo'}->write("Directory .\n") or return undef;
333 $self->{'socketo'}->write("$self->{'repo'}\n") or return undef;
4f7c0caa 334 # $self->{'socketo'}->write("Sticky T1.0\n") or return undef;
a57a9493
MU
335 $self->{'socketo'}->write("co\n") or return undef;
336 $self->{'socketo'}->flush() or return undef;
337 $self->{'lines'} = 0;
338 return 1;
339}
340sub _line {
341 # Read a line from the server.
342 # ... except that 'line' may be an entire file. ;-)
86d11cf2 343 my ($self, $fh) = @_;
a57a9493
MU
344 die "Not in lines" unless defined $self->{'lines'};
345
346 my $line;
2eb6d82e 347 my $res=0;
86d11cf2 348 while (defined($line = $self->readline())) {
a57a9493
MU
349 # M U gnupg-cvs-rep/AUTHORS
350 # Updated gnupg-cvs-rep/
351 # /daten/src/rsync/gnupg-cvs-rep/AUTHORS
352 # /AUTHORS/1.1///T1.1
353 # u=rw,g=rw,o=rw
354 # 0
355 # ok
356
86d11cf2 357 if ($line =~ s/^(?:Created|Updated) //) {
a57a9493
MU
358 $line = $self->readline(); # path
359 $line = $self->readline(); # Entries line
360 my $mode = $self->readline(); chomp $mode;
361 $self->{'mode'} = $mode;
362 defined (my $cnt = $self->readline())
363 or die "EOF from server after 'Changed'\n";
364 chomp $cnt;
365 die "Duh: Filesize $cnt" if $cnt !~ /^\d+$/;
366 $line="";
55cad842 367 $res = $self->_fetchfile($fh, $cnt);
86d11cf2 368 } elsif ($line =~ s/^ //) {
2eb6d82e
SV
369 print $fh $line;
370 $res += length($line);
86d11cf2 371 } elsif ($line =~ /^M\b/) {
a57a9493 372 # output, do nothing
86d11cf2 373 } elsif ($line =~ /^Mbinary\b/) {
a57a9493
MU
374 my $cnt;
375 die "EOF from server after 'Mbinary'" unless defined ($cnt = $self->readline());
376 chomp $cnt;
377 die "Duh: Mbinary $cnt" if $cnt !~ /^\d+$/ or $cnt<1;
378 $line="";
55cad842 379 $res += $self->_fetchfile($fh, $cnt);
a57a9493
MU
380 } else {
381 chomp $line;
86d11cf2 382 if ($line eq "ok") {
a57a9493
MU
383 # print STDERR "S: ok (".length($res).")\n";
384 return $res;
86d11cf2 385 } elsif ($line =~ s/^E //) {
a57a9493 386 # print STDERR "S: $line\n";
86d11cf2 387 } elsif ($line =~ /^(Remove-entry|Removed) /i) {
8b8840e0
MU
388 $line = $self->readline(); # filename
389 $line = $self->readline(); # OK
390 chomp $line;
391 die "Unknown: $line" if $line ne "ok";
392 return -1;
a57a9493
MU
393 } else {
394 die "Unknown: $line\n";
395 }
396 }
397 }
39ba7d54 398 return undef;
a57a9493
MU
399}
400sub file {
86d11cf2 401 my ($self,$fn,$rev) = @_;
a57a9493
MU
402 my $res;
403
2eb6d82e
SV
404 my ($fh, $name) = tempfile('gitcvs.XXXXXX',
405 DIR => File::Spec->tmpdir(), UNLINK => 1);
406
407 $self->_file($fn,$rev) and $res = $self->_line($fh);
408
409 if (!defined $res) {
39ba7d54
MM
410 print STDERR "Server has gone away while fetching $fn $rev, retrying...\n";
411 truncate $fh, 0;
2eb6d82e 412 $self->conn();
39ba7d54 413 $self->_file($fn,$rev) or die "No file command send";
2eb6d82e 414 $res = $self->_line($fh);
39ba7d54 415 die "Retry failed" unless defined $res;
a57a9493 416 }
c619ad51 417 close ($fh);
a57a9493 418
2eb6d82e 419 return ($name, $res);
a57a9493 420}
55cad842
ML
421sub _fetchfile {
422 my ($self, $fh, $cnt) = @_;
61efa5e3 423 my $res = 0;
55cad842 424 my $bufsize = 1024 * 1024;
86d11cf2 425 while ($cnt) {
55cad842
ML
426 if ($bufsize > $cnt) {
427 $bufsize = $cnt;
428 }
429 my $buf;
430 my $num = $self->{'socketi'}->read($buf,$bufsize);
431 die "Server: Filesize $cnt: $num: $!\n" if not defined $num or $num<=0;
432 print $fh $buf;
433 $res += $num;
434 $cnt -= $num;
435 }
436 return $res;
437}
a57a9493
MU
438
439
440package main;
441
2a3e1a85 442my $cvs = CVSconn->new($opt_d, $cvs_tree);
a57a9493
MU
443
444
445sub pdate($) {
86d11cf2 446 my ($d) = @_;
a57a9493
MU
447 m#(\d{2,4})/(\d\d)/(\d\d)\s(\d\d):(\d\d)(?::(\d\d))?#
448 or die "Unparseable date: $d\n";
449 my $y=$1; $y-=1900 if $y>1900;
450 return timegm($6||0,$5,$4,$3,$2-1,$y);
9718a00b
TM
451}
452
a57a9493 453sub pmode($) {
86d11cf2 454 my ($mode) = @_;
a57a9493
MU
455 my $m = 0;
456 my $mm = 0;
457 my $um = 0;
458 for my $x(split(//,$mode)) {
86d11cf2 459 if ($x eq ",") {
a57a9493
MU
460 $m |= $mm&$um;
461 $mm = 0;
462 $um = 0;
86d11cf2
JH
463 } elsif ($x eq "u") { $um |= 0700;
464 } elsif ($x eq "g") { $um |= 0070;
465 } elsif ($x eq "o") { $um |= 0007;
466 } elsif ($x eq "r") { $mm |= 0444;
467 } elsif ($x eq "w") { $mm |= 0222;
468 } elsif ($x eq "x") { $mm |= 0111;
469 } elsif ($x eq "=") { # do nothing
a57a9493
MU
470 } else { die "Unknown mode: $mode\n";
471 }
472 }
473 $m |= $mm&$um;
474 return $m;
475}
d4f8b390 476
a57a9493
MU
477sub getwd() {
478 my $pwd = `pwd`;
479 chomp $pwd;
480 return $pwd;
d4f8b390
LT
481}
482
e73aefe4
JK
483sub is_sha1 {
484 my $s = shift;
485 return $s =~ /^[a-f0-9]{40}$/;
486}
db4b6582 487
e73aefe4 488sub get_headref ($$) {
db4b6582
ML
489 my $name = shift;
490 my $git_dir = shift;
db4b6582 491
e73aefe4 492 my $f = "$git_dir/refs/heads/$name";
86d11cf2 493 if (open(my $fh, $f)) {
e73aefe4
JK
494 chomp(my $r = <$fh>);
495 is_sha1($r) or die "Cannot get head id for $name ($r): $!";
496 return $r;
db4b6582 497 }
e73aefe4
JK
498 die "unable to open $f: $!" unless $! == POSIX::ENOENT;
499 return undef;
db4b6582
ML
500}
501
a57a9493
MU
502-d $git_tree
503 or mkdir($git_tree,0777)
504 or die "Could not create $git_tree: $!";
505chdir($git_tree);
d4f8b390 506
a57a9493 507my $last_branch = "";
46541669 508my $orig_branch = "";
a57a9493 509my %branch_date;
8a5f2eac 510my $tip_at_start = undef;
a57a9493
MU
511
512my $git_dir = $ENV{"GIT_DIR"} || ".git";
513$git_dir = getwd()."/".$git_dir unless $git_dir =~ m#^/#;
514$ENV{"GIT_DIR"} = $git_dir;
79ee456c
SV
515my $orig_git_index;
516$orig_git_index = $ENV{GIT_INDEX_FILE} if exists $ENV{GIT_INDEX_FILE};
8f732649
ML
517
518my %index; # holds filenames of one index per branch
061303f0 519
86d11cf2 520unless (-d $git_dir) {
a57a9493
MU
521 system("git-init-db");
522 die "Cannot init the GIT db at $git_tree: $?\n" if $?;
523 system("git-read-tree");
524 die "Cannot init an empty tree: $?\n" if $?;
525
526 $last_branch = $opt_o;
46541669 527 $orig_branch = "";
a57a9493 528} else {
866d1310 529 -f "$git_dir/refs/heads/$opt_o"
4c24e089
MU
530 or die "Branch '$opt_o' does not exist.\n".
531 "Either use the correct '-o branch' option,\n".
532 "or import to a new repository.\n";
533
8366a10a
PR
534 open(F, "git-symbolic-ref HEAD |") or
535 die "Cannot run git-symbolic-ref: $!\n";
536 chomp ($last_branch = <F>);
537 $last_branch = basename($last_branch);
538 close(F);
86d11cf2 539 unless ($last_branch) {
46541669
MU
540 warn "Cannot read the last branch name: $! -- assuming 'master'\n";
541 $last_branch = "master";
542 }
543 $orig_branch = $last_branch;
8a5f2eac 544 $tip_at_start = `git-rev-parse --verify HEAD`;
a57a9493
MU
545
546 # Get the last import timestamps
1f24c587
AW
547 my $fmt = '($ref, $author) = (%(refname), %(author));';
548 open(H, "git-for-each-ref --perl --format='$fmt' refs/heads |") or
549 die "Cannot run git-for-each-ref: $!\n";
86d11cf2 550 while (defined(my $entry = <H>)) {
1f24c587
AW
551 my ($ref, $author);
552 eval($entry) || die "cannot eval refs list: $@";
553 my ($head) = ($ref =~ m|^refs/heads/(.*)|);
554 $author =~ /^.*\s(\d+)\s[-+]\d{4}$/;
555 $branch_date{$head} = $1;
a57a9493 556 }
1f24c587 557 close(H);
a57a9493
MU
558}
559
560-d $git_dir
561 or die "Could not create git subdir ($git_dir).\n";
562
ffd97f3a
AE
563# now we read (and possibly save) author-info as well
564-f "$git_dir/cvs-authors" and
565 read_author_info("$git_dir/cvs-authors");
566if ($opt_A) {
567 read_author_info($opt_A);
568 write_author_info("$git_dir/cvs-authors");
569}
570
2f57c697
ML
571
572#
573# run cvsps into a file unless we are getting
574# it passed as a file via $opt_P
575#
576unless ($opt_P) {
577 print "Running cvsps...\n" if $opt_v;
578 my $pid = open(CVSPS,"-|");
579 die "Cannot fork: $!\n" unless defined $pid;
86d11cf2 580 unless ($pid) {
2f57c697
ML
581 my @opt;
582 @opt = split(/,/,$opt_p) if defined $opt_p;
583 unshift @opt, '-z', $opt_z if defined $opt_z;
584 unshift @opt, '-q' unless defined $opt_v;
585 unless (defined($opt_p) && $opt_p =~ m/--no-cvs-direct/) {
586 push @opt, '--cvs-direct';
587 }
588 exec("cvsps","--norc",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
589 die "Could not start cvsps: $!\n";
df73e9c6 590 }
2f57c697
ML
591 my ($cvspsfh, $cvspsfile) = tempfile('gitXXXXXX', SUFFIX => '.cvsps',
592 DIR => File::Spec->tmpdir());
593 while (<CVSPS>) {
594 print $cvspsfh $_;
211dcac6 595 }
2f57c697
ML
596 close CVSPS;
597 close $cvspsfh;
598 $opt_P = $cvspsfile;
a57a9493
MU
599}
600
601
2f57c697
ML
602open(CVS, "<$opt_P") or die $!;
603
a57a9493
MU
604## cvsps output:
605#---------------------
606#PatchSet 314
607#Date: 1999/09/18 13:03:59
608#Author: wkoch
609#Branch: STABLE-BRANCH-1-0
610#Ancestor branch: HEAD
611#Tag: (none)
612#Log:
613# See ChangeLog: Sat Sep 18 13:03:28 CEST 1999 Werner Koch
614#Members:
615# README:1.57->1.57.2.1
616# VERSION:1.96->1.96.2.1
617#
618#---------------------
619
620my $state = 0;
621
e73aefe4
JK
622sub update_index (\@\@) {
623 my $old = shift;
624 my $new = shift;
6a1871e1
JK
625 open(my $fh, '|-', qw(git-update-index -z --index-info))
626 or die "unable to open git-update-index: $!";
627 print $fh
628 (map { "0 0000000000000000000000000000000000000000\t$_\0" }
e73aefe4 629 @$old),
6a1871e1 630 (map { '100' . sprintf('%o', $_->[0]) . " $_->[1]\t$_->[2]\0" }
e73aefe4 631 @$new)
6a1871e1
JK
632 or die "unable to write to git-update-index: $!";
633 close $fh
634 or die "unable to write to git-update-index: $!";
635 $? and die "git-update-index reported error: $?";
e73aefe4 636}
a57a9493 637
e73aefe4
JK
638sub write_tree () {
639 open(my $fh, '-|', qw(git-write-tree))
640 or die "unable to open git-write-tree: $!";
641 chomp(my $tree = <$fh>);
642 is_sha1($tree)
643 or die "Cannot get tree id ($tree): $!";
644 close($fh)
a57a9493
MU
645 or die "Error running git-write-tree: $?\n";
646 print "Tree ID $tree\n" if $opt_v;
e73aefe4
JK
647 return $tree;
648}
a57a9493 649
86d11cf2
JH
650my ($patchset,$date,$author_name,$author_email,$branch,$ancestor,$tag,$logmsg);
651my (@old,@new,@skipped,%ignorebranch);
71b08148
ML
652
653# commits that cvsps cannot place anywhere...
654$ignorebranch{'#CVSPS_NO_BRANCH'} = 1;
655
e73aefe4 656sub commit {
c5f448b0
ML
657 if ($branch eq $opt_o && !$index{branch} && !get_headref($branch, $git_dir)) {
658 # looks like an initial commit
659 # use the index primed by git-init-db
660 $ENV{GIT_INDEX_FILE} = '.git/index';
661 $index{$branch} = '.git/index';
662 } else {
663 # use an index per branch to speed up
664 # imports of projects with many branches
665 unless ($index{$branch}) {
666 $index{$branch} = tmpnam();
667 $ENV{GIT_INDEX_FILE} = $index{$branch};
668 if ($ancestor) {
669 system("git-read-tree", $ancestor);
670 } else {
671 system("git-read-tree", $branch);
672 }
673 die "read-tree failed: $?\n" if $?;
674 }
675 }
676 $ENV{GIT_INDEX_FILE} = $index{$branch};
677
e73aefe4
JK
678 update_index(@old, @new);
679 @old = @new = ();
680 my $tree = write_tree();
681 my $parent = get_headref($last_branch, $git_dir);
682 print "Parent ID " . ($parent ? $parent : "(empty)") . "\n" if $opt_v;
683
684 my @commit_args;
685 push @commit_args, ("-p", $parent) if $parent;
686
687 # loose detection of merges
688 # based on the commit msg
689 foreach my $rx (@mergerx) {
690 next unless $logmsg =~ $rx && $1;
691 my $mparent = $1 eq 'HEAD' ? $opt_o : $1;
86d11cf2 692 if (my $sha1 = get_headref($mparent, $git_dir)) {
e73aefe4
JK
693 push @commit_args, '-p', $mparent;
694 print "Merge parent branch: $mparent\n" if $opt_v;
db4b6582 695 }
a57a9493 696 }
e73aefe4
JK
697
698 my $commit_date = strftime("+0000 %Y-%m-%d %H:%M:%S",gmtime($date));
62bf0d96
JK
699 $ENV{GIT_AUTHOR_NAME} = $author_name;
700 $ENV{GIT_AUTHOR_EMAIL} = $author_email;
701 $ENV{GIT_AUTHOR_DATE} = $commit_date;
702 $ENV{GIT_COMMITTER_NAME} = $author_name;
703 $ENV{GIT_COMMITTER_EMAIL} = $author_email;
704 $ENV{GIT_COMMITTER_DATE} = $commit_date;
e73aefe4 705 my $pid = open2(my $commit_read, my $commit_write,
e73aefe4 706 'git-commit-tree', $tree, @commit_args);
e371046b
MU
707
708 # compatibility with git2cvs
709 substr($logmsg,32767) = "" if length($logmsg) > 32767;
710 $logmsg =~ s/[\s\n]+\z//;
711
5179c8a5
ML
712 if (@skipped) {
713 $logmsg .= "\n\n\nSKIPPED:\n\t";
714 $logmsg .= join("\n\t", @skipped) . "\n";
f396f01f 715 @skipped = ();
5179c8a5
ML
716 }
717
e73aefe4 718 print($commit_write "$logmsg\n") && close($commit_write)
a57a9493 719 or die "Error writing to git-commit-tree: $!\n";
2a3e1a85 720
e73aefe4
JK
721 print "Committed patch $patchset ($branch $commit_date)\n" if $opt_v;
722 chomp(my $cid = <$commit_read>);
723 is_sha1($cid) or die "Cannot get commit id ($cid): $!\n";
a57a9493 724 print "Commit ID $cid\n" if $opt_v;
e73aefe4 725 close($commit_read);
2a3e1a85
MU
726
727 waitpid($pid,0);
728 die "Error running git-commit-tree: $?\n" if $?;
a57a9493 729
42277bc8 730 system("git-update-ref refs/heads/$branch $cid") == 0
a57a9493
MU
731 or die "Cannot write branch $branch for update: $!\n";
732
86d11cf2
JH
733 if ($tag) {
734 my ($in, $out) = ('','');
735 my ($xtag) = $tag;
0d821d4d
PA
736 $xtag =~ s/\s+\*\*.*$//; # Remove stuff like ** INVALID ** and ** FUNKY **
737 $xtag =~ tr/_/\./ if ( $opt_u );
34c99da2 738 $xtag =~ s/[\/]/$opt_s/g;
0d821d4d
PA
739
740 my $pid = open2($in, $out, 'git-mktag');
741 print $out "object $cid\n".
742 "type commit\n".
743 "tag $xtag\n".
94c23343 744 "tagger $author_name <$author_email>\n"
0d821d4d
PA
745 or die "Cannot create tag object $xtag: $!\n";
746 close($out)
747 or die "Cannot create tag object $xtag: $!\n";
748
749 my $tagobj = <$in>;
750 chomp $tagobj;
751
752 if ( !close($in) or waitpid($pid, 0) != $pid or
753 $? != 0 or $tagobj !~ /^[0123456789abcdef]{40}$/ ) {
754 die "Cannot create tag object $xtag: $!\n";
755 }
756
757
758 open(C,">$git_dir/refs/tags/$xtag")
759 or die "Cannot create tag $xtag: $!\n";
760 print C "$tagobj\n"
761 or die "Cannot write tag $xtag: $!\n";
a57a9493 762 close(C)
0d821d4d
PA
763 or die "Cannot write tag $xtag: $!\n";
764
765 print "Created tag '$xtag' on '$branch'\n" if $opt_v;
a57a9493 766 }
a57a9493
MU
767};
768
06918348 769my $commitcount = 1;
86d11cf2 770while (<CVS>) {
a57a9493 771 chomp;
86d11cf2 772 if ($state == 0 and /^-+$/) {
a57a9493 773 $state = 1;
86d11cf2 774 } elsif ($state == 0) {
a57a9493
MU
775 $state = 1;
776 redo;
86d11cf2 777 } elsif (($state==0 or $state==1) and s/^PatchSet\s+//) {
a57a9493
MU
778 $patchset = 0+$_;
779 $state=2;
86d11cf2 780 } elsif ($state == 2 and s/^Date:\s+//) {
a57a9493 781 $date = pdate($_);
86d11cf2 782 unless ($date) {
a57a9493
MU
783 print STDERR "Could not parse date: $_\n";
784 $state=0;
785 next;
786 }
787 $state=3;
86d11cf2 788 } elsif ($state == 3 and s/^Author:\s+//) {
a57a9493 789 s/\s+$//;
94c23343
JH
790 if (/^(.*?)\s+<(.*)>/) {
791 ($author_name, $author_email) = ($1, $2);
ffd97f3a
AE
792 } elsif ($conv_author_name{$_}) {
793 $author_name = $conv_author_name{$_};
794 $author_email = $conv_author_email{$_};
94c23343
JH
795 } else {
796 $author_name = $author_email = $_;
797 }
a57a9493 798 $state = 4;
86d11cf2 799 } elsif ($state == 4 and s/^Branch:\s+//) {
a57a9493 800 s/\s+$//;
fbfd60d6 801 s/[\/]/$opt_s/g;
a57a9493
MU
802 $branch = $_;
803 $state = 5;
86d11cf2 804 } elsif ($state == 5 and s/^Ancestor branch:\s+//) {
a57a9493
MU
805 s/\s+$//;
806 $ancestor = $_;
0fa2824f 807 $ancestor = $opt_o if $ancestor eq "HEAD";
a57a9493 808 $state = 6;
86d11cf2 809 } elsif ($state == 5) {
a57a9493
MU
810 $ancestor = undef;
811 $state = 6;
812 redo;
86d11cf2 813 } elsif ($state == 6 and s/^Tag:\s+//) {
a57a9493 814 s/\s+$//;
86d11cf2 815 if ($_ eq "(none)") {
a57a9493
MU
816 $tag = undef;
817 } else {
818 $tag = $_;
819 }
820 $state = 7;
86d11cf2 821 } elsif ($state == 7 and /^Log:/) {
a57a9493
MU
822 $logmsg = "";
823 $state = 8;
86d11cf2 824 } elsif ($state == 8 and /^Members:/) {
a57a9493 825 $branch = $opt_o if $branch eq "HEAD";
86d11cf2 826 if (defined $branch_date{$branch} and $branch_date{$branch} >= $date) {
a57a9493 827 # skip
9da07f34 828 print "skip patchset $patchset: $date before $branch_date{$branch}\n" if $opt_v;
a57a9493
MU
829 $state = 11;
830 next;
831 }
6211988f
ML
832 if ( $starttime - 300 - (defined $opt_z ? $opt_z : 300) <= $date) {
833 # skip if the commit is too recent
834 # that the cvsps default fuzz is 300s, we give ourselves another
835 # 300s just in case -- this also prevents skipping commits
836 # due to server clock drift
837 print "skip patchset $patchset: $date too recent\n" if $opt_v;
838 $state = 11;
839 next;
840 }
71b08148
ML
841 if (exists $ignorebranch{$branch}) {
842 print STDERR "Skipping $branch\n";
843 $state = 11;
844 next;
845 }
86d11cf2
JH
846 if ($ancestor) {
847 if ($ancestor eq $branch) {
71b08148
ML
848 print STDERR "Branch $branch erroneously stems from itself -- changed ancestor to $opt_o\n";
849 $ancestor = $opt_o;
850 }
86d11cf2 851 if (-f "$git_dir/refs/heads/$branch") {
a57a9493
MU
852 print STDERR "Branch $branch already exists!\n";
853 $state=11;
854 next;
855 }
86d11cf2 856 unless (open(H,"$git_dir/refs/heads/$ancestor")) {
a57a9493 857 print STDERR "Branch $ancestor does not exist!\n";
71b08148 858 $ignorebranch{$branch} = 1;
a57a9493
MU
859 $state=11;
860 next;
861 }
862 chomp(my $id = <H>);
863 close(H);
86d11cf2 864 unless (open(H,"> $git_dir/refs/heads/$branch")) {
a57a9493 865 print STDERR "Could not create branch $branch: $!\n";
71b08148 866 $ignorebranch{$branch} = 1;
a57a9493
MU
867 $state=11;
868 next;
869 }
870 print H "$id\n"
871 or die "Could not write branch $branch: $!";
872 close(H)
873 or die "Could not write branch $branch: $!";
874 }
46e63efc 875 $last_branch = $branch if $branch ne $last_branch;
a57a9493 876 $state = 9;
86d11cf2 877 } elsif ($state == 8) {
a57a9493 878 $logmsg .= "$_\n";
86d11cf2 879 } elsif ($state == 9 and /^\s+(.+?):(INITIAL|\d+(?:\.\d+)+)->(\d+(?:\.\d+)+)\s*$/) {
a57a9493 880# VERSION:1.96->1.96.2.1
2a3e1a85 881 my $init = ($2 eq "INITIAL");
a57a9493 882 my $fn = $1;
f65ae603
MU
883 my $rev = $3;
884 $fn =~ s#^/+##;
5179c8a5
ML
885 if ($opt_S && $fn =~ m/$opt_S/) {
886 print "SKIPPING $fn v $rev\n";
887 push(@skipped, $fn);
888 next;
889 }
890 print "Fetching $fn v $rev\n" if $opt_v;
2eb6d82e 891 my ($tmpname, $size) = $cvs->file($fn,$rev);
86d11cf2 892 if ($size == -1) {
8b8840e0
MU
893 push(@old,$fn);
894 print "Drop $fn\n" if $opt_v;
895 } else {
896 print "".($init ? "New" : "Update")." $fn: $size bytes\n" if $opt_v;
dd27478f
JH
897 my $pid = open(my $F, '-|');
898 die $! unless defined $pid;
899 if (!$pid) {
900 exec("git-hash-object", "-w", $tmpname)
8b8840e0 901 or die "Cannot create object: $!\n";
dd27478f 902 }
8b8840e0
MU
903 my $sha = <$F>;
904 chomp $sha;
905 close $F;
906 my $mode = pmode($cvs->{'mode'});
907 push(@new,[$mode, $sha, $fn]); # may be resurrected!
908 }
2eb6d82e 909 unlink($tmpname);
86d11cf2 910 } elsif ($state == 9 and /^\s+(.+?):\d+(?:\.\d+)+->(\d+(?:\.\d+)+)\(DEAD\)\s*$/) {
f65ae603
MU
911 my $fn = $1;
912 $fn =~ s#^/+##;
913 push(@old,$fn);
8b8840e0 914 print "Delete $fn\n" if $opt_v;
86d11cf2 915 } elsif ($state == 9 and /^\s*$/) {
a57a9493 916 $state = 10;
86d11cf2 917 } elsif (($state == 9 or $state == 10) and /^-+$/) {
4adcea99
LT
918 $commitcount++;
919 if ($opt_L && $commitcount > $opt_L) {
06918348
ML
920 last;
921 }
c4b16f8d 922 commit();
4adcea99
LT
923 if (($commitcount & 1023) == 0) {
924 system("git repack -a -d");
925 }
a57a9493 926 $state = 1;
86d11cf2 927 } elsif ($state == 11 and /^-+$/) {
a57a9493 928 $state = 1;
86d11cf2 929 } elsif (/^-+$/) { # end of unknown-line processing
a57a9493 930 $state = 1;
86d11cf2 931 } elsif ($state != 11) { # ignore stuff when skipping
a57a9493
MU
932 print "* UNKNOWN LINE * $_\n";
933 }
934}
c4b16f8d 935commit() if $branch and $state != 11;
d4f8b390 936
efe4abd1
JM
937# The heuristic of repacking every 1024 commits can leave a
938# lot of unpacked data. If there is more than 1MB worth of
939# not-packed objects, repack once more.
940my $line = `git-count-objects`;
941if ($line =~ /^(\d+) objects, (\d+) kilobytes$/) {
942 my ($n_objects, $kb) = ($1, $2);
943 1024 < $kb
944 and system("git repack -a -d");
945}
946
8f732649 947foreach my $git_index (values %index) {
c5f448b0
ML
948 if ($git_index ne '.git/index') {
949 unlink($git_index);
950 }
8f732649 951}
79ee456c 952
210569f9
SV
953if (defined $orig_git_index) {
954 $ENV{GIT_INDEX_FILE} = $orig_git_index;
955} else {
956 delete $ENV{GIT_INDEX_FILE};
957}
958
46541669 959# Now switch back to the branch we were in before all of this happened
86d11cf2 960if ($orig_branch) {
8a5f2eac
JH
961 print "DONE.\n" if $opt_v;
962 if ($opt_i) {
963 exit 0;
964 }
965 my $tip_at_end = `git-rev-parse --verify HEAD`;
966 if ($tip_at_start ne $tip_at_end) {
cb9594e2 967 for ($tip_at_start, $tip_at_end) { chomp; }
8a5f2eac
JH
968 print "Fetched into the current branch.\n" if $opt_v;
969 system(qw(git-read-tree -u -m),
970 $tip_at_start, $tip_at_end);
971 die "Fast-forward update failed: $?\n" if $?;
972 }
973 else {
974 system(qw(git-merge cvsimport HEAD), "refs/heads/$opt_o");
975 die "Could not merge $opt_o into the current branch.\n" if $?;
976 }
46541669
MU
977} else {
978 $orig_branch = "master";
979 print "DONE; creating $orig_branch branch\n" if $opt_v;
a541211e 980 system("git-update-ref", "refs/heads/master", "refs/heads/$opt_o")
46541669 981 unless -f "$git_dir/refs/heads/master";
8366a10a 982 system('git-update-ref', 'HEAD', "$orig_branch");
c1c774e7
SV
983 unless ($opt_i) {
984 system('git checkout');
985 die "checkout failed: $?\n" if $?;
986 }
46541669 987}