]> git.ipfire.org Git - thirdparty/git.git/blame - git-cvsexportcommit.perl
Git 2.45-rc1
[thirdparty/git.git] / git-cvsexportcommit.perl
CommitLineData
3328aced 1#!/usr/bin/perl
5e0306ad 2
d13a73e3 3use 5.008001;
5e0306ad 4use strict;
3328aced 5use warnings;
5e0306ad
ML
6use Getopt::Std;
7use File::Temp qw(tempdir);
8use Data::Dumper;
3f0f756b 9use File::Basename qw(basename dirname);
a7237594 10use File::Spec;
325abb7b 11use Git;
5e0306ad 12
907ffe15 13our ($opt_h, $opt_P, $opt_p, $opt_v, $opt_c, $opt_f, $opt_a, $opt_m, $opt_d, $opt_u, $opt_w, $opt_W, $opt_k);
5e0306ad 14
907ffe15 15getopts('uhPpvcfkam:d:w:W');
5e0306ad
ML
16
17$opt_h && usage();
18
19die "Need at least one commit identifier!" unless @ARGV;
20
325abb7b
TP
21# Get git-config settings
22my $repo = Git->repository();
23$opt_w = $repo->config('cvsexportcommit.cvsdir') unless defined $opt_w;
24
6103d58b 25my $tmpdir = File::Temp::tempdir(CLEANUP => 1);
6e9c4d40 26my $hash_algo = $repo->config('extensions.objectformat') || 'sha1';
27my $hexsz = $hash_algo eq 'sha256' ? 64 : 40;
28
d775734c 29if ($opt_w || $opt_W) {
a7237594 30 # Remember where GIT_DIR is before changing to CVS checkout
648ee550 31 unless ($ENV{GIT_DIR}) {
a7237594 32 # No GIT_DIR set. Figure it out for ourselves
7cff3b67 33 my $gd =`git rev-parse --git-dir`;
648ee550 34 chomp($gd);
648ee550
RR
35 $ENV{GIT_DIR} = $gd;
36 }
37495eef
SS
37
38 # On MSYS, convert a Windows-style path to an MSYS-style path
39 # so that rel2abs() below works correctly.
40 if ($^O eq 'msys') {
41 $ENV{GIT_DIR} =~ s#^([[:alpha:]]):/#/$1/#;
42 }
43
a7237594
JH
44 # Make sure GIT_DIR is absolute
45 $ENV{GIT_DIR} = File::Spec->rel2abs($ENV{GIT_DIR});
d775734c 46}
648ee550 47
d775734c 48if ($opt_w) {
648ee550
RR
49 if (! -d $opt_w."/CVS" ) {
50 die "$opt_w is not a CVS checkout";
51 }
52 chdir $opt_w or die "Cannot change to CVS checkout at $opt_w";
53}
54unless ($ENV{GIT_DIR} && -r $ENV{GIT_DIR}){
55 die "GIT_DIR is not defined or is unreadable";
56}
57
58
4a6b9bb6
SS
59my @cvs;
60if ($opt_d) {
61 @cvs = ('cvs', '-d', $opt_d);
62} else {
63 @cvs = ('cvs');
64}
65
5e0306ad
ML
66# resolve target commit
67my $commit;
68$commit = pop @ARGV;
7cff3b67 69$commit = safe_pipe_capture('git', 'rev-parse', '--verify', "$commit^0");
5e0306ad
ML
70chomp $commit;
71if ($?) {
72 die "The commit reference $commit did not resolve!";
73}
74
75# resolve what parent we want
76my $parent;
77if (@ARGV) {
78 $parent = pop @ARGV;
7cff3b67 79 $parent = safe_pipe_capture('git', 'rev-parse', '--verify', "$parent^0");
5e0306ad
ML
80 chomp $parent;
81 if ($?) {
82 die "The parent reference did not resolve!";
83 }
84}
85
86# find parents from the commit itself
7cff3b67 87my @commit = safe_pipe_capture('git', 'cat-file', 'commit', $commit);
5e0306ad 88my @parents;
1b91abe3
ML
89my $committer;
90my $author;
91my $stage = 'headers'; # headers, msg
92my $title;
93my $msg = '';
94
95foreach my $line (@commit) {
96 chomp $line;
97 if ($stage eq 'headers' && $line eq '') {
98 $stage = 'msg';
99 next;
5e0306ad 100 }
1b91abe3
ML
101
102 if ($stage eq 'headers') {
6e9c4d40 103 if ($line =~ m/^parent ([0-9a-f]{$hexsz})$/) { # found a parent
1b91abe3 104 push @parents, $1;
fe142b3a 105 } elsif ($line =~ m/^author (.+) \d+ [-+]\d+$/) {
1b91abe3 106 $author = $1;
fe142b3a 107 } elsif ($line =~ m/^committer (.+) \d+ [-+]\d+$/) {
1b91abe3
ML
108 $committer = $1;
109 }
110 } else {
111 $msg .= $line . "\n";
112 unless ($title) {
113 $title = $line;
114 }
5e0306ad
ML
115 }
116}
117
6e9c4d40 118my $noparent = "0" x $hexsz;
5e0306ad 119if ($parent) {
135a522e 120 my $found;
5e0306ad
ML
121 # double check that it's a valid parent
122 foreach my $p (@parents) {
5e0306ad
ML
123 if ($p eq $parent) {
124 $found = 1;
125 last;
126 }; # found it
e09f5d7b 127 }
ca28370a 128 die "Did not find $parent in the parents for this commit!" if !$found and !$opt_P;
5e0306ad
ML
129} else { # we don't have a parent from the cmdline...
130 if (@parents == 1) { # it's safe to get it from the commit
131 $parent = $parents[0];
6b6012e6
BK
132 } elsif (@parents == 0) { # there is no parent
133 $parent = $noparent;
134 } else { # cannot choose automatically from multiple parents
135 die "This commit has more than one parent -- please name the parent you want to use explicitly";
5e0306ad
ML
136 }
137}
138
d775734c
JS
139my $go_back_to = 0;
140
141if ($opt_W) {
142 $opt_v && print "Resetting to $parent\n";
143 $go_back_to = `git symbolic-ref HEAD 2> /dev/null ||
144 git rev-parse HEAD` || die "Could not determine current branch";
145 system("git checkout -q $parent^0") && die "Could not check out $parent^0";
146}
147
5e0306ad
ML
148$opt_v && print "Applying to CVS commit $commit from parent $parent\n";
149
150# grab the commit message
992793c8 151open(MSG, ">.msg") or die "Cannot open .msg for writing";
1b91abe3
ML
152if ($opt_m) {
153 print MSG $opt_m;
154}
155print MSG $msg;
156if ($opt_a) {
157 print MSG "\n\nAuthor: $author\n";
158 if ($author ne $committer) {
159 print MSG "Committer: $committer\n";
160 }
161}
992793c8
ML
162close MSG;
163
6b6012e6 164if ($parent eq $noparent) {
7cff3b67 165 `git diff-tree --binary -p --root $commit >.cvsexportcommit.diff`;# || die "Cannot diff";
6b6012e6 166} else {
7cff3b67 167 `git diff-tree --binary -p $parent $commit >.cvsexportcommit.diff`;# || die "Cannot diff";
6b6012e6 168}
e86ad71f
RR
169
170## apply non-binary changes
fc1f458c
TB
171
172# In pedantic mode require all lines of context to match. In normal
173# mode, be compatible with diff/patch: assume 3 lines of context and
174# require at least one line match, i.e. ignore at most 2 lines of
175# context, like diff/patch do by default.
176my $context = $opt_p ? '' : '-C1';
e86ad71f
RR
177
178print "Checking if patch will apply\n";
179
180my @stat;
7cff3b67 181open APPLY, "GIT_INDEX_FILE=$tmpdir/index git apply $context --summary --numstat<.cvsexportcommit.diff|" || die "cannot patch";
e86ad71f
RR
182@stat=<APPLY>;
183close APPLY || die "Cannot patch";
184my (@bfiles,@files,@afiles,@dfiles);
185chomp @stat;
186foreach (@stat) {
187 push (@bfiles,$1) if m/^-\t-\t(.*)$/;
188 push (@files, $1) if m/^-\t-\t(.*)$/;
189 push (@files, $1) if m/^\d+\t\d+\t(.*)$/;
190 push (@afiles,$1) if m/^ create mode [0-7]+ (.*)$/;
191 push (@dfiles,$1) if m/^ delete mode [0-7]+ (.*)$/;
5e0306ad 192}
e86ad71f
RR
193map { s/^"(.*)"$/$1/g } @bfiles,@files;
194map { s/\\([0-7]{3})/sprintf('%c',oct $1)/eg } @bfiles,@files;
5e0306ad
ML
195
196# check that the files are clean and up to date according to cvs
197my $dirty;
e86ad71f
RR
198my @dirs;
199foreach my $p (@afiles) {
200 my $path = dirname $p;
201 while (!-d $path and ! grep { $_ eq $path } @dirs) {
202 unshift @dirs, $path;
203 $path = dirname $path;
204 }
205}
206
c56f0d9c 207# ... check dirs,
3f0f756b
YD
208foreach my $d (@dirs) {
209 if (-e $d) {
210 $dirty = 1;
211 warn "$d exists and is not a directory!\n";
212 }
213}
c56f0d9c
SP
214
215# ... query status of all files that we have a directory for and parse output of 'cvs status' to %cvsstat.
216my @canstatusfiles;
217foreach my $f (@files) {
218 my $path = dirname $f;
219 next if (grep { $_ eq $path } @dirs);
220 push @canstatusfiles, $f;
221}
222
223my %cvsstat;
224if (@canstatusfiles) {
e5d80641 225 if ($opt_u) {
38a5b1d6 226 my @updated = xargs_safe_pipe_capture([@cvs, 'update'], @canstatusfiles);
e5d80641
RR
227 print @updated;
228 }
fef3a7cc
JS
229 # "cvs status" reorders the parameters, notably when there are multiple
230 # arguments with the same basename. So be precise here.
231
232 my %added = map { $_ => 1 } @afiles;
233 my %todo = map { $_ => 1 } @canstatusfiles;
234
235 while (%todo) {
236 my @canstatusfiles2 = ();
237 my %fullname = ();
238 foreach my $name (keys %todo) {
239 my $basename = basename($name);
240
54d5cc0e
NS
241 # CVS reports files that don't exist in the current revision as
242 # "no file $basename" in its "status" output, so we should
243 # anticipate that. Totally unknown files will have a status
244 # "Unknown". However, if they exist in the Attic, their status
245 # will be "Up-to-date" (this means they were added once but have
246 # been removed).
247 $basename = "no file $basename" if $added{$basename};
248
57e0e3eb
JS
249 $basename =~ s/^\s+//;
250 $basename =~ s/\s+$//;
fef3a7cc
JS
251
252 if (!exists($fullname{$basename})) {
253 $fullname{$basename} = $name;
254 push (@canstatusfiles2, $name);
255 delete($todo{$name});
54d5cc0e 256 }
fef3a7cc
JS
257 }
258 my @cvsoutput;
259 @cvsoutput = xargs_safe_pipe_capture([@cvs, 'status'], @canstatusfiles2);
260 foreach my $l (@cvsoutput) {
54d5cc0e
NS
261 chomp $l;
262 next unless
263 my ($file, $status) = $l =~ /^File:\s+(.*\S)\s+Status: (.*)$/;
264
265 my $fullname = $fullname{$file};
266 print STDERR "Huh? Status '$status' reported for unexpected file '$file'\n"
267 unless defined $fullname;
268
269 # This response means the file does not exist except in
270 # CVS's attic, so set the status accordingly
271 $status = "In-attic"
272 if $file =~ /^no file /
273 && $status eq 'Up-to-date';
274
3115fe98
NS
275 $cvsstat{$fullname{$file}} = $status
276 if defined $fullname{$file};
fef3a7cc 277 }
fe142b3a 278 }
c56f0d9c
SP
279}
280
54d5cc0e 281# ... Validate that new files have the correct status
c56f0d9c 282foreach my $f (@afiles) {
54d5cc0e
NS
283 next unless defined(my $stat = $cvsstat{$f});
284
285 # This means the file has never been seen before
286 next if $stat eq 'Unknown';
287
288 # This means the file has been seen before but was removed
289 next if $stat eq 'In-attic';
290
291 $dirty = 1;
992793c8 292 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";
c56f0d9c 293 warn "Status was: $cvsstat{$f}\n";
576cfc86 294}
54d5cc0e 295
c56f0d9c 296# ... validate known files.
e86ad71f
RR
297foreach my $f (@files) {
298 next if grep { $_ eq $f } @afiles;
576cfc86 299 # TODO:we need to handle removed in cvs
c56f0d9c 300 unless (defined ($cvsstat{$f}) and $cvsstat{$f} eq "Up-to-date") {
5e0306ad 301 $dirty = 1;
c56f0d9c 302 warn "File $f not up to date but has status '$cvsstat{$f}' in your CVS checkout!\n";
5e0306ad 303 }
907ffe15
AB
304
305 # Depending on how your GIT tree got imported from CVS you may
306 # have a conflict between expanded keywords in your CVS tree and
307 # unexpanded keywords in the patch about to be applied.
308 if ($opt_k) {
309 my $orig_file ="$f.orig";
310 rename $f, $orig_file;
311 open(FILTER_IN, "<$orig_file") or die "Cannot open $orig_file\n";
312 open(FILTER_OUT, ">$f") or die "Cannot open $f\n";
313 while (<FILTER_IN>)
314 {
315 my $line = $_;
444f29ce 316 $line =~ s/\$([A-Z][a-z]+):[^\$]+\$/\$$1\$/g;
907ffe15
AB
317 print FILTER_OUT $line;
318 }
319 close FILTER_IN;
320 close FILTER_OUT;
321 }
5e0306ad 322}
907ffe15 323
5e0306ad 324if ($dirty) {
992793c8
ML
325 if ($opt_f) { warn "The tree is not clean -- forced merge\n";
326 $dirty = 0;
327 } else {
328 die "Exiting: your CVS tree is not clean for this merge.";
329 }
5e0306ad
ML
330}
331
e86ad71f 332print "Applying\n";
d775734c
JS
333if ($opt_W) {
334 system("git checkout -q $commit^0") && die "cannot patch";
335} else {
7cff3b67 336 `GIT_INDEX_FILE=$tmpdir/index git apply $context --summary --numstat --apply <.cvsexportcommit.diff` || die "cannot patch";
d775734c 337}
5e0306ad 338
e86ad71f
RR
339print "Patch applied successfully. Adding new files and directories to CVS\n";
340my $dirtypatch = 0;
fd0b9594
AB
341
342#
343# We have to add the directories in order otherwise we will have
344# problems when we try and add the sub-directory of a directory we
345# have not added yet.
346#
347# Luckily this is easy to deal with by sorting the directories and
348# dealing with the shortest ones first.
349#
350@dirs = sort { length $a <=> length $b} @dirs;
351
3f0f756b 352foreach my $d (@dirs) {
4a6b9bb6 353 if (system(@cvs,'add',$d)) {
e86ad71f 354 $dirtypatch = 1;
3f0f756b
YD
355 warn "Failed to cvs add directory $d -- you may need to do it manually";
356 }
357}
358
5e0306ad 359foreach my $f (@afiles) {
fe142b3a 360 if (grep { $_ eq $f } @bfiles) {
4a6b9bb6 361 system(@cvs, 'add','-kb',$f);
fe142b3a 362 } else {
4a6b9bb6 363 system(@cvs, 'add', $f);
fe142b3a 364 }
5e0306ad 365 if ($?) {
e86ad71f 366 $dirtypatch = 1;
5e0306ad
ML
367 warn "Failed to cvs add $f -- you may need to do it manually";
368 }
369}
370
371foreach my $f (@dfiles) {
4a6b9bb6 372 system(@cvs, 'rm', '-f', $f);
5e0306ad 373 if ($?) {
e86ad71f 374 $dirtypatch = 1;
5e0306ad
ML
375 warn "Failed to cvs rm -f $f -- you may need to do it manually";
376 }
377}
378
379print "Commit to CVS\n";
e86ad71f
RR
380print "Patch title (first comment line): $title\n";
381my @commitfiles = map { unless (m/\s/) { '\''.$_.'\''; } else { $_; }; } (@files);
4a6b9bb6 382my $cmd = join(' ', @cvs)." commit -F .msg @commitfiles";
5e0306ad
ML
383
384if ($dirtypatch) {
385 print "NOTE: One or more hunks failed to apply cleanly.\n";
e86ad71f
RR
386 print "You'll need to apply the patch in .cvsexportcommit.diff manually\n";
387 print "using a patch program. After applying the patch and resolving the\n";
388 print "problems you may commit using:";
648ee550 389 print "\n cd \"$opt_w\"" if $opt_w;
d775734c
JS
390 print "\n $cmd\n";
391 print "\n git checkout $go_back_to\n" if $go_back_to;
392 print "\n";
27dedf0c 393 exit(1);
5e0306ad
ML
394}
395
5e0306ad
ML
396if ($opt_c) {
397 print "Autocommit\n $cmd\n";
38a5b1d6 398 print xargs_safe_pipe_capture([@cvs, 'commit', '-F', '.msg'], @files);
5e0306ad 399 if ($?) {
5e0306ad
ML
400 die "Exiting: The commit did not succeed";
401 }
402 print "Committed successfully to CVS\n";
cf70c16f
GP
403 # clean up
404 unlink(".msg");
5e0306ad
ML
405} else {
406 print "Ready for you to commit, just run:\n\n $cmd\n";
407}
e86ad71f
RR
408
409# clean up
410unlink(".cvsexportcommit.diff");
e86ad71f 411
d775734c
JS
412if ($opt_W) {
413 system("git checkout $go_back_to") && die "cannot move back to $go_back_to";
6e9c4d40 414 if (!($go_back_to =~ /^[0-9a-fA-F]{$hexsz}$/)) {
d775734c
JS
415 system("git symbolic-ref HEAD $go_back_to") &&
416 die "cannot move back to $go_back_to";
417 }
418}
419
f836f1ae
RR
420# CVS version 1.11.x and 1.12.x sleeps the wrong way to ensure the timestamp
421# used by CVS and the one set by subsequence file modifications are different.
422# If they are not different CVS will not detect changes.
423sleep(1);
424
5e0306ad
ML
425sub usage {
426 print STDERR <<END;
4c0df34f 427usage: GIT_DIR=/path/to/.git git cvsexportcommit [-h] [-p] [-v] [-c] [-f] [-u] [-k] [-w cvsworkdir] [-m msgprefix] [ parent ] commit
5e0306ad
ML
428END
429 exit(1);
430}
431
82e5a82f 432# An alternative to `command` that allows input to be passed as an array
d41df15e
ML
433# to work around shell problems with weird characters in arguments
434# if the exec returns non-zero we die
435sub safe_pipe_capture {
436 my @output;
437 if (my $pid = open my $child, '-|') {
1ac8d363 438 binmode($child, ":crlf");
d41df15e
ML
439 @output = (<$child>);
440 close $child or die join(' ',@_).": $! $?";
441 } else {
442 exec(@_) or die "$! $?"; # exec() can fail the executable can't be found
443 }
444 return wantarray ? @output : join('',@output);
445}
7c0f7028 446
38a5b1d6
JK
447sub xargs_safe_pipe_capture {
448 my $MAX_ARG_LENGTH = 65536;
449 my $cmd = shift;
450 my @output;
451 my $output;
452 while(@_) {
453 my @args;
454 my $length = 0;
455 while(@_ && $length < $MAX_ARG_LENGTH) {
456 push @args, shift;
457 $length += length($args[$#args]);
458 }
459 if (wantarray) {
460 push @output, safe_pipe_capture(@$cmd, @args);
461 }
462 else {
463 $output .= safe_pipe_capture(@$cmd, @args);
464 }
465 }
466 return wantarray ? @output : $output;
7c0f7028 467}