3 # This tool is copyright (c) 2005, Matthias Urlichs.
4 # It is released under the Gnu Public License, version 2.
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
10 # Checking out the files is done by a single long-running CVS connection
13 # The head revision is on branch "origin" by default.
14 # You can change that with the '-o' option.
20 use File
::Temp
qw(tempfile);
21 use File
::Path
qw(mkpath);
22 use File
::Basename
qw(basename dirname);
26 use POSIX
qw(strftime dup2);
28 $SIG{'PIPE'}="IGNORE";
31 our($opt_h,$opt_o,$opt_v,$opt_k,$opt_d,$opt_p,$opt_C,$opt_z,$opt_i);
35 Usage: ${\basename $0} # fetch/update GIT from CVS
36 [ -o branch-for-HEAD ] [ -h ] [ -v ] [ -d CVSROOT ]
37 [ -p opts-for-cvsps ] [ -C GIT_repository ] [ -z fuzz ]
38 [ -i ] [ -k ] [ CVS_module ]
43 getopts
("hivko:d:p:C:z:") or usage
();
46 @ARGV <= 1 or usage
();
49 $ENV{"CVSROOT"} = $opt_d;
50 } elsif(-f
'CVS/Root') {
51 open my $f, '<', 'CVS/Root' or die 'Failed to open CVS/Root';
55 $ENV{"CVSROOT"} = $opt_d;
56 } elsif($ENV{"CVSROOT"}) {
57 $opt_d = $ENV{"CVSROOT"};
59 die "CVSROOT needs to be set";
62 my $git_tree = $opt_C;
68 } elsif (-f
'CVS/Repository') {
69 open my $f, '<', 'CVS/Repository' or
70 die 'Failed to open CVS/Repository';
78 select(STDERR
); $|=1; select(STDOUT
);
83 # We're only interested in connecting and downloading, so ...
86 use File
::Temp
qw(tempfile);
87 use POSIX
qw(strftime dup2);
90 my($what,$repo,$subdir) = @_;
91 $what=ref($what) if ref($what);
94 $self->{'buffer'} = "";
98 $self->{'fullrep'} = $repo;
101 $self->{'subdir'} = $subdir;
102 $self->{'lines'} = undef;
109 my $repo = $self->{'fullrep'};
110 if($repo =~ s/^:pserver:(?:(.*?)(?::(.*?))?@)?([^:\/]*)(?::(\d*))?//) {
111 my($user,$pass,$serv,$port) = ($1,$2,$3,$4);
112 $user="anonymous" unless defined $user;
115 $rr2 = ":pserver:$user\@$serv:$repo";
118 my $rr = ":pserver:$user\@$serv:$port$repo";
121 open(H
,$ENV{'HOME'}."/.cvspass") and do {
122 # :pserver:cvs@mea.tmt.tele.fi:/cvsroot/zmailer Ah<Z
126 my ($w,$p) = split(/\s/,$_,2);
127 if($w eq $rr or $w eq $rr2) {
134 $pass="A" unless $pass;
136 my $s = IO
::Socket
::INET
->new(PeerHost
=> $serv, PeerPort
=> $port);
137 die "Socket to $serv: $!\n" unless defined $s;
138 $s->write("BEGIN AUTH REQUEST\n$repo\n$user\n$pass\nEND AUTH REQUEST\n")
139 or die "Write to $serv: $!\n";
144 if($rep ne "I LOVE YOU\n") {
145 $rep="<unknown>" unless $rep;
146 die "AuthReply: $rep\n";
148 $self->{'socketo'} = $s;
149 $self->{'socketi'} = $s;
150 } else { # local or ext: Fork off our own cvs server.
151 my $pr = IO
::Pipe
->new();
152 my $pw = IO
::Pipe
->new();
154 die "Fork: $!\n" unless defined $pid;
156 $cvs = $ENV{CVS_SERVER
} if exists $ENV{CVS_SERVER
};
158 $rsh = $ENV{CVS_RSH
} if exists $ENV{CVS_RSH
};
160 my @cvs = ($cvs, 'server');
161 my ($local, $user, $host);
162 $local = $repo =~ s/:local://;
165 $local = !($repo =~ s/^(?:([^\@:]+)\@)?([^:]+)://);
166 ($user, $host) = ($1, $2);
170 unshift @cvs, $rsh, '-l', $user, $host;
172 unshift @cvs, $rsh, $host;
179 dup2
($pw->fileno(),0);
180 dup2
($pr->fileno(),1);
187 $self->{'socketo'} = $pw;
188 $self->{'socketi'} = $pr;
190 $self->{'socketo'}->write("Root $repo\n");
192 # Trial and error says that this probably is the minimum set
193 $self->{'socketo'}->write("Valid-responses ok error Valid-requests Mode M Mbinary E Checked-in Created Updated Merged Removed\n");
195 $self->{'socketo'}->write("valid-requests\n");
196 $self->{'socketo'}->flush();
198 chomp(my $rep=$self->readline());
199 if($rep !~ s/^Valid-requests\s*//) {
200 $rep="<unknown>" unless $rep;
201 die "Expected Valid-requests from server, but got: $rep\n";
203 chomp(my $res=$self->readline());
204 die "validReply: $res\n" if $res ne "ok";
206 $self->{'socketo'}->write("UseUnchanged\n") if $rep =~ /\bUseUnchanged\b/;
207 $self->{'repo'} = $repo;
212 return $self->{'socketi'}->getline();
216 # Request a file with a given revision.
217 # Trial and error says this is a good way to do it. :-/
218 my($self,$fn,$rev) = @_;
219 $self->{'socketo'}->write("Argument -N\n") or return undef;
220 $self->{'socketo'}->write("Argument -P\n") or return undef;
221 # -kk: Linus' version doesn't use it - defaults to off
223 $self->{'socketo'}->write("Argument -kk\n") or return undef;
225 $self->{'socketo'}->write("Argument -r\n") or return undef;
226 $self->{'socketo'}->write("Argument $rev\n") or return undef;
227 $self->{'socketo'}->write("Argument --\n") or return undef;
228 $self->{'socketo'}->write("Argument $self->{'subdir'}/$fn\n") or return undef;
229 $self->{'socketo'}->write("Directory .\n") or return undef;
230 $self->{'socketo'}->write("$self->{'repo'}\n") or return undef;
231 # $self->{'socketo'}->write("Sticky T1.0\n") or return undef;
232 $self->{'socketo'}->write("co\n") or return undef;
233 $self->{'socketo'}->flush() or return undef;
234 $self->{'lines'} = 0;
238 # Read a line from the server.
239 # ... except that 'line' may be an entire file. ;-)
241 die "Not in lines" unless defined $self->{'lines'};
245 while(defined($line = $self->readline())) {
246 # M U gnupg-cvs-rep/AUTHORS
247 # Updated gnupg-cvs-rep/
248 # /daten/src/rsync/gnupg-cvs-rep/AUTHORS
249 # /AUTHORS/1.1///T1.1
254 if($line =~ s/^(?:Created|Updated) //) {
255 $line = $self->readline(); # path
256 $line = $self->readline(); # Entries line
257 my $mode = $self->readline(); chomp $mode;
258 $self->{'mode'} = $mode;
259 defined (my $cnt = $self->readline())
260 or die "EOF from server after 'Changed'\n";
262 die "Duh: Filesize $cnt" if $cnt !~ /^\d+$/;
267 my $num = $self->{'socketi'}->read($buf,$cnt);
268 die "Server: Filesize $cnt: $num: $!\n" if not defined $num or $num<=0;
273 } elsif($line =~ s/^ //) {
275 $res += length($line);
276 } elsif($line =~ /^M\b/) {
278 } elsif($line =~ /^Mbinary\b/) {
280 die "EOF from server after 'Mbinary'" unless defined ($cnt = $self->readline());
282 die "Duh: Mbinary $cnt" if $cnt !~ /^\d+$/ or $cnt<1;
286 my $num = $self->{'socketi'}->read($buf,$cnt);
287 die "S: Mbinary $cnt: $num: $!\n" if not defined $num or $num<=0;
295 # print STDERR "S: ok (".length($res).")\n";
297 } elsif($line =~ s/^E //) {
298 # print STDERR "S: $line\n";
299 } elsif($line =~ /^Remove-entry /i) {
300 $line = $self->readline(); # filename
301 $line = $self->readline(); # OK
303 die "Unknown: $line" if $line ne "ok";
306 die "Unknown: $line\n";
312 my($self,$fn,$rev) = @_;
315 my ($fh, $name) = tempfile
('gitcvs.XXXXXX',
316 DIR
=> File
::Spec
->tmpdir(), UNLINK
=> 1);
318 $self->_file($fn,$rev) and $res = $self->_line($fh);
323 $self->_file($fn,$rev)
324 or die "No file command send\n";
325 $res = $self->_line($fh);
326 die "No input: $fn $rev\n" unless defined $res;
330 return ($name, $res);
336 my $cvs = CVSconn
->new($opt_d, $cvs_tree);
341 m
#(\d{2,4})/(\d\d)/(\d\d)\s(\d\d):(\d\d)(?::(\d\d))?#
342 or die "Unparseable date: $d\n";
343 my $y=$1; $y-=1900 if $y>1900;
344 return timegm
($6||0,$5,$4,$3,$2-1,$y);
352 for my $x(split(//,$mode)) {
357 } elsif($x eq "u") { $um |= 0700;
358 } elsif($x eq "g") { $um |= 0070;
359 } elsif($x eq "o") { $um |= 0007;
360 } elsif($x eq "r") { $mm |= 0444;
361 } elsif($x eq "w") { $mm |= 0222;
362 } elsif($x eq "x") { $mm |= 0111;
363 } elsif($x eq "=") { # do nothing
364 } else { die "Unknown mode: $mode\n";
378 or mkdir($git_tree,0777)
379 or die "Could not create $git_tree: $!";
382 my $last_branch = "";
383 my $orig_branch = "";
384 my $forward_master = 0;
387 my $git_dir = $ENV{"GIT_DIR"} || ".git";
388 $git_dir = getwd
()."/".$git_dir unless $git_dir =~ m
#^/#;
389 $ENV{"GIT_DIR"} = $git_dir;
391 $orig_git_index = $ENV{GIT_INDEX_FILE
} if exists $ENV{GIT_INDEX_FILE
};
392 my ($git_ih, $git_index) = tempfile
('gitXXXXXX', SUFFIX
=> '.idx',
393 DIR
=> File
::Spec
->tmpdir());
395 $ENV{GIT_INDEX_FILE
} = $git_index;
396 unless(-d
$git_dir) {
397 system("git-init-db");
398 die "Cannot init the GIT db at $git_tree: $?\n" if $?
;
399 system("git-read-tree");
400 die "Cannot init an empty tree: $?\n" if $?
;
402 $last_branch = $opt_o;
405 -f
"$git_dir/refs/heads/$opt_o"
406 or die "Branch '$opt_o' does not exist.\n".
407 "Either use the correct '-o branch' option,\n".
408 "or import to a new repository.\n";
410 $last_branch = basename
(readlink("$git_dir/HEAD"));
411 unless($last_branch) {
412 warn "Cannot read the last branch name: $! -- assuming 'master'\n";
413 $last_branch = "master";
415 $orig_branch = $last_branch;
416 if (-f
"$git_dir/CVS2GIT_HEAD") {
419 Make sure your working directory corresponds to HEAD and remove CVS2GIT_HEAD.
422 git-read-tree -m -u CVS2GIT_HEAD HEAD
425 system('cp', "$git_dir/HEAD", "$git_dir/CVS2GIT_HEAD");
428 $opt_o ne 'master' && -f
"$git_dir/refs/heads/master" &&
429 system('cmp', '-s', "$git_dir/refs/heads/master",
430 "$git_dir/refs/heads/$opt_o") == 0;
433 system('git-read-tree', $last_branch);
434 die "read-tree failed: $?\n" if $?
;
436 # Get the last import timestamps
437 opendir(D
,"$git_dir/refs/heads");
438 while(defined(my $head = readdir(D
))) {
439 next if $head =~ /^\./;
440 open(F
,"$git_dir/refs/heads/$head")
441 or die "Bad head branch: $head: $!\n";
442 chomp(my $ftag = <F
>);
444 open(F
,"git-cat-file commit $ftag |");
446 next unless /^author\s.*\s(\d+)\s[-+]\d{4}$/;
447 $branch_date{$head} = $1;
456 or die "Could not create git subdir ($git_dir).\n";
458 my $pid = open(CVS
,"-|");
459 die "Cannot fork: $!\n" unless defined $pid;
462 @opt = split(/,/,$opt_p) if defined $opt_p;
463 unshift @opt, '-z', $opt_z if defined $opt_z;
464 exec("cvsps",@opt,"-u","-A","--cvs-direct",'--root',$opt_d,$cvs_tree);
465 die "Could not start cvsps: $!\n";
470 #---------------------
472 #Date: 1999/09/18 13:03:59
474 #Branch: STABLE-BRANCH-1-0
475 #Ancestor branch: HEAD
478 # See ChangeLog: Sat Sep 18 13:03:28 CEST 1999 Werner Koch
480 # README:1.57->1.57.2.1
481 # VERSION:1.96->1.96.2.1
483 #---------------------
487 my($patchset,$date,$author,$branch,$ancestor,$tag,$logmsg);
494 @o2 = splice(@old,0,50);
499 system("git-update-cache","--force-remove","--",@o2);
500 die "Cannot remove files: $?\n" if $?
;
505 @n2 = splice(@new,0,10);
510 system("git-update-cache","--add",
511 (map { ('--cacheinfo', @
$_) } @n2));
512 die "Cannot add files: $?\n" if $?
;
516 die "Cannot fork: $!" unless defined $pid;
518 exec("git-write-tree");
519 die "Cannot exec git-write-tree: $!\n";
521 chomp(my $tree = <C
>);
523 or die "Cannot get tree id ($tree): $!\n";
525 or die "Error running git-write-tree: $?\n";
526 print "Tree ID $tree\n" if $opt_v;
529 if(open(C
,"$git_dir/refs/heads/$last_branch")) {
530 chomp($parent = <C
>);
532 length($parent) == 40
533 or die "Cannot get parent id ($parent): $!\n";
534 print "Parent ID $parent\n" if $opt_v;
537 my $pr = IO
::Pipe
->new() or die "Cannot open pipe: $!\n";
538 my $pw = IO
::Pipe
->new() or die "Cannot open pipe: $!\n";
540 die "Fork: $!\n" unless defined $pid;
544 dup2
($pw->fileno(),0);
545 dup2
($pr->fileno(),1);
550 @par = ("-p",$parent) if $parent;
552 "GIT_AUTHOR_NAME=$author",
553 "GIT_AUTHOR_EMAIL=$author",
554 "GIT_AUTHOR_DATE=".strftime
("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
555 "GIT_COMMITTER_NAME=$author",
556 "GIT_COMMITTER_EMAIL=$author",
557 "GIT_COMMITTER_DATE=".strftime
("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
558 "git-commit-tree", $tree,@par);
559 die "Cannot exec git-commit-tree: $!\n";
564 # compatibility with git2cvs
565 substr($logmsg,32767) = "" if length($logmsg) > 32767;
566 $logmsg =~ s/[\s\n]+\z//;
568 print $pw "$logmsg\n"
569 or die "Error writing to git-commit-tree: $!\n";
572 print "Committed patch $patchset ($branch ".strftime
("%Y-%m-%d %H:%M:%S",gmtime($date)).")\n" if $opt_v;
573 chomp(my $cid = <$pr>);
575 or die "Cannot get commit id ($cid): $!\n";
576 print "Commit ID $cid\n" if $opt_v;
580 die "Error running git-commit-tree: $?\n" if $?
;
582 open(C
,">$git_dir/refs/heads/$branch")
583 or die "Cannot open branch $branch for update: $!\n";
585 or die "Cannot write branch $branch for update: $!\n";
587 or die "Cannot write branch $branch for update: $!\n";
590 open(C
,">$git_dir/refs/tags/$tag")
591 or die "Cannot create tag $tag: $!\n";
593 or die "Cannot write tag $branch: $!\n";
595 or die "Cannot write tag $branch: $!\n";
596 print "Created tag '$tag' on '$branch'\n" if $opt_v;
602 if($state == 0 and /^-+$/) {
604 } elsif($state == 0) {
607 } elsif(($state==0 or $state==1) and s/^PatchSet\s+//) {
610 } elsif($state == 2 and s/^Date:\s+//) {
613 print STDERR
"Could not parse date: $_\n";
618 } elsif($state == 3 and s/^Author:\s+//) {
622 } elsif($state == 4 and s/^Branch:\s+//) {
626 } elsif($state == 5 and s/^Ancestor branch:\s+//) {
629 $ancestor = $opt_o if $ancestor eq "HEAD";
631 } elsif($state == 5) {
635 } elsif($state == 6 and s/^Tag:\s+//) {
643 } elsif($state == 7 and /^Log:/) {
646 } elsif($state == 8 and /^Members:/) {
647 $branch = $opt_o if $branch eq "HEAD";
648 if(defined $branch_date{$branch} and $branch_date{$branch} >= $date) {
650 print "skip patchset $patchset: $date before $branch_date{$branch}\n" if $opt_v;
655 if(-f
"$git_dir/refs/heads/$branch") {
656 print STDERR
"Branch $branch already exists!\n";
660 unless(open(H
,"$git_dir/refs/heads/$ancestor")) {
661 print STDERR
"Branch $ancestor does not exist!\n";
667 unless(open(H
,"> $git_dir/refs/heads/$branch")) {
668 print STDERR
"Could not create branch $branch: $!\n";
673 or die "Could not write branch $branch: $!";
675 or die "Could not write branch $branch: $!";
677 if(($ancestor || $branch) ne $last_branch) {
678 print "Switching from $last_branch to $branch\n" if $opt_v;
679 system("git-read-tree", $branch);
680 die "read-tree failed: $?\n" if $?
;
682 $last_branch = $branch if $branch ne $last_branch;
684 } elsif($state == 8) {
686 } elsif($state == 9 and /^\s+(.+?):(INITIAL|\d+(?:\.\d+)+)->(\d+(?:\.\d+)+)\s*$/) {
687 # VERSION:1.96->1.96.2.1
688 my $init = ($2 eq "INITIAL");
692 my ($tmpname, $size) = $cvs->file($fn,$rev);
695 print "Drop $fn\n" if $opt_v;
697 print "".($init ?
"New" : "Update")." $fn: $size bytes\n" if $opt_v;
698 open my $F, '-|', "git-hash-object -w $tmpname"
699 or die "Cannot create object: $!\n";
703 my $mode = pmode
($cvs->{'mode'});
704 push(@new,[$mode, $sha, $fn]); # may be resurrected!
707 } elsif($state == 9 and /^\s+(.+?):\d+(?:\.\d+)+->(\d+(?:\.\d+)+)\(DEAD\)\s*$/) {
711 print "Delete $fn\n" if $opt_v;
712 } elsif($state == 9 and /^\s*$/) {
714 } elsif(($state == 9 or $state == 10) and /^-+$/) {
717 } elsif($state == 11 and /^-+$/) {
719 } elsif(/^-+$/) { # end of unknown-line processing
721 } elsif($state != 11) { # ignore stuff when skipping
722 print "* UNKNOWN LINE * $_\n";
725 &$commit() if $branch and $state != 11;
729 if (defined $orig_git_index) {
730 $ENV{GIT_INDEX_FILE
} = $orig_git_index;
732 delete $ENV{GIT_INDEX_FILE
};
735 # Now switch back to the branch we were in before all of this happened
737 print "DONE\n" if $opt_v;
738 system("cp","$git_dir/refs/heads/$opt_o","$git_dir/refs/heads/master")
741 system('git-read-tree', '-m', '-u', 'CVS2GIT_HEAD', 'HEAD');
742 die "read-tree failed: $?\n" if $?
;
745 $orig_branch = "master";
746 print "DONE; creating $orig_branch branch\n" if $opt_v;
747 system("cp","$git_dir/refs/heads/$opt_o","$git_dir/refs/heads/master")
748 unless -f
"$git_dir/refs/heads/master";
749 unlink("$git_dir/HEAD");
750 symlink("refs/heads/$orig_branch","$git_dir/HEAD");
752 system('git checkout');
753 die "checkout failed: $?\n" if $?
;
756 unlink("$git_dir/CVS2GIT_HEAD");