]> git.ipfire.org Git - thirdparty/git.git/blame - git-cvsexportcommit.perl
GIT 1.5.4.2
[thirdparty/git.git] / git-cvsexportcommit.perl
CommitLineData
5e0306ad
ML
1#!/usr/bin/perl -w
2
3use strict;
4use Getopt::Std;
5use File::Temp qw(tempdir);
6use Data::Dumper;
3f0f756b 7use File::Basename qw(basename dirname);
5e0306ad 8
648ee550 9our ($opt_h, $opt_P, $opt_p, $opt_v, $opt_c, $opt_f, $opt_a, $opt_m, $opt_d, $opt_u, $opt_w);
5e0306ad 10
648ee550 11getopts('uhPpvcfam:d:w:');
5e0306ad
ML
12
13$opt_h && usage();
14
15die "Need at least one commit identifier!" unless @ARGV;
16
648ee550
RR
17if ($opt_w) {
18 unless ($ENV{GIT_DIR}) {
19 # Remember where our GIT_DIR is before changing to CVS checkout
20 my $gd =`git-rev-parse --git-dir`;
21 chomp($gd);
22 if ($gd eq '.git') {
23 my $wd = `pwd`;
24 chomp($wd);
25 $gd = $wd."/.git" ;
26 }
27 $ENV{GIT_DIR} = $gd;
28 }
29
30 if (! -d $opt_w."/CVS" ) {
31 die "$opt_w is not a CVS checkout";
32 }
33 chdir $opt_w or die "Cannot change to CVS checkout at $opt_w";
34}
35unless ($ENV{GIT_DIR} && -r $ENV{GIT_DIR}){
36 die "GIT_DIR is not defined or is unreadable";
37}
38
39
4a6b9bb6
SS
40my @cvs;
41if ($opt_d) {
42 @cvs = ('cvs', '-d', $opt_d);
43} else {
44 @cvs = ('cvs');
45}
46
5e0306ad
ML
47# resolve target commit
48my $commit;
49$commit = pop @ARGV;
d41df15e 50$commit = safe_pipe_capture('git-rev-parse', '--verify', "$commit^0");
5e0306ad
ML
51chomp $commit;
52if ($?) {
53 die "The commit reference $commit did not resolve!";
54}
55
56# resolve what parent we want
57my $parent;
58if (@ARGV) {
59 $parent = pop @ARGV;
d41df15e 60 $parent = safe_pipe_capture('git-rev-parse', '--verify', "$parent^0");
5e0306ad
ML
61 chomp $parent;
62 if ($?) {
63 die "The parent reference did not resolve!";
64 }
65}
66
67# find parents from the commit itself
d41df15e 68my @commit = safe_pipe_capture('git-cat-file', 'commit', $commit);
5e0306ad 69my @parents;
1b91abe3
ML
70my $committer;
71my $author;
72my $stage = 'headers'; # headers, msg
73my $title;
74my $msg = '';
75
76foreach my $line (@commit) {
77 chomp $line;
78 if ($stage eq 'headers' && $line eq '') {
79 $stage = 'msg';
80 next;
5e0306ad 81 }
1b91abe3
ML
82
83 if ($stage eq 'headers') {
84 if ($line =~ m/^parent (\w{40})$/) { # found a parent
85 push @parents, $1;
fe142b3a 86 } elsif ($line =~ m/^author (.+) \d+ [-+]\d+$/) {
1b91abe3 87 $author = $1;
fe142b3a 88 } elsif ($line =~ m/^committer (.+) \d+ [-+]\d+$/) {
1b91abe3
ML
89 $committer = $1;
90 }
91 } else {
92 $msg .= $line . "\n";
93 unless ($title) {
94 $title = $line;
95 }
5e0306ad
ML
96 }
97}
98
6b6012e6 99my $noparent = "0000000000000000000000000000000000000000";
5e0306ad 100if ($parent) {
135a522e 101 my $found;
5e0306ad
ML
102 # double check that it's a valid parent
103 foreach my $p (@parents) {
5e0306ad
ML
104 if ($p eq $parent) {
105 $found = 1;
106 last;
107 }; # found it
e09f5d7b 108 }
ca28370a 109 die "Did not find $parent in the parents for this commit!" if !$found and !$opt_P;
5e0306ad
ML
110} else { # we don't have a parent from the cmdline...
111 if (@parents == 1) { # it's safe to get it from the commit
112 $parent = $parents[0];
6b6012e6
BK
113 } elsif (@parents == 0) { # there is no parent
114 $parent = $noparent;
115 } else { # cannot choose automatically from multiple parents
116 die "This commit has more than one parent -- please name the parent you want to use explicitly";
5e0306ad
ML
117 }
118}
119
120$opt_v && print "Applying to CVS commit $commit from parent $parent\n";
121
122# grab the commit message
992793c8 123open(MSG, ">.msg") or die "Cannot open .msg for writing";
1b91abe3
ML
124if ($opt_m) {
125 print MSG $opt_m;
126}
127print MSG $msg;
128if ($opt_a) {
129 print MSG "\n\nAuthor: $author\n";
130 if ($author ne $committer) {
131 print MSG "Committer: $committer\n";
132 }
133}
992793c8
ML
134close MSG;
135
6b6012e6
BK
136if ($parent eq $noparent) {
137 `git-diff-tree --binary -p --root $commit >.cvsexportcommit.diff`;# || die "Cannot diff";
138} else {
139 `git-diff-tree --binary -p $parent $commit >.cvsexportcommit.diff`;# || die "Cannot diff";
140}
e86ad71f
RR
141
142## apply non-binary changes
fc1f458c
TB
143
144# In pedantic mode require all lines of context to match. In normal
145# mode, be compatible with diff/patch: assume 3 lines of context and
146# require at least one line match, i.e. ignore at most 2 lines of
147# context, like diff/patch do by default.
148my $context = $opt_p ? '' : '-C1';
e86ad71f
RR
149
150print "Checking if patch will apply\n";
151
152my @stat;
54f0db79 153open APPLY, "GIT_DIR= git-apply $context --summary --numstat<.cvsexportcommit.diff|" || die "cannot patch";
e86ad71f
RR
154@stat=<APPLY>;
155close APPLY || die "Cannot patch";
156my (@bfiles,@files,@afiles,@dfiles);
157chomp @stat;
158foreach (@stat) {
159 push (@bfiles,$1) if m/^-\t-\t(.*)$/;
160 push (@files, $1) if m/^-\t-\t(.*)$/;
161 push (@files, $1) if m/^\d+\t\d+\t(.*)$/;
162 push (@afiles,$1) if m/^ create mode [0-7]+ (.*)$/;
163 push (@dfiles,$1) if m/^ delete mode [0-7]+ (.*)$/;
5e0306ad 164}
e86ad71f
RR
165map { s/^"(.*)"$/$1/g } @bfiles,@files;
166map { s/\\([0-7]{3})/sprintf('%c',oct $1)/eg } @bfiles,@files;
5e0306ad
ML
167
168# check that the files are clean and up to date according to cvs
169my $dirty;
e86ad71f
RR
170my @dirs;
171foreach my $p (@afiles) {
172 my $path = dirname $p;
173 while (!-d $path and ! grep { $_ eq $path } @dirs) {
174 unshift @dirs, $path;
175 $path = dirname $path;
176 }
177}
178
c56f0d9c 179# ... check dirs,
3f0f756b
YD
180foreach my $d (@dirs) {
181 if (-e $d) {
182 $dirty = 1;
183 warn "$d exists and is not a directory!\n";
184 }
185}
c56f0d9c
SP
186
187# ... query status of all files that we have a directory for and parse output of 'cvs status' to %cvsstat.
188my @canstatusfiles;
189foreach my $f (@files) {
190 my $path = dirname $f;
191 next if (grep { $_ eq $path } @dirs);
192 push @canstatusfiles, $f;
193}
194
195my %cvsstat;
196if (@canstatusfiles) {
e5d80641 197 if ($opt_u) {
38a5b1d6 198 my @updated = xargs_safe_pipe_capture([@cvs, 'update'], @canstatusfiles);
e5d80641
RR
199 print @updated;
200 }
c56f0d9c 201 my @cvsoutput;
38a5b1d6 202 @cvsoutput = xargs_safe_pipe_capture([@cvs, 'status'], @canstatusfiles);
c56f0d9c
SP
203 my $matchcount = 0;
204 foreach my $l (@cvsoutput) {
205 chomp $l;
206 if ( $l =~ /^File:/ and $l =~ /Status: (.*)$/ ) {
207 $cvsstat{$canstatusfiles[$matchcount]} = $1;
208 $matchcount++;
209 }
fe142b3a 210 }
c56f0d9c
SP
211}
212
213# ... validate new files,
214foreach my $f (@afiles) {
215 if (defined ($cvsstat{$f}) and $cvsstat{$f} ne "Unknown") {
a6080a0a 216 $dirty = 1;
992793c8 217 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 218 warn "Status was: $cvsstat{$f}\n";
576cfc86
YD
219 }
220}
c56f0d9c 221# ... validate known files.
e86ad71f
RR
222foreach my $f (@files) {
223 next if grep { $_ eq $f } @afiles;
576cfc86 224 # TODO:we need to handle removed in cvs
c56f0d9c 225 unless (defined ($cvsstat{$f}) and $cvsstat{$f} eq "Up-to-date") {
5e0306ad 226 $dirty = 1;
c56f0d9c 227 warn "File $f not up to date but has status '$cvsstat{$f}' in your CVS checkout!\n";
5e0306ad
ML
228 }
229}
230if ($dirty) {
992793c8
ML
231 if ($opt_f) { warn "The tree is not clean -- forced merge\n";
232 $dirty = 0;
233 } else {
234 die "Exiting: your CVS tree is not clean for this merge.";
235 }
5e0306ad
ML
236}
237
e86ad71f 238print "Applying\n";
54f0db79 239`GIT_DIR= git-apply $context --summary --numstat --apply <.cvsexportcommit.diff` || die "cannot patch";
5e0306ad 240
e86ad71f
RR
241print "Patch applied successfully. Adding new files and directories to CVS\n";
242my $dirtypatch = 0;
fd0b9594
AB
243
244#
245# We have to add the directories in order otherwise we will have
246# problems when we try and add the sub-directory of a directory we
247# have not added yet.
248#
249# Luckily this is easy to deal with by sorting the directories and
250# dealing with the shortest ones first.
251#
252@dirs = sort { length $a <=> length $b} @dirs;
253
3f0f756b 254foreach my $d (@dirs) {
4a6b9bb6 255 if (system(@cvs,'add',$d)) {
e86ad71f 256 $dirtypatch = 1;
3f0f756b
YD
257 warn "Failed to cvs add directory $d -- you may need to do it manually";
258 }
259}
260
5e0306ad 261foreach my $f (@afiles) {
fe142b3a 262 if (grep { $_ eq $f } @bfiles) {
4a6b9bb6 263 system(@cvs, 'add','-kb',$f);
fe142b3a 264 } else {
4a6b9bb6 265 system(@cvs, 'add', $f);
fe142b3a 266 }
5e0306ad 267 if ($?) {
e86ad71f 268 $dirtypatch = 1;
5e0306ad
ML
269 warn "Failed to cvs add $f -- you may need to do it manually";
270 }
271}
272
273foreach my $f (@dfiles) {
4a6b9bb6 274 system(@cvs, 'rm', '-f', $f);
5e0306ad 275 if ($?) {
e86ad71f 276 $dirtypatch = 1;
5e0306ad
ML
277 warn "Failed to cvs rm -f $f -- you may need to do it manually";
278 }
279}
280
281print "Commit to CVS\n";
e86ad71f
RR
282print "Patch title (first comment line): $title\n";
283my @commitfiles = map { unless (m/\s/) { '\''.$_.'\''; } else { $_; }; } (@files);
4a6b9bb6 284my $cmd = join(' ', @cvs)." commit -F .msg @commitfiles";
5e0306ad
ML
285
286if ($dirtypatch) {
287 print "NOTE: One or more hunks failed to apply cleanly.\n";
e86ad71f
RR
288 print "You'll need to apply the patch in .cvsexportcommit.diff manually\n";
289 print "using a patch program. After applying the patch and resolving the\n";
290 print "problems you may commit using:";
648ee550 291 print "\n cd \"$opt_w\"" if $opt_w;
5e0306ad 292 print "\n $cmd\n\n";
27dedf0c 293 exit(1);
5e0306ad
ML
294}
295
5e0306ad
ML
296if ($opt_c) {
297 print "Autocommit\n $cmd\n";
38a5b1d6 298 print xargs_safe_pipe_capture([@cvs, 'commit', '-F', '.msg'], @files);
5e0306ad 299 if ($?) {
5e0306ad
ML
300 die "Exiting: The commit did not succeed";
301 }
302 print "Committed successfully to CVS\n";
cf70c16f
GP
303 # clean up
304 unlink(".msg");
5e0306ad
ML
305} else {
306 print "Ready for you to commit, just run:\n\n $cmd\n";
307}
e86ad71f
RR
308
309# clean up
310unlink(".cvsexportcommit.diff");
e86ad71f 311
f836f1ae
RR
312# CVS version 1.11.x and 1.12.x sleeps the wrong way to ensure the timestamp
313# used by CVS and the one set by subsequence file modifications are different.
314# If they are not different CVS will not detect changes.
315sleep(1);
316
5e0306ad
ML
317sub usage {
318 print STDERR <<END;
648ee550 319Usage: GIT_DIR=/path/to/.git ${\basename $0} [-h] [-p] [-v] [-c] [-f] [-u] [-w cvsworkdir] [-m msgprefix] [ parent ] commit
5e0306ad
ML
320END
321 exit(1);
322}
323
82e5a82f 324# An alternative to `command` that allows input to be passed as an array
d41df15e
ML
325# to work around shell problems with weird characters in arguments
326# if the exec returns non-zero we die
327sub safe_pipe_capture {
328 my @output;
329 if (my $pid = open my $child, '-|') {
330 @output = (<$child>);
331 close $child or die join(' ',@_).": $! $?";
332 } else {
333 exec(@_) or die "$! $?"; # exec() can fail the executable can't be found
334 }
335 return wantarray ? @output : join('',@output);
336}
7c0f7028 337
38a5b1d6
JK
338sub xargs_safe_pipe_capture {
339 my $MAX_ARG_LENGTH = 65536;
340 my $cmd = shift;
341 my @output;
342 my $output;
343 while(@_) {
344 my @args;
345 my $length = 0;
346 while(@_ && $length < $MAX_ARG_LENGTH) {
347 push @args, shift;
348 $length += length($args[$#args]);
349 }
350 if (wantarray) {
351 push @output, safe_pipe_capture(@$cmd, @args);
352 }
353 else {
354 $output .= safe_pipe_capture(@$cmd, @args);
355 }
356 }
357 return wantarray ? @output : $output;
7c0f7028 358}