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);
29 $SIG{'PIPE'}="IGNORE";
32 our($opt_h,$opt_o,$opt_v,$opt_k,$opt_u,$opt_d,$opt_p,$opt_C,$opt_z,$opt_i,$opt_s,$opt_m,$opt_M);
36 Usage: ${\basename $0} # fetch/update GIT from CVS
37 [-o branch-for-HEAD] [-h] [-v] [-d CVSROOT]
38 [-p opts-for-cvsps] [-C GIT_repository] [-z fuzz]
39 [-i] [-k] [-u] [-s subst] [-m] [-M regex] [CVS_module]
44 getopts
("hivmkuo:d:p:C:z:s:M:") or usage
();
47 @ARGV <= 1 or usage
();
50 $ENV{"CVSROOT"} = $opt_d;
51 } elsif(-f
'CVS/Root') {
52 open my $f, '<', 'CVS/Root' or die 'Failed to open CVS/Root';
56 $ENV{"CVSROOT"} = $opt_d;
57 } elsif($ENV{"CVSROOT"}) {
58 $opt_d = $ENV{"CVSROOT"};
60 die "CVSROOT needs to be set";
64 my $git_tree = $opt_C;
70 } elsif (-f
'CVS/Repository') {
71 open my $f, '<', 'CVS/Repository' or
72 die 'Failed to open CVS/Repository';
82 @mergerx = ( qr/\W(?:from|of|merge|merging|merged) (\w+)/i );
85 push (@mergerx, qr/$opt_M/);
88 select(STDERR
); $|=1; select(STDOUT
);
93 # We're only interested in connecting and downloading, so ...
96 use File
::Temp
qw(tempfile);
97 use POSIX
qw(strftime dup2);
100 my($what,$repo,$subdir) = @_;
101 $what=ref($what) if ref($what);
104 $self->{'buffer'} = "";
108 $self->{'fullrep'} = $repo;
111 $self->{'subdir'} = $subdir;
112 $self->{'lines'} = undef;
119 my $repo = $self->{'fullrep'};
120 if($repo =~ s/^:pserver:(?:(.*?)(?::(.*?))?@)?([^:\/]*)(?::(\d*))?//) {
121 my($user,$pass,$serv,$port) = ($1,$2,$3,$4);
122 $user="anonymous" unless defined $user;
125 $rr2 = ":pserver:$user\@$serv:$repo";
128 my $rr = ":pserver:$user\@$serv:$port$repo";
131 open(H
,$ENV{'HOME'}."/.cvspass") and do {
132 # :pserver:cvs@mea.tmt.tele.fi:/cvsroot/zmailer Ah<Z
136 my ($w,$p) = split(/\s/,$_,2);
137 if($w eq $rr or $w eq $rr2) {
144 $pass="A" unless $pass;
146 my $s = IO
::Socket
::INET
->new(PeerHost
=> $serv, PeerPort
=> $port);
147 die "Socket to $serv: $!\n" unless defined $s;
148 $s->write("BEGIN AUTH REQUEST\n$repo\n$user\n$pass\nEND AUTH REQUEST\n")
149 or die "Write to $serv: $!\n";
154 if($rep ne "I LOVE YOU\n") {
155 $rep="<unknown>" unless $rep;
156 die "AuthReply: $rep\n";
158 $self->{'socketo'} = $s;
159 $self->{'socketi'} = $s;
160 } else { # local or ext: Fork off our own cvs server.
161 my $pr = IO
::Pipe
->new();
162 my $pw = IO
::Pipe
->new();
164 die "Fork: $!\n" unless defined $pid;
166 $cvs = $ENV{CVS_SERVER
} if exists $ENV{CVS_SERVER
};
168 $rsh = $ENV{CVS_RSH
} if exists $ENV{CVS_RSH
};
170 my @cvs = ($cvs, 'server');
171 my ($local, $user, $host);
172 $local = $repo =~ s/:local://;
175 $local = !($repo =~ s/^(?:([^\@:]+)\@)?([^:]+)://);
176 ($user, $host) = ($1, $2);
180 unshift @cvs, $rsh, '-l', $user, $host;
182 unshift @cvs, $rsh, $host;
189 dup2
($pw->fileno(),0);
190 dup2
($pr->fileno(),1);
197 $self->{'socketo'} = $pw;
198 $self->{'socketi'} = $pr;
200 $self->{'socketo'}->write("Root $repo\n");
202 # Trial and error says that this probably is the minimum set
203 $self->{'socketo'}->write("Valid-responses ok error Valid-requests Mode M Mbinary E Checked-in Created Updated Merged Removed\n");
205 $self->{'socketo'}->write("valid-requests\n");
206 $self->{'socketo'}->flush();
208 chomp(my $rep=$self->readline());
209 if($rep !~ s/^Valid-requests\s*//) {
210 $rep="<unknown>" unless $rep;
211 die "Expected Valid-requests from server, but got: $rep\n";
213 chomp(my $res=$self->readline());
214 die "validReply: $res\n" if $res ne "ok";
216 $self->{'socketo'}->write("UseUnchanged\n") if $rep =~ /\bUseUnchanged\b/;
217 $self->{'repo'} = $repo;
222 return $self->{'socketi'}->getline();
226 # Request a file with a given revision.
227 # Trial and error says this is a good way to do it. :-/
228 my($self,$fn,$rev) = @_;
229 $self->{'socketo'}->write("Argument -N\n") or return undef;
230 $self->{'socketo'}->write("Argument -P\n") or return undef;
231 # -kk: Linus' version doesn't use it - defaults to off
233 $self->{'socketo'}->write("Argument -kk\n") or return undef;
235 $self->{'socketo'}->write("Argument -r\n") or return undef;
236 $self->{'socketo'}->write("Argument $rev\n") or return undef;
237 $self->{'socketo'}->write("Argument --\n") or return undef;
238 $self->{'socketo'}->write("Argument $self->{'subdir'}/$fn\n") or return undef;
239 $self->{'socketo'}->write("Directory .\n") or return undef;
240 $self->{'socketo'}->write("$self->{'repo'}\n") or return undef;
241 # $self->{'socketo'}->write("Sticky T1.0\n") or return undef;
242 $self->{'socketo'}->write("co\n") or return undef;
243 $self->{'socketo'}->flush() or return undef;
244 $self->{'lines'} = 0;
248 # Read a line from the server.
249 # ... except that 'line' may be an entire file. ;-)
251 die "Not in lines" unless defined $self->{'lines'};
255 while(defined($line = $self->readline())) {
256 # M U gnupg-cvs-rep/AUTHORS
257 # Updated gnupg-cvs-rep/
258 # /daten/src/rsync/gnupg-cvs-rep/AUTHORS
259 # /AUTHORS/1.1///T1.1
264 if($line =~ s/^(?:Created|Updated) //) {
265 $line = $self->readline(); # path
266 $line = $self->readline(); # Entries line
267 my $mode = $self->readline(); chomp $mode;
268 $self->{'mode'} = $mode;
269 defined (my $cnt = $self->readline())
270 or die "EOF from server after 'Changed'\n";
272 die "Duh: Filesize $cnt" if $cnt !~ /^\d+$/;
277 my $num = $self->{'socketi'}->read($buf,$cnt);
278 die "Server: Filesize $cnt: $num: $!\n" if not defined $num or $num<=0;
283 } elsif($line =~ s/^ //) {
285 $res += length($line);
286 } elsif($line =~ /^M\b/) {
288 } elsif($line =~ /^Mbinary\b/) {
290 die "EOF from server after 'Mbinary'" unless defined ($cnt = $self->readline());
292 die "Duh: Mbinary $cnt" if $cnt !~ /^\d+$/ or $cnt<1;
296 my $num = $self->{'socketi'}->read($buf,$cnt);
297 die "S: Mbinary $cnt: $num: $!\n" if not defined $num or $num<=0;
305 # print STDERR "S: ok (".length($res).")\n";
307 } elsif($line =~ s/^E //) {
308 # print STDERR "S: $line\n";
309 } elsif($line =~ /^Remove-entry /i) {
310 $line = $self->readline(); # filename
311 $line = $self->readline(); # OK
313 die "Unknown: $line" if $line ne "ok";
316 die "Unknown: $line\n";
322 my($self,$fn,$rev) = @_;
325 my ($fh, $name) = tempfile
('gitcvs.XXXXXX',
326 DIR
=> File
::Spec
->tmpdir(), UNLINK
=> 1);
328 $self->_file($fn,$rev) and $res = $self->_line($fh);
333 $self->_file($fn,$rev)
334 or die "No file command send\n";
335 $res = $self->_line($fh);
336 die "No input: $fn $rev\n" unless defined $res;
340 return ($name, $res);
346 my $cvs = CVSconn
->new($opt_d, $cvs_tree);
351 m
#(\d{2,4})/(\d\d)/(\d\d)\s(\d\d):(\d\d)(?::(\d\d))?#
352 or die "Unparseable date: $d\n";
353 my $y=$1; $y-=1900 if $y>1900;
354 return timegm
($6||0,$5,$4,$3,$2-1,$y);
362 for my $x(split(//,$mode)) {
367 } elsif($x eq "u") { $um |= 0700;
368 } elsif($x eq "g") { $um |= 0070;
369 } elsif($x eq "o") { $um |= 0007;
370 } elsif($x eq "r") { $mm |= 0444;
371 } elsif($x eq "w") { $mm |= 0222;
372 } elsif($x eq "x") { $mm |= 0111;
373 } elsif($x eq "=") { # do nothing
374 } else { die "Unknown mode: $mode\n";
388 sub get_headref
($$) {
393 if (open(C
,"$git_dir/refs/heads/$name")) {
397 or die "Cannot get head id for $name ($sha): $!\n";
404 or mkdir($git_tree,0777)
405 or die "Could not create $git_tree: $!";
408 my $last_branch = "";
409 my $orig_branch = "";
410 my $forward_master = 0;
413 my $git_dir = $ENV{"GIT_DIR"} || ".git";
414 $git_dir = getwd
()."/".$git_dir unless $git_dir =~ m
#^/#;
415 $ENV{"GIT_DIR"} = $git_dir;
417 $orig_git_index = $ENV{GIT_INDEX_FILE
} if exists $ENV{GIT_INDEX_FILE
};
418 my ($git_ih, $git_index) = tempfile
('gitXXXXXX', SUFFIX
=> '.idx',
419 DIR
=> File
::Spec
->tmpdir());
421 $ENV{GIT_INDEX_FILE
} = $git_index;
422 unless(-d
$git_dir) {
423 system("git-init-db");
424 die "Cannot init the GIT db at $git_tree: $?\n" if $?
;
425 system("git-read-tree");
426 die "Cannot init an empty tree: $?\n" if $?
;
428 $last_branch = $opt_o;
431 -f
"$git_dir/refs/heads/$opt_o"
432 or die "Branch '$opt_o' does not exist.\n".
433 "Either use the correct '-o branch' option,\n".
434 "or import to a new repository.\n";
436 $last_branch = basename
(readlink("$git_dir/HEAD"));
437 unless($last_branch) {
438 warn "Cannot read the last branch name: $! -- assuming 'master'\n";
439 $last_branch = "master";
441 $orig_branch = $last_branch;
442 if (-f
"$git_dir/CVS2GIT_HEAD") {
445 Make sure your working directory corresponds to HEAD and remove CVS2GIT_HEAD.
448 git-read-tree -m -u CVS2GIT_HEAD HEAD
451 system('cp', "$git_dir/HEAD", "$git_dir/CVS2GIT_HEAD");
454 $opt_o ne 'master' && -f
"$git_dir/refs/heads/master" &&
455 system('cmp', '-s', "$git_dir/refs/heads/master",
456 "$git_dir/refs/heads/$opt_o") == 0;
459 system('git-read-tree', $last_branch);
460 die "read-tree failed: $?\n" if $?
;
462 # Get the last import timestamps
463 opendir(D
,"$git_dir/refs/heads");
464 while(defined(my $head = readdir(D
))) {
465 next if $head =~ /^\./;
466 open(F
,"$git_dir/refs/heads/$head")
467 or die "Bad head branch: $head: $!\n";
468 chomp(my $ftag = <F
>);
470 open(F
,"git-cat-file commit $ftag |");
472 next unless /^author\s.*\s(\d+)\s[-+]\d{4}$/;
473 $branch_date{$head} = $1;
482 or die "Could not create git subdir ($git_dir).\n";
484 my $pid = open(CVS
,"-|");
485 die "Cannot fork: $!\n" unless defined $pid;
488 @opt = split(/,/,$opt_p) if defined $opt_p;
489 unshift @opt, '-z', $opt_z if defined $opt_z;
490 exec("cvsps",@opt,"-u","-A","--cvs-direct",'--root',$opt_d,$cvs_tree);
491 die "Could not start cvsps: $!\n";
496 #---------------------
498 #Date: 1999/09/18 13:03:59
500 #Branch: STABLE-BRANCH-1-0
501 #Ancestor branch: HEAD
504 # See ChangeLog: Sat Sep 18 13:03:28 CEST 1999 Werner Koch
506 # README:1.57->1.57.2.1
507 # VERSION:1.96->1.96.2.1
509 #---------------------
513 my($patchset,$date,$author_name,$author_email,$branch,$ancestor,$tag,$logmsg);
520 @o2 = splice(@old,0,50);
525 system("git-update-index","--force-remove","--",@o2);
526 die "Cannot remove files: $?\n" if $?
;
531 @n2 = splice(@new,0,10);
536 system("git-update-index","--add",
537 (map { ('--cacheinfo', @
$_) } @n2));
538 die "Cannot add files: $?\n" if $?
;
542 die "Cannot fork: $!" unless defined $pid;
544 exec("git-write-tree");
545 die "Cannot exec git-write-tree: $!\n";
547 chomp(my $tree = <C
>);
549 or die "Cannot get tree id ($tree): $!\n";
551 or die "Error running git-write-tree: $?\n";
552 print "Tree ID $tree\n" if $opt_v;
555 if(open(C
,"$git_dir/refs/heads/$last_branch")) {
556 chomp($parent = <C
>);
558 length($parent) == 40
559 or die "Cannot get parent id ($parent): $!\n";
560 print "Parent ID $parent\n" if $opt_v;
563 my $pr = IO
::Pipe
->new() or die "Cannot open pipe: $!\n";
564 my $pw = IO
::Pipe
->new() or die "Cannot open pipe: $!\n";
566 die "Fork: $!\n" unless defined $pid;
570 dup2
($pw->fileno(),0);
571 dup2
($pr->fileno(),1);
576 @par = ("-p",$parent) if $parent;
578 # loose detection of merges
579 # based on the commit msg
580 foreach my $rx (@mergerx) {
581 if ($logmsg =~ $rx) {
583 if ($mparent eq 'HEAD') { $mparent = $opt_o };
584 if ( -e
"$git_dir/refs/heads/$mparent") {
585 $mparent = get_headref
($mparent, $git_dir);
586 push @par, '-p', $mparent;
587 # printing here breaks import #
588 # # print "Merge parent branch: $mparent\n" if $opt_v;
594 "GIT_AUTHOR_NAME=$author_name",
595 "GIT_AUTHOR_EMAIL=$author_email",
596 "GIT_AUTHOR_DATE=".strftime
("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
597 "GIT_COMMITTER_NAME=$author_name",
598 "GIT_COMMITTER_EMAIL=$author_email",
599 "GIT_COMMITTER_DATE=".strftime
("+0000 %Y-%m-%d %H:%M:%S",gmtime($date)),
600 "git-commit-tree", $tree,@par);
601 die "Cannot exec git-commit-tree: $!\n";
606 # compatibility with git2cvs
607 substr($logmsg,32767) = "" if length($logmsg) > 32767;
608 $logmsg =~ s/[\s\n]+\z//;
610 print $pw "$logmsg\n"
611 or die "Error writing to git-commit-tree: $!\n";
614 print "Committed patch $patchset ($branch ".strftime
("%Y-%m-%d %H:%M:%S",gmtime($date)).")\n" if $opt_v;
615 chomp(my $cid = <$pr>);
617 or die "Cannot get commit id ($cid): $!\n";
618 print "Commit ID $cid\n" if $opt_v;
622 die "Error running git-commit-tree: $?\n" if $?
;
624 open(C
,">$git_dir/refs/heads/$branch")
625 or die "Cannot open branch $branch for update: $!\n";
627 or die "Cannot write branch $branch for update: $!\n";
629 or die "Cannot write branch $branch for update: $!\n";
632 my($in, $out) = ('','');
634 $xtag =~ s/\s+\*\*.*$//; # Remove stuff like ** INVALID ** and ** FUNKY **
635 $xtag =~ tr/_/\./ if ( $opt_u );
637 my $pid = open2
($in, $out, 'git-mktag');
638 print $out "object $cid\n".
641 "tagger $author_name <$author_email>\n"
642 or die "Cannot create tag object $xtag: $!\n";
644 or die "Cannot create tag object $xtag: $!\n";
649 if ( !close($in) or waitpid($pid, 0) != $pid or
650 $?
!= 0 or $tagobj !~ /^[0123456789abcdef]{40}$/ ) {
651 die "Cannot create tag object $xtag: $!\n";
655 open(C
,">$git_dir/refs/tags/$xtag")
656 or die "Cannot create tag $xtag: $!\n";
658 or die "Cannot write tag $xtag: $!\n";
660 or die "Cannot write tag $xtag: $!\n";
662 print "Created tag '$xtag' on '$branch'\n" if $opt_v;
668 if($state == 0 and /^-+$/) {
670 } elsif($state == 0) {
673 } elsif(($state==0 or $state==1) and s/^PatchSet\s+//) {
676 } elsif($state == 2 and s/^Date:\s+//) {
679 print STDERR
"Could not parse date: $_\n";
684 } elsif($state == 3 and s/^Author:\s+//) {
686 if (/^(.*?)\s+<(.*)>/) {
687 ($author_name, $author_email) = ($1, $2);
689 $author_name = $author_email = $_;
692 } elsif($state == 4 and s/^Branch:\s+//) {
697 } elsif($state == 5 and s/^Ancestor branch:\s+//) {
700 $ancestor = $opt_o if $ancestor eq "HEAD";
702 } elsif($state == 5) {
706 } elsif($state == 6 and s/^Tag:\s+//) {
714 } elsif($state == 7 and /^Log:/) {
717 } elsif($state == 8 and /^Members:/) {
718 $branch = $opt_o if $branch eq "HEAD";
719 if(defined $branch_date{$branch} and $branch_date{$branch} >= $date) {
721 print "skip patchset $patchset: $date before $branch_date{$branch}\n" if $opt_v;
726 if(-f
"$git_dir/refs/heads/$branch") {
727 print STDERR
"Branch $branch already exists!\n";
731 unless(open(H
,"$git_dir/refs/heads/$ancestor")) {
732 print STDERR
"Branch $ancestor does not exist!\n";
738 unless(open(H
,"> $git_dir/refs/heads/$branch")) {
739 print STDERR
"Could not create branch $branch: $!\n";
744 or die "Could not write branch $branch: $!";
746 or die "Could not write branch $branch: $!";
748 if(($ancestor || $branch) ne $last_branch) {
749 print "Switching from $last_branch to $branch\n" if $opt_v;
750 system("git-read-tree", $branch);
751 die "read-tree failed: $?\n" if $?
;
753 $last_branch = $branch if $branch ne $last_branch;
755 } elsif($state == 8) {
757 } elsif($state == 9 and /^\s+(.+?):(INITIAL|\d+(?:\.\d+)+)->(\d+(?:\.\d+)+)\s*$/) {
758 # VERSION:1.96->1.96.2.1
759 my $init = ($2 eq "INITIAL");
763 my ($tmpname, $size) = $cvs->file($fn,$rev);
766 print "Drop $fn\n" if $opt_v;
768 print "".($init ?
"New" : "Update")." $fn: $size bytes\n" if $opt_v;
769 open my $F, '-|', "git-hash-object -w $tmpname"
770 or die "Cannot create object: $!\n";
774 my $mode = pmode
($cvs->{'mode'});
775 push(@new,[$mode, $sha, $fn]); # may be resurrected!
778 } elsif($state == 9 and /^\s+(.+?):\d+(?:\.\d+)+->(\d+(?:\.\d+)+)\(DEAD\)\s*$/) {
782 print "Delete $fn\n" if $opt_v;
783 } elsif($state == 9 and /^\s*$/) {
785 } elsif(($state == 9 or $state == 10) and /^-+$/) {
788 } elsif($state == 11 and /^-+$/) {
790 } elsif(/^-+$/) { # end of unknown-line processing
792 } elsif($state != 11) { # ignore stuff when skipping
793 print "* UNKNOWN LINE * $_\n";
796 &$commit() if $branch and $state != 11;
800 if (defined $orig_git_index) {
801 $ENV{GIT_INDEX_FILE
} = $orig_git_index;
803 delete $ENV{GIT_INDEX_FILE
};
806 # Now switch back to the branch we were in before all of this happened
808 print "DONE\n" if $opt_v;
809 system("cp","$git_dir/refs/heads/$opt_o","$git_dir/refs/heads/master")
812 system('git-read-tree', '-m', '-u', 'CVS2GIT_HEAD', 'HEAD');
813 die "read-tree failed: $?\n" if $?
;
816 $orig_branch = "master";
817 print "DONE; creating $orig_branch branch\n" if $opt_v;
818 system("cp","$git_dir/refs/heads/$opt_o","$git_dir/refs/heads/master")
819 unless -f
"$git_dir/refs/heads/master";
820 unlink("$git_dir/HEAD");
821 symlink("refs/heads/$orig_branch","$git_dir/HEAD");
823 system('git checkout');
824 die "checkout failed: $?\n" if $?
;
827 unlink("$git_dir/CVS2GIT_HEAD");