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 $SVN_UUID
8 $GIT_SVN_INDEX $GIT_SVN
9 $GIT_DIR $GIT_SVN_DIR $REVDB/;
10 $AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
11 $VERSION = '@@GIT_VERSION@@';
14 $GIT_DIR = abs_path($ENV{GIT_DIR} || '.git');
15 $ENV{GIT_DIR} = $GIT_DIR;
17 my $LC_ALL = $ENV{LC_ALL};
19 # make sure the svn binary gives consistent output between locales and TZs:
22 $| = 1; # unbuffer STDOUT
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
27 # We don't use any modules not in the standard Perl distribution:
30 use File::Basename qw/dirname basename/;
31 use File::Path qw/mkpath/;
32 use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev pass_through/;
34 use POSIX qw/strftime/;
37 memoize('revisions_eq');
38 memoize('cmt_metadata');
39 memoize('get_commit_time');
41 my ($SVN_PATH, $SVN, $SVN_LOG, $_use_lib);
42 $_use_lib = 1 unless $ENV{GIT_SVN_NO_LIB};
44 my $_optimize_commits = 1 unless $ENV{GIT_SVN_NO_OPTIMIZE_COMMITS};
45 my $sha1 = qr/[a-f\d]{40}/;
46 my $sha1_short = qr/[a-f\d]{4,40}/;
47 my ($_revision,$_stdin,$_no_ignore_ext,$_no_stop_copy,$_help,$_rmdir,$_edit,
48 $_find_copies_harder, $_l, $_cp_similarity, $_cp_remote,
49 $_repack, $_repack_nr, $_repack_flags, $_q,
50 $_message, $_file, $_follow_parent, $_no_metadata,
51 $_template, $_shared, $_no_default_regex, $_no_graft_copy,
52 $_limit, $_verbose, $_incremental, $_oneline, $_l_fmt, $_show_commit,
53 $_version, $_upgrade, $_authors, $_branch_all_refs, @_opt_m);
54 my (@_branch_from, %tree_map, %users, %rusers, %equiv);
55 my ($_svn_co_url_revs, $_svn_pg_peg_revs);
56 my @repo_path_split_cache;
58 my %fc_opts = ( 'no-ignore-externals' => \$_no_ignore_ext,
59 'branch|b=s' => \@_branch_from,
60 'follow-parent|follow' => \$_follow_parent,
61 'branch-all-refs|B' => \$_branch_all_refs,
62 'authors-file|A=s' => \$_authors,
63 'repack:i' => \$_repack,
64 'no-metadata' => \$_no_metadata,
66 'repack-flags|repack-args|repack-opts=s' => \$_repack_flags);
68 my ($_trunk, $_tags, $_branches);
69 my %multi_opts = ( 'trunk|T=s' => \$_trunk,
70 'tags|t=s' => \$_tags,
71 'branches|b=s' => \$_branches );
72 my %init_opts = ( 'template=s' => \$_template, 'shared' => \$_shared );
73 my %cmt_opts = ( 'edit|e' => \$_edit,
75 'find-copies-harder' => \$_find_copies_harder,
77 'copy-similarity|C=i'=> \$_cp_similarity
80 # yes, 'native' sets "\n". Patches to fix this for non-*nix systems welcome:
81 my %EOL = ( CR => "\015", LF => "\012", CRLF => "\015\012", native => "\012" );
84 fetch => [ \&fetch, "Download new revisions from SVN",
85 { 'revision|r=s' => \$_revision, %fc_opts } ],
86 init => [ \&init, "Initialize a repo for tracking" .
87 " (requires URL argument)",
89 commit => [ \&commit, "Commit git revisions to SVN",
90 { 'stdin|' => \$_stdin, %cmt_opts, %fc_opts, } ],
91 'show-ignore' => [ \&show_ignore, "Show svn:ignore listings",
92 { 'revision|r=i' => \$_revision } ],
93 rebuild => [ \&rebuild, "Rebuild git-svn metadata (after git clone)",
94 { 'no-ignore-externals' => \$_no_ignore_ext,
95 'copy-remote|remote=s' => \$_cp_remote,
96 'upgrade' => \$_upgrade } ],
97 'graft-branches' => [ \&graft_branches,
98 'Detect merges/branches from already imported history',
99 { 'merge-rx|m' => \@_opt_m,
100 'branch|b=s' => \@_branch_from,
101 'branch-all-refs|B' => \$_branch_all_refs,
102 'no-default-regex' => \$_no_default_regex,
103 'no-graft-copy' => \$_no_graft_copy } ],
104 'multi-init' => [ \&multi_init,
105 'Initialize multiple trees (like git-svnimport)',
106 { %multi_opts, %fc_opts } ],
107 'multi-fetch' => [ \&multi_fetch,
108 'Fetch multiple trees (like git-svnimport)',
110 'log' => [ \&show_log, 'Show commit logs',
111 { 'limit=i' => \$_limit,
112 'revision|r=s' => \$_revision,
113 'verbose|v' => \$_verbose,
114 'incremental' => \$_incremental,
115 'oneline' => \$_oneline,
116 'show-commit' => \$_show_commit,
117 'authors-file|A=s' => \$_authors,
119 'commit-diff' => [ \&commit_diff, 'Commit a diff between two trees',
120 { 'message|m=s' => \$_message,
121 'file|F=s' => \$_file,
126 for (my $i = 0; $i < @ARGV; $i++) {
127 if (defined $cmd{$ARGV[$i]}) {
134 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
136 read_repo_config(\%opts);
137 my $rv = GetOptions(%opts, 'help|H|h' => \$_help,
138 'version|V' => \$_version,
139 'id|i=s' => \$GIT_SVN);
140 exit 1 if (!$rv && $cmd ne 'log');
144 version() if $_version;
145 usage(1) unless defined $cmd;
147 load_authors() if $_authors;
148 load_all_refs() if $_branch_all_refs;
149 svn_compat_check() unless $_use_lib;
150 migration_check() unless $cmd =~ /^(?:init|rebuild|multi-init)$/;
151 $cmd{$cmd}->[0]->(@ARGV);
154 ####################### primary functions ######################
156 my $exit = shift || 0;
157 my $fd = $exit ? \*STDERR : \*STDOUT;
159 git-svn - bidirectional operations between a single Subversion tree and git
160 Usage: $0 <command> [options] [arguments]\n
162 print $fd "Available commands:\n" unless $cmd;
164 foreach (sort keys %cmd) {
165 next if $cmd && $cmd ne $_;
166 print $fd ' ',pack('A13',$_),$cmd{$_}->[1],"\n";
167 foreach (keys %{$cmd{$_}->[2]}) {
168 # prints out arguments as they should be passed:
169 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
170 print $fd ' ' x 17, join(', ', map { length $_ > 1 ?
172 split /\|/,$_)," $x\n";
176 \nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
177 arbitrary identifier if you're tracking multiple SVN branches/repositories in
178 one git repository and want to keep them separate. See git-svn(1) for more
185 print "git-svn version $VERSION\n";
190 if (quiet_run(qw/git-rev-parse --verify/,"refs/remotes/$GIT_SVN^0")) {
193 $SVN_URL = shift or undef;
196 sys('git-update-ref',"refs/remotes/$GIT_SVN","$GIT_SVN-HEAD");
198 check_upgrade_needed();
201 my $pid = open(my $rev_list,'-|');
202 defined $pid or croak $!;
204 exec("git-rev-list","refs/remotes/$GIT_SVN") or croak $!;
207 while (<$rev_list>) {
210 croak "Non-SHA1: $c\n" unless $c =~ /^$sha1$/o;
211 my @commit = grep(/^git-svn-id: /,`git-cat-file commit $c`);
212 next if (!@commit); # skip merges
213 my ($url, $rev, $uuid) = extract_metadata($commit[$#commit]);
214 if (!$rev || !$uuid) {
215 croak "Unable to extract revision or UUID from ",
216 "$c, $commit[$#commit]\n";
219 # if we merged or otherwise started elsewhere, this is
220 # how we break out of it
221 next if (defined $SVN_UUID && ($uuid ne $SVN_UUID));
222 next if (defined $SVN_URL && defined $url && ($url ne $SVN_URL));
224 unless (defined $latest) {
225 if (!$SVN_URL && !$url) {
226 croak "SVN repository location required: $url\n";
233 revdb_set($REVDB, $rev, $c);
234 print "r$rev = $c\n";
235 $newest_rev = $rev if ($rev > $newest_rev);
237 close $rev_list or croak $?;
239 goto out if $_use_lib;
240 if (!chdir $SVN_WC) {
241 svn_cmd_checkout($SVN_URL, $latest, $SVN_WC);
242 chdir $SVN_WC or croak $!;
246 defined $pid or croak $!;
248 my @svn_up = qw(svn up);
249 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
250 sys(@svn_up,"-r$newest_rev");
251 $ENV{GIT_INDEX_FILE} = $GIT_SVN_INDEX;
253 exec('git-write-tree') or croak $!;
260 Keeping deprecated refs/head/$GIT_SVN-HEAD for now. Please remove it
261 when you have upgraded your tools and habits to use refs/remotes/$GIT_SVN
267 my $url = shift or die "SVN repository location required " .
268 "as a command-line argument\n";
269 $url =~ s!/+$!!; # strip trailing slash
271 if (my $repo_path = shift) {
272 unless (-d $repo_path) {
273 mkpath([$repo_path]);
275 $GIT_DIR = $ENV{GIT_DIR} = $repo_path . "/.git";
280 unless (-d $GIT_DIR) {
281 my @init_db = ('git-init-db');
282 push @init_db, "--template=$_template" if defined $_template;
283 push @init_db, "--shared" if defined $_shared;
290 check_upgrade_needed();
291 $SVN_URL ||= file_to_s("$GIT_SVN_DIR/info/url");
292 my $ret = $_use_lib ? fetch_lib(@_) : fetch_cmd(@_);
293 if ($ret->{commit} && quiet_run(qw(git-rev-parse --verify
294 refs/heads/master^0))) {
295 sys(qw(git-update-ref refs/heads/master),$ret->{commit});
302 my @log_args = -d $SVN_WC ? ($SVN_WC) : ($SVN_URL);
303 unless ($_revision) {
304 $_revision = -d $SVN_WC ? 'BASE:HEAD' : '0:HEAD';
306 push @log_args, "-r$_revision";
307 push @log_args, '--stop-on-copy' unless $_no_stop_copy;
309 my $svn_log = svn_log_raw(@log_args);
311 my $base = next_log_entry($svn_log) or croak "No base revision!\n";
312 # don't need last_revision from grab_base_rev() because
313 # user could've specified a different revision to skip (they
314 # didn't want to import certain revisions into git for whatever
315 # reason, so trust $base->{revision} instead.
316 my (undef, $last_commit) = svn_grab_base_rev();
317 unless (-d $SVN_WC) {
318 svn_cmd_checkout($SVN_URL,$base->{revision},$SVN_WC);
319 chdir $SVN_WC or croak $!;
321 $last_commit = git_commit($base, @parents);
322 assert_tree($last_commit);
324 chdir $SVN_WC or croak $!;
326 # looks like a user manually cp'd and svn switch'ed
327 unless ($last_commit) {
328 sys(qw/svn revert -R ./);
329 assert_svn_wc_clean($base->{revision});
330 $last_commit = git_commit($base, @parents);
331 assert_tree($last_commit);
334 my @svn_up = qw(svn up);
335 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
337 while (my $log_msg = next_log_entry($svn_log)) {
338 if ($last->{revision} >= $log_msg->{revision}) {
339 croak "Out of order: last >= current: ",
340 "$last->{revision} >= $log_msg->{revision}\n";
342 # Revert is needed for cases like:
343 # https://svn.musicpd.org/Jamming/trunk (r166:167), but
344 # I can't seem to reproduce something like that on a test...
345 sys(qw/svn revert -R ./);
346 assert_svn_wc_clean($last->{revision});
347 sys(@svn_up,"-r$log_msg->{revision}");
348 $last_commit = git_commit($log_msg, $last_commit, @parents);
351 close $svn_log->{fh};
352 $last->{commit} = $last_commit;
358 $SVN_URL ||= file_to_s("$GIT_SVN_DIR/info/url");
360 ($repo, $SVN_PATH) = repo_path_split($SVN_URL);
361 $SVN_LOG ||= libsvn_connect($repo);
362 $SVN ||= libsvn_connect($repo);
363 my ($last_rev, $last_commit) = svn_grab_base_rev();
364 my ($base, $head) = libsvn_parse_revision($last_rev);
366 return { revision => $last_rev, commit => $last_commit }
368 my $index = set_index($GIT_SVN_INDEX);
370 # limit ourselves and also fork() since get_log won't release memory
371 # after processing a revision and SVN stuff seems to leak
373 my ($min, $max) = ($base, $head < $base+$inc ? $head : $base+$inc);
375 if (defined $last_commit) {
376 unless (-e $GIT_SVN_INDEX) {
377 sys(qw/git-read-tree/, $last_commit);
379 chomp (my $x = `git-write-tree`);
380 my ($y) = (`git-cat-file commit $last_commit`
381 =~ /^tree ($sha1)/m);
383 unlink $GIT_SVN_INDEX or croak $!;
384 sys(qw/git-read-tree/, $last_commit);
386 chomp ($x = `git-write-tree`);
388 print STDERR "trees ($last_commit) $y != $x\n",
389 "Something is seriously wrong...\n";
393 # fork, because using SVN::Pool with get_log() still doesn't
394 # seem to help enough to keep memory usage down.
395 defined(my $pid = fork) or croak $!;
397 $SVN::Error::handler = \&libsvn_skip_unknown_revs;
399 # Yes I'm perfectly aware that the fourth argument
400 # below is the limit revisions number. Unfortunately
401 # performance sucks with it enabled, so it's much
402 # faster to fetch revision ranges instead of relying
404 libsvn_get_log($SVN_LOG, '/'.$SVN_PATH,
409 $log_msg = libsvn_fetch(
411 $last_commit = git_commit(
416 $log_msg = libsvn_new_tree(@_);
417 $last_commit = git_commit(
425 ($last_rev, $last_commit) = svn_grab_base_rev();
426 last if ($max >= $head);
429 $max = $head if ($max > $head);
431 restore_index($index);
432 return { revision => $last_rev, commit => $last_commit };
437 check_upgrade_needed();
438 if ($_stdin || !@commits) {
439 print "Reading from stdin...\n";
442 if (/\b($sha1_short)\b/o) {
443 unshift @commits, $1;
448 foreach my $c (@commits) {
449 chomp(my @tmp = safe_qx('git-rev-parse',$c));
450 if (scalar @tmp == 1) {
452 } elsif (scalar @tmp > 1) {
453 push @revs, reverse (safe_qx('git-rev-list',@tmp));
455 die "Failed to rev-parse $c\n";
459 $_use_lib ? commit_lib(@revs) : commit_cmd(@revs);
460 print "Done committing ",scalar @revs," revisions to SVN\n";
466 chdir $SVN_WC or croak "Unable to chdir $SVN_WC: $!\n";
467 my $info = svn_info('.');
468 my $fetched = fetch();
469 if ($info->{Revision} != $fetched->{revision}) {
470 print STDERR "There are new revisions that were fetched ",
471 "and need to be merged (or acknowledged) ",
472 "before committing.\n";
475 $info = svn_info('.');
478 foreach my $c (@revs) {
479 my $mods = svn_checkout_tree($last, $c);
480 if (scalar @$mods == 0) {
481 print "Skipping, no changes detected\n";
484 $last = svn_commit_tree($last, $c);
490 my ($r_last, $cmt_last) = svn_grab_base_rev();
491 defined $r_last or die "Must have an existing revision to commit\n";
492 my $fetched = fetch();
493 if ($r_last != $fetched->{revision}) {
494 print STDERR "There are new revisions that were fetched ",
495 "and need to be merged (or acknowledged) ",
496 "before committing.\n",
497 "last rev: $r_last\n",
498 " current: $fetched->{revision}\n";
502 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
503 my $commit_msg = "$GIT_SVN_DIR/.svn-commit.tmp.$$";
505 set_svn_commit_env();
506 foreach my $c (@revs) {
507 my $log_msg = get_commit_message($c, $commit_msg);
509 # fork for each commit because there's a memory leak I
510 # can't track down... (it's probably in the SVN code)
511 defined(my $pid = open my $fh, '-|') or croak $!;
513 my $ed = SVN::Git::Editor->new(
517 svn_path => $SVN_PATH
519 $SVN->get_commit_editor(
530 my $mods = libsvn_checkout_tree($cmt_last, $c, $ed);
532 print "No changes\nr$r_last = $cmt_last\n";
539 my ($r_new, $cmt_new, $no);
543 if (/^r(\d+) = ($sha1)$/o) {
544 ($r_new, $cmt_new) = ($1, $2);
545 } elsif ($_ eq 'No changes') {
549 close $fh or croak $?;
550 if (! defined $r_new && ! defined $cmt_new) {
552 die "Failed to parse revision information\n";
555 ($r_last, $cmt_last) = ($r_new, $cmt_new);
563 $SVN_URL ||= file_to_s("$GIT_SVN_DIR/info/url");
564 $_use_lib ? show_ignore_lib() : show_ignore_cmd();
567 sub show_ignore_cmd {
568 require File::Find or die $!;
569 if (defined $_revision) {
570 die "-r/--revision option doesn't work unless the Perl SVN ",
571 "libraries are used\n";
573 chdir $SVN_WC or croak $!;
575 File::Find::find({wanted=>sub{if(lstat $_ && -d _ && -d "$_/.svn"){
577 @{$ign{$_}} = svn_propget_base('svn:ignore', $_);
578 }}, no_chdir=>1},'.');
581 foreach (@{$ign{'.'}}) { print '/',$_ if /\S/ }
583 foreach my $i (sort keys %ign) {
584 print "\n# ",$i,"\n";
585 foreach (@{$ign{$i}}) { print '/',$i,'/',$_ if /\S/ }
589 sub show_ignore_lib {
591 ($repo, $SVN_PATH) = repo_path_split($SVN_URL);
592 $SVN ||= libsvn_connect($repo);
593 my $r = defined $_revision ? $_revision : $SVN->get_latest_revnum;
594 libsvn_traverse_ignore(\*STDOUT, $SVN_PATH, $r);
598 my $gr_file = "$GIT_DIR/info/grafts";
599 my ($grafts, $comments) = read_grafts($gr_file);
603 # temporarily disable our grafts file to make this idempotent
604 chomp($gr_sha1 = safe_qx(qw/git-hash-object -w/,$gr_file));
605 rename $gr_file, "$gr_file~$gr_sha1" or croak $!;
608 my $l_map = read_url_paths();
609 my @re = map { qr/$_/is } @_opt_m if @_opt_m;
610 unless ($_no_default_regex) {
611 push @re, (qr/\b(?:merge|merging|merged)\s+with\s+([\w\.\-]+)/i,
612 qr/\b(?:merge|merging|merged)\s+([\w\.\-]+)/i,
613 qr/\b(?:from|of)\s+([\w\.\-]+)/i );
615 foreach my $u (keys %$l_map) {
617 foreach my $p (keys %{$l_map->{$u}}) {
618 graft_merge_msg($grafts,$l_map,$u,$p,@re);
621 unless ($_no_graft_copy) {
623 graft_file_copy_lib($grafts,$l_map,$u);
625 graft_file_copy_cmd($grafts,$l_map,$u);
629 graft_tree_joins($grafts);
631 write_grafts($grafts, $comments, $gr_file);
632 unlink "$gr_file~$gr_sha1" if $gr_sha1;
639 $url =~ s#/+$## if $url;
640 if ($_trunk !~ m#^[a-z\+]+://#) {
641 $_trunk = '/' . $_trunk if ($_trunk !~ m#^/#);
643 print STDERR "E: '$_trunk' is not a complete URL ",
644 "and a separate URL is not specified\n";
647 $_trunk = $url . $_trunk;
649 if ($GIT_SVN eq 'git-svn') {
650 print "GIT_SVN_ID set to 'trunk' for $_trunk\n";
651 $GIT_SVN = $ENV{GIT_SVN_ID} = 'trunk';
655 complete_url_ls_init($url, $_branches, '--branches/-b', '');
656 complete_url_ls_init($url, $_tags, '--tags/-t', 'tags/');
660 # try to do trunk first, since branches/tags
661 # may be descended from it.
662 if (-e "$GIT_DIR/svn/trunk/info/url") {
663 fetch_child_id('trunk', @_);
665 rec_fetch('', "$GIT_DIR/svn", @_);
671 my $r_last = -1; # prevent dupes
672 rload_authors() if $_authors;
678 if (defined $_revision) {
679 if ($_revision =~ /^(\d+):(\d+)$/) {
680 ($r_min, $r_max) = ($1, $2);
681 } elsif ($_revision =~ /^\d+$/) {
682 $r_min = $r_max = $_revision;
684 print STDERR "-r$_revision is not supported, use ",
685 "standard \'git log\' arguments instead\n";
690 my $pid = open(my $log,'-|');
691 defined $pid or croak $!;
693 exec(git_svn_log_cmd($r_min,$r_max), @args) or croak $!;
699 if (/^commit ($sha1_short)/o) {
701 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
703 process_commit($c, $r_min, $r_max, \@k) or
708 } elsif (/^author (.+) (\d+) ([\-\+]?\d+)$/) {
709 get_author_info($c, $1, $2, $3);
710 } elsif (/^(?:tree|parent|committer) /) {
712 } elsif (/^:\d{6} \d{6} $sha1_short/o) {
713 push @{$c->{raw}}, $_;
716 push @{$c->{diff}}, $_;
718 push @{$c->{diff}}, $_;
719 } elsif (/^ (git-svn-id:.+)$/) {
720 (undef, $c->{r}, undef) = extract_metadata($1);
725 if ($c && defined $c->{r} && $c->{r} != $r_last) {
727 process_commit($c, $r_min, $r_max, \@k);
733 process_commit($_, $r_min, $r_max) foreach reverse @k;
737 print '-' x72,"\n" unless $_incremental || $_oneline;
740 sub commit_diff_usage {
741 print STDERR "Usage: $0 commit-diff <tree-ish> <tree-ish> [<URL>]\n";
747 print STDERR "commit-diff must be used with SVN libraries\n";
750 my $ta = shift or commit_diff_usage();
751 my $tb = shift or commit_diff_usage();
752 if (!eval { $SVN_URL = shift || file_to_s("$GIT_SVN_DIR/info/url") }) {
753 print STDERR "Needed URL or usable git-svn id command-line\n";
756 if (defined $_message && defined $_file) {
757 print STDERR "Both --message/-m and --file/-F specified ",
758 "for the commit message.\n",
759 "I have no idea what you mean\n";
762 if (defined $_file) {
763 $_message = file_to_s($_message);
765 $_message ||= get_commit_message($tb,
766 "$GIT_DIR/.svn-commit.tmp.$$")->{msg};
769 ($repo, $SVN_PATH) = repo_path_split($SVN_URL);
770 $SVN_LOG ||= libsvn_connect($repo);
771 $SVN ||= libsvn_connect($repo);
772 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
773 my $ed = SVN::Git::Editor->new({ r => $SVN->get_latest_revnum,
774 ra => $SVN, c => $tb,
775 svn_path => $SVN_PATH
777 $SVN->get_commit_editor($_message,
778 sub {print "Committed $_[0]\n"},@lock)
780 my $mods = libsvn_checkout_tree($ta, $tb, $ed);
782 print "No changes\n$ta == $tb\n";
789 ########################### utility functions #########################
793 return 1 if defined $c->{r};
794 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
795 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
796 my @msg = safe_qx(qw/git-cat-file commit/, $c->{c});
797 shift @msg while ($msg[0] ne "\n");
799 @{$c->{l}} = grep !/^git-svn-id: /, @msg;
801 (undef, $c->{r}, undef) = extract_metadata(
802 (grep(/^git-svn-id: /, @msg))[-1]);
804 return defined $c->{r};
807 sub git_svn_log_cmd {
808 my ($r_min, $r_max) = @_;
809 my @cmd = (qw/git-log --abbrev-commit --pretty=raw
810 --default/, "refs/remotes/$GIT_SVN");
811 push @cmd, '--summary' if $_verbose;
812 return @cmd unless defined $r_max;
813 if ($r_max == $r_min) {
814 push @cmd, '--max-count=1';
815 if (my $c = revdb_get($REVDB, $r_max)) {
820 $c_max = revdb_get($REVDB, $r_max);
821 $c_min = revdb_get($REVDB, $r_min);
822 if ($c_min && $c_max) {
823 if ($r_max > $r_max) {
824 push @cmd, "$c_min..$c_max";
826 push @cmd, "$c_max..$c_min";
828 } elsif ($r_max > $r_min) {
839 print "Fetching $id\n";
840 my $ref = "$GIT_DIR/refs/remotes/$id";
841 defined(my $pid = open my $fh, '-|') or croak $!;
844 $GIT_SVN = $ENV{GIT_SVN_ID} = $id;
851 check_repack() if (/^r\d+ = $sha1/);
853 close $fh or croak $?;
857 my ($pfx, $p, @args) = @_;
859 foreach (sort <$p/*>) {
860 if (-r "$_/info/url") {
861 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
862 my $id = $pfx . basename $_;
863 next if $id eq 'trunk';
864 fetch_child_id($id, @args);
871 $x =~ s!^\Q$GIT_DIR\E/svn/!!;
876 sub complete_url_ls_init {
877 my ($url, $var, $switch, $pfx) = @_;
879 print STDERR "W: $switch not specified\n";
883 if ($var !~ m#^[a-z\+]+://#) {
884 $var = '/' . $var if ($var !~ m#^/#);
886 print STDERR "E: '$var' is not a complete URL ",
887 "and a separate URL is not specified\n";
892 chomp(my @ls = $_use_lib ? libsvn_ls_fullurl($var)
893 : safe_qx(qw/svn ls --non-interactive/, $var));
895 defined(my $pid = fork) or croak $!;
897 foreach my $u (map { "$var/$_" } (grep m!/$!, @ls)) {
899 if ($u !~ m!\Q$var\E/(.+)$!) {
900 print STDERR "W: Unrecognized URL: $u\n";
901 die "This should never happen\n";
904 print "init $u => $id\n";
905 $GIT_SVN = $ENV{GIT_SVN_ID} = $id;
919 my @tmp = split m#/#, $_;
921 while (my $x = shift @tmp) {
927 foreach (sort {length $b <=> length $a} keys %common) {
928 if ($common{$_} == @$paths) {
935 # grafts set here are 'stronger' in that they're based on actual tree
936 # matches, and won't be deleted from merge-base checking in write_grafts()
937 sub graft_tree_joins {
939 map_tree_joins() if (@_branch_from && !%tree_map);
940 return unless %tree_map;
944 defined(my $pid = open my $fh, '-|') or croak $!;
946 exec qw/git-rev-list --pretty=raw/,
947 "refs/remotes/$i" or croak $!;
950 next unless /^commit ($sha1)$/o;
952 my ($t) = (<$fh> =~ /^tree ($sha1)$/o);
953 next unless $tree_map{$t};
958 } until ($l =~ /^committer (?:.+) (\d+) ([\-\+]?\d+)$/);
960 my ($s, $tz) = ($1, $2);
961 if ($tz =~ s/^\+//) {
962 $s += tz_to_s_offset($tz);
963 } elsif ($tz =~ s/^\-//) {
964 $s -= tz_to_s_offset($tz);
967 my ($url_a, $r_a, $uuid_a) = cmt_metadata($c);
969 foreach my $p (@{$tree_map{$t}}) {
972 safe_qx('git-merge-base', $c, $p)
974 next unless ($@ || $?);
976 # see if SVN says it's a relative
977 my ($url_b, $r_b, $uuid_b) =
979 next if (defined $url_b &&
981 ($url_a eq $url_b) &&
982 ($uuid_a eq $uuid_b));
983 if ($uuid_a eq $uuid_b) {
985 $grafts->{$c}->{$p} = 2;
987 } elsif ($r_b > $r_a) {
988 $grafts->{$p}->{$c} = 2;
993 my $ct = get_commit_time($p);
995 $grafts->{$c}->{$p} = 2;
997 $grafts->{$p}->{$c} = 2;
999 # what should we do when $ct == $s ?
1002 close $fh or croak $?;
1006 # this isn't funky-filename safe, but good enough for now...
1007 sub graft_file_copy_cmd {
1008 my ($grafts, $l_map, $u) = @_;
1009 my $paths = $l_map->{$u};
1010 my $pfx = common_prefix([keys %$paths]);
1011 $SVN_URL ||= $u.$pfx;
1012 my $pid = open my $fh, '-|';
1013 defined $pid or croak $!;
1015 my @exec = qw/svn log -v/;
1016 push @exec, "-r$_revision" if defined $_revision;
1017 exec @exec, $u.$pfx or croak $!;
1019 my ($r, $mp) = (undef, undef);
1024 } elsif (/^r(\d+) \| /) {
1025 $r = $1 unless defined $r;
1026 } elsif (/^Changed paths:/) {
1028 } elsif ($mp && m#^ [AR] /(\S.*?) \(from /(\S+?):(\d+)\)$#) {
1029 my ($p1, $p0, $r0) = ($1, $2, $3);
1030 my $c = find_graft_path_commit($paths, $p1, $r);
1032 find_graft_path_parents($grafts, $paths, $c, $p0, $r0);
1037 sub graft_file_copy_lib {
1038 my ($grafts, $l_map, $u) = @_;
1039 my $tree_paths = $l_map->{$u};
1040 my $pfx = common_prefix([keys %$tree_paths]);
1041 my ($repo, $path) = repo_path_split($u.$pfx);
1042 $SVN_LOG ||= libsvn_connect($repo);
1043 $SVN ||= libsvn_connect($repo);
1045 my ($base, $head) = libsvn_parse_revision();
1047 my ($min, $max) = ($base, $head < $base+$inc ? $head : $base+$inc);
1048 my $eh = $SVN::Error::handler;
1049 $SVN::Error::handler = \&libsvn_skip_unknown_revs;
1051 my $pool = SVN::Pool->new;
1052 libsvn_get_log($SVN_LOG, "/$path", $min, $max, 0, 1, 1,
1054 libsvn_graft_file_copies($grafts, $tree_paths,
1058 last if ($max >= $head);
1061 $max = $head if ($max > $head);
1063 $SVN::Error::handler = $eh;
1066 sub process_merge_msg_matches {
1067 my ($grafts, $l_map, $u, $p, $c, @matches) = @_;
1068 my (@strong, @weak);
1069 foreach (@matches) {
1070 # merging with ourselves is not interesting
1072 if ($l_map->{$u}->{$_}) {
1078 foreach my $w (@weak) {
1080 # no exact match, use branch name as regexp.
1081 my $re = qr/\Q$w\E/i;
1082 foreach (keys %{$l_map->{$u}}) {
1084 push @strong, $l_map->{$u}->{$_};
1091 foreach (keys %{$l_map->{$u}}) {
1093 push @strong, $l_map->{$u}->{$_};
1098 my ($rev) = ($c->{m} =~ /^git-svn-id:\s(?:\S+?)\@(\d+)
1099 \s(?:[a-f\d\-]+)$/xsm);
1100 unless (defined $rev) {
1101 ($rev) = ($c->{m} =~/^git-svn-id:\s(\d+)
1102 \@(?:[a-f\d\-]+)/xsm);
1103 return unless defined $rev;
1105 foreach my $m (@strong) {
1106 my ($r0, $s0) = find_rev_before($rev, $m, 1);
1107 $grafts->{$c->{c}}->{$s0} = 1 if defined $s0;
1111 sub graft_merge_msg {
1112 my ($grafts, $l_map, $u, $p, @re) = @_;
1114 my $x = $l_map->{$u}->{$p};
1115 my $rl = rev_list_raw($x);
1116 while (my $c = next_rev_list_entry($rl)) {
1117 foreach my $re (@re) {
1118 my (@br) = ($c->{m} =~ /$re/g);
1120 process_merge_msg_matches($grafts,$l_map,$u,$p,$c,@br);
1126 return if $SVN_UUID;
1128 my $pool = SVN::Pool->new;
1129 $SVN_UUID = $SVN->get_uuid($pool);
1132 my $info = shift || svn_info('.');
1133 $SVN_UUID = $info->{'Repository UUID'} or
1134 croak "Repository UUID unreadable\n";
1140 defined $pid or croak $!;
1142 open my $null, '>', '/dev/null' or croak $!;
1143 open STDERR, '>&', $null or croak $!;
1144 open STDOUT, '>&', $null or croak $!;
1145 exec @_ or croak $!;
1151 sub repo_path_split {
1152 my $full_url = shift;
1153 $full_url =~ s#/+$##;
1155 foreach (@repo_path_split_cache) {
1156 if ($full_url =~ s#$_##) {
1158 $full_url =~ s#^/+##;
1159 return ($u, $full_url);
1163 my ($url, $path) = ($full_url =~ m!^([a-z\+]+://[^/]*)(.*)$!i);
1165 my @paths = split(m#/+#, $path);
1169 $SVN = libsvn_connect($url);
1170 last if (defined $SVN &&
1171 defined eval { $SVN->get_latest_revnum });
1172 my $n = shift @paths || last;
1176 while (quiet_run(qw/svn ls --non-interactive/, $url)) {
1177 my $n = shift @paths || last;
1181 push @repo_path_split_cache, qr/^(\Q$url\E)/;
1182 $path = join('/',@paths);
1183 return ($url, $path);
1187 defined $SVN_URL or croak "SVN repository location required\n";
1188 unless (-d $GIT_DIR) {
1189 croak "GIT_DIR=$GIT_DIR does not exist!\n";
1191 mkpath([$GIT_SVN_DIR]);
1192 mkpath(["$GIT_SVN_DIR/info"]);
1193 open my $fh, '>>',$REVDB or croak $!;
1195 s_to_file($SVN_URL,"$GIT_SVN_DIR/info/url");
1199 sub assert_svn_wc_clean {
1200 return if $_use_lib;
1202 croak "$svn_rev is not an integer!\n" unless ($svn_rev =~ /^\d+$/);
1203 my $lcr = svn_info('.')->{'Last Changed Rev'};
1204 if ($svn_rev != $lcr) {
1205 print STDERR "Checking for copy-tree ... ";
1206 my @diff = grep(/^Index: /,(safe_qx(qw(svn diff),
1207 "-r$lcr:$svn_rev")));
1209 croak "Nope! Expected r$svn_rev, got r$lcr\n";
1211 print STDERR "OK!\n";
1214 my @status = grep(!/^Performing status on external/,(`svn status`));
1215 @status = grep(!/^\s*$/,@status);
1216 if (scalar @status) {
1217 print STDERR "Tree ($SVN_WC) is not clean:\n";
1218 print STDERR $_ foreach @status;
1223 sub get_tree_from_treeish {
1225 croak "Not a sha1: $treeish\n" unless $treeish =~ /^$sha1$/o;
1226 chomp(my $type = `git-cat-file -t $treeish`);
1228 while ($type eq 'tag') {
1229 chomp(($treeish, $type) = `git-cat-file tag $treeish`);
1231 if ($type eq 'commit') {
1232 $expected = (grep /^tree /,`git-cat-file commit $treeish`)[0];
1233 ($expected) = ($expected =~ /^tree ($sha1)$/);
1234 die "Unable to get tree from $treeish\n" unless $expected;
1235 } elsif ($type eq 'tree') {
1236 $expected = $treeish;
1238 die "$treeish is a $type, expected tree, tag or commit\n";
1244 return if $_use_lib;
1246 my $expected = get_tree_from_treeish($treeish);
1248 my $tmpindex = $GIT_SVN_INDEX.'.assert-tmp';
1250 unlink $tmpindex or croak $!;
1252 my $old_index = set_index($tmpindex);
1254 chomp(my $tree = `git-write-tree`);
1255 restore_index($old_index);
1256 if ($tree ne $expected) {
1257 croak "Tree mismatch, Got: $tree, Expected: $expected\n";
1262 sub parse_diff_tree {
1263 my $diff_fh = shift;
1267 while (<$diff_fh>) {
1268 chomp $_; # this gets rid of the trailing "\0"
1269 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
1270 $sha1\s($sha1)\s([MTCRAD])\d*$/xo) {
1271 push @mods, { mode_a => $1, mode_b => $2,
1272 sha1_b => $3, chg => $4 };
1273 if ($4 =~ /^(?:C|R)$/) {
1278 } elsif ($state eq 'file_a') {
1279 my $x = $mods[$#mods] or croak "Empty array\n";
1280 if ($x->{chg} !~ /^(?:C|R)$/) {
1281 croak "Error parsing $_, $x->{chg}\n";
1285 } elsif ($state eq 'file_b') {
1286 my $x = $mods[$#mods] or croak "Empty array\n";
1287 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
1288 croak "Error parsing $_, $x->{chg}\n";
1290 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
1291 croak "Error parsing $_, $x->{chg}\n";
1296 croak "Error parsing $_\n";
1299 close $diff_fh or croak $?;
1304 sub svn_check_prop_executable {
1306 return if -l $m->{file_b};
1307 if ($m->{mode_b} =~ /755$/) {
1308 chmod((0755 &~ umask),$m->{file_b}) or croak $!;
1309 if ($m->{mode_a} !~ /755$/) {
1310 sys(qw(svn propset svn:executable 1), $m->{file_b});
1312 -x $m->{file_b} or croak "$m->{file_b} is not executable!\n";
1313 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
1314 sys(qw(svn propdel svn:executable), $m->{file_b});
1315 chmod((0644 &~ umask),$m->{file_b}) or croak $!;
1316 -x $m->{file_b} and croak "$m->{file_b} is executable!\n";
1320 sub svn_ensure_parent_path {
1321 my $dir_b = dirname(shift);
1322 svn_ensure_parent_path($dir_b) if ($dir_b ne File::Spec->curdir);
1323 mkpath([$dir_b]) unless (-d $dir_b);
1324 sys(qw(svn add -N), $dir_b) unless (-d "$dir_b/.svn");
1327 sub precommit_check {
1329 my (%rm_file, %rmdir_check, %added_check);
1331 my %o = ( D => 0, R => 1, C => 2, A => 3, M => 3, T => 3 );
1332 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
1333 if ($m->{chg} eq 'R') {
1334 if (-d $m->{file_b}) {
1335 err_dir_to_file("$m->{file_a} => $m->{file_b}");
1337 # dir/$file => dir/file/$file
1338 my $dirname = dirname($m->{file_b});
1339 while ($dirname ne File::Spec->curdir) {
1340 if ($dirname ne $m->{file_a}) {
1341 $dirname = dirname($dirname);
1344 err_file_to_dir("$m->{file_a} => $m->{file_b}");
1346 # baz/zzz => baz (baz is a file)
1347 $dirname = dirname($m->{file_a});
1348 while ($dirname ne File::Spec->curdir) {
1349 if ($dirname ne $m->{file_b}) {
1350 $dirname = dirname($dirname);
1353 err_dir_to_file("$m->{file_a} => $m->{file_b}");
1356 if ($m->{chg} =~ /^(D|R)$/) {
1357 my $t = $1 eq 'D' ? 'file_b' : 'file_a';
1358 $rm_file{ $m->{$t} } = 1;
1359 my $dirname = dirname( $m->{$t} );
1360 my $basename = basename( $m->{$t} );
1361 $rmdir_check{$dirname}->{$basename} = 1;
1362 } elsif ($m->{chg} =~ /^(?:A|C)$/) {
1363 if (-d $m->{file_b}) {
1364 err_dir_to_file($m->{file_b});
1366 my $dirname = dirname( $m->{file_b} );
1367 my $basename = basename( $m->{file_b} );
1368 $added_check{$dirname}->{$basename} = 1;
1369 while ($dirname ne File::Spec->curdir) {
1370 if ($rm_file{$dirname}) {
1371 err_file_to_dir($m->{file_b});
1373 $dirname = dirname $dirname;
1377 return (\%rmdir_check, \%added_check);
1379 sub err_dir_to_file {
1381 print STDERR "Node change from directory to file ",
1382 "is not supported by Subversion: ",$file,"\n";
1385 sub err_file_to_dir {
1387 print STDERR "Node change from file to directory ",
1388 "is not supported by Subversion: ",$file,"\n";
1395 my ($from, $treeish) = @_;
1397 print "diff-tree $from $treeish\n";
1398 my $pid = open my $diff_fh, '-|';
1399 defined $pid or croak $!;
1401 my @diff_tree = qw(git-diff-tree -z -r);
1402 if ($_cp_similarity) {
1403 push @diff_tree, "-C$_cp_similarity";
1405 push @diff_tree, '-C';
1407 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
1408 push @diff_tree, "-l$_l" if defined $_l;
1409 exec(@diff_tree, $from, $treeish) or croak $!;
1411 return parse_diff_tree($diff_fh);
1414 sub svn_checkout_tree {
1415 my ($from, $treeish) = @_;
1416 my $mods = get_diff($from->{commit}, $treeish);
1417 return $mods unless (scalar @$mods);
1418 my ($rm, $add) = precommit_check($mods);
1420 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
1421 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
1422 if ($m->{chg} eq 'C') {
1423 svn_ensure_parent_path( $m->{file_b} );
1424 sys(qw(svn cp), $m->{file_a}, $m->{file_b});
1425 apply_mod_line_blob($m);
1426 svn_check_prop_executable($m);
1427 } elsif ($m->{chg} eq 'D') {
1428 sys(qw(svn rm --force), $m->{file_b});
1429 } elsif ($m->{chg} eq 'R') {
1430 svn_ensure_parent_path( $m->{file_b} );
1431 sys(qw(svn mv --force), $m->{file_a}, $m->{file_b});
1432 apply_mod_line_blob($m);
1433 svn_check_prop_executable($m);
1434 } elsif ($m->{chg} eq 'M') {
1435 apply_mod_line_blob($m);
1436 svn_check_prop_executable($m);
1437 } elsif ($m->{chg} eq 'T') {
1438 sys(qw(svn rm --force),$m->{file_b});
1439 apply_mod_line_blob($m);
1440 sys(qw(svn add), $m->{file_b});
1441 svn_check_prop_executable($m);
1442 } elsif ($m->{chg} eq 'A') {
1443 svn_ensure_parent_path( $m->{file_b} );
1444 apply_mod_line_blob($m);
1445 sys(qw(svn add), $m->{file_b});
1446 svn_check_prop_executable($m);
1448 croak "Invalid chg: $m->{chg}\n";
1452 assert_tree($treeish);
1453 if ($_rmdir) { # remove empty directories
1454 handle_rmdir($rm, $add);
1456 assert_tree($treeish);
1460 sub libsvn_checkout_tree {
1461 my ($from, $treeish, $ed) = @_;
1462 my $mods = get_diff($from, $treeish);
1463 return $mods unless (scalar @$mods);
1464 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
1465 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
1467 if (defined $o{$f}) {
1470 croak "Invalid change type: $f\n";
1473 $ed->rmdirs($_q) if $_rmdir;
1477 # svn ls doesn't work with respect to the current working tree, but what's
1478 # in the repository. There's not even an option for it... *sigh*
1479 # (added files don't show up and removed files remain in the ls listing)
1480 sub svn_ls_current {
1481 my ($dir, $rm, $add) = @_;
1482 chomp(my @ls = safe_qx('svn','ls',$dir));
1485 s#/$##; # trailing slashes are evil
1486 push @ret, $_ unless $rm->{$dir}->{$_};
1488 if (exists $add->{$dir}) {
1489 push @ret, keys %{$add->{$dir}};
1495 my ($rm, $add) = @_;
1497 foreach my $dir (sort {length $b <=> length $a} keys %$rm) {
1498 my $ls = svn_ls_current($dir, $rm, $add);
1499 next if (scalar @$ls);
1500 sys(qw(svn rm --force),$dir);
1502 my $dn = dirname $dir;
1503 $rm->{ $dn }->{ basename $dir } = 1;
1504 $ls = svn_ls_current($dn, $rm, $add);
1505 while (scalar @$ls == 0 && $dn ne File::Spec->curdir) {
1506 sys(qw(svn rm --force),$dn);
1507 $dir = basename $dn;
1509 $rm->{ $dn }->{ $dir } = 1;
1510 $ls = svn_ls_current($dn, $rm, $add);
1515 sub get_commit_message {
1516 my ($commit, $commit_msg) = (@_);
1517 my %log_msg = ( msg => '' );
1518 open my $msg, '>', $commit_msg or croak $!;
1520 chomp(my $type = `git-cat-file -t $commit`);
1521 if ($type eq 'commit') {
1522 my $pid = open my $msg_fh, '-|';
1523 defined $pid or croak $!;
1526 exec(qw(git-cat-file commit), $commit) or croak $!;
1531 $in_msg = 1 if (/^\s*$/);
1532 } elsif (/^git-svn-id: /) {
1533 # skip this, we regenerate the correct one
1534 # on re-fetch anyways
1536 print $msg $_ or croak $!;
1539 close $msg_fh or croak $?;
1541 close $msg or croak $!;
1543 if ($_edit || ($type eq 'tree')) {
1544 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
1545 system($editor, $commit_msg);
1548 # file_to_s removes all trailing newlines, so just use chomp() here:
1549 open $msg, '<', $commit_msg or croak $!;
1550 { local $/; chomp($log_msg{msg} = <$msg>); }
1551 close $msg or croak $!;
1556 sub set_svn_commit_env {
1557 if (defined $LC_ALL) {
1558 $ENV{LC_ALL} = $LC_ALL;
1560 delete $ENV{LC_ALL};
1564 sub svn_commit_tree {
1565 my ($last, $commit) = @_;
1566 my $commit_msg = "$GIT_SVN_DIR/.svn-commit.tmp.$$";
1567 my $log_msg = get_commit_message($commit, $commit_msg);
1568 my ($oneline) = ($log_msg->{msg} =~ /([^\n\r]+)/);
1569 print "Committing $commit: $oneline\n";
1571 set_svn_commit_env();
1572 my @ci_output = safe_qx(qw(svn commit -F),$commit_msg);
1575 my ($committed) = ($ci_output[$#ci_output] =~ /(\d+)/);
1576 if (!defined $committed) {
1577 my $out = join("\n",@ci_output);
1578 print STDERR "W: Trouble parsing \`svn commit' output:\n\n",
1579 $out, "\n\nAssuming English locale...";
1580 ($committed) = ($out =~ /^Committed revision \d+\./sm);
1581 defined $committed or die " FAILED!\n",
1582 "Commit output failed to parse committed revision!\n",
1583 print STDERR " OK\n";
1586 my @svn_up = qw(svn up);
1587 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
1588 if ($_optimize_commits && ($committed == ($last->{revision} + 1))) {
1589 push @svn_up, "-r$committed";
1591 my $info = svn_info('.');
1592 my $date = $info->{'Last Changed Date'} or die "Missing date\n";
1593 if ($info->{'Last Changed Rev'} != $committed) {
1594 croak "$info->{'Last Changed Rev'} != $committed\n"
1596 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
1597 /(\d{4})\-(\d\d)\-(\d\d)\s
1598 (\d\d)\:(\d\d)\:(\d\d)\s([\-\+]\d+)/x)
1599 or croak "Failed to parse date: $date\n";
1600 $log_msg->{date} = "$tz $Y-$m-$d $H:$M:$S";
1601 $log_msg->{author} = $info->{'Last Changed Author'};
1602 $log_msg->{revision} = $committed;
1603 $log_msg->{msg} .= "\n";
1604 $log_msg->{parents} = [ $last->{commit} ];
1605 $log_msg->{commit} = git_commit($log_msg, $commit);
1608 # resync immediately
1609 push @svn_up, "-r$last->{revision}";
1611 return fetch("$committed=$commit");
1616 my $pid = open my $fh, '-|';
1617 defined $pid or croak $!;
1619 exec(qw/git-rev-list --pretty=raw/, @args) or croak $!;
1621 return { fh => $fh, t => { } };
1624 sub next_rev_list_entry {
1629 if (/^commit ($sha1)$/o) {
1631 $rl->{t} = { c => $1 };
1636 } elsif (/^parent ($sha1)$/o) {
1643 return ($x != $rl->{t}) ? $x : undef;
1646 # read the entire log into a temporary file (which is removed ASAP)
1647 # and store the file handle + parser state
1649 my (@log_args) = @_;
1650 my $log_fh = IO::File->new_tmpfile or croak $!;
1652 defined $pid or croak $!;
1654 open STDOUT, '>&', $log_fh or croak $!;
1655 exec (qw(svn log), @log_args) or croak $!
1659 seek $log_fh, 0, 0 or croak $!;
1660 return { state => 'sep', fh => $log_fh };
1663 sub next_log_entry {
1664 my $log = shift; # retval of svn_log_raw()
1666 my $fh = $log->{fh};
1671 if ($log->{state} eq 'msg') {
1672 if ($ret->{lines}) {
1673 $ret->{msg} .= $_."\n";
1674 unless(--$ret->{lines}) {
1675 $log->{state} = 'sep';
1678 croak "Log parse error at: $_\n",
1684 if ($log->{state} ne 'sep') {
1685 croak "Log parse error at: $_\n",
1686 "state: $log->{state}\n",
1690 $log->{state} = 'rev';
1692 # if we have an empty log message, put something there:
1694 $ret->{msg} ||= "\n";
1695 delete $ret->{lines};
1700 if ($log->{state} eq 'rev' && s/^r(\d+)\s*\|\s*//) {
1702 my ($author, $date, $lines) = split(/\s*\|\s*/, $_, 3);
1703 ($lines) = ($lines =~ /(\d+)/);
1704 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
1705 /(\d{4})\-(\d\d)\-(\d\d)\s
1706 (\d\d)\:(\d\d)\:(\d\d)\s([\-\+]\d+)/x)
1707 or croak "Failed to parse date: $date\n";
1708 $ret = { revision => $rev,
1709 date => "$tz $Y-$m-$d $H:$M:$S",
1713 if (defined $_authors && ! defined $users{$author}) {
1714 die "Author: $author not defined in ",
1717 $log->{state} = 'msg_start';
1720 # skip the first blank line of the message:
1721 if ($log->{state} eq 'msg_start' && /^$/) {
1722 $log->{state} = 'msg';
1723 } elsif ($log->{state} eq 'msg') {
1724 if ($ret->{lines}) {
1725 $ret->{msg} .= $_."\n";
1726 unless (--$ret->{lines}) {
1727 $log->{state} = 'sep';
1730 croak "Log parse error at: $_\n",
1731 $ret->{revision},"\n";
1739 my $url = shift || $SVN_URL;
1741 my $pid = open my $info_fh, '-|';
1742 defined $pid or croak $!;
1745 exec(qw(svn info),$url) or croak $!;
1749 # only single-lines seem to exist in svn info output
1750 while (<$info_fh>) {
1752 if (m#^([^:]+)\s*:\s*(\S.*)$#) {
1754 push @{$ret->{-order}}, $1;
1757 close $info_fh or croak $?;
1761 sub sys { system(@_) == 0 or croak $? }
1764 my ($from, $to) = @_;
1765 my $es = svn_propget_base('svn:eol-style', $to);
1766 open my $rfd, '<', $from or croak $!;
1767 binmode $rfd or croak $!;
1768 open my $wfd, '>', $to or croak $!;
1769 binmode $wfd or croak $!;
1770 eol_cp_fd($rfd, $wfd, $es);
1771 close $rfd or croak $!;
1772 close $wfd or croak $!;
1776 my ($rfd, $wfd, $es) = @_;
1777 my $eol = defined $es ? $EOL{$es} : undef;
1782 defined($r = sysread($rfd, $buf, 4096)) or croak $!;
1785 if ($buf =~ /\015$/) {
1787 defined($r = sysread($rfd,$c,1)) or croak $!;
1788 $buf .= $c if $r > 0;
1790 $buf =~ s/(?:\015\012|\015|\012)/$eol/gs;
1793 for ($w = 0; $w < $r; $w += $t) {
1794 $t = syswrite($wfd, $buf, $r - $w, $w) or croak $!;
1800 sub do_update_index {
1801 my ($z_cmd, $cmd, $no_text_base) = @_;
1803 my $z = open my $p, '-|';
1804 defined $z or croak $!;
1805 unless ($z) { exec @$z_cmd or croak $! }
1807 my $pid = open my $ui, '|-';
1808 defined $pid or croak $!;
1810 exec('git-update-index',"--$cmd",'-z','--stdin') or croak $!;
1813 while (my $x = <$p>) {
1815 if (!$no_text_base && lstat $x && ! -l _ &&
1816 svn_propget_base('svn:keywords', $x)) {
1817 my $mode = -x _ ? 0755 : 0644;
1818 my ($v,$d,$f) = File::Spec->splitpath($x);
1819 my $tb = File::Spec->catfile($d, '.svn', 'tmp',
1820 'text-base',"$f.svn-base");
1823 $tb = File::Spec->catfile($d, '.svn',
1824 'text-base',"$f.svn-base");
1827 unlink $x or croak $!;
1829 chmod(($mode &~ umask), $x) or croak $!;
1833 close $ui or croak $?;
1837 return if $_use_lib;
1839 if (!-f "$GIT_SVN_DIR/info/exclude") {
1840 open my $fd, '>>', "$GIT_SVN_DIR/info/exclude" or croak $!;
1841 print $fd '.svn',"\n";
1842 close $fd or croak $!;
1844 my $no_text_base = shift;
1845 do_update_index([qw/git-diff-files --name-only -z/],
1848 do_update_index([qw/git-ls-files -z --others/,
1849 "--exclude-from=$GIT_SVN_DIR/info/exclude"],
1855 my ($str, $file, $mode) = @_;
1856 open my $fd,'>',$file or croak $!;
1857 print $fd $str,"\n" or croak $!;
1858 close $fd or croak $!;
1859 chmod ($mode &~ umask, $file) if (defined $mode);
1864 open my $fd,'<',$file or croak "$!: file: $file\n";
1867 close $fd or croak $!;
1872 sub assert_revision_unknown {
1874 if (my $c = revdb_get($REVDB, $r)) {
1875 croak "$r = $c already exists! Why are we refetching it?";
1881 my @x = safe_qx('git-cat-file','commit',$x);
1882 my @y = safe_qx('git-cat-file','commit',$y);
1883 if (($y[0] ne $x[0]) || $x[0] !~ /^tree $sha1\n$/
1884 || $y[0] !~ /^tree $sha1\n$/) {
1885 print STDERR "Trees not equal: $y[0] != $x[0]\n";
1892 my ($log_msg, @parents) = @_;
1893 assert_revision_unknown($log_msg->{revision});
1894 map_tree_joins() if (@_branch_from && !%tree_map);
1896 my (@tmp_parents, @exec_parents, %seen_parent);
1897 if (my $lparents = $log_msg->{parents}) {
1898 @tmp_parents = @$lparents
1900 # commit parents can be conditionally bound to a particular
1901 # svn revision via: "svn_revno=commit_sha1", filter them out here:
1902 foreach my $p (@parents) {
1903 next unless defined $p;
1904 if ($p =~ /^(\d+)=($sha1_short)$/o) {
1905 if ($1 == $log_msg->{revision}) {
1906 push @tmp_parents, $2;
1909 push @tmp_parents, $p if $p =~ /$sha1_short/o;
1912 my $tree = $log_msg->{tree};
1913 if (!defined $tree) {
1914 my $index = set_index($GIT_SVN_INDEX);
1916 chomp($tree = `git-write-tree`);
1918 restore_index($index);
1921 # just in case we clobber the existing ref, we still want that ref
1923 if (my $cur = eval { file_to_s("$GIT_DIR/refs/remotes/$GIT_SVN") }) {
1924 push @tmp_parents, $cur;
1927 if (exists $tree_map{$tree}) {
1928 foreach my $p (@{$tree_map{$tree}}) {
1930 foreach (@tmp_parents) {
1931 # see if a common parent is found
1933 safe_qx('git-merge-base', $_, $p)
1940 my ($url_p, $r_p, $uuid_p) = cmt_metadata($p);
1941 next if (($SVN_UUID eq $uuid_p) &&
1942 ($log_msg->{revision} > $r_p));
1943 next if (defined $url_p && defined $SVN_URL &&
1944 ($SVN_UUID eq $uuid_p) &&
1945 ($url_p eq $SVN_URL));
1946 push @tmp_parents, $p;
1949 foreach (@tmp_parents) {
1950 next if $seen_parent{$_};
1951 $seen_parent{$_} = 1;
1952 push @exec_parents, $_;
1953 # MAXPARENT is defined to 16 in commit-tree.c:
1954 last if @exec_parents > 16;
1957 set_commit_env($log_msg);
1958 my @exec = ('git-commit-tree', $tree);
1959 push @exec, '-p', $_ foreach @exec_parents;
1960 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
1962 print $msg_fh $log_msg->{msg} or croak $!;
1963 unless ($_no_metadata) {
1964 print $msg_fh "\ngit-svn-id: $SVN_URL\@$log_msg->{revision}",
1965 " $SVN_UUID\n" or croak $!;
1967 $msg_fh->flush == 0 or croak $!;
1968 close $msg_fh or croak $!;
1969 chomp(my $commit = do { local $/; <$out_fh> });
1970 close $out_fh or croak $!;
1973 if ($commit !~ /^$sha1$/o) {
1974 die "Failed to commit, invalid sha1: $commit\n";
1976 sys('git-update-ref',"refs/remotes/$GIT_SVN",$commit);
1977 revdb_set($REVDB, $log_msg->{revision}, $commit);
1979 # this output is read via pipe, do not change:
1980 print "r$log_msg->{revision} = $commit\n";
1986 if ($_repack && (--$_repack_nr == 0)) {
1987 $_repack_nr = $_repack;
1988 sys("git repack $_repack_flags");
1992 sub set_commit_env {
1994 my $author = $log_msg->{author};
1995 if (!defined $author || length $author == 0) {
1996 $author = '(no author)';
1998 my ($name,$email) = defined $users{$author} ? @{$users{$author}}
1999 : ($author,"$author\@$SVN_UUID");
2000 $ENV{GIT_AUTHOR_NAME} = $ENV{GIT_COMMITTER_NAME} = $name;
2001 $ENV{GIT_AUTHOR_EMAIL} = $ENV{GIT_COMMITTER_EMAIL} = $email;
2002 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_msg->{date};
2005 sub apply_mod_line_blob {
2007 if ($m->{mode_b} =~ /^120/) {
2008 blob_to_symlink($m->{sha1_b}, $m->{file_b});
2010 blob_to_file($m->{sha1_b}, $m->{file_b});
2014 sub blob_to_symlink {
2015 my ($blob, $link) = @_;
2016 defined $link or croak "\$link not defined!\n";
2017 croak "Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
2018 if (-l $link || -f _) {
2019 unlink $link or croak $!;
2022 my $dest = `git-cat-file blob $blob`; # no newline, so no chomp
2023 symlink $dest, $link or croak $!;
2027 my ($blob, $file) = @_;
2028 defined $file or croak "\$file not defined!\n";
2029 croak "Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
2030 if (-l $file || -f _) {
2031 unlink $file or croak $!;
2034 open my $blob_fh, '>', $file or croak "$!: $file\n";
2036 defined $pid or croak $!;
2039 open STDOUT, '>&', $blob_fh or croak $!;
2040 exec('git-cat-file','blob',$blob) or croak $!;
2045 close $blob_fh or croak $!;
2049 my $pid = open my $child, '-|';
2050 defined $pid or croak $!;
2052 exec(@_) or croak $!;
2054 my @ret = (<$child>);
2055 close $child or croak $?;
2056 die $? if $?; # just in case close didn't error out
2057 return wantarray ? @ret : join('',@ret);
2060 sub svn_compat_check {
2061 if ($_follow_parent) {
2062 print STDERR 'E: --follow-parent functionality is only ',
2063 "available when SVN libraries are used\n";
2066 my @co_help = safe_qx(qw(svn co -h));
2067 unless (grep /ignore-externals/,@co_help) {
2068 print STDERR "W: Installed svn version does not support ",
2069 "--ignore-externals\n";
2070 $_no_ignore_ext = 1;
2072 if (grep /usage: checkout URL\[\@REV\]/,@co_help) {
2073 $_svn_co_url_revs = 1;
2075 if (grep /\[TARGET\[\@REV\]\.\.\.\]/, `svn propget -h`) {
2076 $_svn_pg_peg_revs = 1;
2079 # I really, really hope nobody hits this...
2080 unless (grep /stop-on-copy/, (safe_qx(qw(svn log -h)))) {
2082 W: The installed svn version does not support the --stop-on-copy flag in
2084 Lets hope the directory you're tracking is not a branch or tag
2085 and was never moved within the repository...
2091 # *sigh*, new versions of svn won't honor -r<rev> without URL@<rev>,
2092 # (and they won't honor URL@<rev> without -r<rev>, too!)
2093 sub svn_cmd_checkout {
2094 my ($url, $rev, $dir) = @_;
2095 my @cmd = ('svn','co', "-r$rev");
2096 push @cmd, '--ignore-externals' unless $_no_ignore_ext;
2097 $url .= "\@$rev" if $_svn_co_url_revs;
2098 sys(@cmd, $url, $dir);
2101 sub check_upgrade_needed {
2103 -d $GIT_SVN_DIR or mkpath([$GIT_SVN_DIR]);
2104 open my $fh, '>>',$REVDB or croak $!;
2108 my $pid = open my $child, '-|';
2109 defined $pid or croak $!;
2112 exec('git-rev-parse',"$GIT_SVN-HEAD") or croak $!;
2114 my @ret = (<$child>);
2115 close $child or croak $?;
2116 die $? if $?; # just in case close didn't error out
2117 return wantarray ? @ret : join('',@ret);
2120 my $head = eval { safe_qx('git-rev-parse',"refs/remotes/$GIT_SVN") };
2122 print STDERR "Please run: $0 rebuild --upgrade\n";
2127 # fills %tree_map with a reverse mapping of trees to commits. Useful
2128 # for finding parents to commit on.
2129 sub map_tree_joins {
2131 foreach my $br (@_branch_from) {
2132 my $pid = open my $pipe, '-|';
2133 defined $pid or croak $!;
2135 exec(qw(git-rev-list --topo-order --pretty=raw), $br)
2139 if (/^commit ($sha1)$/o) {
2142 # if we've seen a commit,
2143 # we've seen its parents
2144 last if $seen{$commit};
2145 my ($tree) = (<$pipe> =~ /^tree ($sha1)$/o);
2146 unless (defined $tree) {
2147 die "Failed to parse commit $commit\n";
2149 push @{$tree_map{$tree}}, $commit;
2153 close $pipe; # we could be breaking the pipe early
2158 if (@_branch_from) {
2159 print STDERR '--branch|-b parameters are ignored when ',
2160 "--branch-all-refs|-B is passed\n";
2163 # don't worry about rev-list on non-commit objects/tags,
2164 # it shouldn't blow up if a ref is a blob or tree...
2165 chomp(@_branch_from = `git-rev-parse --symbolic --all`);
2168 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
2170 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
2171 while (<$authors>) {
2173 next unless /^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/;
2174 my ($user, $name, $email) = ($1, $2, $3);
2175 $users{$user} = [$name, $email];
2177 close $authors or croak $!;
2181 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
2182 while (<$authors>) {
2184 next unless /^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/;
2185 my ($user, $name, $email) = ($1, $2, $3);
2186 $rusers{"$name <$email>"} = $user;
2188 close $authors or croak $!;
2191 sub svn_propget_base {
2193 $f .= '@BASE' if $_svn_pg_peg_revs;
2194 return safe_qx(qw/svn propget/, $p, $f);
2199 foreach (`git-rev-parse --symbolic --all`) {
2200 next unless s#^refs/remotes/##;
2202 next unless -f "$GIT_DIR/svn/$_/info/url";
2210 defined(my $pid = fork) or croak $!;
2212 $GIT_SVN = $ENV{GIT_SVN_ID} = $id;
2214 exit 0 if -r $REVDB;
2215 print "Upgrading svn => git mapping...\n";
2216 -d $GIT_SVN_DIR or mkpath([$GIT_SVN_DIR]);
2217 open my $fh, '>>',$REVDB or croak $!;
2220 print "Done upgrading. You may now delete the ",
2221 "deprecated $GIT_SVN_DIR/revs directory\n";
2229 sub migration_check {
2230 migrate_revdb() unless (-e $REVDB);
2231 return if (-d "$GIT_DIR/svn" || !-d $GIT_DIR);
2232 print "Upgrading repository...\n";
2233 unless (-d "$GIT_DIR/svn") {
2234 mkdir "$GIT_DIR/svn" or croak $!;
2236 print "Data from a previous version of git-svn exists, but\n\t",
2237 "$GIT_SVN_DIR\n\t(required for this version ",
2238 "($VERSION) of git-svn) does not.\n";
2240 foreach my $x (`git-rev-parse --symbolic --all`) {
2241 next unless $x =~ s#^refs/remotes/##;
2243 next unless -f "$GIT_DIR/$x/info/url";
2244 my $u = eval { file_to_s("$GIT_DIR/$x/info/url") };
2246 my $dn = dirname("$GIT_DIR/svn/$x");
2247 mkpath([$dn]) unless -d $dn;
2248 rename "$GIT_DIR/$x", "$GIT_DIR/svn/$x" or croak "$!: $x";
2250 migrate_revdb() if (-d $GIT_SVN_DIR && !-w $REVDB);
2251 print "Done upgrading.\n";
2254 sub find_rev_before {
2255 my ($r, $id, $eq_ok) = @_;
2256 my $f = "$GIT_DIR/svn/$id/.rev_db";
2257 return (undef,undef) unless -r $f;
2260 if (my $c = revdb_get($f, $r)) {
2265 return (undef, undef);
2269 $GIT_SVN ||= $ENV{GIT_SVN_ID} || 'git-svn';
2270 $GIT_SVN_DIR = "$GIT_DIR/svn/$GIT_SVN";
2271 $REVDB = "$GIT_SVN_DIR/.rev_db";
2272 $GIT_SVN_INDEX = "$GIT_SVN_DIR/index";
2274 $SVN_WC = "$GIT_SVN_DIR/tree";
2278 # convert GetOpt::Long specs for use by git-repo-config
2279 sub read_repo_config {
2280 return unless -d $GIT_DIR;
2282 foreach my $o (keys %$opts) {
2283 my $v = $opts->{$o};
2284 my ($key) = ($o =~ /^([a-z\-]+)/);
2286 my $arg = 'git-repo-config';
2287 $arg .= ' --int' if ($o =~ /[:=]i$/);
2288 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
2289 if (ref $v eq 'ARRAY') {
2290 chomp(my @tmp = `$arg --get-all svn.$key`);
2293 chomp(my $tmp = `$arg --get svn.$key`);
2294 if ($tmp && !($arg =~ / --bool / && $tmp eq 'false')) {
2301 sub set_default_vals {
2302 if (defined $_repack) {
2303 $_repack = 1000 if ($_repack <= 0);
2304 $_repack_nr = $_repack;
2305 $_repack_flags ||= '-d';
2310 my $gr_file = shift;
2311 my ($grafts, $comments) = ({}, {});
2312 if (open my $fh, '<', $gr_file) {
2315 if (/^($sha1)\s+/) {
2318 @{$comments->{$c}} = @tmp;
2321 foreach my $p (split /\s+/, $_) {
2322 $grafts->{$c}->{$p} = 1;
2328 close $fh or croak $!;
2329 @{$comments->{'END'}} = @tmp if @tmp;
2331 return ($grafts, $comments);
2335 my ($grafts, $comments, $gr_file) = @_;
2337 open my $fh, '>', $gr_file or croak $!;
2338 foreach my $c (sort keys %$grafts) {
2339 if ($comments->{$c}) {
2340 print $fh $_ foreach @{$comments->{$c}};
2342 my $p = $grafts->{$c};
2343 my %x; # real parents
2344 delete $p->{$c}; # commits are not self-reproducing...
2345 my $pid = open my $ch, '-|';
2346 defined $pid or croak $!;
2348 exec(qw/git-cat-file commit/, $c) or croak $!;
2351 if (/^parent ($sha1)/) {
2352 $x{$1} = $p->{$1} = 1;
2357 close $ch; # breaking the pipe
2359 # if real parents are the only ones in the grafts, drop it
2360 next if join(' ',sort keys %$p) eq join(' ',sort keys %x);
2364 @ip = @jp = keys %$p;
2365 foreach my $i (@ip) {
2366 next if $del{$i} || $p->{$i} == 2;
2367 foreach my $j (@jp) {
2368 next if $i eq $j || $del{$j} || $p->{$j} == 2;
2369 $mb = eval { safe_qx('git-merge-base',$i,$j) };
2376 } elsif ($mb eq $i) {
2383 # if real parents are the only ones in the grafts, drop it
2384 next if join(' ',sort keys %$p) eq join(' ',sort keys %x);
2386 print $fh $c, ' ', join(' ', sort keys %$p),"\n";
2388 if ($comments->{'END'}) {
2389 print $fh $_ foreach @{$comments->{'END'}};
2391 close $fh or croak $!;
2394 sub read_url_paths_all {
2395 my ($l_map, $pfx, $p) = @_;
2398 if (-r "$_/info/url") {
2399 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
2400 my $id = $pfx . basename $_;
2401 my $url = file_to_s("$_/info/url");
2402 my ($u, $p) = repo_path_split($url);
2403 $l_map->{$u}->{$p} = $id;
2410 $x =~ s!^\Q$GIT_DIR\E/svn/!!o;
2411 read_url_paths_all($l_map, $x, $_);
2415 # this one only gets ids that have been imported, not new ones
2416 sub read_url_paths {
2418 git_svn_each(sub { my $x = shift;
2419 my $url = file_to_s("$GIT_DIR/svn/$x/info/url");
2420 my ($u, $p) = repo_path_split($url);
2421 $l_map->{$u}->{$p} = $x;
2426 sub extract_metadata {
2427 my $id = shift or return (undef, undef, undef);
2428 my ($url, $rev, $uuid) = ($id =~ /^git-svn-id:\s(\S+?)\@(\d+)
2430 if (!$rev || !$uuid || !$url) {
2431 # some of the original repositories I made had
2432 # indentifiers like this:
2433 ($rev, $uuid) = ($id =~/^git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
2435 return ($url, $rev, $uuid);
2439 return extract_metadata((grep(/^git-svn-id: /,
2440 safe_qx(qw/git-cat-file commit/, shift)))[-1]);
2443 sub get_commit_time {
2445 defined(my $pid = open my $fh, '-|') or croak $!;
2447 exec qw/git-rev-list --pretty=raw -n1/, $cmt or croak $!;
2450 /^committer\s(?:.+) (\d+) ([\-\+]?\d+)$/ or next;
2451 my ($s, $tz) = ($1, $2);
2452 if ($tz =~ s/^\+//) {
2453 $s += tz_to_s_offset($tz);
2454 } elsif ($tz =~ s/^\-//) {
2455 $s -= tz_to_s_offset($tz);
2460 die "Can't get commit time for commit: $cmt\n";
2463 sub tz_to_s_offset {
2466 return ($1 * 60) + ($tz * 3600);
2469 sub setup_pager { # translated to Perl from pager.c
2470 return unless (-t *STDOUT);
2471 my $pager = $ENV{PAGER};
2472 if (!defined $pager) {
2474 } elsif (length $pager == 0 || $pager eq 'cat') {
2477 pipe my $rfd, my $wfd or return;
2478 defined(my $pid = fork) or croak $!;
2480 open STDOUT, '>&', $wfd or croak $!;
2483 open STDIN, '<&', $rfd or croak $!;
2484 $ENV{LESS} ||= '-S';
2485 exec $pager or croak "Can't run pager: $!\n";;
2488 sub get_author_info {
2489 my ($dest, $author, $t, $tz) = @_;
2490 $author =~ s/(?:^\s*|\s*$)//g;
2491 $dest->{a_raw} = $author;
2494 $_a = $rusers{$author} || undef;
2497 ($_a) = ($author =~ /<([^>]+)\@[^>]+>$/);
2502 # Date::Parse isn't in the standard Perl distro :(
2503 if ($tz =~ s/^\+//) {
2504 $t += tz_to_s_offset($tz);
2505 } elsif ($tz =~ s/^\-//) {
2506 $t -= tz_to_s_offset($tz);
2508 $dest->{t_utc} = $t;
2511 sub process_commit {
2512 my ($c, $r_min, $r_max, $defer) = @_;
2513 if (defined $r_min && defined $r_max) {
2514 if ($r_min == $c->{r} && $r_min == $r_max) {
2518 return 1 if $r_min == $r_max;
2519 if ($r_min < $r_max) {
2520 # we need to reverse the print order
2521 return 0 if (defined $_limit && --$_limit < 0);
2525 if ($r_min != $r_max) {
2526 return 1 if ($r_min < $c->{r});
2527 return 1 if ($r_max > $c->{r});
2530 return 0 if (defined $_limit && --$_limit < 0);
2539 if (my $l = $c->{l}) {
2540 while ($l->[0] =~ /^\s*$/) { shift @$l }
2543 $_l_fmt ||= 'A' . length($c->{r});
2544 print 'r',pack($_l_fmt, $c->{r}),' | ';
2545 print "$c->{c} | " if $_show_commit;
2548 show_commit_normal($c);
2552 sub show_commit_normal {
2554 print '-' x72, "\nr$c->{r} | ";
2555 print "$c->{c} | " if $_show_commit;
2556 print "$c->{a} | ", strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)",
2557 localtime($c->{t_utc})), ' | ';
2560 if (my $l = $c->{l}) {
2561 while ($l->[$#$l] eq "\n" && $l->[($#$l - 1)] eq "\n") {
2564 $nr_line = scalar @$l;
2566 print "1 line\n\n\n";
2568 if ($nr_line == 1) {
2569 $nr_line = '1 line';
2571 $nr_line .= ' lines';
2573 print $nr_line, "\n\n";
2574 print $_ foreach @$l;
2580 foreach my $x (qw/raw diff/) {
2583 print $_ foreach @{$c->{$x}}
2589 return unless $_use_lib;
2592 if ($SVN::Core::VERSION lt '1.1.0') {
2593 die "Need SVN::Core 1.1.0 or better ",
2594 "(got $SVN::Core::VERSION) ",
2595 "Falling back to command-line svn\n";
2599 push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
2600 my $kill_stupid_warnings = $SVN::Node::none.$SVN::Node::file.
2601 $SVN::Node::dir.$SVN::Node::unknown.
2602 $SVN::Node::none.$SVN::Node::file.
2603 $SVN::Node::dir.$SVN::Node::unknown;
2608 sub libsvn_connect {
2610 my $auth = SVN::Core::auth_open([SVN::Client::get_simple_provider(),
2611 SVN::Client::get_ssl_server_trust_file_provider(),
2612 SVN::Client::get_username_provider()]);
2613 my $s = eval { SVN::Ra->new(url => $url, auth => $auth) };
2617 sub libsvn_get_file {
2618 my ($gui, $f, $rev) = @_;
2620 return unless ($p =~ s#^\Q$SVN_PATH\E/##);
2622 my ($hash, $pid, $in, $out);
2623 my $pool = SVN::Pool->new;
2624 defined($pid = open3($in, $out, '>&STDERR',
2625 qw/git-hash-object -w --stdin/)) or croak $!;
2626 # redirect STDOUT for SVN 1.1.x compatibility
2627 open my $stdout, '>&', \*STDOUT or croak $!;
2628 open STDOUT, '>&', $in or croak $!;
2629 my ($r, $props) = $SVN->get_file($f, $rev, \*STDOUT, $pool);
2630 $in->flush == 0 or croak $!;
2631 open STDOUT, '>&', $stdout or croak $!;
2632 close $in or croak $!;
2633 close $stdout or croak $!;
2635 chomp($hash = do { local $/; <$out> });
2636 close $out or croak $!;
2638 $hash =~ /^$sha1$/o or die "not a sha1: $hash\n";
2640 my $mode = exists $props->{'svn:executable'} ? '100755' : '100644';
2641 if (exists $props->{'svn:special'}) {
2643 my $link = `git-cat-file blob $hash`;
2644 $link =~ s/^link // or die "svn:special file with contents: <",
2645 $link, "> is not understood\n";
2646 defined($pid = open3($in, $out, '>&STDERR',
2647 qw/git-hash-object -w --stdin/)) or croak $!;
2649 $in->flush == 0 or croak $!;
2650 close $in or croak $!;
2651 chomp($hash = do { local $/; <$out> });
2652 close $out or croak $!;
2654 $hash =~ /^$sha1$/o or die "not a sha1: $hash\n";
2656 print $gui $mode,' ',$hash,"\t",$p,"\0" or croak $!;
2659 sub libsvn_log_entry {
2660 my ($rev, $author, $date, $msg, $parents) = @_;
2661 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
2662 (\d\d)\:(\d\d)\:(\d\d).\d+Z$/x)
2663 or die "Unable to parse date: $date\n";
2664 if (defined $_authors && ! defined $users{$author}) {
2665 die "Author: $author not defined in $_authors file\n";
2667 return { revision => $rev, date => "+0000 $Y-$m-$d $H:$M:$S",
2668 author => $author, msg => $msg."\n", parents => $parents || [] }
2672 my ($gui, $last_commit, $f) = @_;
2673 $f =~ s#^\Q$SVN_PATH\E/?## or return;
2674 # remove entire directories.
2675 if (safe_qx('git-ls-tree',$last_commit,'--',$f) =~ /^040000 tree/) {
2676 defined(my $pid = open my $ls, '-|') or croak $!;
2678 exec(qw/git-ls-tree -r --name-only -z/,
2679 $last_commit,'--',$f) or croak $!;
2683 print $gui '0 ',0 x 40,"\t",$_ or croak $!;
2685 close $ls or croak $?;
2687 print $gui '0 ',0 x 40,"\t",$f,"\0" or croak $!;
2692 my ($last_commit, $paths, $rev, $author, $date, $msg) = @_;
2693 open my $gui, '| git-update-index -z --index-info' or croak $!;
2695 foreach my $f (keys %$paths) {
2696 my $m = $paths->{$f}->action();
2698 if ($m =~ /^[DR]$/) {
2699 print "\t$m\t$f\n" unless $_q;
2700 process_rm($gui, $last_commit, $f);
2702 # 'R' can be file replacements, too, right?
2704 my $pool = SVN::Pool->new;
2705 my $t = $SVN->check_path($f, $rev, $pool);
2706 if ($t == $SVN::Node::file) {
2707 if ($m =~ /^[AMR]$/) {
2708 push @amr, [ $m, $f ];
2710 die "Unrecognized action: $m, ($f r$rev)\n";
2716 print "\t$_->[0]\t$_->[1]\n" unless $_q;
2717 libsvn_get_file($gui, $_->[1], $rev)
2719 close $gui or croak $?;
2720 return libsvn_log_entry($rev, $author, $date, $msg, [$last_commit]);
2723 sub svn_grab_base_rev {
2724 defined(my $pid = open my $fh, '-|') or croak $!;
2726 open my $null, '>', '/dev/null' or croak $!;
2727 open STDERR, '>&', $null or croak $!;
2728 exec qw/git-rev-parse --verify/,"refs/remotes/$GIT_SVN^0"
2731 chomp(my $c = do { local $/; <$fh> });
2733 if (defined $c && length $c) {
2734 my ($url, $rev, $uuid) = cmt_metadata($c);
2735 return ($rev, $c) if defined $rev;
2737 if ($_no_metadata) {
2738 my $offset = -41; # from tail
2740 open my $fh, '<', $REVDB or
2741 die "--no-metadata specified and $REVDB not readable\n";
2742 seek $fh, $offset, 2;
2744 defined $rl or return (undef, undef);
2746 while ($c ne $rl && tell $fh != 0) {
2748 seek $fh, $offset, 2;
2750 defined $rl or return (undef, undef);
2754 croak $! if ($rev < -1);
2755 $rev = ($rev - 41) / 41;
2756 close $fh or croak $!;
2759 return (undef, undef);
2762 sub libsvn_parse_revision {
2764 my $head = $SVN->get_latest_revnum();
2765 if (!defined $_revision || $_revision eq 'BASE:HEAD') {
2766 return ($base + 1, $head) if (defined $base);
2769 return ($1, $2) if ($_revision =~ /^(\d+):(\d+)$/);
2770 return ($_revision, $_revision) if ($_revision =~ /^\d+$/);
2771 if ($_revision =~ /^BASE:(\d+)$/) {
2772 return ($base + 1, $1) if (defined $base);
2775 return ($1, $head) if ($_revision =~ /^(\d+):HEAD$/);
2776 die "revision argument: $_revision not understood by git-svn\n",
2777 "Try using the command-line svn client instead\n";
2780 sub libsvn_traverse {
2781 my ($gui, $pfx, $path, $rev) = @_;
2782 my $cwd = "$pfx/$path";
2783 my $pool = SVN::Pool->new;
2785 my ($dirent, $r, $props) = $SVN->get_dir($cwd, $rev, $pool);
2786 foreach my $d (keys %$dirent) {
2787 my $t = $dirent->{$d}->kind;
2788 if ($t == $SVN::Node::dir) {
2789 libsvn_traverse($gui, $cwd, $d, $rev);
2790 } elsif ($t == $SVN::Node::file) {
2791 print "\tA\t$cwd/$d\n" unless $_q;
2792 libsvn_get_file($gui, "$cwd/$d", $rev);
2798 sub libsvn_traverse_ignore {
2799 my ($fh, $path, $r) = @_;
2801 my $pool = SVN::Pool->new;
2802 my ($dirent, undef, $props) = $SVN->get_dir($path, $r, $pool);
2804 $p =~ s#^\Q$SVN_PATH\E/?##;
2805 print $fh length $p ? "\n# $p\n" : "\n# /\n";
2806 if (my $s = $props->{'svn:ignore'}) {
2807 $s =~ s/[\r\n]+/\n/g;
2809 if (length $p == 0) {
2813 $s =~ s#\n#\n/$p/#g;
2814 print $fh "/$p/$s\n";
2817 foreach (sort keys %$dirent) {
2818 next if $dirent->{$_}->kind != $SVN::Node::dir;
2819 libsvn_traverse_ignore($fh, "$path/$_", $r);
2825 my ($path, $r0, $r1) = @_;
2826 return 1 if $r0 == $r1;
2829 # should be OK to use Pool here (r1 - r0) should be small
2830 my $pool = SVN::Pool->new;
2831 libsvn_get_log($SVN, "/$path", $r0, $r1,
2832 0, 1, 1, sub {$nr++}, $pool);
2835 my ($url, undef) = repo_path_split($SVN_URL);
2836 my $svn_log = svn_log_raw("$url/$path","-r$r0:$r1");
2837 while (next_log_entry($svn_log)) { $nr++ }
2838 close $svn_log->{fh};
2840 return 0 if ($nr > 1);
2844 sub libsvn_find_parent_branch {
2845 my ($paths, $rev, $author, $date, $msg) = @_;
2846 my $svn_path = '/'.$SVN_PATH;
2848 # look for a parent from another branch:
2849 my $i = $paths->{$svn_path} or return;
2850 my $branch_from = $i->copyfrom_path or return;
2851 my $r = $i->copyfrom_rev;
2852 print STDERR "Found possible branch point: ",
2853 "$branch_from => $svn_path, $r\n";
2854 $branch_from =~ s#^/##;
2856 read_url_paths_all($l_map, '', "$GIT_DIR/svn");
2857 my $url = $SVN->{url};
2858 defined $l_map->{$url} or return;
2859 my $id = $l_map->{$url}->{$branch_from};
2860 if (!defined $id && $_follow_parent) {
2861 print STDERR "Following parent: $branch_from\@$r\n";
2862 # auto create a new branch and follow it
2863 $id = basename($branch_from);
2864 $id .= '@'.$r if -r "$GIT_DIR/svn/$id";
2865 while (-r "$GIT_DIR/svn/$id") {
2866 # just grow a tail if we're not unique enough :x
2870 return unless defined $id;
2872 my ($r0, $parent) = find_rev_before($r,$id,1);
2873 if ($_follow_parent && (!defined $r0 || !defined $parent)) {
2874 defined(my $pid = fork) or croak $!;
2876 $GIT_SVN = $ENV{GIT_SVN_ID} = $id;
2878 $SVN_URL = "$url/$branch_from";
2879 $SVN_LOG = $SVN = undef;
2881 # we can't assume SVN_URL exists at r+1:
2882 $_revision = "0:$r";
2888 ($r0, $parent) = find_rev_before($r,$id,1);
2890 return unless (defined $r0 && defined $parent);
2891 if (revisions_eq($branch_from, $r0, $r)) {
2892 unlink $GIT_SVN_INDEX;
2893 print STDERR "Found branch parent: ($GIT_SVN) $parent\n";
2894 sys(qw/git-read-tree/, $parent);
2895 return libsvn_fetch($parent, $paths, $rev,
2896 $author, $date, $msg);
2898 print STDERR "Nope, branch point not imported or unknown\n";
2902 sub libsvn_get_log {
2903 my ($ra, @args) = @_;
2904 if ($SVN::Core::VERSION le '1.2.0') {
2905 splice(@args, 3, 1);
2907 $ra->get_log(@args);
2910 sub libsvn_new_tree {
2911 if (my $log_entry = libsvn_find_parent_branch(@_)) {
2914 my ($paths, $rev, $author, $date, $msg) = @_;
2915 open my $gui, '| git-update-index -z --index-info' or croak $!;
2916 my $pool = SVN::Pool->new;
2917 libsvn_traverse($gui, '', $SVN_PATH, $rev, $pool);
2919 close $gui or croak $?;
2920 return libsvn_log_entry($rev, $author, $date, $msg);
2923 sub find_graft_path_commit {
2924 my ($tree_paths, $p1, $r1) = @_;
2925 foreach my $x (keys %$tree_paths) {
2926 next unless ($p1 =~ /^\Q$x\E/);
2927 my $i = $tree_paths->{$x};
2928 my ($r0, $parent) = find_rev_before($r1,$i,1);
2929 return $parent if (defined $r0 && $r0 == $r1);
2930 print STDERR "r$r1 of $i not imported\n";
2936 sub find_graft_path_parents {
2937 my ($grafts, $tree_paths, $c, $p0, $r0) = @_;
2938 foreach my $x (keys %$tree_paths) {
2939 next unless ($p0 =~ /^\Q$x\E/);
2940 my $i = $tree_paths->{$x};
2941 my ($r, $parent) = find_rev_before($r0, $i, 1);
2942 if (defined $r && defined $parent && revisions_eq($x,$r,$r0)) {
2943 my ($url_b, undef, $uuid_b) = cmt_metadata($c);
2944 my ($url_a, undef, $uuid_a) = cmt_metadata($parent);
2945 next if ($url_a && $url_b && $url_a eq $url_b &&
2946 $uuid_b eq $uuid_a);
2947 $grafts->{$c}->{$parent} = 1;
2952 sub libsvn_graft_file_copies {
2953 my ($grafts, $tree_paths, $path, $paths, $rev) = @_;
2954 foreach (keys %$paths) {
2955 my $i = $paths->{$_};
2956 my ($m, $p0, $r0) = ($i->action, $i->copyfrom_path,
2958 next unless (defined $p0 && defined $r0);
2963 my $c = find_graft_path_commit($tree_paths, $p1, $rev);
2965 find_graft_path_parents($grafts, $tree_paths, $c, $p0, $r0);
2970 my $old = $ENV{GIT_INDEX_FILE};
2971 $ENV{GIT_INDEX_FILE} = shift;
2978 $ENV{GIT_INDEX_FILE} = $old;
2980 delete $ENV{GIT_INDEX_FILE};
2984 sub libsvn_commit_cb {
2985 my ($rev, $date, $committer, $c, $msg, $r_last, $cmt_last) = @_;
2986 if ($_optimize_commits && $rev == ($r_last + 1)) {
2987 my $log = libsvn_log_entry($rev,$committer,$date,$msg);
2988 $log->{tree} = get_tree_from_treeish($c);
2989 my $cmt = git_commit($log, $cmt_last, $c);
2990 my @diff = safe_qx('git-diff-tree', $cmt, $c);
2992 print STDERR "Trees differ: $cmt $c\n",
2993 join('',@diff),"\n";
3001 sub libsvn_ls_fullurl {
3002 my $fullurl = shift;
3003 my ($repo, $path) = repo_path_split($fullurl);
3004 $SVN ||= libsvn_connect($repo);
3006 my $pool = SVN::Pool->new;
3007 my ($dirent, undef, undef) = $SVN->get_dir($path,
3008 $SVN->get_latest_revnum, $pool);
3009 foreach my $d (keys %$dirent) {
3010 if ($dirent->{$d}->kind == $SVN::Node::dir) {
3011 push @ret, "$d/"; # add '/' for compat with cli svn
3019 sub libsvn_skip_unknown_revs {
3021 my $errno = $err->apr_err();
3022 # Maybe the branch we're tracking didn't
3023 # exist when the repo started, so it's
3024 # not an error if it doesn't, just continue
3026 # Wonderfully consistent library, eh?
3027 # 160013 - svn:// and file://
3028 # 175002 - http(s)://
3029 # More codes may be discovered later...
3030 if ($errno == 175002 || $errno == 160013) {
3033 croak "Error from SVN, ($errno): ", $err->expanded_message,"\n";
3036 # Tie::File seems to be prone to offset errors if revisions get sparse,
3037 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
3038 # one of my favorite modules is out :< Next up would be one of the DBM
3039 # modules, but I'm not sure which is most portable... So I'll just
3040 # go with something that's plain-text, but still capable of
3041 # being randomly accessed. So here's my ultra-simple fixed-width
3042 # database. All records are 40 characters + "\n", so it's easy to seek
3043 # to a revision: (41 * rev) is the byte offset.
3044 # A record of 40 0s denotes an empty revision.
3045 # And yes, it's still pretty fast (faster than Tie::File).
3047 my ($file, $rev, $commit) = @_;
3048 length $commit == 40 or croak "arg3 must be a full SHA1 hexsum\n";
3049 open my $fh, '+<', $file or croak $!;
3050 my $offset = $rev * 41;
3051 # assume that append is the common case:
3052 seek $fh, 0, 2 or croak $!;
3054 if ($pos < $offset) {
3055 print $fh (('0' x 40),"\n") x (($offset - $pos) / 41);
3057 seek $fh, $offset, 0 or croak $!;
3058 print $fh $commit,"\n";
3059 close $fh or croak $!;
3063 my ($file, $rev) = @_;
3065 my $offset = $rev * 41;
3066 open my $fh, '<', $file or croak $!;
3067 seek $fh, $offset, 0;
3068 if (tell $fh == $offset) {
3069 $ret = readline $fh;
3072 $ret = undef if ($ret =~ /^0{40}$/);
3075 close $fh or croak $!;
3079 sub copy_remote_ref {
3080 my $origin = $_cp_remote ? $_cp_remote : 'origin';
3081 my $ref = "refs/remotes/$GIT_SVN";
3082 if (safe_qx('git-ls-remote', $origin, $ref)) {
3083 sys(qw/git fetch/, $origin, "$ref:$ref");
3085 die "Unable to find remote reference: ",
3086 "refs/remotes/$GIT_SVN on $origin\n";
3090 package SVN::Git::Editor;
3099 my $git_svn = shift;
3100 my $self = SVN::Delta::Editor->new(@_);
3101 bless $self, $class;
3102 foreach (qw/svn_path c r ra /) {
3103 die "$_ required!\n" unless (defined $git_svn->{$_});
3104 $self->{$_} = $git_svn->{$_};
3106 $self->{pool} = SVN::Pool->new;
3107 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
3109 require Digest::MD5;
3114 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
3118 (defined $_[1] && length $_[1]) ? "$_[0]->{svn_path}/$_[1]"
3123 my ($self, $path) = @_;
3124 $self->{ra}->{url} . '/' . $self->repo_path($path);
3128 my ($self, $q) = @_;
3129 my $rm = $self->{rm};
3130 delete $rm->{''}; # we never delete the url we're tracking
3133 foreach (keys %$rm) {
3134 my @d = split m#/#, $_;
3138 $c .= '/' . shift @d;
3142 delete $rm->{$self->{svn_path}};
3143 delete $rm->{''}; # we never delete the url we're tracking
3146 defined(my $pid = open my $fh,'-|') or croak $!;
3148 exec qw/git-ls-tree --name-only -r -z/, $self->{c} or croak $!;
3151 my @svn_path = split m#/#, $self->{svn_path};
3154 my @dn = (@svn_path, (split m#/#, $_));
3156 delete $rm->{join '/', @dn};
3165 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
3166 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
3167 $self->close_directory($bat->{$d}, $p);
3168 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
3169 print "\tD+\t/$d/\n" unless $q;
3170 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
3175 sub open_or_add_dir {
3176 my ($self, $full_path, $baton) = @_;
3177 my $p = SVN::Pool->new;
3178 my $t = $self->{ra}->check_path($full_path, $self->{r}, $p);
3180 if ($t == $SVN::Node::none) {
3181 return $self->add_directory($full_path, $baton,
3182 undef, -1, $self->{pool});
3183 } elsif ($t == $SVN::Node::dir) {
3184 return $self->open_directory($full_path, $baton,
3185 $self->{r}, $self->{pool});
3187 print STDERR "$full_path already exists in repository at ",
3188 "r$self->{r} and it is not a directory (",
3189 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
3194 my ($self, $path) = @_;
3195 my $bat = $self->{bat};
3196 $path = $self->repo_path($path);
3197 return $bat->{''} unless (length $path);
3198 my @p = split m#/+#, $path;
3200 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
3203 $c .= '/' . shift @p;
3204 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
3210 my ($self, $m, $q) = @_;
3211 my ($dir, $file) = split_path($m->{file_b});
3212 my $pbat = $self->ensure_path($dir);
3213 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3215 print "\tA\t$m->{file_b}\n" unless $q;
3216 $self->chg_file($fbat, $m);
3217 $self->close_file($fbat,undef,$self->{pool});
3221 my ($self, $m, $q) = @_;
3222 my ($dir, $file) = split_path($m->{file_b});
3223 my $pbat = $self->ensure_path($dir);
3224 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3225 $self->url_path($m->{file_a}), $self->{r});
3226 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $q;
3227 $self->chg_file($fbat, $m);
3228 $self->close_file($fbat,undef,$self->{pool});
3232 my ($self, $path, $pbat) = @_;
3233 my $rpath = $self->repo_path($path);
3234 my ($dir, $file) = split_path($rpath);
3235 $self->{rm}->{$dir} = 1;
3236 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
3240 my ($self, $m, $q) = @_;
3241 my ($dir, $file) = split_path($m->{file_b});
3242 my $pbat = $self->ensure_path($dir);
3243 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3244 $self->url_path($m->{file_a}), $self->{r});
3245 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $q;
3246 $self->chg_file($fbat, $m);
3247 $self->close_file($fbat,undef,$self->{pool});
3249 ($dir, $file) = split_path($m->{file_a});
3250 $pbat = $self->ensure_path($dir);
3251 $self->delete_entry($m->{file_a}, $pbat);
3255 my ($self, $m, $q) = @_;
3256 my ($dir, $file) = split_path($m->{file_b});
3257 my $pbat = $self->ensure_path($dir);
3258 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
3259 $pbat,$self->{r},$self->{pool});
3260 print "\t$m->{chg}\t$m->{file_b}\n" unless $q;
3261 $self->chg_file($fbat, $m);
3262 $self->close_file($fbat,undef,$self->{pool});
3265 sub T { shift->M(@_) }
3267 sub change_file_prop {
3268 my ($self, $fbat, $pname, $pval) = @_;
3269 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
3273 my ($self, $fbat, $m) = @_;
3274 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
3275 $self->change_file_prop($fbat,'svn:executable','*');
3276 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
3277 $self->change_file_prop($fbat,'svn:executable',undef);
3279 my $fh = IO::File->new_tmpfile or croak $!;
3280 if ($m->{mode_b} =~ /^120/) {
3281 print $fh 'link ' or croak $!;
3282 $self->change_file_prop($fbat,'svn:special','*');
3283 } elsif ($m->{mode_a} =~ /^120/ && $m->{mode_b} !~ /^120/) {
3284 $self->change_file_prop($fbat,'svn:special',undef);
3286 defined(my $pid = fork) or croak $!;
3288 open STDOUT, '>&', $fh or croak $!;
3289 exec qw/git-cat-file blob/, $m->{sha1_b} or croak $!;
3293 $fh->flush == 0 or croak $!;
3294 seek $fh, 0, 0 or croak $!;
3296 my $md5 = Digest::MD5->new;
3297 $md5->addfile($fh) or croak $!;
3298 seek $fh, 0, 0 or croak $!;
3300 my $exp = $md5->hexdigest;
3301 my $atd = $self->apply_textdelta($fbat, undef, $self->{pool});
3302 my $got = SVN::TxDelta::send_stream($fh, @$atd, $self->{pool});
3303 die "Checksum mismatch\nexpected: $exp\ngot: $got\n" if ($got ne $exp);
3305 close $fh or croak $!;
3309 my ($self, $m, $q) = @_;
3310 my ($dir, $file) = split_path($m->{file_b});
3311 my $pbat = $self->ensure_path($dir);
3312 print "\tD\t$m->{file_b}\n" unless $q;
3313 $self->delete_entry($m->{file_b}, $pbat);
3318 my ($p,$bat) = ($self->{pool}, $self->{bat});
3319 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
3320 $self->close_directory($bat->{$_}, $p);
3322 $self->SUPER::close_edit($p);
3328 $self->SUPER::abort_edit($self->{pool});
3329 $self->{pool}->clear;
3336 $svn_log hashref (as returned by svn_log_raw)
3338 fh => file handle of the log file,
3339 state => state of the log file parser (sep/msg/rev/msg_start...)
3342 $log_msg hashref as returned by next_log_entry($svn_log)
3344 msg => 'whitespace-formatted log entry
3345 ', # trailing newline is preserved
3346 revision => '8', # integer
3347 date => '2004-02-24T17:01:44.108345Z', # commit date
3348 author => 'committer name'
3352 @mods = array of diff-index line hashes, each element represents one line
3353 of diff-index output
3355 diff-index line ($m hash)
3357 mode_a => first column of diff-index output, no leading ':',
3358 mode_b => second column of diff-index output,
3359 sha1_b => sha1sum of the final blob,
3360 chg => change type [MCRADT],
3361 file_a => original file name of a file (iff chg is 'C' or 'R')
3362 file_b => new/current file name of a file (any chg)
3366 # retval of read_url_paths{,_all}();
3368 # repository root url
3369 'https://svn.musicpd.org' => {
3370 # repository path # GIT_SVN_ID
3371 'mpd/trunk' => 'trunk',
3372 'mpd/tags/0.11.5' => 'tags/0.11.5',
3377 I don't trust the each() function on unless I created %hash myself
3378 because the internal iterator may not have started at base.