Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 1 | #!/usr/bin/perl -w |
| 2 | |
Yann Dirson | 0d71b31 | 2006-05-27 18:39:33 +0200 | [diff] [blame] | 3 | # Known limitations: |
Yann Dirson | 0d71b31 | 2006-05-27 18:39:33 +0200 | [diff] [blame] | 4 | # - does not propagate permissions |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 5 | # - error handling has not been extensively tested |
| 6 | # |
Yann Dirson | 0d71b31 | 2006-05-27 18:39:33 +0200 | [diff] [blame] | 7 | |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 8 | use strict; |
| 9 | use Getopt::Std; |
| 10 | use File::Temp qw(tempdir); |
| 11 | use Data::Dumper; |
Yann Dirson | 3f0f756 | 2006-05-27 18:39:35 +0200 | [diff] [blame] | 12 | use File::Basename qw(basename dirname); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 13 | |
| 14 | unless ($ENV{GIT_DIR} && -r $ENV{GIT_DIR}){ |
| 15 | die "GIT_DIR is not defined or is unreadable"; |
| 16 | } |
| 17 | |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 18 | our ($opt_h, $opt_P, $opt_p, $opt_v, $opt_c, $opt_f, $opt_a, $opt_m, $opt_d); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 19 | |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 20 | getopts('hPpvcfam:d:'); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 21 | |
| 22 | $opt_h && usage(); |
| 23 | |
| 24 | die "Need at least one commit identifier!" unless @ARGV; |
| 25 | |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 26 | my @cvs; |
| 27 | if ($opt_d) { |
| 28 | @cvs = ('cvs', '-d', $opt_d); |
| 29 | } else { |
| 30 | @cvs = ('cvs'); |
| 31 | } |
| 32 | |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 33 | # setup a tempdir |
| 34 | our ($tmpdir, $tmpdirname) = tempdir('git-cvsapplycommit-XXXXXX', |
| 35 | TMPDIR => 1, |
| 36 | CLEANUP => 1); |
| 37 | |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 38 | # resolve target commit |
| 39 | my $commit; |
| 40 | $commit = pop @ARGV; |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 41 | $commit = safe_pipe_capture('git-rev-parse', '--verify', "$commit^0"); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 42 | chomp $commit; |
| 43 | if ($?) { |
| 44 | die "The commit reference $commit did not resolve!"; |
| 45 | } |
| 46 | |
| 47 | # resolve what parent we want |
| 48 | my $parent; |
| 49 | if (@ARGV) { |
| 50 | $parent = pop @ARGV; |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 51 | $parent = safe_pipe_capture('git-rev-parse', '--verify', "$parent^0"); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 52 | chomp $parent; |
| 53 | if ($?) { |
| 54 | die "The parent reference did not resolve!"; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | # find parents from the commit itself |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 59 | my @commit = safe_pipe_capture('git-cat-file', 'commit', $commit); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 60 | my @parents; |
Martin Langhoff | 1b91abe | 2006-07-18 14:22:49 +1200 | [diff] [blame] | 61 | my $committer; |
| 62 | my $author; |
| 63 | my $stage = 'headers'; # headers, msg |
| 64 | my $title; |
| 65 | my $msg = ''; |
| 66 | |
| 67 | foreach my $line (@commit) { |
| 68 | chomp $line; |
| 69 | if ($stage eq 'headers' && $line eq '') { |
| 70 | $stage = 'msg'; |
| 71 | next; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 72 | } |
Martin Langhoff | 1b91abe | 2006-07-18 14:22:49 +1200 | [diff] [blame] | 73 | |
| 74 | if ($stage eq 'headers') { |
| 75 | if ($line =~ m/^parent (\w{40})$/) { # found a parent |
| 76 | push @parents, $1; |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 77 | } elsif ($line =~ m/^author (.+) \d+ [-+]\d+$/) { |
Martin Langhoff | 1b91abe | 2006-07-18 14:22:49 +1200 | [diff] [blame] | 78 | $author = $1; |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 79 | } elsif ($line =~ m/^committer (.+) \d+ [-+]\d+$/) { |
Martin Langhoff | 1b91abe | 2006-07-18 14:22:49 +1200 | [diff] [blame] | 80 | $committer = $1; |
| 81 | } |
| 82 | } else { |
| 83 | $msg .= $line . "\n"; |
| 84 | unless ($title) { |
| 85 | $title = $line; |
| 86 | } |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | |
| 90 | if ($parent) { |
Peter Baumann | 135a522 | 2006-07-07 12:55:41 +0200 | [diff] [blame] | 91 | my $found; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 92 | # double check that it's a valid parent |
| 93 | foreach my $p (@parents) { |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 94 | if ($p eq $parent) { |
| 95 | $found = 1; |
| 96 | last; |
| 97 | }; # found it |
Alexander Litvinov | e09f5d7 | 2005-11-09 13:02:58 +0600 | [diff] [blame] | 98 | } |
Simon 'corecode' Schubert | ca28370 | 2007-02-01 11:43:39 +0100 | [diff] [blame] | 99 | die "Did not find $parent in the parents for this commit!" if !$found and !$opt_P; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 100 | } else { # we don't have a parent from the cmdline... |
| 101 | if (@parents == 1) { # it's safe to get it from the commit |
| 102 | $parent = $parents[0]; |
| 103 | } else { # or perhaps not! |
| 104 | die "This commit has more than one parent -- please name the parent you want to use explicitly"; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | $opt_v && print "Applying to CVS commit $commit from parent $parent\n"; |
| 109 | |
| 110 | # grab the commit message |
Martin Langhoff | 992793c | 2006-04-26 12:26:16 +1200 | [diff] [blame] | 111 | open(MSG, ">.msg") or die "Cannot open .msg for writing"; |
Martin Langhoff | 1b91abe | 2006-07-18 14:22:49 +1200 | [diff] [blame] | 112 | if ($opt_m) { |
| 113 | print MSG $opt_m; |
| 114 | } |
| 115 | print MSG $msg; |
| 116 | if ($opt_a) { |
| 117 | print MSG "\n\nAuthor: $author\n"; |
| 118 | if ($author ne $committer) { |
| 119 | print MSG "Committer: $committer\n"; |
| 120 | } |
| 121 | } |
Martin Langhoff | 992793c | 2006-04-26 12:26:16 +1200 | [diff] [blame] | 122 | close MSG; |
| 123 | |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 124 | `git-diff-tree --binary -p $parent $commit >.cvsexportcommit.diff`;# || die "Cannot diff"; |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 125 | |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 126 | ## apply non-binary changes |
| 127 | my $fuzz = $opt_p ? 0 : 2; |
| 128 | |
| 129 | print "Checking if patch will apply\n"; |
| 130 | |
| 131 | my @stat; |
| 132 | open APPLY, "GIT_DIR= git-apply -C$fuzz --binary --summary --numstat<.cvsexportcommit.diff|" || die "cannot patch"; |
| 133 | @stat=<APPLY>; |
| 134 | close APPLY || die "Cannot patch"; |
| 135 | my (@bfiles,@files,@afiles,@dfiles); |
| 136 | chomp @stat; |
| 137 | foreach (@stat) { |
| 138 | push (@bfiles,$1) if m/^-\t-\t(.*)$/; |
| 139 | push (@files, $1) if m/^-\t-\t(.*)$/; |
| 140 | push (@files, $1) if m/^\d+\t\d+\t(.*)$/; |
| 141 | push (@afiles,$1) if m/^ create mode [0-7]+ (.*)$/; |
| 142 | push (@dfiles,$1) if m/^ delete mode [0-7]+ (.*)$/; |
| 143 | } |
| 144 | map { s/^"(.*)"$/$1/g } @bfiles,@files; |
| 145 | map { s/\\([0-7]{3})/sprintf('%c',oct $1)/eg } @bfiles,@files; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 146 | |
| 147 | # check that the files are clean and up to date according to cvs |
| 148 | my $dirty; |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 149 | my @dirs; |
| 150 | foreach my $p (@afiles) { |
| 151 | my $path = dirname $p; |
| 152 | while (!-d $path and ! grep { $_ eq $path } @dirs) { |
| 153 | unshift @dirs, $path; |
| 154 | $path = dirname $path; |
| 155 | } |
| 156 | } |
| 157 | |
Yann Dirson | 3f0f756 | 2006-05-27 18:39:35 +0200 | [diff] [blame] | 158 | foreach my $d (@dirs) { |
| 159 | if (-e $d) { |
| 160 | $dirty = 1; |
| 161 | warn "$d exists and is not a directory!\n"; |
| 162 | } |
| 163 | } |
Yann Dirson | 576cfc8 | 2006-01-06 21:54:41 +0100 | [diff] [blame] | 164 | foreach my $f (@afiles) { |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 165 | # This should return only one value |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 166 | if ($f =~ m,(.*)/[^/]*$,) { |
| 167 | my $p = $1; |
| 168 | next if (grep { $_ eq $p } @dirs); |
| 169 | } |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 170 | my @status = grep(m/^File/, safe_pipe_capture(@cvs, '-q', 'status' ,$f)); |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 171 | if (@status > 1) { warn 'Strange! cvs status returned more than one line?'}; |
Yann Dirson | 3f0f756 | 2006-05-27 18:39:35 +0200 | [diff] [blame] | 172 | if (-d dirname $f and $status[0] !~ m/Status: Unknown$/ |
| 173 | and $status[0] !~ m/^File: no file /) { |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 174 | $dirty = 1; |
Martin Langhoff | 992793c | 2006-04-26 12:26:16 +1200 | [diff] [blame] | 175 | 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"; |
Sven Verdoolaege | e968751 | 2006-06-17 19:46:40 +0200 | [diff] [blame] | 176 | warn "Status was: $status[0]\n"; |
Yann Dirson | 576cfc8 | 2006-01-06 21:54:41 +0100 | [diff] [blame] | 177 | } |
| 178 | } |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 179 | |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 180 | foreach my $f (@files) { |
| 181 | next if grep { $_ eq $f } @afiles; |
Yann Dirson | 576cfc8 | 2006-01-06 21:54:41 +0100 | [diff] [blame] | 182 | # TODO:we need to handle removed in cvs |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 183 | my @status = grep(m/^File/, safe_pipe_capture(@cvs, '-q', 'status' ,$f)); |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 184 | if (@status > 1) { warn 'Strange! cvs status returned more than one line?'}; |
| 185 | unless ($status[0] =~ m/Status: Up-to-date$/) { |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 186 | $dirty = 1; |
| 187 | warn "File $f not up to date in your CVS checkout!\n"; |
| 188 | } |
| 189 | } |
| 190 | if ($dirty) { |
Martin Langhoff | 992793c | 2006-04-26 12:26:16 +1200 | [diff] [blame] | 191 | if ($opt_f) { warn "The tree is not clean -- forced merge\n"; |
| 192 | $dirty = 0; |
| 193 | } else { |
| 194 | die "Exiting: your CVS tree is not clean for this merge."; |
| 195 | } |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 196 | } |
| 197 | |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 198 | print "Applying\n"; |
| 199 | `GIT_DIR= git-apply -C$fuzz --binary --summary --numstat --apply <.cvsexportcommit.diff` || die "cannot patch"; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 200 | |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 201 | print "Patch applied successfully. Adding new files and directories to CVS\n"; |
| 202 | my $dirtypatch = 0; |
Yann Dirson | 3f0f756 | 2006-05-27 18:39:35 +0200 | [diff] [blame] | 203 | foreach my $d (@dirs) { |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 204 | if (system(@cvs,'add',$d)) { |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 205 | $dirtypatch = 1; |
Yann Dirson | 3f0f756 | 2006-05-27 18:39:35 +0200 | [diff] [blame] | 206 | warn "Failed to cvs add directory $d -- you may need to do it manually"; |
| 207 | } |
| 208 | } |
| 209 | |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 210 | foreach my $f (@afiles) { |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 211 | if (grep { $_ eq $f } @bfiles) { |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 212 | system(@cvs, 'add','-kb',$f); |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 213 | } else { |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 214 | system(@cvs, 'add', $f); |
Robin Rosenberg | fe142b3 | 2006-11-12 16:29:42 +0100 | [diff] [blame] | 215 | } |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 216 | if ($?) { |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 217 | $dirtypatch = 1; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 218 | warn "Failed to cvs add $f -- you may need to do it manually"; |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | foreach my $f (@dfiles) { |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 223 | system(@cvs, 'rm', '-f', $f); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 224 | if ($?) { |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 225 | $dirtypatch = 1; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 226 | warn "Failed to cvs rm -f $f -- you may need to do it manually"; |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | print "Commit to CVS\n"; |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 231 | print "Patch title (first comment line): $title\n"; |
| 232 | my @commitfiles = map { unless (m/\s/) { '\''.$_.'\''; } else { $_; }; } (@files); |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 233 | my $cmd = join(' ', @cvs)." commit -F .msg @commitfiles"; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 234 | |
| 235 | if ($dirtypatch) { |
| 236 | print "NOTE: One or more hunks failed to apply cleanly.\n"; |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 237 | print "You'll need to apply the patch in .cvsexportcommit.diff manually\n"; |
| 238 | print "using a patch program. After applying the patch and resolving the\n"; |
| 239 | print "problems you may commit using:"; |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 240 | print "\n $cmd\n\n"; |
Junio C Hamano | 27dedf0 | 2005-11-16 21:32:44 -0800 | [diff] [blame] | 241 | exit(1); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 242 | } |
| 243 | |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 244 | if ($opt_c) { |
| 245 | print "Autocommit\n $cmd\n"; |
Simon 'corecode' Schubert | 4a6b9bb | 2007-02-18 18:17:08 +0100 | [diff] [blame] | 246 | print safe_pipe_capture(@cvs, 'commit', '-F', '.msg', @files); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 247 | if ($?) { |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 248 | die "Exiting: The commit did not succeed"; |
| 249 | } |
| 250 | print "Committed successfully to CVS\n"; |
Gerrit Pape | cf70c16 | 2007-02-28 12:35:39 +0000 | [diff] [blame] | 251 | # clean up |
| 252 | unlink(".msg"); |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 253 | } else { |
| 254 | print "Ready for you to commit, just run:\n\n $cmd\n"; |
| 255 | } |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 256 | |
| 257 | # clean up |
| 258 | unlink(".cvsexportcommit.diff"); |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 259 | |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 260 | sub usage { |
| 261 | print STDERR <<END; |
Martin Langhoff | 992793c | 2006-04-26 12:26:16 +1200 | [diff] [blame] | 262 | Usage: GIT_DIR=/path/to/.git ${\basename $0} [-h] [-p] [-v] [-c] [-f] [-m msgprefix] [ parent ] commit |
Martin Langhoff | 5e0306a | 2005-11-07 17:57:08 +1300 | [diff] [blame] | 263 | END |
| 264 | exit(1); |
| 265 | } |
| 266 | |
Pavel Roskin | 82e5a82 | 2006-07-10 01:50:18 -0400 | [diff] [blame] | 267 | # An alternative to `command` that allows input to be passed as an array |
Martin Langhoff | d41df15 | 2006-01-30 19:12:12 +1300 | [diff] [blame] | 268 | # to work around shell problems with weird characters in arguments |
| 269 | # if the exec returns non-zero we die |
| 270 | sub safe_pipe_capture { |
| 271 | my @output; |
| 272 | if (my $pid = open my $child, '-|') { |
| 273 | @output = (<$child>); |
| 274 | close $child or die join(' ',@_).": $! $?"; |
| 275 | } else { |
| 276 | exec(@_) or die "$! $?"; # exec() can fail the executable can't be found |
| 277 | } |
| 278 | return wantarray ? @output : join('',@output); |
| 279 | } |
Jim Meyering | 7c0f702 | 2006-12-04 08:44:08 +0100 | [diff] [blame] | 280 | |
Robin Rosenberg | e86ad71 | 2006-12-11 00:30:06 +0100 | [diff] [blame] | 281 | sub safe_pipe_capture_blob { |
| 282 | my $output; |
| 283 | if (my $pid = open my $child, '-|') { |
| 284 | local $/; |
| 285 | undef $/; |
| 286 | $output = (<$child>); |
| 287 | close $child or die join(' ',@_).": $! $?"; |
| 288 | } else { |
| 289 | exec(@_) or die "$! $?"; # exec() can fail the executable can't be found |
| 290 | } |
| 291 | return $output; |
Jim Meyering | 7c0f702 | 2006-12-04 08:44:08 +0100 | [diff] [blame] | 292 | } |