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