blob: 6d9f0ef0f989133422cf8c0302e63dab15a999d5 [file] [log] [blame]
Martin Langhoff5e0306a2005-11-07 17:57:08 +13001#!/usr/bin/perl -w
2
3use strict;
4use Getopt::Std;
5use File::Temp qw(tempdir);
6use Data::Dumper;
Yann Dirson3f0f7562006-05-27 18:39:35 +02007use File::Basename qw(basename dirname);
Johan Herlanda7237592008-02-12 00:43:41 +01008use File::Spec;
Trent Piepho325abb72008-05-08 14:26:55 -07009use Git;
Martin Langhoff5e0306a2005-11-07 17:57:08 +130010
Johannes Schindelind7757342008-05-14 15:29:49 +010011our ($opt_h, $opt_P, $opt_p, $opt_v, $opt_c, $opt_f, $opt_a, $opt_m, $opt_d, $opt_u, $opt_w, $opt_W);
Martin Langhoff5e0306a2005-11-07 17:57:08 +130012
Johannes Schindelind7757342008-05-14 15:29:49 +010013getopts('uhPpvcfam:d:w:W');
Martin Langhoff5e0306a2005-11-07 17:57:08 +130014
15$opt_h && usage();
16
17die "Need at least one commit identifier!" unless @ARGV;
18
Trent Piepho325abb72008-05-08 14:26:55 -070019# Get git-config settings
20my $repo = Git->repository();
21$opt_w = $repo->config('cvsexportcommit.cvsdir') unless defined $opt_w;
22
Johannes Schindelind7757342008-05-14 15:29:49 +010023if ($opt_w || $opt_W) {
Johan Herlanda7237592008-02-12 00:43:41 +010024 # Remember where GIT_DIR is before changing to CVS checkout
Robin Rosenberg648ee552007-10-31 23:12:20 +010025 unless ($ENV{GIT_DIR}) {
Johan Herlanda7237592008-02-12 00:43:41 +010026 # No GIT_DIR set. Figure it out for ourselves
Robin Rosenberg648ee552007-10-31 23:12:20 +010027 my $gd =`git-rev-parse --git-dir`;
28 chomp($gd);
Robin Rosenberg648ee552007-10-31 23:12:20 +010029 $ENV{GIT_DIR} = $gd;
30 }
Johan Herlanda7237592008-02-12 00:43:41 +010031 # Make sure GIT_DIR is absolute
32 $ENV{GIT_DIR} = File::Spec->rel2abs($ENV{GIT_DIR});
Johannes Schindelind7757342008-05-14 15:29:49 +010033}
Robin Rosenberg648ee552007-10-31 23:12:20 +010034
Johannes Schindelind7757342008-05-14 15:29:49 +010035if ($opt_w) {
Robin Rosenberg648ee552007-10-31 23:12:20 +010036 if (! -d $opt_w."/CVS" ) {
37 die "$opt_w is not a CVS checkout";
38 }
39 chdir $opt_w or die "Cannot change to CVS checkout at $opt_w";
40}
41unless ($ENV{GIT_DIR} && -r $ENV{GIT_DIR}){
42 die "GIT_DIR is not defined or is unreadable";
43}
44
45
Simon 'corecode' Schubert4a6b9bb2007-02-18 18:17:08 +010046my @cvs;
47if ($opt_d) {
48 @cvs = ('cvs', '-d', $opt_d);
49} else {
50 @cvs = ('cvs');
51}
52
Martin Langhoff5e0306a2005-11-07 17:57:08 +130053# resolve target commit
54my $commit;
55$commit = pop @ARGV;
Martin Langhoffd41df152006-01-30 19:12:12 +130056$commit = safe_pipe_capture('git-rev-parse', '--verify', "$commit^0");
Martin Langhoff5e0306a2005-11-07 17:57:08 +130057chomp $commit;
58if ($?) {
59 die "The commit reference $commit did not resolve!";
60}
61
62# resolve what parent we want
63my $parent;
64if (@ARGV) {
65 $parent = pop @ARGV;
Martin Langhoffd41df152006-01-30 19:12:12 +130066 $parent = safe_pipe_capture('git-rev-parse', '--verify', "$parent^0");
Martin Langhoff5e0306a2005-11-07 17:57:08 +130067 chomp $parent;
68 if ($?) {
69 die "The parent reference did not resolve!";
70 }
71}
72
73# find parents from the commit itself
Martin Langhoffd41df152006-01-30 19:12:12 +130074my @commit = safe_pipe_capture('git-cat-file', 'commit', $commit);
Martin Langhoff5e0306a2005-11-07 17:57:08 +130075my @parents;
Martin Langhoff1b91abe2006-07-18 14:22:49 +120076my $committer;
77my $author;
78my $stage = 'headers'; # headers, msg
79my $title;
80my $msg = '';
81
82foreach my $line (@commit) {
83 chomp $line;
84 if ($stage eq 'headers' && $line eq '') {
85 $stage = 'msg';
86 next;
Martin Langhoff5e0306a2005-11-07 17:57:08 +130087 }
Martin Langhoff1b91abe2006-07-18 14:22:49 +120088
89 if ($stage eq 'headers') {
90 if ($line =~ m/^parent (\w{40})$/) { # found a parent
91 push @parents, $1;
Robin Rosenbergfe142b32006-11-12 16:29:42 +010092 } elsif ($line =~ m/^author (.+) \d+ [-+]\d+$/) {
Martin Langhoff1b91abe2006-07-18 14:22:49 +120093 $author = $1;
Robin Rosenbergfe142b32006-11-12 16:29:42 +010094 } elsif ($line =~ m/^committer (.+) \d+ [-+]\d+$/) {
Martin Langhoff1b91abe2006-07-18 14:22:49 +120095 $committer = $1;
96 }
97 } else {
98 $msg .= $line . "\n";
99 unless ($title) {
100 $title = $line;
101 }
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300102 }
103}
104
Brad King6b6012e2007-10-31 16:55:13 -0400105my $noparent = "0000000000000000000000000000000000000000";
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300106if ($parent) {
Peter Baumann135a5222006-07-07 12:55:41 +0200107 my $found;
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300108 # double check that it's a valid parent
109 foreach my $p (@parents) {
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300110 if ($p eq $parent) {
111 $found = 1;
112 last;
113 }; # found it
Alexander Litvinove09f5d72005-11-09 13:02:58 +0600114 }
Simon 'corecode' Schubertca283702007-02-01 11:43:39 +0100115 die "Did not find $parent in the parents for this commit!" if !$found and !$opt_P;
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300116} else { # we don't have a parent from the cmdline...
117 if (@parents == 1) { # it's safe to get it from the commit
118 $parent = $parents[0];
Brad King6b6012e2007-10-31 16:55:13 -0400119 } elsif (@parents == 0) { # there is no parent
120 $parent = $noparent;
121 } else { # cannot choose automatically from multiple parents
122 die "This commit has more than one parent -- please name the parent you want to use explicitly";
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300123 }
124}
125
Johannes Schindelind7757342008-05-14 15:29:49 +0100126my $go_back_to = 0;
127
128if ($opt_W) {
129 $opt_v && print "Resetting to $parent\n";
130 $go_back_to = `git symbolic-ref HEAD 2> /dev/null ||
131 git rev-parse HEAD` || die "Could not determine current branch";
132 system("git checkout -q $parent^0") && die "Could not check out $parent^0";
133}
134
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300135$opt_v && print "Applying to CVS commit $commit from parent $parent\n";
136
137# grab the commit message
Martin Langhoff992793c2006-04-26 12:26:16 +1200138open(MSG, ">.msg") or die "Cannot open .msg for writing";
Martin Langhoff1b91abe2006-07-18 14:22:49 +1200139if ($opt_m) {
140 print MSG $opt_m;
141}
142print MSG $msg;
143if ($opt_a) {
144 print MSG "\n\nAuthor: $author\n";
145 if ($author ne $committer) {
146 print MSG "Committer: $committer\n";
147 }
148}
Martin Langhoff992793c2006-04-26 12:26:16 +1200149close MSG;
150
Brad King6b6012e2007-10-31 16:55:13 -0400151if ($parent eq $noparent) {
152 `git-diff-tree --binary -p --root $commit >.cvsexportcommit.diff`;# || die "Cannot diff";
153} else {
154 `git-diff-tree --binary -p $parent $commit >.cvsexportcommit.diff`;# || die "Cannot diff";
155}
Robin Rosenbergfe142b32006-11-12 16:29:42 +0100156
Robin Rosenberge86ad712006-12-11 00:30:06 +0100157## apply non-binary changes
Tomash Brechkofc1f4582007-04-09 15:24:02 +0400158
159# In pedantic mode require all lines of context to match. In normal
160# mode, be compatible with diff/patch: assume 3 lines of context and
161# require at least one line match, i.e. ignore at most 2 lines of
162# context, like diff/patch do by default.
163my $context = $opt_p ? '' : '-C1';
Robin Rosenberge86ad712006-12-11 00:30:06 +0100164
165print "Checking if patch will apply\n";
166
167my @stat;
Michael Witten54f0db72007-10-16 04:08:14 -0400168open APPLY, "GIT_DIR= git-apply $context --summary --numstat<.cvsexportcommit.diff|" || die "cannot patch";
Robin Rosenberge86ad712006-12-11 00:30:06 +0100169@stat=<APPLY>;
170close APPLY || die "Cannot patch";
171my (@bfiles,@files,@afiles,@dfiles);
172chomp @stat;
173foreach (@stat) {
174 push (@bfiles,$1) if m/^-\t-\t(.*)$/;
175 push (@files, $1) if m/^-\t-\t(.*)$/;
176 push (@files, $1) if m/^\d+\t\d+\t(.*)$/;
177 push (@afiles,$1) if m/^ create mode [0-7]+ (.*)$/;
178 push (@dfiles,$1) if m/^ delete mode [0-7]+ (.*)$/;
179}
180map { s/^"(.*)"$/$1/g } @bfiles,@files;
181map { s/\\([0-7]{3})/sprintf('%c',oct $1)/eg } @bfiles,@files;
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300182
183# check that the files are clean and up to date according to cvs
184my $dirty;
Robin Rosenberge86ad712006-12-11 00:30:06 +0100185my @dirs;
186foreach my $p (@afiles) {
187 my $path = dirname $p;
188 while (!-d $path and ! grep { $_ eq $path } @dirs) {
189 unshift @dirs, $path;
190 $path = dirname $path;
191 }
192}
193
Steffen Prohaskac56f0d92007-05-10 01:06:36 +0200194# ... check dirs,
Yann Dirson3f0f7562006-05-27 18:39:35 +0200195foreach my $d (@dirs) {
196 if (-e $d) {
197 $dirty = 1;
198 warn "$d exists and is not a directory!\n";
199 }
200}
Steffen Prohaskac56f0d92007-05-10 01:06:36 +0200201
202# ... query status of all files that we have a directory for and parse output of 'cvs status' to %cvsstat.
203my @canstatusfiles;
204foreach my $f (@files) {
205 my $path = dirname $f;
206 next if (grep { $_ eq $path } @dirs);
207 push @canstatusfiles, $f;
208}
209
210my %cvsstat;
211if (@canstatusfiles) {
Robin Rosenberge5d80642007-05-24 17:06:55 +0200212 if ($opt_u) {
Jeff King38a5b1d2007-12-14 04:15:47 -0500213 my @updated = xargs_safe_pipe_capture([@cvs, 'update'], @canstatusfiles);
Robin Rosenberge5d80642007-05-24 17:06:55 +0200214 print @updated;
215 }
Johannes Schindelinfef3a7c2008-02-18 17:55:22 +0000216 # "cvs status" reorders the parameters, notably when there are multiple
217 # arguments with the same basename. So be precise here.
218
219 my %added = map { $_ => 1 } @afiles;
220 my %todo = map { $_ => 1 } @canstatusfiles;
221
222 while (%todo) {
223 my @canstatusfiles2 = ();
224 my %fullname = ();
225 foreach my $name (keys %todo) {
226 my $basename = basename($name);
227
228 $basename = "no file " . $basename if (exists($added{$basename}));
Johannes Schindelin57e0e3e2008-05-14 23:30:43 +0100229 $basename =~ s/^\s+//;
230 $basename =~ s/\s+$//;
Johannes Schindelinfef3a7c2008-02-18 17:55:22 +0000231
232 if (!exists($fullname{$basename})) {
233 $fullname{$basename} = $name;
234 push (@canstatusfiles2, $name);
235 delete($todo{$name});
Steffen Prohaskac56f0d92007-05-10 01:06:36 +0200236 }
Johannes Schindelinfef3a7c2008-02-18 17:55:22 +0000237 }
238 my @cvsoutput;
239 @cvsoutput = xargs_safe_pipe_capture([@cvs, 'status'], @canstatusfiles2);
240 foreach my $l (@cvsoutput) {
241 chomp $l;
242 if ($l =~ /^File:\s+(.*\S)\s+Status: (.*)$/) {
243 if (!exists($fullname{$1})) {
244 print STDERR "Huh? Status reported for unexpected file '$1'\n";
245 } else {
246 $cvsstat{$fullname{$1}} = $2;
247 }
248 }
249 }
Yann Dirson576cfc82006-01-06 21:54:41 +0100250 }
251}
Robin Rosenbergfe142b32006-11-12 16:29:42 +0100252
Steffen Prohaskac56f0d92007-05-10 01:06:36 +0200253# ... validate new files,
254foreach my $f (@afiles) {
255 if (defined ($cvsstat{$f}) and $cvsstat{$f} ne "Unknown") {
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700256 $dirty = 1;
Steffen Prohaskac56f0d92007-05-10 01:06:36 +0200257 warn "File $f is already known in your CVS checkout -- perhaps it has been added by another user. Or this may indicate that it exists on a different branch. If this is the case, use -f to force the merge.\n";
258 warn "Status was: $cvsstat{$f}\n";
259 }
260}
261# ... validate known files.
Robin Rosenberge86ad712006-12-11 00:30:06 +0100262foreach my $f (@files) {
263 next if grep { $_ eq $f } @afiles;
Yann Dirson576cfc82006-01-06 21:54:41 +0100264 # TODO:we need to handle removed in cvs
Steffen Prohaskac56f0d92007-05-10 01:06:36 +0200265 unless (defined ($cvsstat{$f}) and $cvsstat{$f} eq "Up-to-date") {
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300266 $dirty = 1;
Steffen Prohaskac56f0d92007-05-10 01:06:36 +0200267 warn "File $f not up to date but has status '$cvsstat{$f}' in your CVS checkout!\n";
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300268 }
269}
270if ($dirty) {
Martin Langhoff992793c2006-04-26 12:26:16 +1200271 if ($opt_f) { warn "The tree is not clean -- forced merge\n";
272 $dirty = 0;
273 } else {
274 die "Exiting: your CVS tree is not clean for this merge.";
275 }
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300276}
277
Robin Rosenberge86ad712006-12-11 00:30:06 +0100278print "Applying\n";
Johannes Schindelind7757342008-05-14 15:29:49 +0100279if ($opt_W) {
280 system("git checkout -q $commit^0") && die "cannot patch";
281} else {
282 `GIT_DIR= git-apply $context --summary --numstat --apply <.cvsexportcommit.diff` || die "cannot patch";
283}
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300284
Robin Rosenberge86ad712006-12-11 00:30:06 +0100285print "Patch applied successfully. Adding new files and directories to CVS\n";
286my $dirtypatch = 0;
Alex Benneefd0b9592007-10-18 17:15:44 +0100287
288#
289# We have to add the directories in order otherwise we will have
290# problems when we try and add the sub-directory of a directory we
291# have not added yet.
292#
293# Luckily this is easy to deal with by sorting the directories and
294# dealing with the shortest ones first.
295#
296@dirs = sort { length $a <=> length $b} @dirs;
297
Yann Dirson3f0f7562006-05-27 18:39:35 +0200298foreach my $d (@dirs) {
Simon 'corecode' Schubert4a6b9bb2007-02-18 18:17:08 +0100299 if (system(@cvs,'add',$d)) {
Robin Rosenberge86ad712006-12-11 00:30:06 +0100300 $dirtypatch = 1;
Yann Dirson3f0f7562006-05-27 18:39:35 +0200301 warn "Failed to cvs add directory $d -- you may need to do it manually";
302 }
303}
304
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300305foreach my $f (@afiles) {
Robin Rosenbergfe142b32006-11-12 16:29:42 +0100306 if (grep { $_ eq $f } @bfiles) {
Simon 'corecode' Schubert4a6b9bb2007-02-18 18:17:08 +0100307 system(@cvs, 'add','-kb',$f);
Robin Rosenbergfe142b32006-11-12 16:29:42 +0100308 } else {
Simon 'corecode' Schubert4a6b9bb2007-02-18 18:17:08 +0100309 system(@cvs, 'add', $f);
Robin Rosenbergfe142b32006-11-12 16:29:42 +0100310 }
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300311 if ($?) {
Robin Rosenberge86ad712006-12-11 00:30:06 +0100312 $dirtypatch = 1;
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300313 warn "Failed to cvs add $f -- you may need to do it manually";
314 }
315}
316
317foreach my $f (@dfiles) {
Simon 'corecode' Schubert4a6b9bb2007-02-18 18:17:08 +0100318 system(@cvs, 'rm', '-f', $f);
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300319 if ($?) {
Robin Rosenberge86ad712006-12-11 00:30:06 +0100320 $dirtypatch = 1;
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300321 warn "Failed to cvs rm -f $f -- you may need to do it manually";
322 }
323}
324
325print "Commit to CVS\n";
Robin Rosenberge86ad712006-12-11 00:30:06 +0100326print "Patch title (first comment line): $title\n";
327my @commitfiles = map { unless (m/\s/) { '\''.$_.'\''; } else { $_; }; } (@files);
Simon 'corecode' Schubert4a6b9bb2007-02-18 18:17:08 +0100328my $cmd = join(' ', @cvs)." commit -F .msg @commitfiles";
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300329
330if ($dirtypatch) {
331 print "NOTE: One or more hunks failed to apply cleanly.\n";
Robin Rosenberge86ad712006-12-11 00:30:06 +0100332 print "You'll need to apply the patch in .cvsexportcommit.diff manually\n";
333 print "using a patch program. After applying the patch and resolving the\n";
334 print "problems you may commit using:";
Robin Rosenberg648ee552007-10-31 23:12:20 +0100335 print "\n cd \"$opt_w\"" if $opt_w;
Johannes Schindelind7757342008-05-14 15:29:49 +0100336 print "\n $cmd\n";
337 print "\n git checkout $go_back_to\n" if $go_back_to;
338 print "\n";
Junio C Hamano27dedf02005-11-16 21:32:44 -0800339 exit(1);
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300340}
341
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300342if ($opt_c) {
343 print "Autocommit\n $cmd\n";
Jeff King38a5b1d2007-12-14 04:15:47 -0500344 print xargs_safe_pipe_capture([@cvs, 'commit', '-F', '.msg'], @files);
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300345 if ($?) {
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300346 die "Exiting: The commit did not succeed";
347 }
348 print "Committed successfully to CVS\n";
Gerrit Papecf70c162007-02-28 12:35:39 +0000349 # clean up
350 unlink(".msg");
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300351} else {
352 print "Ready for you to commit, just run:\n\n $cmd\n";
353}
Robin Rosenberge86ad712006-12-11 00:30:06 +0100354
355# clean up
356unlink(".cvsexportcommit.diff");
Robin Rosenberge86ad712006-12-11 00:30:06 +0100357
Johannes Schindelind7757342008-05-14 15:29:49 +0100358if ($opt_W) {
359 system("git checkout $go_back_to") && die "cannot move back to $go_back_to";
360 if (!($go_back_to =~ /^[0-9a-fA-F]{40}$/)) {
361 system("git symbolic-ref HEAD $go_back_to") &&
362 die "cannot move back to $go_back_to";
363 }
364}
365
Robin Rosenbergf836f1a2007-07-25 00:56:20 +0200366# CVS version 1.11.x and 1.12.x sleeps the wrong way to ensure the timestamp
367# used by CVS and the one set by subsequence file modifications are different.
368# If they are not different CVS will not detect changes.
369sleep(1);
370
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300371sub usage {
372 print STDERR <<END;
Stephan Beyer1b1dd232008-07-13 15:36:15 +0200373Usage: GIT_DIR=/path/to/.git git cvsexportcommit [-h] [-p] [-v] [-c] [-f] [-u] [-w cvsworkdir] [-m msgprefix] [ parent ] commit
Martin Langhoff5e0306a2005-11-07 17:57:08 +1300374END
375 exit(1);
376}
377
Pavel Roskin82e5a822006-07-10 01:50:18 -0400378# An alternative to `command` that allows input to be passed as an array
Martin Langhoffd41df152006-01-30 19:12:12 +1300379# to work around shell problems with weird characters in arguments
380# if the exec returns non-zero we die
381sub safe_pipe_capture {
382 my @output;
383 if (my $pid = open my $child, '-|') {
384 @output = (<$child>);
385 close $child or die join(' ',@_).": $! $?";
386 } else {
387 exec(@_) or die "$! $?"; # exec() can fail the executable can't be found
388 }
389 return wantarray ? @output : join('',@output);
390}
Jim Meyering7c0f7022006-12-04 08:44:08 +0100391
Jeff King38a5b1d2007-12-14 04:15:47 -0500392sub xargs_safe_pipe_capture {
393 my $MAX_ARG_LENGTH = 65536;
394 my $cmd = shift;
395 my @output;
396 my $output;
397 while(@_) {
398 my @args;
399 my $length = 0;
400 while(@_ && $length < $MAX_ARG_LENGTH) {
401 push @args, shift;
402 $length += length($args[$#args]);
403 }
404 if (wantarray) {
405 push @output, safe_pipe_capture(@$cmd, @args);
406 }
407 else {
408 $output .= safe_pipe_capture(@$cmd, @args);
409 }
410 }
411 return wantarray ? @output : $output;
Jim Meyering7c0f7022006-12-04 08:44:08 +0100412}