2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
6 use vars qw/ $AUTHOR $VERSION
7 $SVN_URL $SVN_INFO $SVN_WC
8 $GIT_SVN_INDEX $GIT_SVN
10 $AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
12 $GIT_DIR = $ENV{GIT_DIR} || "$ENV{PWD}/.git";
13 $GIT_SVN = $ENV{GIT_SVN_ID} || 'git-svn';
14 $GIT_SVN_INDEX = "$GIT_DIR/$GIT_SVN/index";
15 $ENV{GIT_DIR} ||= $GIT_DIR;
17 $REV_DIR = "$GIT_DIR/$GIT_SVN/revs";
18 $SVN_WC = "$GIT_DIR/$GIT_SVN/tree";
20 # make sure the svn binary gives consistent output between locales and TZs:
24 # If SVN:: library support is added, please make the dependencies
25 # optional and preserve the capability to use the command-line client.
26 # use eval { require SVN::... } to make it lazy load
29 use File::Basename qw/dirname basename/;
30 use File::Path qw/mkpath/;
31 use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
33 use POSIX qw/strftime/;
34 my $sha1 = qr/[a-f\d]{40}/;
35 my $sha1_short = qr/[a-f\d]{6,40}/;
36 my ($_revision,$_stdin,$_no_ignore_ext,$_no_stop_copy,$_help,$_rmdir,$_edit,
37 $_find_copies_harder, $_l, $_version, $_upgrade);
38 my (@_branch_from, %tree_map);
40 GetOptions( 'revision|r=s' => \$_revision,
41 'no-ignore-externals' => \$_no_ignore_ext,
45 'upgrade' => \$_upgrade,
46 'help|H|h' => \$_help,
47 'branch|b=s' => \@_branch_from,
48 'find-copies-harder' => \$_find_copies_harder,
50 'version|V' => \$_version,
51 'no-stop-on-copy' => \$_no_stop_copy );
53 fetch => [ \&fetch, "Download new revisions from SVN" ],
54 init => [ \&init, "Initialize and fetch (import)"],
55 commit => [ \&commit, "Commit git revisions to SVN" ],
56 'show-ignore' => [ \&show_ignore, "Show svn:ignore listings" ],
57 rebuild => [ \&rebuild, "Rebuild git-svn metadata (after git clone)" ],
58 help => [ \&usage, "Show help" ],
61 for (my $i = 0; $i < @ARGV; $i++) {
62 if (defined $cmd{$ARGV[$i]}) {
69 # we may be called as git-svn-(command), or git-svn(command).
71 if (/git\-svn\-?($_)(?:\.\w+)?$/) {
77 version() if $_version;
78 usage(1) unless (defined $cmd);
79 svn_check_ignore_externals();
80 $cmd{$cmd}->[0]->(@ARGV);
83 ####################### primary functions ######################
85 my $exit = shift || 0;
86 my $fd = $exit ? \*STDERR : \*STDOUT;
88 git-svn - bidirectional operations between a single Subversion tree and git
89 Usage: $0 <command> [options] [arguments]\n
92 foreach (sort keys %cmd) {
93 print $fd ' ',pack('A10',$_),$cmd{$_}->[1],"\n";
96 \nGIT_SVN_ID may be set in the environment to an arbitrary identifier if
97 you're tracking multiple SVN branches/repositories in one git repository
98 and want to keep them separate.
104 print "git-svn version $VERSION\n";
109 $SVN_URL = shift or undef;
113 sys('git-update-ref',"refs/remotes/$GIT_SVN","$GIT_SVN-HEAD");
115 check_upgrade_needed();
118 my $pid = open(my $rev_list,'-|');
119 defined $pid or croak $!;
121 exec("git-rev-list","refs/remotes/$GIT_SVN") or croak $!;
124 while (<$rev_list>) {
127 croak "Non-SHA1: $c\n" unless $c =~ /^$sha1$/o;
128 my @commit = grep(/^git-svn-id: /,`git-cat-file commit $c`);
129 next if (!@commit); # skip merges
130 my $id = $commit[$#commit];
131 my ($url, $rev, $uuid) = ($id =~ /^git-svn-id:\s(\S+?)\@(\d+)
133 if (!$rev || !$uuid || !$url) {
134 # some of the original repositories I made had
135 # indentifiers like this:
136 ($rev, $uuid) = ($id =~/^git-svn-id:\s(\d+)
138 if (!$rev || !$uuid) {
139 croak "Unable to extract revision or UUID from ",
144 # if we merged or otherwise started elsewhere, this is
145 # how we break out of it
146 next if (defined $repo_uuid && ($uuid ne $repo_uuid));
147 next if (defined $SVN_URL && ($url ne $SVN_URL));
149 print "r$rev = $c\n";
150 unless (defined $latest) {
151 if (!$SVN_URL && !$url) {
152 croak "SVN repository location required: $url\n";
155 $repo_uuid ||= setup_git_svn();
158 assert_revision_eq_or_unknown($rev, $c);
159 sys('git-update-ref',"$GIT_SVN/revs/$rev",$c);
160 $newest_rev = $rev if ($rev > $newest_rev);
162 close $rev_list or croak $?;
163 if (!chdir $SVN_WC) {
164 my @svn_co = ('svn','co',"-r$latest");
165 push @svn_co, '--ignore-externals' unless $_no_ignore_ext;
166 sys(@svn_co, $SVN_URL, $SVN_WC);
167 chdir $SVN_WC or croak $!;
171 defined $pid or croak $!;
173 my @svn_up = qw(svn up);
174 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
175 sys(@svn_up,"-r$newest_rev");
176 $ENV{GIT_INDEX_FILE} = $GIT_SVN_INDEX;
178 exec('git-write-tree');
184 Keeping deprecated refs/head/$GIT_SVN-HEAD for now. Please remove it
185 when you have upgraded your tools and habits to use refs/remotes/$GIT_SVN
191 $SVN_URL = shift or croak "SVN repository location required\n";
192 unless (-d $GIT_DIR) {
200 check_upgrade_needed();
201 $SVN_URL ||= file_to_s("$GIT_DIR/$GIT_SVN/info/url");
202 my @log_args = -d $SVN_WC ? ($SVN_WC) : ($SVN_URL);
203 unless ($_revision) {
204 $_revision = -d $SVN_WC ? 'BASE:HEAD' : '0:HEAD';
206 push @log_args, "-r$_revision";
207 push @log_args, '--stop-on-copy' unless $_no_stop_copy;
209 my $svn_log = svn_log_raw(@log_args);
210 @$svn_log = sort { $a->{revision} <=> $b->{revision} } @$svn_log;
212 my $base = shift @$svn_log or croak "No base revision!\n";
213 my $last_commit = undef;
214 unless (-d $SVN_WC) {
215 my @svn_co = ('svn','co',"-r$base->{revision}");
216 push @svn_co,'--ignore-externals' unless $_no_ignore_ext;
217 sys(@svn_co, $SVN_URL, $SVN_WC);
218 chdir $SVN_WC or croak $!;
219 $last_commit = git_commit($base, @parents);
220 unless (-f "$GIT_DIR/refs/heads/master") {
221 sys(qw(git-update-ref refs/heads/master),$last_commit);
223 assert_svn_wc_clean($base->{revision}, $last_commit);
225 chdir $SVN_WC or croak $!;
226 $last_commit = file_to_s("$REV_DIR/$base->{revision}");
228 my @svn_up = qw(svn up);
229 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
230 my $last_rev = $base->{revision};
231 foreach my $log_msg (@$svn_log) {
232 assert_svn_wc_clean($last_rev, $last_commit);
233 $last_rev = $log_msg->{revision};
234 sys(@svn_up,"-r$last_rev");
235 $last_commit = git_commit($log_msg, $last_commit, @parents);
237 assert_svn_wc_clean($last_rev, $last_commit);
238 return pop @$svn_log;
243 check_upgrade_needed();
244 if ($_stdin || !@commits) {
245 print "Reading from stdin...\n";
248 if (/\b([a-f\d]{6,40})\b/) {
249 unshift @commits, $1;
254 foreach my $c (@commits) {
255 chomp(my @tmp = safe_qx('git-rev-parse',$c));
256 if (scalar @tmp == 1) {
258 } elsif (scalar @tmp > 1) {
259 push @revs, reverse (safe_qx('git-rev-list',@tmp));
261 die "Failed to rev-parse $c\n";
267 chdir $SVN_WC or croak $!;
268 my $svn_current_rev = svn_info('.')->{'Last Changed Rev'};
269 foreach my $c (@revs) {
270 print "Committing $c\n";
271 my $mods = svn_checkout_tree($svn_current_rev, $c);
272 if (scalar @$mods == 0) {
273 print "Skipping, no changes detected\n";
276 $svn_current_rev = svn_commit_tree($svn_current_rev, $c);
278 print "Done committing ",scalar @revs," revisions to SVN\n";
283 require File::Find or die $!;
284 my $exclude_file = "$GIT_DIR/info/exclude";
285 open my $fh, '<', $exclude_file or croak $!;
286 chomp(my @excludes = (<$fh>));
287 close $fh or croak $!;
289 $SVN_URL ||= file_to_s("$GIT_DIR/$GIT_SVN/info/url");
290 chdir $SVN_WC or croak $!;
292 File::Find::find({wanted=>sub{if(lstat $_ && -d _ && -d "$_/.svn"){
294 @{$ign{$_}} = safe_qx(qw(svn propget svn:ignore),$_);
295 }}, no_chdir=>1},'.');
298 foreach (@{$ign{'.'}}) { print '/',$_ if /\S/ }
300 foreach my $i (sort keys %ign) {
301 print "\n# ",$i,"\n";
302 foreach (@{$ign{$i}}) { print '/',$i,'/',$_ if /\S/ }
306 ########################### utility functions #########################
309 defined $SVN_URL or croak "SVN repository location required\n";
310 unless (-d $GIT_DIR) {
311 croak "GIT_DIR=$GIT_DIR does not exist!\n";
313 mkpath(["$GIT_DIR/$GIT_SVN"]);
314 mkpath(["$GIT_DIR/$GIT_SVN/info"]);
316 s_to_file($SVN_URL,"$GIT_DIR/$GIT_SVN/info/url");
317 my $uuid = svn_info($SVN_URL)->{'Repository UUID'} or
318 croak "Repository UUID unreadable\n";
319 s_to_file($uuid,"$GIT_DIR/$GIT_SVN/info/uuid");
321 open my $fd, '>>', "$GIT_DIR/$GIT_SVN/info/exclude" or croak $!;
322 print $fd '.svn',"\n";
323 close $fd or croak $!;
327 sub assert_svn_wc_clean {
328 my ($svn_rev, $treeish) = @_;
329 croak "$svn_rev is not an integer!\n" unless ($svn_rev =~ /^\d+$/);
330 croak "$treeish is not a sha1!\n" unless ($treeish =~ /^$sha1$/o);
331 my $svn_info = svn_info('.');
332 if ($svn_rev != $svn_info->{'Last Changed Rev'}) {
333 croak "Expected r$svn_rev, got r",
334 $svn_info->{'Last Changed Rev'},"\n";
336 my @status = grep(!/^Performing status on external/,(`svn status`));
337 @status = grep(!/^\s*$/,@status);
338 if (scalar @status) {
339 print STDERR "Tree ($SVN_WC) is not clean:\n";
340 print STDERR $_ foreach @status;
343 assert_tree($treeish);
348 croak "Not a sha1: $treeish\n" unless $treeish =~ /^$sha1$/o;
349 chomp(my $type = `git-cat-file -t $treeish`);
351 while ($type eq 'tag') {
352 chomp(($treeish, $type) = `git-cat-file tag $treeish`);
354 if ($type eq 'commit') {
355 $expected = (grep /^tree /,`git-cat-file commit $treeish`)[0];
356 ($expected) = ($expected =~ /^tree ($sha1)$/);
357 die "Unable to get tree from $treeish\n" unless $expected;
358 } elsif ($type eq 'tree') {
359 $expected = $treeish;
361 die "$treeish is a $type, expected tree, tag or commit\n";
364 my $old_index = $ENV{GIT_INDEX_FILE};
365 my $tmpindex = $GIT_SVN_INDEX.'.assert-tmp';
367 unlink $tmpindex or croak $!;
369 $ENV{GIT_INDEX_FILE} = $tmpindex;
371 chomp(my $tree = `git-write-tree`);
373 $ENV{GIT_INDEX_FILE} = $old_index;
375 delete $ENV{GIT_INDEX_FILE};
377 if ($tree ne $expected) {
378 croak "Tree mismatch, Got: $tree, Expected: $expected\n";
382 sub parse_diff_tree {
388 chomp $_; # this gets rid of the trailing "\0"
389 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
390 $sha1\s($sha1)\s([MTCRAD])\d*$/xo) {
391 push @mods, { mode_a => $1, mode_b => $2,
392 sha1_b => $3, chg => $4 };
393 if ($4 =~ /^(?:C|R)$/) {
398 } elsif ($state eq 'file_a') {
399 my $x = $mods[$#mods] or croak "Empty array\n";
400 if ($x->{chg} !~ /^(?:C|R)$/) {
401 croak "Error parsing $_, $x->{chg}\n";
405 } elsif ($state eq 'file_b') {
406 my $x = $mods[$#mods] or croak "Empty array\n";
407 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
408 croak "Error parsing $_, $x->{chg}\n";
410 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
411 croak "Error parsing $_, $x->{chg}\n";
416 croak "Error parsing $_\n";
419 close $diff_fh or croak $!;
424 sub svn_check_prop_executable {
426 return if -l $m->{file_b};
427 if ($m->{mode_b} =~ /755$/) {
428 chmod((0755 &~ umask),$m->{file_b}) or croak $!;
429 if ($m->{mode_a} !~ /755$/) {
430 sys(qw(svn propset svn:executable 1), $m->{file_b});
432 -x $m->{file_b} or croak "$m->{file_b} is not executable!\n";
433 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
434 sys(qw(svn propdel svn:executable), $m->{file_b});
435 chmod((0644 &~ umask),$m->{file_b}) or croak $!;
436 -x $m->{file_b} and croak "$m->{file_b} is executable!\n";
440 sub svn_ensure_parent_path {
441 my $dir_b = dirname(shift);
442 svn_ensure_parent_path($dir_b) if ($dir_b ne File::Spec->curdir);
443 mkpath([$dir_b]) unless (-d $dir_b);
444 sys(qw(svn add -N), $dir_b) unless (-d "$dir_b/.svn");
447 sub precommit_check {
449 my (%rm_file, %rmdir_check, %added_check);
451 my %o = ( D => 0, R => 1, C => 2, A => 3, M => 3, T => 3 );
452 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
453 if ($m->{chg} eq 'R') {
454 if (-d $m->{file_b}) {
455 err_dir_to_file("$m->{file_a} => $m->{file_b}");
457 # dir/$file => dir/file/$file
458 my $dirname = dirname($m->{file_b});
459 while ($dirname ne File::Spec->curdir) {
460 if ($dirname ne $m->{file_a}) {
461 $dirname = dirname($dirname);
464 err_file_to_dir("$m->{file_a} => $m->{file_b}");
466 # baz/zzz => baz (baz is a file)
467 $dirname = dirname($m->{file_a});
468 while ($dirname ne File::Spec->curdir) {
469 if ($dirname ne $m->{file_b}) {
470 $dirname = dirname($dirname);
473 err_dir_to_file("$m->{file_a} => $m->{file_b}");
476 if ($m->{chg} =~ /^(D|R)$/) {
477 my $t = $1 eq 'D' ? 'file_b' : 'file_a';
478 $rm_file{ $m->{$t} } = 1;
479 my $dirname = dirname( $m->{$t} );
480 my $basename = basename( $m->{$t} );
481 $rmdir_check{$dirname}->{$basename} = 1;
482 } elsif ($m->{chg} =~ /^(?:A|C)$/) {
483 if (-d $m->{file_b}) {
484 err_dir_to_file($m->{file_b});
486 my $dirname = dirname( $m->{file_b} );
487 my $basename = basename( $m->{file_b} );
488 $added_check{$dirname}->{$basename} = 1;
489 while ($dirname ne File::Spec->curdir) {
490 if ($rm_file{$dirname}) {
491 err_file_to_dir($m->{file_b});
493 $dirname = dirname $dirname;
497 return (\%rmdir_check, \%added_check);
499 sub err_dir_to_file {
501 print STDERR "Node change from directory to file ",
502 "is not supported by Subversion: ",$file,"\n";
505 sub err_file_to_dir {
507 print STDERR "Node change from file to directory ",
508 "is not supported by Subversion: ",$file,"\n";
513 sub svn_checkout_tree {
514 my ($svn_rev, $treeish) = @_;
515 my $from = file_to_s("$REV_DIR/$svn_rev");
516 assert_svn_wc_clean($svn_rev,$from);
517 print "diff-tree '$from' '$treeish'\n";
518 my $pid = open my $diff_fh, '-|';
519 defined $pid or croak $!;
521 my @diff_tree = qw(git-diff-tree -z -r -C);
522 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
523 push @diff_tree, "-l$_l" if defined $_l;
524 exec(@diff_tree, $from, $treeish) or croak $!;
526 my $mods = parse_diff_tree($diff_fh);
528 # git can do empty commits, SVN doesn't allow it...
531 my ($rm, $add) = precommit_check($mods);
533 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
534 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
535 if ($m->{chg} eq 'C') {
536 svn_ensure_parent_path( $m->{file_b} );
537 sys(qw(svn cp), $m->{file_a}, $m->{file_b});
538 apply_mod_line_blob($m);
539 svn_check_prop_executable($m);
540 } elsif ($m->{chg} eq 'D') {
541 sys(qw(svn rm --force), $m->{file_b});
542 } elsif ($m->{chg} eq 'R') {
543 svn_ensure_parent_path( $m->{file_b} );
544 sys(qw(svn mv --force), $m->{file_a}, $m->{file_b});
545 apply_mod_line_blob($m);
546 svn_check_prop_executable($m);
547 } elsif ($m->{chg} eq 'M') {
548 apply_mod_line_blob($m);
549 svn_check_prop_executable($m);
550 } elsif ($m->{chg} eq 'T') {
551 sys(qw(svn rm --force),$m->{file_b});
552 apply_mod_line_blob($m);
553 sys(qw(svn add --force), $m->{file_b});
554 svn_check_prop_executable($m);
555 } elsif ($m->{chg} eq 'A') {
556 svn_ensure_parent_path( $m->{file_b} );
557 apply_mod_line_blob($m);
558 sys(qw(svn add --force), $m->{file_b});
559 svn_check_prop_executable($m);
561 croak "Invalid chg: $m->{chg}\n";
565 assert_tree($treeish);
566 if ($_rmdir) { # remove empty directories
567 handle_rmdir($rm, $add);
569 assert_tree($treeish);
573 # svn ls doesn't work with respect to the current working tree, but what's
574 # in the repository. There's not even an option for it... *sigh*
575 # (added files don't show up and removed files remain in the ls listing)
577 my ($dir, $rm, $add) = @_;
578 chomp(my @ls = safe_qx('svn','ls',$dir));
581 s#/$##; # trailing slashes are evil
582 push @ret, $_ unless $rm->{$dir}->{$_};
584 if (exists $add->{$dir}) {
585 push @ret, keys %{$add->{$dir}};
593 foreach my $dir (sort {length $b <=> length $a} keys %$rm) {
594 my $ls = svn_ls_current($dir, $rm, $add);
595 next if (scalar @$ls);
596 sys(qw(svn rm --force),$dir);
598 my $dn = dirname $dir;
599 $rm->{ $dn }->{ basename $dir } = 1;
600 $ls = svn_ls_current($dn, $rm, $add);
601 while (scalar @$ls == 0 && $dn ne File::Spec->curdir) {
602 sys(qw(svn rm --force),$dn);
605 $rm->{ $dn }->{ $dir } = 1;
606 $ls = svn_ls_current($dn, $rm, $add);
611 sub svn_commit_tree {
612 my ($svn_rev, $commit) = @_;
613 my $commit_msg = "$GIT_DIR/$GIT_SVN/.svn-commit.tmp.$$";
614 my %log_msg = ( msg => '' );
615 open my $msg, '>', $commit_msg or croak $!;
617 chomp(my $type = `git-cat-file -t $commit`);
618 if ($type eq 'commit') {
619 my $pid = open my $msg_fh, '-|';
620 defined $pid or croak $!;
623 exec(qw(git-cat-file commit), $commit) or croak $!;
628 $in_msg = 1 if (/^\s*$/);
631 print $msg $_ or croak $!;
634 close $msg_fh or croak $!;
636 close $msg or croak $!;
638 if ($_edit || ($type eq 'tree')) {
639 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
640 system($editor, $commit_msg);
642 my @ci_output = safe_qx(qw(svn commit -F),$commit_msg);
643 my ($committed) = grep(/^Committed revision \d+\./,@ci_output);
645 defined $committed or croak
646 "Commit output failed to parse committed revision!\n",
647 join("\n",@ci_output),"\n";
648 my ($rev_committed) = ($committed =~ /^Committed revision (\d+)\./);
650 my @svn_up = qw(svn up);
651 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
652 if ($rev_committed == ($svn_rev + 1)) {
653 push @svn_up, "-r$rev_committed";
655 my $info = svn_info('.');
656 my $date = $info->{'Last Changed Date'} or die "Missing date\n";
657 if ($info->{'Last Changed Rev'} != $rev_committed) {
658 croak "$info->{'Last Changed Rev'} != $rev_committed\n"
660 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
661 /(\d{4})\-(\d\d)\-(\d\d)\s
662 (\d\d)\:(\d\d)\:(\d\d)\s([\-\+]\d+)/x)
663 or croak "Failed to parse date: $date\n";
664 $log_msg{date} = "$tz $Y-$m-$d $H:$M:$S";
665 $log_msg{author} = $info->{'Last Changed Author'};
666 $log_msg{revision} = $rev_committed;
667 $log_msg{msg} .= "\n";
668 my $parent = file_to_s("$REV_DIR/$svn_rev");
669 git_commit(\%log_msg, $parent, $commit);
670 return $rev_committed;
673 push @svn_up, "-r$svn_rev";
675 return fetch("$rev_committed=$commit")->{revision};
680 my $pid = open my $log_fh,'-|';
681 defined $pid or croak $!;
684 exec (qw(svn log), @log_args) or croak $!
692 if ($state eq 'msg') {
693 if ($svn_log[$#svn_log]->{lines}) {
694 $svn_log[$#svn_log]->{msg} .= $_."\n";
695 unless(--$svn_log[$#svn_log]->{lines}) {
699 croak "Log parse error at: $_\n",
700 $svn_log[$#svn_log]->{revision},
705 if ($state ne 'sep') {
706 croak "Log parse error at: $_\n",
708 $svn_log[$#svn_log]->{revision},
713 # if we have an empty log message, put something there:
715 $svn_log[$#svn_log]->{msg} ||= "\n";
716 delete $svn_log[$#svn_log]->{lines};
720 if ($state eq 'rev' && s/^r(\d+)\s*\|\s*//) {
722 my ($author, $date, $lines) = split(/\s*\|\s*/, $_, 3);
723 ($lines) = ($lines =~ /(\d+)/);
724 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
725 /(\d{4})\-(\d\d)\-(\d\d)\s
726 (\d\d)\:(\d\d)\:(\d\d)\s([\-\+]\d+)/x)
727 or croak "Failed to parse date: $date\n";
728 my %log_msg = ( revision => $rev,
729 date => "$tz $Y-$m-$d $H:$M:$S",
733 push @svn_log, \%log_msg;
734 $state = 'msg_start';
737 # skip the first blank line of the message:
738 if ($state eq 'msg_start' && /^$/) {
740 } elsif ($state eq 'msg') {
741 if ($svn_log[$#svn_log]->{lines}) {
742 $svn_log[$#svn_log]->{msg} .= $_."\n";
743 unless (--$svn_log[$#svn_log]->{lines}) {
747 croak "Log parse error at: $_\n",
748 $svn_log[$#svn_log]->{revision},"\n";
752 close $log_fh or croak $?;
757 my $url = shift || $SVN_URL;
759 my $pid = open my $info_fh, '-|';
760 defined $pid or croak $!;
763 exec(qw(svn info),$url) or croak $!;
767 # only single-lines seem to exist in svn info output
770 if (m#^([^:]+)\s*:\s*(\S.*)$#) {
772 push @{$ret->{-order}}, $1;
775 close $info_fh or croak $!;
779 sub sys { system(@_) == 0 or croak $? }
782 system( "git-diff-files --name-only -z ".
783 " | git-update-index --remove -z --stdin && ".
784 "git-ls-files -z --others ".
785 "'--exclude-from=$GIT_DIR/$GIT_SVN/info/exclude'".
786 " | git-update-index --add -z --stdin"
791 my ($str, $file, $mode) = @_;
792 open my $fd,'>',$file or croak $!;
793 print $fd $str,"\n" or croak $!;
794 close $fd or croak $!;
795 chmod ($mode &~ umask, $file) if (defined $mode);
800 open my $fd,'<',$file or croak "$!: file: $file\n";
803 close $fd or croak $!;
808 sub assert_revision_unknown {
810 if (-f "$REV_DIR/$revno") {
811 croak "$REV_DIR/$revno already exists! ",
812 "Why are we refetching it?";
816 sub assert_revision_eq_or_unknown {
817 my ($revno, $commit) = @_;
818 if (-f "$REV_DIR/$revno") {
819 my $current = file_to_s("$REV_DIR/$revno");
820 if ($commit ne $current) {
821 croak "$REV_DIR/$revno already exists!\n",
822 "current: $current\nexpected: $commit\n";
829 my ($log_msg, @parents) = @_;
830 assert_revision_unknown($log_msg->{revision});
831 my $out_fh = IO::File->new_tmpfile or croak $!;
832 my $info = svn_info('.');
833 my $uuid = $info->{'Repository UUID'};
834 defined $uuid or croak "Unable to get Repository UUID\n";
836 map_tree_joins() if (@_branch_from && !%tree_map);
838 # commit parents can be conditionally bound to a particular
839 # svn revision via: "svn_revno=commit_sha1", filter them out here:
841 foreach my $p (@parents) {
842 next unless defined $p;
843 if ($p =~ /^(\d+)=($sha1_short)$/o) {
844 if ($1 == $log_msg->{revision}) {
845 push @exec_parents, $2;
848 push @exec_parents, $p if $p =~ /$sha1_short/o;
853 defined $pid or croak $!;
855 $ENV{GIT_INDEX_FILE} = $GIT_SVN_INDEX;
857 chomp(my $tree = `git-write-tree`);
859 if (exists $tree_map{$tree}) {
860 my %seen_parent = map { $_ => 1 } @exec_parents;
861 foreach (@{$tree_map{$tree}}) {
862 # MAXPARENT is defined to 16 in commit-tree.c:
863 if ($seen_parent{$_} || @exec_parents > 16) {
866 push @exec_parents, $_;
867 $seen_parent{$_} = 1;
870 my $msg_fh = IO::File->new_tmpfile or croak $!;
871 print $msg_fh $log_msg->{msg}, "\ngit-svn-id: ",
872 "$SVN_URL\@$log_msg->{revision}",
873 " $uuid\n" or croak $!;
874 $msg_fh->flush == 0 or croak $!;
875 seek $msg_fh, 0, 0 or croak $!;
877 $ENV{GIT_AUTHOR_NAME} = $ENV{GIT_COMMITTER_NAME} =
879 $ENV{GIT_AUTHOR_EMAIL} = $ENV{GIT_COMMITTER_EMAIL} =
880 $log_msg->{author}."\@$uuid";
881 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} =
883 my @exec = ('git-commit-tree',$tree);
884 push @exec, '-p', $_ foreach @exec_parents;
885 open STDIN, '<&', $msg_fh or croak $!;
886 open STDOUT, '>&', $out_fh or croak $!;
887 exec @exec or croak $!;
892 $out_fh->flush == 0 or croak $!;
893 seek $out_fh, 0, 0 or croak $!;
894 chomp(my $commit = do { local $/; <$out_fh> });
895 if ($commit !~ /^$sha1$/o) {
896 croak "Failed to commit, invalid sha1: $commit\n";
898 my @update_ref = ('git-update-ref',"refs/remotes/$GIT_SVN",$commit);
899 if (my $primary_parent = shift @exec_parents) {
900 push @update_ref, $primary_parent;
903 sys('git-update-ref',"$GIT_SVN/revs/$log_msg->{revision}",$commit);
904 print "r$log_msg->{revision} = $commit\n";
908 sub apply_mod_line_blob {
910 if ($m->{mode_b} =~ /^120/) {
911 blob_to_symlink($m->{sha1_b}, $m->{file_b});
913 blob_to_file($m->{sha1_b}, $m->{file_b});
917 sub blob_to_symlink {
918 my ($blob, $link) = @_;
919 defined $link or croak "\$link not defined!\n";
920 croak "Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
921 if (-l $link || -f _) {
922 unlink $link or croak $!;
925 my $dest = `git-cat-file blob $blob`; # no newline, so no chomp
926 symlink $dest, $link or croak $!;
930 my ($blob, $file) = @_;
931 defined $file or croak "\$file not defined!\n";
932 croak "Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
933 if (-l $file || -f _) {
934 unlink $file or croak $!;
937 open my $blob_fh, '>', $file or croak "$!: $file\n";
939 defined $pid or croak $!;
942 open STDOUT, '>&', $blob_fh or croak $!;
943 exec('git-cat-file','blob',$blob);
948 close $blob_fh or croak $!;
952 my $pid = open my $child, '-|';
953 defined $pid or croak $!;
955 exec(@_) or croak $?;
957 my @ret = (<$child>);
958 close $child or croak $?;
959 die $? if $?; # just in case close didn't error out
960 return wantarray ? @ret : join('',@ret);
963 sub svn_check_ignore_externals {
964 return if $_no_ignore_ext;
965 unless (grep /ignore-externals/,(safe_qx(qw(svn co -h)))) {
966 print STDERR "W: Installed svn version does not support ",
967 "--ignore-externals\n";
972 sub check_upgrade_needed {
974 my $pid = open my $child, '-|';
975 defined $pid or croak $!;
978 exec('git-rev-parse',"$GIT_SVN-HEAD") or croak $?;
980 my @ret = (<$child>);
981 close $child or croak $?;
982 die $? if $?; # just in case close didn't error out
983 return wantarray ? @ret : join('',@ret);
986 my $head = eval { safe_qx('git-rev-parse',"refs/remotes/$GIT_SVN") };
988 print STDERR "Please run: $0 rebuild --upgrade\n";
993 # fills %tree_map with a reverse mapping of trees to commits. Useful
994 # for finding parents to commit on.
996 foreach my $br (@_branch_from) {
997 my $pid = open my $pipe, '-|';
998 defined $pid or croak $!;
1000 exec(qw(git-rev-list --pretty=raw), $br) or croak $?;
1003 if (/^commit ($sha1)$/o) {
1005 my ($tree) = (<$pipe> =~ /^tree ($sha1)$/o);
1006 unless (defined $tree) {
1007 die "Failed to parse commit $commit\n";
1009 push @{$tree_map{$tree}}, $commit;
1012 close $pipe or croak $?;
1020 @svn_log = array of log_msg hashes
1024 msg => 'whitespace-formatted log entry
1025 ', # trailing newline is preserved
1026 revision => '8', # integer
1027 date => '2004-02-24T17:01:44.108345Z', # commit date
1028 author => 'committer name'
1032 @mods = array of diff-index line hashes, each element represents one line
1033 of diff-index output
1035 diff-index line ($m hash)
1037 mode_a => first column of diff-index output, no leading ':',
1038 mode_b => second column of diff-index output,
1039 sha1_b => sha1sum of the final blob,
1040 chg => change type [MCRAD],
1041 file_a => original file name of a file (iff chg is 'C' or 'R')
1042 file_b => new/current file name of a file (any chg)