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