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 # properties that we do not log:
25 my %SKIP = ( 'svn:wc:ra_dav:version-url' => 1,
27 'svn:executable' => 1,
28 'svn:entry:committed-rev' => 1,
29 'svn:entry:last-author' => 1,
30 'svn:entry:uuid' => 1,
31 'svn:entry:committed-date' => 1,
34 sub fatal
(@
) { print STDERR
@_; exit 1 }
35 # If SVN:: library support is added, please make the dependencies
36 # optional and preserve the capability to use the command-line client.
37 # use eval { require SVN::... } to make it lazy load
38 # We don't use any modules not in the standard Perl distribution:
41 use File
::Basename qw
/dirname basename/;
42 use File
::Path qw
/mkpath/;
43 use Getopt
::Long qw
/:config gnu_getopt no_ignore_case auto_abbrev pass_through/;
45 use File
::Copy qw
/copy/;
46 use POSIX qw
/strftime/;
49 memoize
('revisions_eq');
50 memoize
('cmt_metadata');
51 memoize
('get_commit_time');
57 ! Please consider installing the SVN Perl libraries (version 1.1.0 or
58 ! newer). You will generally get better performance and fewer bugs,
60 ! 1) have a case-insensitive filesystem
61 ! 2) replace symlinks with files (and vice-versa) in commits
66 $_use_lib = 1 unless $ENV{GIT_SVN_NO_LIB
};
68 nag_lib
() unless $_use_lib;
70 my $_optimize_commits = 1 unless $ENV{GIT_SVN_NO_OPTIMIZE_COMMITS
};
71 my $sha1 = qr/[a-f\d]{40}/;
72 my $sha1_short = qr/[a-f\d]{4,40}/;
73 my $_esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
74 my ($_revision,$_stdin,$_no_ignore_ext,$_no_stop_copy,$_help,$_rmdir,$_edit,
75 $_find_copies_harder, $_l, $_cp_similarity, $_cp_remote,
76 $_repack, $_repack_nr, $_repack_flags, $_q,
77 $_message, $_file, $_follow_parent, $_no_metadata,
78 $_template, $_shared, $_no_default_regex, $_no_graft_copy,
79 $_limit, $_verbose, $_incremental, $_oneline, $_l_fmt, $_show_commit,
80 $_version, $_upgrade, $_authors, $_branch_all_refs, @_opt_m,
81 $_merge, $_strategy, $_dry_run, $_ignore_nodate, $_non_recursive,
82 $_username, $_config_dir, $_no_auth_cache, $_xfer_delta,
84 my (@_branch_from, %tree_map, %users, %rusers, %equiv);
85 my ($_svn_co_url_revs, $_svn_pg_peg_revs, $_svn_can_do_switch);
86 my @repo_path_split_cache;
88 my %fc_opts = ( 'no-ignore-externals' => \
$_no_ignore_ext,
89 'branch|b=s' => \
@_branch_from,
90 'follow-parent|follow' => \
$_follow_parent,
91 'branch-all-refs|B' => \
$_branch_all_refs,
92 'authors-file|A=s' => \
$_authors,
93 'repack:i' => \
$_repack,
94 'no-metadata' => \
$_no_metadata,
96 'username=s' => \
$_username,
97 'config-dir=s' => \
$_config_dir,
98 'no-auth-cache' => \
$_no_auth_cache,
99 'ignore-nodate' => \
$_ignore_nodate,
100 'repack-flags|repack-args|repack-opts=s' => \
$_repack_flags);
102 my ($_trunk, $_tags, $_branches);
103 my %multi_opts = ( 'trunk|T=s' => \
$_trunk,
104 'tags|t=s' => \
$_tags,
105 'branches|b=s' => \
$_branches );
106 my %init_opts = ( 'template=s' => \
$_template, 'shared' => \
$_shared );
107 my %cmt_opts = ( 'edit|e' => \
$_edit,
109 'find-copies-harder' => \
$_find_copies_harder,
111 'copy-similarity|C=i'=> \
$_cp_similarity
115 fetch
=> [ \
&fetch
, "Download new revisions from SVN",
116 { 'revision|r=s' => \
$_revision, %fc_opts } ],
117 init
=> [ \
&init
, "Initialize a repo for tracking" .
118 " (requires URL argument)",
120 commit
=> [ \
&commit
, "Commit git revisions to SVN",
121 { 'stdin|' => \
$_stdin, %cmt_opts, %fc_opts, } ],
122 'show-ignore' => [ \
&show_ignore
, "Show svn:ignore listings",
123 { 'revision|r=i' => \
$_revision } ],
124 rebuild
=> [ \
&rebuild
, "Rebuild git-svn metadata (after git clone)",
125 { 'no-ignore-externals' => \
$_no_ignore_ext,
126 'copy-remote|remote=s' => \
$_cp_remote,
127 'upgrade' => \
$_upgrade } ],
128 'graft-branches' => [ \
&graft_branches
,
129 'Detect merges/branches from already imported history',
130 { 'merge-rx|m' => \
@_opt_m,
131 'branch|b=s' => \
@_branch_from,
132 'branch-all-refs|B' => \
$_branch_all_refs,
133 'no-default-regex' => \
$_no_default_regex,
134 'no-graft-copy' => \
$_no_graft_copy } ],
135 'multi-init' => [ \
&multi_init
,
136 'Initialize multiple trees (like git-svnimport)',
137 { %multi_opts, %init_opts,
138 'revision|r=i' => \
$_revision,
139 'username=s' => \
$_username,
140 'config-dir=s' => \
$_config_dir,
141 'no-auth-cache' => \
$_no_auth_cache,
143 'multi-fetch' => [ \
&multi_fetch
,
144 'Fetch multiple trees (like git-svnimport)',
146 'log' => [ \
&show_log
, 'Show commit logs',
147 { 'limit=i' => \
$_limit,
148 'revision|r=s' => \
$_revision,
149 'verbose|v' => \
$_verbose,
150 'incremental' => \
$_incremental,
151 'oneline' => \
$_oneline,
152 'show-commit' => \
$_show_commit,
153 'non-recursive' => \
$_non_recursive,
154 'authors-file|A=s' => \
$_authors,
156 'pager=s' => \
$_pager,
158 'commit-diff' => [ \
&commit_diff
, 'Commit a diff between two trees',
159 { 'message|m=s' => \
$_message,
160 'file|F=s' => \
$_file,
161 'revision|r=s' => \
$_revision,
163 dcommit
=> [ \
&dcommit
, 'Commit several diffs to merge with upstream',
164 { 'merge|m|M' => \
$_merge,
165 'strategy|s=s' => \
$_strategy,
166 'dry-run|n' => \
$_dry_run,
171 for (my $i = 0; $i < @ARGV; $i++) {
172 if (defined $cmd{$ARGV[$i]}) {
179 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
181 read_repo_config
(\
%opts);
182 my $rv = GetOptions
(%opts, 'help|H|h' => \
$_help,
183 'version|V' => \
$_version,
184 'id|i=s' => \
$GIT_SVN);
185 exit 1 if (!$rv && $cmd ne 'log');
189 version
() if $_version;
190 usage
(1) unless defined $cmd;
192 load_authors
() if $_authors;
193 load_all_refs
() if $_branch_all_refs;
194 svn_compat_check
() unless $_use_lib;
195 migration_check
() unless $cmd =~ /^(?:init|rebuild|multi-init|commit-diff)$/;
196 $cmd{$cmd}->[0]->(@ARGV);
199 ####################### primary functions ######################
201 my $exit = shift || 0;
202 my $fd = $exit ? \
*STDERR
: \
*STDOUT
;
204 git
-svn
- bidirectional operations between a single Subversion tree
and git
205 Usage
: $0 <command
> [options
] [arguments
]\n
207 print $fd "Available commands:\n" unless $cmd;
209 foreach (sort keys %cmd) {
210 next if $cmd && $cmd ne $_;
211 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
212 foreach (keys %{$cmd{$_}->[2]}) {
213 # prints out arguments as they should be passed:
214 my $x = s
#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
215 print $fd ' ' x
21, join(', ', map { length $_ > 1 ?
217 split /\|/,$_)," $x\n";
221 \nGIT_SVN_ID may be set
in the environment
or via the
--id
/-i switch to an
222 arbitrary identifier
if you
're tracking multiple SVN branches/repositories in
223 one git repository and want to keep them separate. See git-svn(1) for more
230 print "git-svn version $VERSION\n";
235 if (quiet_run(qw/git-rev-parse --verify/,"refs/remotes/$GIT_SVN^0")) {
238 $SVN_URL = shift or undef;
241 sys('git
-update
-ref',"refs/remotes/$GIT_SVN","$GIT_SVN-HEAD");
243 check_upgrade_needed();
246 my $pid = open(my $rev_list,'-|');
247 defined $pid or croak $!;
249 exec("git-rev-list","refs/remotes/$GIT_SVN") or croak $!;
252 while (<$rev_list>) {
255 croak "Non-SHA1: $c\n" unless $c =~ /^$sha1$/o;
256 my @commit = grep(/^git-svn-id: /,`git-cat-file commit $c`);
257 next if (!@commit); # skip merges
258 my ($url, $rev, $uuid) = extract_metadata($commit[$#commit]);
259 if (!defined $rev || !$uuid) {
260 croak "Unable to extract revision or UUID from ",
261 "$c, $commit[$#commit]\n";
264 # if we merged or otherwise started elsewhere, this is
265 # how we break out of it
266 next if (defined $SVN_UUID && ($uuid ne $SVN_UUID));
267 next if (defined $SVN_URL && defined $url && ($url ne $SVN_URL));
269 unless (defined $latest) {
270 if (!$SVN_URL && !$url) {
271 croak "SVN repository location required: $url\n";
278 revdb_set($REVDB, $rev, $c);
279 print "r$rev = $c\n";
280 $newest_rev = $rev if ($rev > $newest_rev);
282 close $rev_list or croak $?;
284 goto out if $_use_lib;
285 if (!chdir $SVN_WC) {
286 svn_cmd_checkout($SVN_URL, $latest, $SVN_WC);
287 chdir $SVN_WC or croak $!;
291 defined $pid or croak $!;
293 my @svn_up = qw(svn up);
294 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
295 sys
(@svn_up,"-r$newest_rev");
296 $ENV{GIT_INDEX_FILE
} = $GIT_SVN_INDEX;
298 exec('git-write-tree') or croak
$!;
305 Keeping deprecated refs
/head/$GIT_SVN-HEAD
for now
. Please remove it
306 when you have upgraded your tools
and habits to
use refs
/remotes/$GIT_SVN
312 my $url = shift or die "SVN repository location required " .
313 "as a command-line argument\n";
314 $url =~ s!/+$!!; # strip trailing slash
316 if (my $repo_path = shift) {
317 unless (-d
$repo_path) {
318 mkpath
([$repo_path]);
320 $GIT_DIR = $ENV{GIT_DIR
} = $repo_path . "/.git";
325 unless (-d
$GIT_DIR) {
326 my @init_db = ('git-init-db');
327 push @init_db, "--template=$_template" if defined $_template;
328 push @init_db, "--shared" if defined $_shared;
335 check_upgrade_needed
();
336 $SVN_URL ||= file_to_s
("$GIT_SVN_DIR/info/url");
337 my $ret = $_use_lib ? fetch_lib
(@_) : fetch_cmd
(@_);
338 if ($ret->{commit
} && quiet_run
(qw(git-rev-parse --verify
339 refs/heads/master^0))) {
340 sys
(qw(git-update-ref refs/heads/master),$ret->{commit
});
347 my @log_args = -d
$SVN_WC ?
($SVN_WC) : ($SVN_URL);
348 unless ($_revision) {
349 $_revision = -d
$SVN_WC ?
'BASE:HEAD' : '0:HEAD';
351 push @log_args, "-r$_revision";
352 push @log_args, '--stop-on-copy' unless $_no_stop_copy;
354 my $svn_log = svn_log_raw
(@log_args);
356 my $base = next_log_entry
($svn_log) or croak
"No base revision!\n";
357 # don't need last_revision from grab_base_rev() because
358 # user could've specified a different revision to skip (they
359 # didn't want to import certain revisions into git for whatever
360 # reason, so trust $base->{revision} instead.
361 my (undef, $last_commit) = svn_grab_base_rev
();
362 unless (-d
$SVN_WC) {
363 svn_cmd_checkout
($SVN_URL,$base->{revision
},$SVN_WC);
364 chdir $SVN_WC or croak
$!;
366 $last_commit = git_commit
($base, @parents);
367 assert_tree
($last_commit);
369 chdir $SVN_WC or croak
$!;
371 # looks like a user manually cp'd and svn switch'ed
372 unless ($last_commit) {
373 sys
(qw
/svn revert -R ./);
374 assert_svn_wc_clean
($base->{revision
});
375 $last_commit = git_commit
($base, @parents);
376 assert_tree
($last_commit);
379 my @svn_up = qw(svn up);
380 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
382 while (my $log_msg = next_log_entry
($svn_log)) {
383 if ($last->{revision
} >= $log_msg->{revision
}) {
384 croak
"Out of order: last >= current: ",
385 "$last->{revision} >= $log_msg->{revision}\n";
387 # Revert is needed for cases like:
388 # https://svn.musicpd.org/Jamming/trunk (r166:167), but
389 # I can't seem to reproduce something like that on a test...
390 sys
(qw
/svn revert -R ./);
391 assert_svn_wc_clean
($last->{revision
});
392 sys
(@svn_up,"-r$log_msg->{revision}");
393 $last_commit = git_commit
($log_msg, $last_commit, @parents);
396 close $svn_log->{fh
};
397 $last->{commit
} = $last_commit;
403 $SVN_URL ||= file_to_s
("$GIT_SVN_DIR/info/url");
404 $SVN ||= libsvn_connect
($SVN_URL);
405 my ($last_rev, $last_commit) = svn_grab_base_rev
();
406 my ($base, $head) = libsvn_parse_revision
($last_rev);
408 return { revision
=> $last_rev, commit
=> $last_commit }
410 my $index = set_index
($GIT_SVN_INDEX);
412 # limit ourselves and also fork() since get_log won't release memory
413 # after processing a revision and SVN stuff seems to leak
415 my ($min, $max) = ($base, $head < $base+$inc ?
$head : $base+$inc);
417 if (defined $last_commit) {
418 unless (-e
$GIT_SVN_INDEX) {
419 sys
(qw
/git-read-tree/, $last_commit);
421 chomp (my $x = `git-write-tree`);
422 my ($y) = (`git-cat-file commit $last_commit`
423 =~ /^tree ($sha1)/m);
425 unlink $GIT_SVN_INDEX or croak
$!;
426 sys
(qw
/git-read-tree/, $last_commit);
428 chomp ($x = `git-write-tree`);
430 print STDERR
"trees ($last_commit) $y != $x\n",
431 "Something is seriously wrong...\n";
435 # fork, because using SVN::Pool with get_log() still doesn't
436 # seem to help enough to keep memory usage down.
437 defined(my $pid = fork) or croak
$!;
439 $SVN::Error
::handler
= \
&libsvn_skip_unknown_revs
;
441 # Yes I'm perfectly aware that the fourth argument
442 # below is the limit revisions number. Unfortunately
443 # performance sucks with it enabled, so it's much
444 # faster to fetch revision ranges instead of relying
446 libsvn_get_log
(libsvn_dup_ra
($SVN), [''],
451 $log_msg = libsvn_fetch
(
453 $last_commit = git_commit
(
458 $log_msg = libsvn_new_tree
(@_);
459 $last_commit = git_commit
(
467 ($last_rev, $last_commit) = svn_grab_base_rev
();
468 last if ($max >= $head);
471 $max = $head if ($max > $head);
472 $SVN = libsvn_connect
($SVN_URL);
474 restore_index
($index);
475 return { revision
=> $last_rev, commit
=> $last_commit };
480 check_upgrade_needed
();
481 if ($_stdin || !@commits) {
482 print "Reading from stdin...\n";
485 if (/\b($sha1_short)\b/o) {
486 unshift @commits, $1;
491 foreach my $c (@commits) {
492 chomp(my @tmp = safe_qx
('git-rev-parse',$c));
493 if (scalar @tmp == 1) {
495 } elsif (scalar @tmp > 1) {
496 push @revs, reverse (safe_qx
('git-rev-list',@tmp));
498 die "Failed to rev-parse $c\n";
502 $_use_lib ? commit_lib
(@revs) : commit_cmd
(@revs);
503 print "Done committing ",scalar @revs," revisions to SVN\n";
509 chdir $SVN_WC or croak
"Unable to chdir $SVN_WC: $!\n";
510 my $info = svn_info
('.');
511 my $fetched = fetch
();
512 if ($info->{Revision
} != $fetched->{revision
}) {
513 print STDERR
"There are new revisions that were fetched ",
514 "and need to be merged (or acknowledged) ",
515 "before committing.\n";
518 $info = svn_info
('.');
521 foreach my $c (@revs) {
522 my $mods = svn_checkout_tree
($last, $c);
523 if (scalar @
$mods == 0) {
524 print "Skipping, no changes detected\n";
527 $last = svn_commit_tree
($last, $c);
533 my ($r_last, $cmt_last) = svn_grab_base_rev
();
534 defined $r_last or die "Must have an existing revision to commit\n";
535 my $fetched = fetch
();
536 if ($r_last != $fetched->{revision
}) {
537 print STDERR
"There are new revisions that were fetched ",
538 "and need to be merged (or acknowledged) ",
539 "before committing.\n",
540 "last rev: $r_last\n",
541 " current: $fetched->{revision}\n";
545 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef, 0) : ();
546 my $commit_msg = "$GIT_SVN_DIR/.svn-commit.tmp.$$";
549 set_svn_commit_env
();
550 foreach my $c (@revs) {
551 my $log_msg = get_commit_message
($c, $commit_msg);
553 # fork for each commit because there's a memory leak I
554 # can't track down... (it's probably in the SVN code)
555 defined(my $pid = open my $fh, '-|') or croak
$!;
557 my $ed = SVN
::Git
::Editor
->new(
559 ra
=> libsvn_dup_ra
($SVN),
561 svn_path
=> $SVN->{svn_path
},
563 $SVN->get_commit_editor(
574 my $mods = libsvn_checkout_tree
($cmt_last, $c, $ed);
576 print "No changes\nr$r_last = $cmt_last\n";
583 my ($r_new, $cmt_new, $no);
587 if (/^r(\d+) = ($sha1)$/o) {
588 ($r_new, $cmt_new) = ($1, $2);
589 } elsif ($_ eq 'No changes') {
594 if (! defined $r_new && ! defined $cmt_new) {
596 die "Failed to parse revision information\n";
599 ($r_last, $cmt_last) = ($r_new, $cmt_new);
607 my $head = shift || 'HEAD';
608 my $gs = "refs/remotes/$GIT_SVN";
609 chomp(my @refs = safe_qx
(qw
/git-rev-list --no-merges/, "$gs..$head"));
611 foreach my $d (reverse @refs) {
612 if (quiet_run
('git-rev-parse','--verify',"$d~1") != 0) {
614 "has no parent commit, and therefore ",
615 "nothing to diff against.\n",
616 "You should be working from a repository ",
617 "originally created by git-svn\n";
619 unless (defined $last_rev) {
620 (undef, $last_rev, undef) = cmt_metadata
("$d~1");
621 unless (defined $last_rev) {
622 die "Unable to extract revision information ",
623 "from commit $d~1\n";
627 print "diff-tree $d~1 $d\n";
629 if (my $r = commit_diff
("$d~1", $d, undef, $last_rev)) {
631 } # else: no changes, same $last_rev
636 my @diff = safe_qx
('git-diff-tree', $head, $gs);
639 @finish = qw
/rebase/;
640 push @finish, qw
/--merge/ if $_merge;
641 push @finish, "--strategy=$_strategy" if $_strategy;
642 print STDERR
"W: $head and $gs differ, using @finish:\n", @diff;
644 print "No changes between current $head and $gs\n",
645 "Resetting to the latest $gs\n";
646 @finish = qw
/reset --mixed/;
648 sys
('git', @finish, $gs);
652 $SVN_URL ||= file_to_s
("$GIT_SVN_DIR/info/url");
653 $_use_lib ? show_ignore_lib
() : show_ignore_cmd
();
656 sub show_ignore_cmd
{
657 require File
::Find
or die $!;
658 if (defined $_revision) {
659 die "-r/--revision option doesn't work unless the Perl SVN ",
660 "libraries are used\n";
662 chdir $SVN_WC or croak
$!;
664 File
::Find
::find
({wanted
=>sub{if(lstat $_ && -d _
&& -d
"$_/.svn"){
666 @
{$ign{$_}} = svn_propget_base
('svn:ignore', $_);
667 }}, no_chdir
=>1},'.');
670 foreach (@
{$ign{'.'}}) { print '/',$_ if /\S
/ }
672 foreach my $i (sort keys %ign) {
673 print "\n# ",$i,"\n";
674 foreach (@
{$ign{$i}}) { print '/',$i,'/',$_ if /\S/ }
678 sub show_ignore_lib
{
680 $SVN ||= libsvn_connect
($SVN_URL);
681 my $r = defined $_revision ?
$_revision : $SVN->get_latest_revnum;
682 libsvn_traverse_ignore
(\
*STDOUT
, $SVN->{svn_path
}, $r);
686 my $gr_file = "$GIT_DIR/info/grafts";
687 my ($grafts, $comments) = read_grafts
($gr_file);
691 # temporarily disable our grafts file to make this idempotent
692 chomp($gr_sha1 = safe_qx
(qw
/git-hash-object -w/,$gr_file));
693 rename $gr_file, "$gr_file~$gr_sha1" or croak
$!;
696 my $l_map = read_url_paths
();
697 my @re = map { qr/$_/is } @_opt_m if @_opt_m;
698 unless ($_no_default_regex) {
699 push @re, (qr/\b(?:merge|merging|merged)\s+with\s+([\w\.\-]+)/i,
700 qr/\b(?:merge|merging|merged)\s+([\w\.\-]+)/i,
701 qr/\b(?:from|of)\s+([\w\.\-]+)/i );
703 foreach my $u (keys %$l_map) {
705 foreach my $p (keys %{$l_map->{$u}}) {
706 graft_merge_msg
($grafts,$l_map,$u,$p,@re);
709 unless ($_no_graft_copy) {
711 graft_file_copy_lib
($grafts,$l_map,$u);
713 graft_file_copy_cmd
($grafts,$l_map,$u);
717 graft_tree_joins
($grafts);
719 write_grafts
($grafts, $comments, $gr_file);
720 unlink "$gr_file~$gr_sha1" if $gr_sha1;
727 $url =~ s
#/+$## if $url;
728 if ($_trunk !~ m
#^[a-z\+]+://#) {
729 $_trunk = '/' . $_trunk if ($_trunk !~ m
#^/#);
731 print STDERR
"E: '$_trunk' is not a complete URL ",
732 "and a separate URL is not specified\n";
735 $_trunk = $url . $_trunk;
738 if ($GIT_SVN eq 'git-svn') {
740 $GIT_SVN = $ENV{GIT_SVN_ID
} = 'trunk';
743 unless (-d
$GIT_SVN_DIR) {
744 print "GIT_SVN_ID set to 'trunk' for $_trunk\n" if $ch_id;
746 sys
('git-repo-config', 'svn.trunk', $_trunk);
748 complete_url_ls_init
($url, $_branches, '--branches/-b', '');
749 complete_url_ls_init
($url, $_tags, '--tags/-t', 'tags/');
753 # try to do trunk first, since branches/tags
754 # may be descended from it.
755 if (-e
"$GIT_DIR/svn/trunk/info/url") {
756 fetch_child_id
('trunk', @_);
758 rec_fetch
('', "$GIT_DIR/svn", @_);
764 my $r_last = -1; # prevent dupes
765 rload_authors
() if $_authors;
771 if (defined $_revision) {
772 if ($_revision =~ /^(\d+):(\d+)$/) {
773 ($r_min, $r_max) = ($1, $2);
774 } elsif ($_revision =~ /^\d+$/) {
775 $r_min = $r_max = $_revision;
777 print STDERR
"-r$_revision is not supported, use ",
778 "standard \'git log\' arguments instead\n";
784 my $pid = open(my $log,'-|');
785 defined $pid or croak
$!;
787 exec(git_svn_log_cmd
($r_min,$r_max), @args) or croak
$!;
793 if (/^${_esc_color}commit ($sha1_short)/o) {
795 if ($c && cmt_showable
($c) && $c->{r
} != $r_last) {
797 process_commit
($c, $r_min, $r_max, \
@k) or
802 } elsif (/^${_esc_color}author (.+) (\d+) ([\-\+]?\d+)$/) {
803 get_author_info
($c, $1, $2, $3);
804 } elsif (/^${_esc_color}(?:tree|parent|committer) /) {
806 } elsif (/^${_esc_color}:\d{6} \d{6} $sha1_short/o) {
807 push @
{$c->{raw
}}, $_;
808 } elsif (/^${_esc_color}[ACRMDT]\t/) {
809 # we could add $SVN->{svn_path} here, but that requires
810 # remote access at the moment (repo_path_split)...
811 s
#^(${_esc_color})([ACRMDT])\t#$1 $2 #;
812 push @
{$c->{changed
}}, $_;
813 } elsif (/^${_esc_color}diff /) {
815 push @
{$c->{diff
}}, $_;
817 push @
{$c->{diff
}}, $_;
818 } elsif (/^${_esc_color} (git-svn-id:.+)$/) {
819 ($c->{url
}, $c->{r
}, undef) = extract_metadata
($1);
820 } elsif (s/^${_esc_color} //) {
824 if ($c && defined $c->{r
} && $c->{r
} != $r_last) {
826 process_commit
($c, $r_min, $r_max, \
@k);
832 process_commit
($_, $r_min, $r_max) foreach reverse @k;
836 print '-' x72
,"\n" unless $_incremental || $_oneline;
839 sub commit_diff_usage
{
840 print STDERR
"Usage: $0 commit-diff <tree-ish> <tree-ish> [<URL>]\n";
846 print STDERR
"commit-diff must be used with SVN libraries\n";
849 my $ta = shift or commit_diff_usage
();
850 my $tb = shift or commit_diff_usage
();
851 if (!eval { $SVN_URL = shift || file_to_s
("$GIT_SVN_DIR/info/url") }) {
852 print STDERR
"Needed URL or usable git-svn id command-line\n";
856 unless (defined $r) {
857 if (defined $_revision) {
860 die "-r|--revision is a required argument\n";
863 if (defined $_message && defined $_file) {
864 print STDERR
"Both --message/-m and --file/-F specified ",
865 "for the commit message.\n",
866 "I have no idea what you mean\n";
869 if (defined $_file) {
870 $_message = file_to_s
($_file);
872 $_message ||= get_commit_message
($tb,
873 "$GIT_DIR/.svn-commit.tmp.$$")->{msg
};
875 $SVN ||= libsvn_connect
($SVN_URL);
877 $r = $SVN->get_latest_revnum;
878 } elsif ($r !~ /^\d+$/) {
879 die "revision argument: $r not understood by git-svn\n";
881 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef, 0) : ();
883 my $ed = SVN
::Git
::Editor
->new({ r
=> $r,
884 ra
=> libsvn_dup_ra
($SVN),
886 svn_path
=> $SVN->{svn_path
}
888 $SVN->get_commit_editor($_message,
890 $rev_committed = $_[0];
891 print "Committed $_[0]\n";
895 my $mods = libsvn_checkout_tree
($ta, $tb, $ed);
897 print "No changes\n$ta == $tb\n";
904 $_message = $_file = undef;
905 return $rev_committed;
908 ########################### utility functions #########################
912 return 1 if defined $c->{r
};
913 if ($c->{l
} && $c->{l
}->[-1] eq "...\n" &&
914 $c->{a_raw
} =~ /\@([a-f\d\-]+)>$/) {
915 my @msg = safe_qx
(qw
/git-cat-file commit/, $c->{c
});
916 shift @msg while ($msg[0] ne "\n");
918 @
{$c->{l
}} = grep !/^git-svn-id: /, @msg;
920 (undef, $c->{r
}, undef) = extract_metadata
(
921 (grep(/^git-svn-id: /, @msg))[-1]);
923 return defined $c->{r
};
929 chomp($dc = `git-repo-config --get diff.color`);
931 if (-t
*STDOUT
|| (defined $_pager &&
932 `git-repo-config --bool --get pager.color` !~ /^false/)) {
933 return ($ENV{TERM
} && $ENV{TERM
} ne 'dumb');
937 return 0 if $dc eq 'never';
938 return 1 if $dc eq 'always';
939 chomp($dc = `git-repo-config --bool --get diff.color`);
943 sub git_svn_log_cmd
{
944 my ($r_min, $r_max) = @_;
945 my @cmd = (qw
/git
-log --abbrev
-commit
--pretty
=raw
946 --default/, "refs/remotes
/$GIT_SVN");
947 push @cmd, '-r' unless $_non_recursive;
948 push @cmd, qw/--raw --name-status/ if $_verbose;
949 push @cmd, '--color' if log_use_color();
950 return @cmd unless defined $r_max;
951 if ($r_max == $r_min) {
952 push @cmd, '--max-count=1';
953 if (my $c = revdb_get($REVDB, $r_max)) {
958 $c_max = revdb_get($REVDB, $r_max);
959 $c_min = revdb_get($REVDB, $r_min);
960 if (defined $c_min && defined $c_max) {
961 if ($r_max > $r_max) {
962 push @cmd, "$c_min..$c_max";
964 push @cmd, "$c_max..$c_min";
966 } elsif ($r_max > $r_min) {
977 print "Fetching
$id\n";
978 my $ref = "$GIT_DIR/refs/remotes
/$id";
979 defined(my $pid = open my $fh, '-|') or croak $!;
982 $GIT_SVN = $ENV{GIT_SVN_ID} = $id;
989 check_repack() if (/^r\d+ = $sha1/);
991 close $fh or croak $?;
995 my ($pfx, $p, @args) = @_;
997 foreach (sort <$p/*>) {
998 if (-r "$_/info/url
") {
999 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
1000 my $id = $pfx . basename $_;
1001 next if $id eq 'trunk';
1002 fetch_child_id($id, @args);
1009 $x =~ s!^\Q$GIT_DIR\E/svn/!!;
1014 sub complete_url_ls_init {
1015 my ($url, $var, $switch, $pfx) = @_;
1017 print STDERR "W
: $switch not specified
\n";
1021 if ($var !~ m#^[a-z\+]+://#) {
1022 $var = '/' . $var if ($var !~ m#^/#);
1024 print STDERR "E
: '$var' is
not a complete URL
",
1025 "and a separate URL is
not specified
\n";
1030 chomp(my @ls = $_use_lib ? libsvn_ls_fullurl($var)
1031 : safe_qx(qw/svn ls --non-interactive/, $var));
1033 defined(my $pid = fork) or croak $!;
1035 foreach my $u (map { "$var/$_" } (grep m!/$!, @ls)) {
1037 if ($u !~ m!\Q$var\E/(.+)$!) {
1038 print STDERR
"W: Unrecognized URL: $u\n";
1039 die "This should never happen\n";
1041 # don't try to init already existing refs
1043 $GIT_SVN = $ENV{GIT_SVN_ID
} = $id;
1045 unless (-d
$GIT_SVN_DIR) {
1046 print "init $u => $id\n";
1054 my ($n) = ($switch =~ /^--(\w+)/);
1055 sys
('git-repo-config', "svn.$n", $var);
1062 my @tmp = split m
#/#, $_;
1064 while (my $x = shift @tmp) {
1070 foreach (sort {length $b <=> length $a} keys %common) {
1071 if ($common{$_} == @
$paths) {
1078 # grafts set here are 'stronger' in that they're based on actual tree
1079 # matches, and won't be deleted from merge-base checking in write_grafts()
1080 sub graft_tree_joins
{
1082 map_tree_joins
() if (@_branch_from && !%tree_map);
1083 return unless %tree_map;
1087 defined(my $pid = open my $fh, '-|') or croak
$!;
1089 exec qw
/git-rev-list --pretty=raw/,
1090 "refs/remotes/$i" or croak
$!;
1093 next unless /^commit ($sha1)$/o;
1095 my ($t) = (<$fh> =~ /^tree ($sha1)$/o);
1096 next unless $tree_map{$t};
1101 } until ($l =~ /^committer (?:.+) (\d+) ([\-\+]?\d+)$/);
1103 my ($s, $tz) = ($1, $2);
1104 if ($tz =~ s/^\+//) {
1105 $s += tz_to_s_offset
($tz);
1106 } elsif ($tz =~ s/^\-//) {
1107 $s -= tz_to_s_offset
($tz);
1110 my ($url_a, $r_a, $uuid_a) = cmt_metadata
($c);
1112 foreach my $p (@
{$tree_map{$t}}) {
1115 safe_qx
('git-merge-base', $c, $p)
1117 next unless ($@
|| $?
);
1119 # see if SVN says it's a relative
1120 my ($url_b, $r_b, $uuid_b) =
1122 next if (defined $url_b &&
1124 ($url_a eq $url_b) &&
1125 ($uuid_a eq $uuid_b));
1126 if ($uuid_a eq $uuid_b) {
1128 $grafts->{$c}->{$p} = 2;
1130 } elsif ($r_b > $r_a) {
1131 $grafts->{$p}->{$c} = 2;
1136 my $ct = get_commit_time
($p);
1138 $grafts->{$c}->{$p} = 2;
1139 } elsif ($ct > $s) {
1140 $grafts->{$p}->{$c} = 2;
1142 # what should we do when $ct == $s ?
1145 close $fh or croak
$?
;
1149 # this isn't funky-filename safe, but good enough for now...
1150 sub graft_file_copy_cmd
{
1151 my ($grafts, $l_map, $u) = @_;
1152 my $paths = $l_map->{$u};
1153 my $pfx = common_prefix
([keys %$paths]);
1154 $SVN_URL ||= $u.$pfx;
1155 my $pid = open my $fh, '-|';
1156 defined $pid or croak
$!;
1158 my @exec = qw
/svn log -v/;
1159 push @exec, "-r$_revision" if defined $_revision;
1160 exec @exec, $u.$pfx or croak
$!;
1162 my ($r, $mp) = (undef, undef);
1167 } elsif (/^r(\d+) \| /) {
1168 $r = $1 unless defined $r;
1169 } elsif (/^Changed paths:/) {
1171 } elsif ($mp && m
#^ [AR] /(\S.*?) \(from /(\S+?):(\d+)\)$#) {
1172 my ($p1, $p0, $r0) = ($1, $2, $3);
1173 my $c = find_graft_path_commit
($paths, $p1, $r);
1175 find_graft_path_parents
($grafts, $paths, $c, $p0, $r0);
1180 sub graft_file_copy_lib
{
1181 my ($grafts, $l_map, $u) = @_;
1182 my $tree_paths = $l_map->{$u};
1183 my $pfx = common_prefix
([keys %$tree_paths]);
1184 my ($repo, $path) = repo_path_split
($u.$pfx);
1185 $SVN = libsvn_connect
($repo);
1187 my ($base, $head) = libsvn_parse_revision
();
1189 my ($min, $max) = ($base, $head < $base+$inc ?
$head : $base+$inc);
1190 my $eh = $SVN::Error
::handler
;
1191 $SVN::Error
::handler
= \
&libsvn_skip_unknown_revs
;
1193 my $pool = SVN
::Pool
->new;
1194 libsvn_get_log
(libsvn_dup_ra
($SVN), [$path],
1195 $min, $max, 0, 2, 1,
1197 libsvn_graft_file_copies
($grafts, $tree_paths,
1201 last if ($max >= $head);
1204 $max = $head if ($max > $head);
1206 $SVN::Error
::handler
= $eh;
1209 sub process_merge_msg_matches
{
1210 my ($grafts, $l_map, $u, $p, $c, @matches) = @_;
1211 my (@strong, @weak);
1212 foreach (@matches) {
1213 # merging with ourselves is not interesting
1215 if ($l_map->{$u}->{$_}) {
1221 foreach my $w (@weak) {
1223 # no exact match, use branch name as regexp.
1224 my $re = qr/\Q$w\E/i;
1225 foreach (keys %{$l_map->{$u}}) {
1227 push @strong, $l_map->{$u}->{$_};
1234 foreach (keys %{$l_map->{$u}}) {
1236 push @strong, $l_map->{$u}->{$_};
1241 my ($rev) = ($c->{m
} =~ /^git
-svn
-id
:\s
(?
:\S
+?
)\@
(\d
+)
1242 \s
(?
:[a
-f\d\
-]+)$/xsm
);
1243 unless (defined $rev) {
1244 ($rev) = ($c->{m
} =~/^git
-svn
-id
:\s
(\d
+)
1245 \@
(?
:[a
-f\d\
-]+)/xsm
);
1246 return unless defined $rev;
1248 foreach my $m (@strong) {
1249 my ($r0, $s0) = find_rev_before
($rev, $m, 1);
1250 $grafts->{$c->{c
}}->{$s0} = 1 if defined $s0;
1254 sub graft_merge_msg
{
1255 my ($grafts, $l_map, $u, $p, @re) = @_;
1257 my $x = $l_map->{$u}->{$p};
1258 my $rl = rev_list_raw
($x);
1259 while (my $c = next_rev_list_entry
($rl)) {
1260 foreach my $re (@re) {
1261 my (@br) = ($c->{m
} =~ /$re/g);
1263 process_merge_msg_matches
($grafts,$l_map,$u,$p,$c,@br);
1269 return if $SVN_UUID;
1271 my $pool = SVN
::Pool
->new;
1272 $SVN_UUID = $SVN->get_uuid($pool);
1275 my $info = shift || svn_info
('.');
1276 $SVN_UUID = $info->{'Repository UUID'} or
1277 croak
"Repository UUID unreadable\n";
1283 defined $pid or croak
$!;
1285 open my $null, '>', '/dev/null' or croak
$!;
1286 open STDERR
, '>&', $null or croak
$!;
1287 open STDOUT
, '>&', $null or croak
$!;
1288 exec @_ or croak
$!;
1294 sub repo_path_split
{
1295 my $full_url = shift;
1296 $full_url =~ s
#/+$##;
1298 foreach (@repo_path_split_cache) {
1299 if ($full_url =~ s
#$_##) {
1301 $full_url =~ s
#^/+##;
1302 return ($u, $full_url);
1306 my $tmp = libsvn_connect
($full_url);
1307 return ($tmp->{repos_root
}, $tmp->{svn_path
});
1309 my ($url, $path) = ($full_url =~ m!^([a-z\+]+://[^/]*)(.*)$!i);
1311 my @paths = split(m
#/+#, $path);
1312 while (quiet_run
(qw
/svn ls --non-interactive/, $url)) {
1313 my $n = shift @paths || last;
1316 push @repo_path_split_cache, qr/^(\Q$url\E)/;
1317 $path = join('/',@paths);
1318 return ($url, $path);
1323 defined $SVN_URL or croak
"SVN repository location required\n";
1324 unless (-d
$GIT_DIR) {
1325 croak
"GIT_DIR=$GIT_DIR does not exist!\n";
1327 mkpath
([$GIT_SVN_DIR]);
1328 mkpath
(["$GIT_SVN_DIR/info"]);
1329 open my $fh, '>>',$REVDB or croak
$!;
1331 s_to_file
($SVN_URL,"$GIT_SVN_DIR/info/url");
1335 sub assert_svn_wc_clean
{
1336 return if $_use_lib;
1338 croak
"$svn_rev is not an integer!\n" unless ($svn_rev =~ /^\d+$/);
1339 my $lcr = svn_info
('.')->{'Last Changed Rev'};
1340 if ($svn_rev != $lcr) {
1341 print STDERR
"Checking for copy-tree ... ";
1342 my @diff = grep(/^Index: /,(safe_qx
(qw(svn diff),
1343 "-r$lcr:$svn_rev")));
1345 croak
"Nope! Expected r$svn_rev, got r$lcr\n";
1347 print STDERR
"OK!\n";
1350 my @status = grep(!/^Performing status on external/,(`svn status`));
1351 @status = grep(!/^\s*$/,@status);
1352 @status = grep(!/^X/,@status) if $_no_ignore_ext;
1353 if (scalar @status) {
1354 print STDERR
"Tree ($SVN_WC) is not clean:\n";
1355 print STDERR
$_ foreach @status;
1360 sub get_tree_from_treeish
{
1362 croak
"Not a sha1: $treeish\n" unless $treeish =~ /^$sha1$/o;
1363 chomp(my $type = `git-cat-file -t $treeish`);
1365 while ($type eq 'tag') {
1366 chomp(($treeish, $type) = `git-cat-file tag $treeish`);
1368 if ($type eq 'commit') {
1369 $expected = (grep /^tree /,`git-cat-file commit $treeish`)[0];
1370 ($expected) = ($expected =~ /^tree ($sha1)$/);
1371 die "Unable to get tree from $treeish\n" unless $expected;
1372 } elsif ($type eq 'tree') {
1373 $expected = $treeish;
1375 die "$treeish is a $type, expected tree, tag or commit\n";
1381 return if $_use_lib;
1383 my $expected = get_tree_from_treeish
($treeish);
1385 my $tmpindex = $GIT_SVN_INDEX.'.assert-tmp';
1387 unlink $tmpindex or croak
$!;
1389 my $old_index = set_index
($tmpindex);
1391 chomp(my $tree = `git-write-tree`);
1392 restore_index
($old_index);
1393 if ($tree ne $expected) {
1394 croak
"Tree mismatch, Got: $tree, Expected: $expected\n";
1399 sub parse_diff_tree
{
1400 my $diff_fh = shift;
1404 while (<$diff_fh>) {
1405 chomp $_; # this gets rid of the trailing "\0"
1406 if ($state eq 'meta' && /^:(\d
{6})\s
(\d
{6})\s
1407 $sha1\s
($sha1)\s
([MTCRAD
])\d
*$/xo
) {
1408 push @mods, { mode_a
=> $1, mode_b
=> $2,
1409 sha1_b
=> $3, chg
=> $4 };
1410 if ($4 =~ /^(?:C|R)$/) {
1415 } elsif ($state eq 'file_a') {
1416 my $x = $mods[$#mods] or croak
"Empty array\n";
1417 if ($x->{chg
} !~ /^(?:C|R)$/) {
1418 croak
"Error parsing $_, $x->{chg}\n";
1422 } elsif ($state eq 'file_b') {
1423 my $x = $mods[$#mods] or croak
"Empty array\n";
1424 if (exists $x->{file_a
} && $x->{chg
} !~ /^(?:C|R)$/) {
1425 croak
"Error parsing $_, $x->{chg}\n";
1427 if (!exists $x->{file_a
} && $x->{chg
} =~ /^(?:C|R)$/) {
1428 croak
"Error parsing $_, $x->{chg}\n";
1433 croak
"Error parsing $_\n";
1436 close $diff_fh or croak
$?
;
1441 sub svn_check_prop_executable
{
1443 return if -l
$m->{file_b
};
1444 if ($m->{mode_b
} =~ /755$/) {
1445 chmod((0755 &~ umask),$m->{file_b
}) or croak
$!;
1446 if ($m->{mode_a
} !~ /755$/) {
1447 sys
(qw(svn propset svn:executable 1), $m->{file_b
});
1449 -x
$m->{file_b
} or croak
"$m->{file_b} is not executable!\n";
1450 } elsif ($m->{mode_b
} !~ /755$/ && $m->{mode_a
} =~ /755$/) {
1451 sys
(qw(svn propdel svn:executable), $m->{file_b
});
1452 chmod((0644 &~ umask),$m->{file_b
}) or croak
$!;
1453 -x
$m->{file_b
} and croak
"$m->{file_b} is executable!\n";
1457 sub svn_ensure_parent_path
{
1458 my $dir_b = dirname
(shift);
1459 svn_ensure_parent_path
($dir_b) if ($dir_b ne File
::Spec
->curdir);
1460 mkpath
([$dir_b]) unless (-d
$dir_b);
1461 sys
(qw(svn add -N), $dir_b) unless (-d
"$dir_b/.svn");
1464 sub precommit_check
{
1466 my (%rm_file, %rmdir_check, %added_check);
1468 my %o = ( D
=> 0, R
=> 1, C
=> 2, A
=> 3, M
=> 3, T
=> 3 );
1469 foreach my $m (sort { $o{$a->{chg
}} <=> $o{$b->{chg
}} } @
$mods) {
1470 if ($m->{chg
} eq 'R') {
1471 if (-d
$m->{file_b
}) {
1472 err_dir_to_file
("$m->{file_a} => $m->{file_b}");
1474 # dir/$file => dir/file/$file
1475 my $dirname = dirname
($m->{file_b
});
1476 while ($dirname ne File
::Spec
->curdir) {
1477 if ($dirname ne $m->{file_a
}) {
1478 $dirname = dirname
($dirname);
1481 err_file_to_dir
("$m->{file_a} => $m->{file_b}");
1483 # baz/zzz => baz (baz is a file)
1484 $dirname = dirname
($m->{file_a
});
1485 while ($dirname ne File
::Spec
->curdir) {
1486 if ($dirname ne $m->{file_b
}) {
1487 $dirname = dirname
($dirname);
1490 err_dir_to_file
("$m->{file_a} => $m->{file_b}");
1493 if ($m->{chg
} =~ /^(D|R)$/) {
1494 my $t = $1 eq 'D' ?
'file_b' : 'file_a';
1495 $rm_file{ $m->{$t} } = 1;
1496 my $dirname = dirname
( $m->{$t} );
1497 my $basename = basename
( $m->{$t} );
1498 $rmdir_check{$dirname}->{$basename} = 1;
1499 } elsif ($m->{chg
} =~ /^(?:A|C)$/) {
1500 if (-d
$m->{file_b
}) {
1501 err_dir_to_file
($m->{file_b
});
1503 my $dirname = dirname
( $m->{file_b
} );
1504 my $basename = basename
( $m->{file_b
} );
1505 $added_check{$dirname}->{$basename} = 1;
1506 while ($dirname ne File
::Spec
->curdir) {
1507 if ($rm_file{$dirname}) {
1508 err_file_to_dir
($m->{file_b
});
1510 $dirname = dirname
$dirname;
1514 return (\
%rmdir_check, \
%added_check);
1516 sub err_dir_to_file
{
1518 print STDERR
"Node change from directory to file ",
1519 "is not supported by Subversion: ",$file,"\n";
1522 sub err_file_to_dir
{
1524 print STDERR
"Node change from file to directory ",
1525 "is not supported by Subversion: ",$file,"\n";
1532 my ($from, $treeish) = @_;
1534 print "diff-tree $from $treeish\n";
1535 my $pid = open my $diff_fh, '-|';
1536 defined $pid or croak
$!;
1538 my @diff_tree = qw(git-diff-tree -z -r);
1539 if ($_cp_similarity) {
1540 push @diff_tree, "-C$_cp_similarity";
1542 push @diff_tree, '-C';
1544 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
1545 push @diff_tree, "-l$_l" if defined $_l;
1546 exec(@diff_tree, $from, $treeish) or croak
$!;
1548 return parse_diff_tree
($diff_fh);
1551 sub svn_checkout_tree
{
1552 my ($from, $treeish) = @_;
1553 my $mods = get_diff
($from->{commit
}, $treeish);
1554 return $mods unless (scalar @
$mods);
1555 my ($rm, $add) = precommit_check
($mods);
1557 my %o = ( D
=> 1, R
=> 0, C
=> -1, A
=> 3, M
=> 3, T
=> 3 );
1558 foreach my $m (sort { $o{$a->{chg
}} <=> $o{$b->{chg
}} } @
$mods) {
1559 if ($m->{chg
} eq 'C') {
1560 svn_ensure_parent_path
( $m->{file_b
} );
1561 sys
(qw(svn cp), $m->{file_a
}, $m->{file_b
});
1562 apply_mod_line_blob
($m);
1563 svn_check_prop_executable
($m);
1564 } elsif ($m->{chg
} eq 'D') {
1565 sys
(qw(svn rm --force), $m->{file_b
});
1566 } elsif ($m->{chg
} eq 'R') {
1567 svn_ensure_parent_path
( $m->{file_b
} );
1568 sys
(qw(svn mv --force), $m->{file_a
}, $m->{file_b
});
1569 apply_mod_line_blob
($m);
1570 svn_check_prop_executable
($m);
1571 } elsif ($m->{chg
} eq 'M') {
1572 apply_mod_line_blob
($m);
1573 svn_check_prop_executable
($m);
1574 } elsif ($m->{chg
} eq 'T') {
1575 svn_check_prop_executable
($m);
1576 apply_mod_line_blob
($m);
1577 if ($m->{mode_a
} =~ /^120/ && $m->{mode_b
} !~ /^120/) {
1578 sys
(qw(svn propdel svn:special), $m->{file_b
});
1580 sys
(qw(svn propset svn:special *),$m->{file_b
});
1582 } elsif ($m->{chg
} eq 'A') {
1583 svn_ensure_parent_path
( $m->{file_b
} );
1584 apply_mod_line_blob
($m);
1585 sys
(qw(svn add), $m->{file_b
});
1586 svn_check_prop_executable
($m);
1588 croak
"Invalid chg: $m->{chg}\n";
1592 assert_tree
($treeish);
1593 if ($_rmdir) { # remove empty directories
1594 handle_rmdir
($rm, $add);
1596 assert_tree
($treeish);
1600 sub libsvn_checkout_tree
{
1601 my ($from, $treeish, $ed) = @_;
1602 my $mods = get_diff
($from, $treeish);
1603 return $mods unless (scalar @
$mods);
1604 my %o = ( D
=> 1, R
=> 0, C
=> -1, A
=> 3, M
=> 3, T
=> 3 );
1605 foreach my $m (sort { $o{$a->{chg
}} <=> $o{$b->{chg
}} } @
$mods) {
1607 if (defined $o{$f}) {
1610 croak
"Invalid change type: $f\n";
1613 $ed->rmdirs($_q) if $_rmdir;
1617 # svn ls doesn't work with respect to the current working tree, but what's
1618 # in the repository. There's not even an option for it... *sigh*
1619 # (added files don't show up and removed files remain in the ls listing)
1620 sub svn_ls_current
{
1621 my ($dir, $rm, $add) = @_;
1622 chomp(my @ls = safe_qx
('svn','ls',$dir));
1625 s
#/$##; # trailing slashes are evil
1626 push @ret, $_ unless $rm->{$dir}->{$_};
1628 if (exists $add->{$dir}) {
1629 push @ret, keys %{$add->{$dir}};
1635 my ($rm, $add) = @_;
1637 foreach my $dir (sort {length $b <=> length $a} keys %$rm) {
1638 my $ls = svn_ls_current
($dir, $rm, $add);
1639 next if (scalar @
$ls);
1640 sys
(qw(svn rm --force),$dir);
1642 my $dn = dirname
$dir;
1643 $rm->{ $dn }->{ basename
$dir } = 1;
1644 $ls = svn_ls_current
($dn, $rm, $add);
1645 while (scalar @
$ls == 0 && $dn ne File
::Spec
->curdir) {
1646 sys
(qw(svn rm --force),$dn);
1647 $dir = basename
$dn;
1649 $rm->{ $dn }->{ $dir } = 1;
1650 $ls = svn_ls_current
($dn, $rm, $add);
1655 sub get_commit_message
{
1656 my ($commit, $commit_msg) = (@_);
1657 my %log_msg = ( msg
=> '' );
1658 open my $msg, '>', $commit_msg or croak
$!;
1660 chomp(my $type = `git-cat-file -t $commit`);
1661 if ($type eq 'commit' || $type eq 'tag') {
1662 my $pid = open my $msg_fh, '-|';
1663 defined $pid or croak
$!;
1666 exec('git-cat-file', $type, $commit) or croak
$!;
1671 $in_msg = 1 if (/^\s*$/);
1672 } elsif (/^git-svn-id: /) {
1673 # skip this, we regenerate the correct one
1674 # on re-fetch anyways
1676 print $msg $_ or croak
$!;
1679 close $msg_fh or croak
$?
;
1681 close $msg or croak
$!;
1683 if ($_edit || ($type eq 'tree')) {
1684 my $editor = $ENV{VISUAL
} || $ENV{EDITOR
} || 'vi';
1685 system($editor, $commit_msg);
1688 # file_to_s removes all trailing newlines, so just use chomp() here:
1689 open $msg, '<', $commit_msg or croak
$!;
1690 { local $/; chomp($log_msg{msg
} = <$msg>); }
1691 close $msg or croak
$!;
1696 sub set_svn_commit_env
{
1697 if (defined $LC_ALL) {
1698 $ENV{LC_ALL
} = $LC_ALL;
1700 delete $ENV{LC_ALL
};
1704 sub svn_commit_tree
{
1705 my ($last, $commit) = @_;
1706 my $commit_msg = "$GIT_SVN_DIR/.svn-commit.tmp.$$";
1707 my $log_msg = get_commit_message
($commit, $commit_msg);
1708 my ($oneline) = ($log_msg->{msg
} =~ /([^\n\r]+)/);
1709 print "Committing $commit: $oneline\n";
1711 set_svn_commit_env
();
1712 my @ci_output = safe_qx
(qw(svn commit -F),$commit_msg);
1715 my ($committed) = ($ci_output[$#ci_output] =~ /(\d+)/);
1716 if (!defined $committed) {
1717 my $out = join("\n",@ci_output);
1718 print STDERR
"W: Trouble parsing \`svn commit' output:\n\n",
1719 $out, "\n\nAssuming English locale...";
1720 ($committed) = ($out =~ /^Committed revision \d+\./sm);
1721 defined $committed or die " FAILED!\n",
1722 "Commit output failed to parse committed revision!\n",
1723 print STDERR
" OK\n";
1726 my @svn_up = qw(svn up);
1727 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
1728 if ($_optimize_commits && ($committed == ($last->{revision
} + 1))) {
1729 push @svn_up, "-r$committed";
1731 my $info = svn_info
('.');
1732 my $date = $info->{'Last Changed Date'} or die "Missing date\n";
1733 if ($info->{'Last Changed Rev'} != $committed) {
1734 croak
"$info->{'Last Changed Rev'} != $committed\n"
1736 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
1737 /(\d
{4})\
-(\d\d
)\
-(\d\d
)\s
1738 (\d\d
)\
:(\d\d
)\
:(\d\d
)\s
([\
-\
+]\d
+)/x
)
1739 or croak
"Failed to parse date: $date\n";
1740 $log_msg->{date
} = "$tz $Y-$m-$d $H:$M:$S";
1741 $log_msg->{author
} = $info->{'Last Changed Author'};
1742 $log_msg->{revision
} = $committed;
1743 $log_msg->{msg
} .= "\n";
1744 $log_msg->{parents
} = [ $last->{commit
} ];
1745 $log_msg->{commit
} = git_commit
($log_msg, $commit);
1748 # resync immediately
1749 push @svn_up, "-r$last->{revision}";
1751 return fetch
("$committed=$commit");
1756 my $pid = open my $fh, '-|';
1757 defined $pid or croak
$!;
1759 exec(qw
/git-rev-list --pretty=raw/, @args) or croak
$!;
1761 return { fh
=> $fh, t
=> { } };
1764 sub next_rev_list_entry
{
1769 if (/^commit ($sha1)$/o) {
1771 $rl->{t
} = { c
=> $1 };
1776 } elsif (/^parent ($sha1)$/o) {
1783 return ($x != $rl->{t
}) ?
$x : undef;
1786 # read the entire log into a temporary file (which is removed ASAP)
1787 # and store the file handle + parser state
1789 my (@log_args) = @_;
1790 my $log_fh = IO
::File
->new_tmpfile or croak
$!;
1792 defined $pid or croak
$!;
1794 open STDOUT
, '>&', $log_fh or croak
$!;
1795 exec (qw(svn log), @log_args) or croak
$!
1799 seek $log_fh, 0, 0 or croak
$!;
1800 return { state => 'sep', fh
=> $log_fh };
1803 sub next_log_entry
{
1804 my $log = shift; # retval of svn_log_raw()
1806 my $fh = $log->{fh
};
1811 if ($log->{state} eq 'msg') {
1812 if ($ret->{lines
}) {
1813 $ret->{msg
} .= $_."\n";
1814 unless(--$ret->{lines
}) {
1815 $log->{state} = 'sep';
1818 croak
"Log parse error at: $_\n",
1824 if ($log->{state} ne 'sep') {
1825 croak
"Log parse error at: $_\n",
1826 "state: $log->{state}\n",
1830 $log->{state} = 'rev';
1832 # if we have an empty log message, put something there:
1834 $ret->{msg
} ||= "\n";
1835 delete $ret->{lines
};
1840 if ($log->{state} eq 'rev' && s/^r(\d+)\s*\|\s*//) {
1842 my ($author, $date, $lines) = split(/\s*\|\s*/, $_, 3);
1843 ($lines) = ($lines =~ /(\d+)/);
1844 $date = '1970-01-01 00:00:00 +0000'
1845 if ($_ignore_nodate && $date eq '(no date)');
1846 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
1847 /(\d
{4})\
-(\d\d
)\
-(\d\d
)\s
1848 (\d\d
)\
:(\d\d
)\
:(\d\d
)\s
([\
-\
+]\d
+)/x
)
1849 or croak
"Failed to parse date: $date\n";
1850 $ret = { revision
=> $rev,
1851 date
=> "$tz $Y-$m-$d $H:$M:$S",
1855 if (defined $_authors && ! defined $users{$author}) {
1856 die "Author: $author not defined in ",
1859 $log->{state} = 'msg_start';
1862 # skip the first blank line of the message:
1863 if ($log->{state} eq 'msg_start' && /^$/) {
1864 $log->{state} = 'msg';
1865 } elsif ($log->{state} eq 'msg') {
1866 if ($ret->{lines
}) {
1867 $ret->{msg
} .= $_."\n";
1868 unless (--$ret->{lines
}) {
1869 $log->{state} = 'sep';
1872 croak
"Log parse error at: $_\n",
1873 $ret->{revision
},"\n";
1881 my $url = shift || $SVN_URL;
1883 my $pid = open my $info_fh, '-|';
1884 defined $pid or croak
$!;
1887 exec(qw(svn info),$url) or croak
$!;
1891 # only single-lines seem to exist in svn info output
1892 while (<$info_fh>) {
1894 if (m
#^([^:]+)\s*:\s*(\S.*)$#) {
1896 push @
{$ret->{-order
}}, $1;
1899 close $info_fh or croak
$?
;
1903 sub sys
{ system(@_) == 0 or croak
$?
}
1905 sub do_update_index
{
1906 my ($z_cmd, $cmd, $no_text_base) = @_;
1908 my $z = open my $p, '-|';
1909 defined $z or croak
$!;
1910 unless ($z) { exec @
$z_cmd or croak
$! }
1912 my $pid = open my $ui, '|-';
1913 defined $pid or croak
$!;
1915 exec('git-update-index',"--$cmd",'-z','--stdin') or croak
$!;
1918 while (my $x = <$p>) {
1920 if (!$no_text_base && lstat $x && ! -l _
&&
1921 svn_propget_base
('svn:keywords', $x)) {
1922 my $mode = -x _ ?
0755 : 0644;
1923 my ($v,$d,$f) = File
::Spec
->splitpath($x);
1924 my $tb = File
::Spec
->catfile($d, '.svn', 'tmp',
1925 'text-base',"$f.svn-base");
1928 $tb = File
::Spec
->catfile($d, '.svn',
1929 'text-base',"$f.svn-base");
1933 unlink $x or croak
$!;
1935 chmod(($mode &~ umask), $x) or croak
$!;
1936 utime $s[8], $s[9], $x;
1940 close $ui or croak
$?
;
1944 return if $_use_lib;
1946 if (!-f
"$GIT_SVN_DIR/info/exclude") {
1947 open my $fd, '>>', "$GIT_SVN_DIR/info/exclude" or croak
$!;
1948 print $fd '.svn',"\n";
1949 close $fd or croak
$!;
1951 my $no_text_base = shift;
1952 do_update_index
([qw
/git-diff-files --name-only -z/],
1955 do_update_index
([qw
/git-ls-files -z --others/,
1956 "--exclude-from=$GIT_SVN_DIR/info/exclude"],
1962 my ($str, $file, $mode) = @_;
1963 open my $fd,'>',$file or croak
$!;
1964 print $fd $str,"\n" or croak
$!;
1965 close $fd or croak
$!;
1966 chmod ($mode &~ umask, $file) if (defined $mode);
1971 open my $fd,'<',$file or croak
"$!: file: $file\n";
1974 close $fd or croak
$!;
1979 sub assert_revision_unknown
{
1981 if (my $c = revdb_get
($REVDB, $r)) {
1982 croak
"$r = $c already exists! Why are we refetching it?";
1988 my @x = safe_qx
('git-cat-file','commit',$x);
1989 my @y = safe_qx
('git-cat-file','commit',$y);
1990 if (($y[0] ne $x[0]) || $x[0] !~ /^tree $sha1\n$/
1991 || $y[0] !~ /^tree $sha1\n$/) {
1992 print STDERR
"Trees not equal: $y[0] != $x[0]\n";
1999 my ($log_msg, @parents) = @_;
2000 assert_revision_unknown
($log_msg->{revision
});
2001 map_tree_joins
() if (@_branch_from && !%tree_map);
2003 my (@tmp_parents, @exec_parents, %seen_parent);
2004 if (my $lparents = $log_msg->{parents
}) {
2005 @tmp_parents = @
$lparents
2007 # commit parents can be conditionally bound to a particular
2008 # svn revision via: "svn_revno=commit_sha1", filter them out here:
2009 foreach my $p (@parents) {
2010 next unless defined $p;
2011 if ($p =~ /^(\d+)=($sha1_short)$/o) {
2012 if ($1 == $log_msg->{revision
}) {
2013 push @tmp_parents, $2;
2016 push @tmp_parents, $p if $p =~ /$sha1_short/o;
2019 my $tree = $log_msg->{tree
};
2020 if (!defined $tree) {
2021 my $index = set_index
($GIT_SVN_INDEX);
2023 chomp($tree = `git-write-tree`);
2025 restore_index
($index);
2028 # just in case we clobber the existing ref, we still want that ref
2030 open my $null, '>', '/dev/null' or croak
$!;
2031 open my $stderr, '>&', \
*STDERR
or croak
$!;
2032 open STDERR
, '>&', $null or croak
$!;
2033 if (my $cur = eval { safe_qx
('git-rev-parse',
2034 "refs/remotes/$GIT_SVN^0") }) {
2036 push @tmp_parents, $cur;
2038 open STDERR
, '>&', $stderr or croak
$!;
2039 close $stderr or croak
$!;
2040 close $null or croak
$!;
2042 if (exists $tree_map{$tree}) {
2043 foreach my $p (@
{$tree_map{$tree}}) {
2045 foreach (@tmp_parents) {
2046 # see if a common parent is found
2048 safe_qx
('git-merge-base', $_, $p)
2055 my ($url_p, $r_p, $uuid_p) = cmt_metadata
($p);
2056 next if (($SVN_UUID eq $uuid_p) &&
2057 ($log_msg->{revision
} > $r_p));
2058 next if (defined $url_p && defined $SVN_URL &&
2059 ($SVN_UUID eq $uuid_p) &&
2060 ($url_p eq $SVN_URL));
2061 push @tmp_parents, $p;
2064 foreach (@tmp_parents) {
2065 next if $seen_parent{$_};
2066 $seen_parent{$_} = 1;
2067 push @exec_parents, $_;
2068 # MAXPARENT is defined to 16 in commit-tree.c:
2069 last if @exec_parents > 16;
2072 set_commit_env
($log_msg);
2073 my @exec = ('git-commit-tree', $tree);
2074 push @exec, '-p', $_ foreach @exec_parents;
2075 defined(my $pid = open3
(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2077 print $msg_fh $log_msg->{msg
} or croak
$!;
2078 unless ($_no_metadata) {
2079 print $msg_fh "\ngit-svn-id: $SVN_URL\@$log_msg->{revision}",
2080 " $SVN_UUID\n" or croak
$!;
2082 $msg_fh->flush == 0 or croak
$!;
2083 close $msg_fh or croak
$!;
2084 chomp(my $commit = do { local $/; <$out_fh> });
2085 close $out_fh or croak
$!;
2088 if ($commit !~ /^$sha1$/o) {
2089 die "Failed to commit, invalid sha1: $commit\n";
2091 sys
('git-update-ref',"refs/remotes/$GIT_SVN",$commit);
2092 revdb_set
($REVDB, $log_msg->{revision
}, $commit);
2094 # this output is read via pipe, do not change:
2095 print "r$log_msg->{revision} = $commit\n";
2101 if ($_repack && (--$_repack_nr == 0)) {
2102 $_repack_nr = $_repack;
2103 sys
("git repack $_repack_flags");
2107 sub set_commit_env
{
2109 my $author = $log_msg->{author
};
2110 if (!defined $author || length $author == 0) {
2111 $author = '(no author)';
2113 my ($name,$email) = defined $users{$author} ? @
{$users{$author}}
2114 : ($author,"$author\@$SVN_UUID");
2115 $ENV{GIT_AUTHOR_NAME
} = $ENV{GIT_COMMITTER_NAME
} = $name;
2116 $ENV{GIT_AUTHOR_EMAIL
} = $ENV{GIT_COMMITTER_EMAIL
} = $email;
2117 $ENV{GIT_AUTHOR_DATE
} = $ENV{GIT_COMMITTER_DATE
} = $log_msg->{date
};
2120 sub apply_mod_line_blob
{
2122 if ($m->{mode_b
} =~ /^120/) {
2123 blob_to_symlink
($m->{sha1_b
}, $m->{file_b
});
2125 blob_to_file
($m->{sha1_b
}, $m->{file_b
});
2129 sub blob_to_symlink
{
2130 my ($blob, $link) = @_;
2131 defined $link or croak
"\$link not defined!\n";
2132 croak
"Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
2133 if (-l
$link || -f _
) {
2134 unlink $link or croak
$!;
2137 my $dest = `git-cat-file blob $blob`; # no newline, so no chomp
2138 symlink $dest, $link or croak
$!;
2142 my ($blob, $file) = @_;
2143 defined $file or croak
"\$file not defined!\n";
2144 croak
"Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
2145 if (-l
$file || -f _
) {
2146 unlink $file or croak
$!;
2149 open my $blob_fh, '>', $file or croak
"$!: $file\n";
2151 defined $pid or croak
$!;
2154 open STDOUT
, '>&', $blob_fh or croak
$!;
2155 exec('git-cat-file','blob',$blob) or croak
$!;
2160 close $blob_fh or croak
$!;
2164 my $pid = open my $child, '-|';
2165 defined $pid or croak
$!;
2167 exec(@_) or croak
$!;
2169 my @ret = (<$child>);
2170 close $child or croak
$?
;
2171 die $?
if $?
; # just in case close didn't error out
2172 return wantarray ?
@ret : join('',@ret);
2175 sub svn_compat_check
{
2176 if ($_follow_parent) {
2177 print STDERR
'E: --follow-parent functionality is only ',
2178 "available when SVN libraries are used\n";
2181 my @co_help = safe_qx
(qw(svn co -h));
2182 unless (grep /ignore-externals/,@co_help) {
2183 print STDERR
"W: Installed svn version does not support ",
2184 "--ignore-externals\n";
2185 $_no_ignore_ext = 1;
2187 if (grep /usage: checkout URL\[\@REV\]/,@co_help) {
2188 $_svn_co_url_revs = 1;
2190 if (grep /\[TARGET\[\@REV\]\.\.\.\]/, `svn propget -h`) {
2191 $_svn_pg_peg_revs = 1;
2194 # I really, really hope nobody hits this...
2195 unless (grep /stop-on-copy/, (safe_qx
(qw(svn log -h)))) {
2197 W
: The installed svn version does
not support the
--stop
-on
-copy flag
in
2199 Lets hope the directory you
're tracking is not a branch or tag
2200 and was never moved within the repository...
2206 # *sigh*, new versions of svn won't honor
-r
<rev
> without URL@
<rev
>,
2207 # (and they won't honor URL@<rev> without -r<rev>, too!)
2208 sub svn_cmd_checkout
{
2209 my ($url, $rev, $dir) = @_;
2210 my @cmd = ('svn','co', "-r$rev");
2211 push @cmd, '--ignore-externals' unless $_no_ignore_ext;
2212 $url .= "\@$rev" if $_svn_co_url_revs;
2213 sys
(@cmd, $url, $dir);
2216 sub check_upgrade_needed
{
2218 -d
$GIT_SVN_DIR or mkpath
([$GIT_SVN_DIR]);
2219 open my $fh, '>>',$REVDB or croak
$!;
2223 my $pid = open my $child, '-|';
2224 defined $pid or croak
$!;
2227 exec('git-rev-parse',"$GIT_SVN-HEAD") or croak
$!;
2229 my @ret = (<$child>);
2230 close $child or croak
$?
;
2231 die $?
if $?
; # just in case close didn't error out
2232 return wantarray ?
@ret : join('',@ret);
2235 my $head = eval { safe_qx
('git-rev-parse',"refs/remotes/$GIT_SVN") };
2237 print STDERR
"Please run: $0 rebuild --upgrade\n";
2242 # fills %tree_map with a reverse mapping of trees to commits. Useful
2243 # for finding parents to commit on.
2244 sub map_tree_joins
{
2246 foreach my $br (@_branch_from) {
2247 my $pid = open my $pipe, '-|';
2248 defined $pid or croak
$!;
2250 exec(qw(git-rev-list --topo-order --pretty=raw), $br)
2254 if (/^commit ($sha1)$/o) {
2257 # if we've seen a commit,
2258 # we've seen its parents
2259 last if $seen{$commit};
2260 my ($tree) = (<$pipe> =~ /^tree ($sha1)$/o);
2261 unless (defined $tree) {
2262 die "Failed to parse commit $commit\n";
2264 push @
{$tree_map{$tree}}, $commit;
2268 close $pipe; # we could be breaking the pipe early
2273 if (@_branch_from) {
2274 print STDERR
'--branch|-b parameters are ignored when ',
2275 "--branch-all-refs|-B is passed\n";
2278 # don't worry about rev-list on non-commit objects/tags,
2279 # it shouldn't blow up if a ref is a blob or tree...
2280 chomp(@_branch_from = `git-rev-parse --symbolic --all`);
2283 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
2285 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
2286 while (<$authors>) {
2288 next unless /^(\S+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
2289 my ($user, $name, $email) = ($1, $2, $3);
2290 $users{$user} = [$name, $email];
2292 close $authors or croak
$!;
2296 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
2297 while (<$authors>) {
2299 next unless /^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/;
2300 my ($user, $name, $email) = ($1, $2, $3);
2301 $rusers{"$name <$email>"} = $user;
2303 close $authors or croak
$!;
2306 sub svn_propget_base
{
2308 $f .= '@BASE' if $_svn_pg_peg_revs;
2309 return safe_qx
(qw
/svn propget/, $p, $f);
2314 foreach (`git-rev-parse --symbolic --all`) {
2315 next unless s
#^refs/remotes/##;
2317 next unless -f
"$GIT_DIR/svn/$_/info/url";
2325 defined(my $pid = fork) or croak
$!;
2327 $GIT_SVN = $ENV{GIT_SVN_ID
} = $id;
2329 exit 0 if -r
$REVDB;
2330 print "Upgrading svn => git mapping...\n";
2331 -d
$GIT_SVN_DIR or mkpath
([$GIT_SVN_DIR]);
2332 open my $fh, '>>',$REVDB or croak
$!;
2335 print "Done upgrading. You may now delete the ",
2336 "deprecated $GIT_SVN_DIR/revs directory\n";
2344 sub migration_check
{
2345 migrate_revdb
() unless (-e
$REVDB);
2346 return if (-d
"$GIT_DIR/svn" || !-d
$GIT_DIR);
2347 print "Upgrading repository...\n";
2348 unless (-d
"$GIT_DIR/svn") {
2349 mkdir "$GIT_DIR/svn" or croak
$!;
2351 print "Data from a previous version of git-svn exists, but\n\t",
2352 "$GIT_SVN_DIR\n\t(required for this version ",
2353 "($VERSION) of git-svn) does not.\n";
2355 foreach my $x (`git-rev-parse --symbolic --all`) {
2356 next unless $x =~ s
#^refs/remotes/##;
2358 next unless -f
"$GIT_DIR/$x/info/url";
2359 my $u = eval { file_to_s
("$GIT_DIR/$x/info/url") };
2361 my $dn = dirname
("$GIT_DIR/svn/$x");
2362 mkpath
([$dn]) unless -d
$dn;
2363 rename "$GIT_DIR/$x", "$GIT_DIR/svn/$x" or croak
"$!: $x";
2365 migrate_revdb
() if (-d
$GIT_SVN_DIR && !-w
$REVDB);
2366 print "Done upgrading.\n";
2369 sub find_rev_before
{
2370 my ($r, $id, $eq_ok) = @_;
2371 my $f = "$GIT_DIR/svn/$id/.rev_db";
2372 return (undef,undef) unless -r
$f;
2375 if (my $c = revdb_get
($f, $r)) {
2380 return (undef, undef);
2384 $GIT_SVN ||= $ENV{GIT_SVN_ID
} || 'git-svn';
2385 $GIT_SVN_DIR = "$GIT_DIR/svn/$GIT_SVN";
2386 $REVDB = "$GIT_SVN_DIR/.rev_db";
2387 $GIT_SVN_INDEX = "$GIT_SVN_DIR/index";
2389 $SVN_WC = "$GIT_SVN_DIR/tree";
2393 # convert GetOpt::Long specs for use by git-repo-config
2394 sub read_repo_config
{
2395 return unless -d
$GIT_DIR;
2397 foreach my $o (keys %$opts) {
2398 my $v = $opts->{$o};
2399 my ($key) = ($o =~ /^([a-z\-]+)/);
2401 my $arg = 'git-repo-config';
2402 $arg .= ' --int' if ($o =~ /[:=]i$/);
2403 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
2404 if (ref $v eq 'ARRAY') {
2405 chomp(my @tmp = `$arg --get-all svn.$key`);
2408 chomp(my $tmp = `$arg --get svn.$key`);
2409 if ($tmp && !($arg =~ / --bool / && $tmp eq 'false')) {
2416 sub set_default_vals
{
2417 if (defined $_repack) {
2418 $_repack = 1000 if ($_repack <= 0);
2419 $_repack_nr = $_repack;
2420 $_repack_flags ||= '-d';
2425 my $gr_file = shift;
2426 my ($grafts, $comments) = ({}, {});
2427 if (open my $fh, '<', $gr_file) {
2430 if (/^($sha1)\s+/) {
2433 @
{$comments->{$c}} = @tmp;
2436 foreach my $p (split /\s+/, $_) {
2437 $grafts->{$c}->{$p} = 1;
2443 close $fh or croak
$!;
2444 @
{$comments->{'END'}} = @tmp if @tmp;
2446 return ($grafts, $comments);
2450 my ($grafts, $comments, $gr_file) = @_;
2452 open my $fh, '>', $gr_file or croak
$!;
2453 foreach my $c (sort keys %$grafts) {
2454 if ($comments->{$c}) {
2455 print $fh $_ foreach @
{$comments->{$c}};
2457 my $p = $grafts->{$c};
2458 my %x; # real parents
2459 delete $p->{$c}; # commits are not self-reproducing...
2460 my $pid = open my $ch, '-|';
2461 defined $pid or croak
$!;
2463 exec(qw
/git-cat-file commit/, $c) or croak
$!;
2466 if (/^parent ($sha1)/) {
2467 $x{$1} = $p->{$1} = 1;
2472 close $ch; # breaking the pipe
2474 # if real parents are the only ones in the grafts, drop it
2475 next if join(' ',sort keys %$p) eq join(' ',sort keys %x);
2479 @ip = @jp = keys %$p;
2480 foreach my $i (@ip) {
2481 next if $del{$i} || $p->{$i} == 2;
2482 foreach my $j (@jp) {
2483 next if $i eq $j || $del{$j} || $p->{$j} == 2;
2484 $mb = eval { safe_qx
('git-merge-base',$i,$j) };
2491 } elsif ($mb eq $i) {
2498 # if real parents are the only ones in the grafts, drop it
2499 next if join(' ',sort keys %$p) eq join(' ',sort keys %x);
2501 print $fh $c, ' ', join(' ', sort keys %$p),"\n";
2503 if ($comments->{'END'}) {
2504 print $fh $_ foreach @
{$comments->{'END'}};
2506 close $fh or croak
$!;
2509 sub read_url_paths_all
{
2510 my ($l_map, $pfx, $p) = @_;
2513 if (-r
"$_/info/url") {
2514 $pfx .= '/' if $pfx && $pfx !~ m
!/$!;
2515 my $id = $pfx . basename
$_;
2516 my $url = file_to_s
("$_/info/url");
2517 my ($u, $p) = repo_path_split
($url);
2518 $l_map->{$u}->{$p} = $id;
2525 $x =~ s!^\Q$GIT_DIR\E/svn/!!o;
2526 read_url_paths_all
($l_map, $x, $_);
2530 # this one only gets ids that have been imported, not new ones
2531 sub read_url_paths
{
2533 git_svn_each
(sub { my $x = shift;
2534 my $url = file_to_s
("$GIT_DIR/svn/$x/info/url");
2535 my ($u, $p) = repo_path_split
($url);
2536 $l_map->{$u}->{$p} = $x;
2541 sub extract_metadata
{
2542 my $id = shift or return (undef, undef, undef);
2543 my ($url, $rev, $uuid) = ($id =~ /^git
-svn
-id
:\s
(\S
+?
)\@
(\d
+)
2545 if (!defined $rev || !$uuid || !$url) {
2546 # some of the original repositories I made had
2547 # identifiers like this:
2548 ($rev, $uuid) = ($id =~/^git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
2550 return ($url, $rev, $uuid);
2554 return extract_metadata
((grep(/^git-svn-id: /,
2555 safe_qx
(qw
/git-cat-file commit/, shift)))[-1]);
2558 sub get_commit_time
{
2560 defined(my $pid = open my $fh, '-|') or croak
$!;
2562 exec qw
/git-rev-list --pretty=raw -n1/, $cmt or croak
$!;
2565 /^committer\s(?:.+) (\d+) ([\-\+]?\d+)$/ or next;
2566 my ($s, $tz) = ($1, $2);
2567 if ($tz =~ s/^\+//) {
2568 $s += tz_to_s_offset
($tz);
2569 } elsif ($tz =~ s/^\-//) {
2570 $s -= tz_to_s_offset
($tz);
2575 die "Can't get commit time for commit: $cmt\n";
2578 sub tz_to_s_offset
{
2581 return ($1 * 60) + ($tz * 3600);
2584 # adapted from pager.c
2586 $_pager ||= $ENV{GIT_PAGER
} || $ENV{PAGER
};
2587 if (!defined $_pager) {
2589 } elsif (length $_pager == 0 || $_pager eq 'cat') {
2595 return unless -t
*STDOUT
;
2596 pipe my $rfd, my $wfd or return;
2597 defined(my $pid = fork) or croak
$!;
2599 open STDOUT
, '>&', $wfd or croak
$!;
2602 open STDIN
, '<&', $rfd or croak
$!;
2603 $ENV{LESS
} ||= 'FRSX';
2604 exec $_pager or croak
"Can't run pager: $! ($_pager)\n";
2607 sub get_author_info
{
2608 my ($dest, $author, $t, $tz) = @_;
2609 $author =~ s/(?:^\s*|\s*$)//g;
2610 $dest->{a_raw
} = $author;
2613 $_a = $rusers{$author} || undef;
2616 ($_a) = ($author =~ /<([^>]+)\@[^>]+>$/);
2621 # Date::Parse isn't in the standard Perl distro :(
2622 if ($tz =~ s/^\+//) {
2623 $t += tz_to_s_offset
($tz);
2624 } elsif ($tz =~ s/^\-//) {
2625 $t -= tz_to_s_offset
($tz);
2627 $dest->{t_utc
} = $t;
2630 sub process_commit
{
2631 my ($c, $r_min, $r_max, $defer) = @_;
2632 if (defined $r_min && defined $r_max) {
2633 if ($r_min == $c->{r
} && $r_min == $r_max) {
2637 return 1 if $r_min == $r_max;
2638 if ($r_min < $r_max) {
2639 # we need to reverse the print order
2640 return 0 if (defined $_limit && --$_limit < 0);
2644 if ($r_min != $r_max) {
2645 return 1 if ($r_min < $c->{r
});
2646 return 1 if ($r_max > $c->{r
});
2649 return 0 if (defined $_limit && --$_limit < 0);
2658 if (my $l = $c->{l
}) {
2659 while ($l->[0] =~ /^\s*$/) { shift @
$l }
2662 $_l_fmt ||= 'A' . length($c->{r
});
2663 print 'r',pack($_l_fmt, $c->{r
}),' | ';
2664 print "$c->{c} | " if $_show_commit;
2667 show_commit_normal
($c);
2671 sub show_commit_changed_paths
{
2673 return unless $c->{changed
};
2674 print "Changed paths:\n", @
{$c->{changed
}};
2677 sub show_commit_normal
{
2679 print '-' x72
, "\nr$c->{r} | ";
2680 print "$c->{c} | " if $_show_commit;
2681 print "$c->{a} | ", strftime
("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)",
2682 localtime($c->{t_utc
})), ' | ';
2685 if (my $l = $c->{l
}) {
2686 while ($l->[$#$l] eq "\n" && $#$l > 0
2687 && $l->[($#$l - 1)] eq "\n") {
2690 $nr_line = scalar @
$l;
2692 print "1 line\n\n\n";
2694 if ($nr_line == 1) {
2695 $nr_line = '1 line';
2697 $nr_line .= ' lines';
2699 print $nr_line, "\n";
2700 show_commit_changed_paths
($c);
2702 print $_ foreach @
$l;
2706 show_commit_changed_paths
($c);
2710 foreach my $x (qw
/raw diff/) {
2713 print $_ foreach @
{$c->{$x}}
2719 return unless $_use_lib;
2722 if ($SVN::Core
::VERSION
lt '1.1.0') {
2723 die "Need SVN::Core 1.1.0 or better ",
2724 "(got $SVN::Core::VERSION) ",
2725 "Falling back to command-line svn\n";
2729 push @SVN::Git
::Editor
::ISA
, 'SVN::Delta::Editor';
2730 push @SVN::Git
::Fetcher
::ISA
, 'SVN::Delta::Editor';
2731 *SVN
::Git
::Fetcher
::process_rm
= *process_rm
;
2732 *SVN
::Git
::Fetcher
::safe_qx
= *safe_qx
;
2733 my $kill_stupid_warnings = $SVN::Node
::none
.$SVN::Node
::file
.
2734 $SVN::Node
::dir
.$SVN::Node
::unknown
.
2735 $SVN::Node
::none
.$SVN::Node
::file
.
2736 $SVN::Node
::dir
.$SVN::Node
::unknown
.
2737 $SVN::Auth
::SSL
::CNMISMATCH
.
2738 $SVN::Auth
::SSL
::NOTYETVALID
.
2739 $SVN::Auth
::SSL
::EXPIRED
.
2740 $SVN::Auth
::SSL
::UNKNOWNCA
.
2741 $SVN::Auth
::SSL
::OTHER
;
2746 sub _simple_prompt
{
2747 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
2748 $may_save = undef if $_no_auth_cache;
2749 $default_username = $_username if defined $_username;
2750 if (defined $default_username && length $default_username) {
2751 if (defined $realm && length $realm) {
2752 print "Authentication realm: $realm\n";
2754 $cred->username($default_username);
2756 _username_prompt
($cred, $realm, $may_save, $pool);
2758 $cred->password(_read_password
("Password for '" .
2759 $cred->username . "': ", $realm));
2760 $cred->may_save($may_save);
2761 $SVN::_Core
::SVN_NO_ERROR
;
2764 sub _ssl_server_trust_prompt
{
2765 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
2766 $may_save = undef if $_no_auth_cache;
2767 print "Error validating server certificate for '$realm':\n";
2768 if ($failures & $SVN::Auth
::SSL
::UNKNOWNCA
) {
2769 print " - The certificate is not issued by a trusted ",
2770 "authority. Use the\n",
2771 " fingerprint to validate the certificate manually!\n";
2773 if ($failures & $SVN::Auth
::SSL
::CNMISMATCH
) {
2774 print " - The certificate hostname does not match.\n";
2776 if ($failures & $SVN::Auth
::SSL
::NOTYETVALID
) {
2777 print " - The certificate is not yet valid.\n";
2779 if ($failures & $SVN::Auth
::SSL
::EXPIRED
) {
2780 print " - The certificate has expired.\n";
2782 if ($failures & $SVN::Auth
::SSL
::OTHER
) {
2783 print " - The certificate has an unknown error.\n";
2785 printf( "Certificate information:\n".
2786 " - Hostname: %s\n".
2787 " - Valid: from %s until %s\n".
2789 " - Fingerprint: %s\n",
2790 map $cert_info->$_, qw(hostname valid_from valid_until
2791 issuer_dname fingerprint) );
2795 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
2796 "(R)eject or accept (t)emporarily? ";
2797 $choice = lc(substr(<STDIN
> || 'R', 0, 1));
2798 if ($choice =~ /^t$/i) {
2799 $cred->may_save(undef);
2800 } elsif ($choice =~ /^r$/i) {
2802 } elsif ($may_save && $choice =~ /^p$/i) {
2803 $cred->may_save($may_save);
2807 $cred->accepted_failures($failures);
2808 $SVN::_Core
::SVN_NO_ERROR
;
2811 sub _ssl_client_cert_prompt
{
2812 my ($cred, $realm, $may_save, $pool) = @_;
2813 $may_save = undef if $_no_auth_cache;
2814 print "Client certificate filename: ";
2815 chomp(my $filename = <STDIN
>);
2816 $cred->cert_file($filename);
2817 $cred->may_save($may_save);
2818 $SVN::_Core
::SVN_NO_ERROR
;
2821 sub _ssl_client_cert_pw_prompt
{
2822 my ($cred, $realm, $may_save, $pool) = @_;
2823 $may_save = undef if $_no_auth_cache;
2824 $cred->password(_read_password
("Password: ", $realm));
2825 $cred->may_save($may_save);
2826 $SVN::_Core
::SVN_NO_ERROR
;
2829 sub _username_prompt
{
2830 my ($cred, $realm, $may_save, $pool) = @_;
2831 $may_save = undef if $_no_auth_cache;
2832 if (defined $realm && length $realm) {
2833 print "Authentication realm: $realm\n";
2836 if (defined $_username) {
2837 $username = $_username;
2840 chomp($username = <STDIN
>);
2842 $cred->username($username);
2843 $cred->may_save($may_save);
2844 $SVN::_Core
::SVN_NO_ERROR
;
2847 sub _read_password
{
2848 my ($prompt, $realm) = @_;
2850 require Term
::ReadKey
;
2851 Term
::ReadKey
::ReadMode
('noecho');
2853 while (defined(my $key = Term
::ReadKey
::ReadKey
(0))) {
2854 last if $key =~ /[\012\015]/; # \n\r
2857 Term
::ReadKey
::ReadMode
('restore');
2862 sub libsvn_connect
{
2864 SVN
::_Core
::svn_config_ensure
($_config_dir, undef);
2865 my ($baton, $callbacks) = SVN
::Core
::auth_open_helper
([
2866 SVN
::Client
::get_simple_provider
(),
2867 SVN
::Client
::get_ssl_server_trust_file_provider
(),
2868 SVN
::Client
::get_simple_prompt_provider
(
2869 \
&_simple_prompt
, 2),
2870 SVN
::Client
::get_ssl_client_cert_prompt_provider
(
2871 \
&_ssl_client_cert_prompt
, 2),
2872 SVN
::Client
::get_ssl_client_cert_pw_prompt_provider
(
2873 \
&_ssl_client_cert_pw_prompt
, 2),
2874 SVN
::Client
::get_username_provider
(),
2875 SVN
::Client
::get_ssl_server_trust_prompt_provider
(
2876 \
&_ssl_server_trust_prompt
),
2877 SVN
::Client
::get_username_prompt_provider
(
2878 \
&_username_prompt
, 2),
2880 my $config = SVN
::Core
::config_get_config
($_config_dir);
2881 my $ra = SVN
::Ra
->new(url
=> $url, auth
=> $baton,
2883 pool
=> SVN
::Pool
->new,
2884 auth_provider_callbacks
=> $callbacks);
2886 my $df = $ENV{GIT_SVN_DELTA_FETCH
};
2890 $_xfer_delta = ($url =~ m
#^file://#) ? undef : 1;
2892 $ra->{svn_path
} = $url;
2893 $ra->{repos_root
} = $ra->get_repos_root;
2894 $ra->{svn_path
} =~ s
#^\Q$ra->{repos_root}\E/*##;
2895 push @repo_path_split_cache, qr/^(\Q$ra->{repos_root}\E)/;
2899 sub libsvn_can_do_switch
{
2900 unless (defined $_svn_can_do_switch) {
2901 my $pool = SVN
::Pool
->new;
2903 $SVN->do_switch(1, '', 0, $SVN->{url
},
2904 SVN
::Delta
::Editor
->new, $pool);
2907 $_svn_can_do_switch = 0;
2909 $rep->abort_report($pool);
2910 $_svn_can_do_switch = 1;
2914 $_svn_can_do_switch;
2919 SVN
::Ra
->new(map { $_ => $ra->{$_} } qw
/config url
2920 auth auth_provider_callbacks repos_root svn_path
/);
2923 sub libsvn_get_file
{
2924 my ($gui, $f, $rev, $chg, $untracked) = @_;
2926 print "\t$chg\t$f\n" unless $_q;
2928 my ($hash, $pid, $in, $out);
2929 my $pool = SVN
::Pool
->new;
2930 defined($pid = open3
($in, $out, '>&STDERR',
2931 qw
/git-hash-object -w --stdin/)) or croak
$!;
2932 # redirect STDOUT for SVN 1.1.x compatibility
2933 open my $stdout, '>&', \
*STDOUT
or croak
$!;
2934 open STDOUT
, '>&', $in or croak
$!;
2935 my ($r, $props) = $SVN->get_file($f, $rev, \
*STDOUT
, $pool);
2936 $in->flush == 0 or croak
$!;
2937 open STDOUT
, '>&', $stdout or croak
$!;
2938 close $in or croak
$!;
2939 close $stdout or croak
$!;
2941 chomp($hash = do { local $/; <$out> });
2942 close $out or croak
$!;
2944 $hash =~ /^$sha1$/o or die "not a sha1: $hash\n";
2946 my $mode = exists $props->{'svn:executable'} ?
'100755' : '100644';
2947 if (exists $props->{'svn:special'}) {
2949 my $link = `git-cat-file blob $hash`;
2950 $link =~ s/^link // or die "svn:special file with contents: <",
2951 $link, "> is not understood\n";
2952 defined($pid = open3
($in, $out, '>&STDERR',
2953 qw
/git-hash-object -w --stdin/)) or croak
$!;
2955 $in->flush == 0 or croak
$!;
2956 close $in or croak
$!;
2957 chomp($hash = do { local $/; <$out> });
2958 close $out or croak
$!;
2960 $hash =~ /^$sha1$/o or die "not a sha1: $hash\n";
2962 %{$untracked->{file_prop
}->{$f}} = %$props;
2963 print $gui $mode,' ',$hash,"\t",$f,"\0" or croak
$!;
2968 $f =~ s
#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
2975 $f =~ s/%([A-F0-9]{2})/chr hex($1)/ge;
2979 sub libsvn_log_entry
{
2980 my ($rev, $author, $date, $msg, $parents, $untracked) = @_;
2981 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d
{4})\
-(\d\d
)\
-(\d\d
)T
2982 (\d\d
)\
:(\d\d
)\
:(\d\d
).\d
+Z
$/x
)
2983 or die "Unable to parse date: $date\n";
2984 if (defined $author && length $author > 0 &&
2985 defined $_authors && ! defined $users{$author}) {
2986 die "Author: $author not defined in $_authors file\n";
2988 $msg = '' if ($rev == 0 && !defined $msg);
2990 open my $un, '>>', "$GIT_SVN_DIR/unhandled.log" or croak
$!;
2992 print $un "r$rev\n" or croak
$!;
2993 $h = $untracked->{empty
};
2994 foreach (sort keys %$h) {
2995 my $act = $h->{$_} ?
'+empty_dir' : '-empty_dir';
2996 print $un " $act: ", uri_encode
($_), "\n" or croak
$!;
2997 warn "W: $act: $_\n";
2999 foreach my $t (qw
/dir_prop file_prop/) {
3000 $h = $untracked->{$t} or next;
3001 foreach my $path (sort keys %$h) {
3002 my $ppath = $path eq '' ?
'.' : $path;
3003 foreach my $prop (sort keys %{$h->{$path}}) {
3004 next if $SKIP{$prop};
3005 my $v = $h->{$path}->{$prop};
3008 uri_encode
($ppath), ' ',
3009 uri_encode
($prop), ' ',
3010 uri_encode
($v), "\n"
3014 uri_encode
($ppath), ' ',
3015 uri_encode
($prop), "\n"
3021 foreach my $t (qw
/absent_file absent_directory/) {
3022 $h = $untracked->{$t} or next;
3023 foreach my $parent (sort keys %$h) {
3024 foreach my $path (sort @
{$h->{$parent}}) {
3026 uri_encode
("$parent/$path"), "\n"
3028 warn "W: $t: $parent/$path ",
3029 "Insufficient permissions?\n";
3034 # revprops (make this optional? it's an extra network trip...)
3035 my $pool = SVN
::Pool
->new;
3036 my $rp = $SVN->rev_proplist($rev, $pool);
3037 foreach (sort keys %$rp) {
3038 next if /^svn:(?:author|date|log)$/;
3039 print $un " rev_prop: ", uri_encode
($_), ' ',
3040 uri_encode
($rp->{$_}), "\n";
3043 close $un or croak
$!;
3045 { revision
=> $rev, date
=> "+0000 $Y-$m-$d $H:$M:$S",
3046 author
=> $author, msg
=> $msg."\n", parents
=> $parents || [],
3051 my ($gui, $last_commit, $f, $q) = @_;
3052 # remove entire directories.
3053 if (safe_qx
('git-ls-tree',$last_commit,'--',$f) =~ /^040000 tree/) {
3054 defined(my $pid = open my $ls, '-|') or croak
$!;
3056 exec(qw
/git-ls-tree -r --name-only -z/,
3057 $last_commit,'--',$f) or croak
$!;
3061 print $gui '0 ',0 x
40,"\t",$_ or croak
$!;
3062 print "\tD\t$_\n" unless $q;
3064 print "\tD\t$f/\n" unless $q;
3065 close $ls or croak
$?
;
3066 return $SVN::Node
::dir
;
3068 print $gui '0 ',0 x
40,"\t",$f,"\0" or croak
$!;
3069 print "\tD\t$f\n" unless $q;
3070 return $SVN::Node
::file
;
3075 $_xfer_delta ? libsvn_fetch_delta
(@_) : libsvn_fetch_full
(@_);
3078 sub libsvn_fetch_delta
{
3079 my ($last_commit, $paths, $rev, $author, $date, $msg) = @_;
3080 my $pool = SVN
::Pool
->new;
3081 my $ed = SVN
::Git
::Fetcher
->new({ c
=> $last_commit, q
=> $_q });
3082 my $reporter = $SVN->do_update($rev, '', 1, $ed, $pool);
3083 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef) : ();
3084 my (undef, $last_rev, undef) = cmt_metadata
($last_commit);
3085 $reporter->set_path('', $last_rev, 0, @lock, $pool);
3086 $reporter->finish_report($pool);
3088 unless ($ed->{git_commit_ok
}) {
3089 die "SVN connection failed somewhere...\n";
3091 libsvn_log_entry
($rev, $author, $date, $msg, [$last_commit], $ed);
3094 sub libsvn_fetch_full
{
3095 my ($last_commit, $paths, $rev, $author, $date, $msg) = @_;
3096 open my $gui, '| git-update-index -z --index-info' or croak
$!;
3098 my $ut = { empty
=> {}, dir_prop
=> {}, file_prop
=> {} };
3099 my $p = $SVN->{svn_path
};
3100 foreach my $f (keys %$paths) {
3101 my $m = $paths->{$f}->action();
3103 $f =~ s
#^/\Q$p\E/##;
3104 next if $f =~ m
#^/#;
3108 if ($m =~ /^[DR]$/) {
3109 my $t = process_rm
($gui, $last_commit, $f, $_q);
3111 $ut->{empty
}->{$f} = 0 if $t == $SVN::Node
::dir
;
3114 # 'R' can be file replacements, too, right?
3116 my $pool = SVN
::Pool
->new;
3117 my $t = $SVN->check_path($f, $rev, $pool);
3118 if ($t == $SVN::Node
::file
) {
3119 if ($m =~ /^[AMR]$/) {
3122 die "Unrecognized action: $m, ($f r$rev)\n";
3124 } elsif ($t == $SVN::Node
::dir
&& $m =~ /^[AR]$/) {
3126 libsvn_traverse
($gui, '', $f, $rev, \
@traversed, $ut);
3128 foreach (@traversed) {
3132 my ($dir, $file) = ($f =~ m
#^(.*?)/?([^/]+)$#);
3133 delete $ut->{empty
}->{$dir};
3134 $ut->{empty
}->{$f} = 1;
3139 foreach (keys %amr) {
3140 libsvn_get_file
($gui, $_, $rev, $amr{$_}, $ut);
3141 my ($d) = ($_ =~ m
#^(.*?)/?(?:[^/]+)$#);
3142 delete $ut->{empty
}->{$d};
3144 unless (exists $ut->{dir_prop
}->{''}) {
3145 my $pool = SVN
::Pool
->new;
3146 my (undef, undef, $props) = $SVN->get_dir('', $rev, $pool);
3147 %{$ut->{dir_prop
}->{''}} = %$props;
3150 close $gui or croak
$?
;
3151 libsvn_log_entry
($rev, $author, $date, $msg, [$last_commit], $ut);
3154 sub svn_grab_base_rev
{
3155 defined(my $pid = open my $fh, '-|') or croak
$!;
3157 open my $null, '>', '/dev/null' or croak
$!;
3158 open STDERR
, '>&', $null or croak
$!;
3159 exec qw
/git-rev-parse --verify/,"refs/remotes/$GIT_SVN^0"
3162 chomp(my $c = do { local $/; <$fh> });
3164 if (defined $c && length $c) {
3165 my ($url, $rev, $uuid) = cmt_metadata
($c);
3166 return ($rev, $c) if defined $rev;
3168 if ($_no_metadata) {
3169 my $offset = -41; # from tail
3171 open my $fh, '<', $REVDB or
3172 die "--no-metadata specified and $REVDB not readable\n";
3173 seek $fh, $offset, 2;
3175 defined $rl or return (undef, undef);
3177 while ($c ne $rl && tell $fh != 0) {
3179 seek $fh, $offset, 2;
3181 defined $rl or return (undef, undef);
3185 croak
$! if ($rev < -1);
3186 $rev = ($rev - 41) / 41;
3187 close $fh or croak
$!;
3190 return (undef, undef);
3193 sub libsvn_parse_revision
{
3195 my $head = $SVN->get_latest_revnum();
3196 if (!defined $_revision || $_revision eq 'BASE:HEAD') {
3197 return ($base + 1, $head) if (defined $base);
3200 return ($1, $2) if ($_revision =~ /^(\d+):(\d+)$/);
3201 return ($_revision, $_revision) if ($_revision =~ /^\d+$/);
3202 if ($_revision =~ /^BASE:(\d+)$/) {
3203 return ($base + 1, $1) if (defined $base);
3206 return ($1, $head) if ($_revision =~ /^(\d+):HEAD$/);
3207 die "revision argument: $_revision not understood by git-svn\n",
3208 "Try using the command-line svn client instead\n";
3211 sub libsvn_traverse
{
3212 my ($gui, $pfx, $path, $rev, $files, $untracked) = @_;
3213 my $cwd = length $pfx ?
"$pfx/$path" : $path;
3214 my $pool = SVN
::Pool
->new;
3215 $cwd =~ s
#^\Q$SVN->{svn_path}\E##;
3217 my ($dirent, $r, $props) = $SVN->get_dir($cwd, $rev, $pool);
3218 %{$untracked->{dir_prop
}->{$cwd}} = %$props;
3219 foreach my $d (keys %$dirent) {
3220 my $t = $dirent->{$d}->kind;
3221 if ($t == $SVN::Node
::dir
) {
3222 my $i = libsvn_traverse
($gui, $cwd, $d, $rev,
3223 $files, $untracked);
3227 $untracked->{empty
}->{"$cwd/$d"} = 1;
3229 } elsif ($t == $SVN::Node
::file
) {
3231 my $file = "$cwd/$d";
3232 if (defined $files) {
3233 push @
$files, $file;
3235 libsvn_get_file
($gui, $file, $rev, 'A',
3237 my ($dir) = ($file =~ m
#^(.*?)/?(?:[^/]+)$#);
3238 delete $untracked->{empty
}->{$dir};
3246 sub libsvn_traverse_ignore
{
3247 my ($fh, $path, $r) = @_;
3249 my $pool = SVN
::Pool
->new;
3250 my ($dirent, undef, $props) = $SVN->get_dir($path, $r, $pool);
3252 $p =~ s
#^\Q$SVN->{svn_path}\E/##;
3253 print $fh length $p ?
"\n# $p\n" : "\n# /\n";
3254 if (my $s = $props->{'svn:ignore'}) {
3255 $s =~ s/[\r\n]+/\n/g;
3257 if (length $p == 0) {
3261 $s =~ s
#\n#\n/$p/#g;
3262 print $fh "/$p/$s\n";
3265 foreach (sort keys %$dirent) {
3266 next if $dirent->{$_}->kind != $SVN::Node
::dir
;
3267 libsvn_traverse_ignore
($fh, "$path/$_", $r);
3273 my ($path, $r0, $r1) = @_;
3274 return 1 if $r0 == $r1;
3277 # should be OK to use Pool here (r1 - r0) should be small
3278 my $pool = SVN
::Pool
->new;
3279 libsvn_get_log
($SVN, [$path], $r0, $r1,
3280 0, 0, 1, sub {$nr++}, $pool);
3283 my ($url, undef) = repo_path_split
($SVN_URL);
3284 my $svn_log = svn_log_raw
("$url/$path","-r$r0:$r1");
3285 while (next_log_entry
($svn_log)) { $nr++ }
3286 close $svn_log->{fh
};
3288 return 0 if ($nr > 1);
3292 sub libsvn_find_parent_branch
{
3293 my ($paths, $rev, $author, $date, $msg) = @_;
3294 my $svn_path = '/'.$SVN->{svn_path
};
3296 # look for a parent from another branch:
3297 my $i = $paths->{$svn_path} or return;
3298 my $branch_from = $i->copyfrom_path or return;
3299 my $r = $i->copyfrom_rev;
3300 print STDERR
"Found possible branch point: ",
3301 "$branch_from => $svn_path, $r\n";
3302 $branch_from =~ s
#^/##;
3304 read_url_paths_all
($l_map, '', "$GIT_DIR/svn");
3305 my $url = $SVN->{repos_root
};
3306 defined $l_map->{$url} or return;
3307 my $id = $l_map->{$url}->{$branch_from};
3308 if (!defined $id && $_follow_parent) {
3309 print STDERR
"Following parent: $branch_from\@$r\n";
3310 # auto create a new branch and follow it
3311 $id = basename
($branch_from);
3312 $id .= '@'.$r if -r
"$GIT_DIR/svn/$id";
3313 while (-r
"$GIT_DIR/svn/$id") {
3314 # just grow a tail if we're not unique enough :x
3318 return unless defined $id;
3320 my ($r0, $parent) = find_rev_before
($r,$id,1);
3321 if ($_follow_parent && (!defined $r0 || !defined $parent)) {
3322 defined(my $pid = fork) or croak
$!;
3324 $GIT_SVN = $ENV{GIT_SVN_ID
} = $id;
3326 $SVN_URL = "$url/$branch_from";
3329 # we can't assume SVN_URL exists at r+1:
3330 $_revision = "0:$r";
3336 ($r0, $parent) = find_rev_before
($r,$id,1);
3338 return unless (defined $r0 && defined $parent);
3339 if (revisions_eq
($branch_from, $r0, $r)) {
3340 unlink $GIT_SVN_INDEX;
3341 print STDERR
"Found branch parent: ($GIT_SVN) $parent\n";
3342 sys
(qw
/git-read-tree/, $parent);
3343 unless (libsvn_can_do_switch
()) {
3344 return libsvn_fetch_full
($parent, $paths, $rev,
3345 $author, $date, $msg);
3347 # do_switch works with svn/trunk >= r22312, but that is not
3348 # included with SVN 1.4.2 (the latest version at the moment),
3349 # so we can't rely on it.
3350 my $ra = libsvn_connect
("$url/$branch_from");
3351 my $ed = SVN
::Git
::Fetcher
->new({c
=> $parent, q
=> $_q});
3352 my $pool = SVN
::Pool
->new;
3353 my $reporter = $ra->do_switch($rev, '', 1, $SVN->{url
},
3355 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef) : ();
3356 $reporter->set_path('', $r0, 0, @lock, $pool);
3357 $reporter->finish_report($pool);
3359 unless ($ed->{git_commit_ok
}) {
3360 die "SVN connection failed somewhere...\n";
3362 return libsvn_log_entry
($rev, $author, $date, $msg, [$parent]);
3364 print STDERR
"Nope, branch point not imported or unknown\n";
3368 sub libsvn_get_log
{
3369 my ($ra, @args) = @_;
3370 $args[4]-- if $args[4] && $_xfer_delta && ! $_follow_parent;
3371 if ($SVN::Core
::VERSION
le '1.2.0') {
3372 splice(@args, 3, 1);
3374 $ra->get_log(@args);
3377 sub libsvn_new_tree
{
3378 if (my $log_entry = libsvn_find_parent_branch
(@_)) {
3381 my ($paths, $rev, $author, $date, $msg) = @_;
3384 my $pool = SVN
::Pool
->new;
3385 my $ed = SVN
::Git
::Fetcher
->new({q
=> $_q});
3386 my $reporter = $SVN->do_update($rev, '', 1, $ed, $pool);
3387 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef) : ();
3388 $reporter->set_path('', $rev, 1, @lock, $pool);
3389 $reporter->finish_report($pool);
3391 unless ($ed->{git_commit_ok
}) {
3392 die "SVN connection failed somewhere...\n";
3396 $ut = { empty
=> {}, dir_prop
=> {}, file_prop
=> {} };
3397 open my $gui, '| git-update-index -z --index-info' or croak
$!;
3398 libsvn_traverse
($gui, '', $SVN->{svn_path
}, $rev, undef, $ut);
3399 close $gui or croak
$?
;
3401 libsvn_log_entry
($rev, $author, $date, $msg, [], $ut);
3404 sub find_graft_path_commit
{
3405 my ($tree_paths, $p1, $r1) = @_;
3406 foreach my $x (keys %$tree_paths) {
3407 next unless ($p1 =~ /^\Q$x\E/);
3408 my $i = $tree_paths->{$x};
3409 my ($r0, $parent) = find_rev_before
($r1,$i,1);
3410 return $parent if (defined $r0 && $r0 == $r1);
3411 print STDERR
"r$r1 of $i not imported\n";
3417 sub find_graft_path_parents
{
3418 my ($grafts, $tree_paths, $c, $p0, $r0) = @_;
3419 foreach my $x (keys %$tree_paths) {
3420 next unless ($p0 =~ /^\Q$x\E/);
3421 my $i = $tree_paths->{$x};
3422 my ($r, $parent) = find_rev_before
($r0, $i, 1);
3423 if (defined $r && defined $parent && revisions_eq
($x,$r,$r0)) {
3424 my ($url_b, undef, $uuid_b) = cmt_metadata
($c);
3425 my ($url_a, undef, $uuid_a) = cmt_metadata
($parent);
3426 next if ($url_a && $url_b && $url_a eq $url_b &&
3427 $uuid_b eq $uuid_a);
3428 $grafts->{$c}->{$parent} = 1;
3433 sub libsvn_graft_file_copies
{
3434 my ($grafts, $tree_paths, $path, $paths, $rev) = @_;
3435 foreach (keys %$paths) {
3436 my $i = $paths->{$_};
3437 my ($m, $p0, $r0) = ($i->action, $i->copyfrom_path,
3439 next unless (defined $p0 && defined $r0);
3444 my $c = find_graft_path_commit
($tree_paths, $p1, $rev);
3446 find_graft_path_parents
($grafts, $tree_paths, $c, $p0, $r0);
3451 my $old = $ENV{GIT_INDEX_FILE
};
3452 $ENV{GIT_INDEX_FILE
} = shift;
3459 $ENV{GIT_INDEX_FILE
} = $old;
3461 delete $ENV{GIT_INDEX_FILE
};
3465 sub libsvn_commit_cb
{
3466 my ($rev, $date, $committer, $c, $msg, $r_last, $cmt_last) = @_;
3467 if ($_optimize_commits && $rev == ($r_last + 1)) {
3468 my $log = libsvn_log_entry
($rev,$committer,$date,$msg);
3469 $log->{tree
} = get_tree_from_treeish
($c);
3470 my $cmt = git_commit
($log, $cmt_last, $c);
3471 my @diff = safe_qx
('git-diff-tree', $cmt, $c);
3473 print STDERR
"Trees differ: $cmt $c\n",
3474 join('',@diff),"\n";
3482 sub libsvn_ls_fullurl
{
3483 my $fullurl = shift;
3484 my $ra = libsvn_connect
($fullurl);
3486 my $pool = SVN
::Pool
->new;
3487 my $r = defined $_revision ?
$_revision : $ra->get_latest_revnum;
3488 my ($dirent, undef, undef) = $ra->get_dir('', $r, $pool);
3489 foreach my $d (keys %$dirent) {
3490 if ($dirent->{$d}->kind == $SVN::Node
::dir
) {
3491 push @ret, "$d/"; # add '/' for compat with cli svn
3499 sub libsvn_skip_unknown_revs
{
3501 my $errno = $err->apr_err();
3502 # Maybe the branch we're tracking didn't
3503 # exist when the repo started, so it's
3504 # not an error if it doesn't, just continue
3506 # Wonderfully consistent library, eh?
3507 # 160013 - svn:// and file://
3508 # 175002 - http(s)://
3509 # 175007 - http(s):// (this repo required authorization, too...)
3510 # More codes may be discovered later...
3511 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
3514 croak
"Error from SVN, ($errno): ", $err->expanded_message,"\n";
3517 # Tie::File seems to be prone to offset errors if revisions get sparse,
3518 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
3519 # one of my favorite modules is out :< Next up would be one of the DBM
3520 # modules, but I'm not sure which is most portable... So I'll just
3521 # go with something that's plain-text, but still capable of
3522 # being randomly accessed. So here's my ultra-simple fixed-width
3523 # database. All records are 40 characters + "\n", so it's easy to seek
3524 # to a revision: (41 * rev) is the byte offset.
3525 # A record of 40 0s denotes an empty revision.
3526 # And yes, it's still pretty fast (faster than Tie::File).
3528 my ($file, $rev, $commit) = @_;
3529 length $commit == 40 or croak
"arg3 must be a full SHA1 hexsum\n";
3530 open my $fh, '+<', $file or croak
$!;
3531 my $offset = $rev * 41;
3532 # assume that append is the common case:
3533 seek $fh, 0, 2 or croak
$!;
3535 if ($pos < $offset) {
3536 print $fh (('0' x
40),"\n") x
(($offset - $pos) / 41);
3538 seek $fh, $offset, 0 or croak
$!;
3539 print $fh $commit,"\n";
3540 close $fh or croak
$!;
3544 my ($file, $rev) = @_;
3546 my $offset = $rev * 41;
3547 open my $fh, '<', $file or croak
$!;
3548 seek $fh, $offset, 0;
3549 if (tell $fh == $offset) {
3550 $ret = readline $fh;
3553 $ret = undef if ($ret =~ /^0{40}$/);
3556 close $fh or croak
$!;
3560 sub copy_remote_ref
{
3561 my $origin = $_cp_remote ?
$_cp_remote : 'origin';
3562 my $ref = "refs/remotes/$GIT_SVN";
3563 if (safe_qx
('git-ls-remote', $origin, $ref)) {
3564 sys
(qw
/git fetch/, $origin, "$ref:$ref");
3565 } elsif ($_cp_remote && !$_upgrade) {
3566 die "Unable to find remote reference: ",
3567 "refs/remotes/$GIT_SVN on $origin\n";
3570 package SVN
::Git
::Fetcher
;
3577 # file baton members: path, mode_a, mode_b, pool, fh, blob, base
3579 my ($class, $git_svn) = @_;
3580 my $self = SVN
::Delta
::Editor
->new;
3581 bless $self, $class;
3582 open my $gui, '| git-update-index -z --index-info' or croak
$!;
3583 $self->{gui
} = $gui;
3584 $self->{c
} = $git_svn->{c
} if exists $git_svn->{c
};
3585 $self->{q
} = $git_svn->{q
};
3586 $self->{empty
} = {};
3587 $self->{dir_prop
} = {};
3588 $self->{file_prop
} = {};
3589 $self->{absent_dir
} = {};
3590 $self->{absent_file
} = {};
3591 require Digest
::MD5
;
3599 sub open_directory
{
3600 my ($self, $path, $pb, $rev) = @_;
3605 my ($self, $path, $rev, $pb) = @_;
3606 my $t = process_rm
($self->{gui
}, $self->{c
}, $path, $self->{q
});
3607 $self->{empty
}->{$path} = 0 if $t == $SVN::Node
::dir
;
3612 my ($self, $path, $pb, $rev) = @_;
3613 my ($mode, $blob) = (safe_qx
('git-ls-tree',$self->{c
},'--',$path)
3614 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
3615 unless (defined $mode && defined $blob) {
3616 die "$path was not found in commit $self->{c} (r$rev)\n";
3618 { path
=> $path, mode_a
=> $mode, mode_b
=> $mode, blob
=> $blob,
3619 pool
=> SVN
::Pool
->new, action
=> 'M' };
3623 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
3624 my ($dir, $file) = ($path =~ m
#^(.*?)/?([^/]+)$#);
3625 delete $self->{empty
}->{$dir};
3626 { path
=> $path, mode_a
=> 100644, mode_b
=> 100644,
3627 pool
=> SVN
::Pool
->new, action
=> 'A' };
3631 my ($self, $path, $cp_path, $cp_rev) = @_;
3632 my ($dir, $file) = ($path =~ m
#^(.*?)/?([^/]+)$#);
3633 delete $self->{empty
}->{$dir};
3634 $self->{empty
}->{$path} = 1;
3638 sub change_dir_prop
{
3639 my ($self, $db, $prop, $value) = @_;
3640 $self->{dir_prop
}->{$db->{path
}} ||= {};
3641 $self->{dir_prop
}->{$db->{path
}}->{$prop} = $value;
3645 sub absent_directory
{
3646 my ($self, $path, $pb) = @_;
3647 $self->{absent_dir
}->{$pb->{path
}} ||= [];
3648 push @
{$self->{absent_dir
}->{$pb->{path
}}}, $path;
3653 my ($self, $path, $pb) = @_;
3654 $self->{absent_file
}->{$pb->{path
}} ||= [];
3655 push @
{$self->{absent_file
}->{$pb->{path
}}}, $path;
3659 sub change_file_prop
{
3660 my ($self, $fb, $prop, $value) = @_;
3661 if ($prop eq 'svn:executable') {
3662 if ($fb->{mode_b
} != 120000) {
3663 $fb->{mode_b
} = defined $value ?
100755 : 100644;
3665 } elsif ($prop eq 'svn:special') {
3666 $fb->{mode_b
} = defined $value ?
120000 : 100644;
3668 $self->{file_prop
}->{$fb->{path
}} ||= {};
3669 $self->{file_prop
}->{$fb->{path
}}->{$prop} = $value;
3674 sub apply_textdelta
{
3675 my ($self, $fb, $exp) = @_;
3676 my $fh = IO
::File
->new_tmpfile;
3678 # $fh gets auto-closed() by SVN::TxDelta::apply(),
3679 # (but $base does not,) so dup() it for reading in close_file
3680 open my $dup, '<&', $fh or croak
$!;
3681 my $base = IO
::File
->new_tmpfile;
3682 $base->autoflush(1);
3684 defined (my $pid = fork) or croak
$!;
3686 open STDOUT
, '>&', $base or croak
$!;
3687 print STDOUT
'link ' if ($fb->{mode_a
} == 120000);
3688 exec qw
/git-cat-file blob/, $fb->{blob
} or croak
$!;
3694 seek $base, 0, 0 or croak
$!;
3695 my $md5 = Digest
::MD5
->new;
3696 $md5->addfile($base);
3697 my $got = $md5->hexdigest;
3698 die "Checksum mismatch: $fb->{path} $fb->{blob}\n",
3700 " got: $got\n" if ($got ne $exp);
3703 seek $base, 0, 0 or croak
$!;
3705 $fb->{base
} = $base;
3706 [ SVN
::TxDelta
::apply
($base, $fh, undef, $fb->{path
}, $fb->{pool
}) ];
3710 my ($self, $fb, $exp) = @_;
3712 my $path = $fb->{path
};
3713 if (my $fh = $fb->{fh
}) {
3714 seek($fh, 0, 0) or croak
$!;
3715 my $md5 = Digest
::MD5
->new;
3717 my $got = $md5->hexdigest;
3718 die "Checksum mismatch: $path\n",
3719 "expected: $exp\n got: $got\n" if ($got ne $exp);
3720 seek($fh, 0, 0) or croak
$!;
3721 if ($fb->{mode_b
} == 120000) {
3722 read($fh, my $buf, 5) == 5 or croak
$!;
3723 $buf eq 'link ' or die "$path has mode 120000",
3724 "but is not a link\n";
3726 defined(my $pid = open my $out,'-|') or die "Can't fork: $!\n";
3728 open STDIN
, '<&', $fh or croak
$!;
3729 exec qw
/git-hash-object -w --stdin/ or croak
$!;
3731 chomp($hash = do { local $/; <$out> });
3732 close $out or croak
$!;
3733 close $fh or croak
$!;
3734 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
3735 close $fb->{base
} or croak
$!;
3737 $hash = $fb->{blob
} or die "no blob information\n";
3740 my $gui = $self->{gui
};
3741 print $gui "$fb->{mode_b} $hash\t$path\0" or croak
$!;
3742 print "\t$fb->{action}\t$path\n" if $fb->{action
} && ! $self->{q
};
3749 $self->SUPER::abort_edit
(@_);
3754 close $self->{gui
} or croak
$!;
3755 $self->{git_commit_ok
} = 1;
3756 $self->SUPER::close_edit
(@_);
3759 package SVN
::Git
::Editor
;
3768 my $git_svn = shift;
3769 my $self = SVN
::Delta
::Editor
->new(@_);
3770 bless $self, $class;
3771 foreach (qw
/svn_path c r ra /) {
3772 die "$_ required!\n" unless (defined $git_svn->{$_});
3773 $self->{$_} = $git_svn->{$_};
3775 $self->{pool
} = SVN
::Pool
->new;
3776 $self->{bat
} = { '' => $self->open_root($self->{r
}, $self->{pool
}) };
3778 require Digest
::MD5
;
3783 return ($_[0] =~ m
#^(.*?)/?([^/]+)$#);
3787 (defined $_[1] && length $_[1]) ?
$_[1] : ''
3791 my ($self, $path) = @_;
3792 $self->{ra
}->{url
} . '/' . $self->repo_path($path);
3796 my ($self, $q) = @_;
3797 my $rm = $self->{rm
};
3798 delete $rm->{''}; # we never delete the url we're tracking
3801 foreach (keys %$rm) {
3802 my @d = split m
#/#, $_;
3806 $c .= '/' . shift @d;
3810 delete $rm->{$self->{svn_path
}};
3811 delete $rm->{''}; # we never delete the url we're tracking
3814 defined(my $pid = open my $fh,'-|') or croak
$!;
3816 exec qw
/git-ls-tree --name-only -r -z/, $self->{c
} or croak
$!;
3821 my @dn = split m
#/#, $_;
3823 delete $rm->{join '/', @dn};
3832 my ($r, $p, $bat) = ($self->{r
}, $self->{pool
}, $self->{bat
});
3833 foreach my $d (sort { $b =~ tr
#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
3834 $self->close_directory($bat->{$d}, $p);
3835 my ($dn) = ($d =~ m
#^(.*?)/?(?:[^/]+)$#);
3836 print "\tD+\t/$d/\n" unless $q;
3837 $self->SUPER::delete_entry
($d, $r, $bat->{$dn}, $p);
3842 sub open_or_add_dir
{
3843 my ($self, $full_path, $baton) = @_;
3844 my $p = SVN
::Pool
->new;
3845 my $t = $self->{ra
}->check_path($full_path, $self->{r
}, $p);
3847 if ($t == $SVN::Node
::none
) {
3848 return $self->add_directory($full_path, $baton,
3849 undef, -1, $self->{pool
});
3850 } elsif ($t == $SVN::Node
::dir
) {
3851 return $self->open_directory($full_path, $baton,
3852 $self->{r
}, $self->{pool
});
3854 print STDERR
"$full_path already exists in repository at ",
3855 "r$self->{r} and it is not a directory (",
3856 ($t == $SVN::Node
::file ?
'file' : 'unknown'),"/$t)\n";
3861 my ($self, $path) = @_;
3862 my $bat = $self->{bat
};
3863 $path = $self->repo_path($path);
3864 return $bat->{''} unless (length $path);
3865 my @p = split m
#/+#, $path;
3867 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
3870 $c .= '/' . shift @p;
3871 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
3877 my ($self, $m, $q) = @_;
3878 my ($dir, $file) = split_path
($m->{file_b
});
3879 my $pbat = $self->ensure_path($dir);
3880 my $fbat = $self->add_file($self->repo_path($m->{file_b
}), $pbat,
3882 print "\tA\t$m->{file_b}\n" unless $q;
3883 $self->chg_file($fbat, $m);
3884 $self->close_file($fbat,undef,$self->{pool
});
3888 my ($self, $m, $q) = @_;
3889 my ($dir, $file) = split_path
($m->{file_b
});
3890 my $pbat = $self->ensure_path($dir);
3891 my $fbat = $self->add_file($self->repo_path($m->{file_b
}), $pbat,
3892 $self->url_path($m->{file_a
}), $self->{r
});
3893 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $q;
3894 $self->chg_file($fbat, $m);
3895 $self->close_file($fbat,undef,$self->{pool
});
3899 my ($self, $path, $pbat) = @_;
3900 my $rpath = $self->repo_path($path);
3901 my ($dir, $file) = split_path
($rpath);
3902 $self->{rm
}->{$dir} = 1;
3903 $self->SUPER::delete_entry
($rpath, $self->{r
}, $pbat, $self->{pool
});
3907 my ($self, $m, $q) = @_;
3908 my ($dir, $file) = split_path
($m->{file_b
});
3909 my $pbat = $self->ensure_path($dir);
3910 my $fbat = $self->add_file($self->repo_path($m->{file_b
}), $pbat,
3911 $self->url_path($m->{file_a
}), $self->{r
});
3912 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $q;
3913 $self->chg_file($fbat, $m);
3914 $self->close_file($fbat,undef,$self->{pool
});
3916 ($dir, $file) = split_path
($m->{file_a
});
3917 $pbat = $self->ensure_path($dir);
3918 $self->delete_entry($m->{file_a
}, $pbat);
3922 my ($self, $m, $q) = @_;
3923 my ($dir, $file) = split_path
($m->{file_b
});
3924 my $pbat = $self->ensure_path($dir);
3925 my $fbat = $self->open_file($self->repo_path($m->{file_b
}),
3926 $pbat,$self->{r
},$self->{pool
});
3927 print "\t$m->{chg}\t$m->{file_b}\n" unless $q;
3928 $self->chg_file($fbat, $m);
3929 $self->close_file($fbat,undef,$self->{pool
});
3932 sub T
{ shift->M(@_) }
3934 sub change_file_prop
{
3935 my ($self, $fbat, $pname, $pval) = @_;
3936 $self->SUPER::change_file_prop
($fbat, $pname, $pval, $self->{pool
});
3940 my ($self, $fbat, $m) = @_;
3941 if ($m->{mode_b
} =~ /755$/ && $m->{mode_a
} !~ /755$/) {
3942 $self->change_file_prop($fbat,'svn:executable','*');
3943 } elsif ($m->{mode_b
} !~ /755$/ && $m->{mode_a
} =~ /755$/) {
3944 $self->change_file_prop($fbat,'svn:executable',undef);
3946 my $fh = IO
::File
->new_tmpfile or croak
$!;
3947 if ($m->{mode_b
} =~ /^120/) {
3948 print $fh 'link ' or croak
$!;
3949 $self->change_file_prop($fbat,'svn:special','*');
3950 } elsif ($m->{mode_a
} =~ /^120/ && $m->{mode_b
} !~ /^120/) {
3951 $self->change_file_prop($fbat,'svn:special',undef);
3953 defined(my $pid = fork) or croak
$!;
3955 open STDOUT
, '>&', $fh or croak
$!;
3956 exec qw
/git-cat-file blob/, $m->{sha1_b
} or croak
$!;
3960 $fh->flush == 0 or croak
$!;
3961 seek $fh, 0, 0 or croak
$!;
3963 my $md5 = Digest
::MD5
->new;
3964 $md5->addfile($fh) or croak
$!;
3965 seek $fh, 0, 0 or croak
$!;
3967 my $exp = $md5->hexdigest;
3968 my $pool = SVN
::Pool
->new;
3969 my $atd = $self->apply_textdelta($fbat, undef, $pool);
3970 my $got = SVN
::TxDelta
::send_stream
($fh, @
$atd, $pool);
3971 die "Checksum mismatch\nexpected: $exp\ngot: $got\n" if ($got ne $exp);
3974 close $fh or croak
$!;
3978 my ($self, $m, $q) = @_;
3979 my ($dir, $file) = split_path
($m->{file_b
});
3980 my $pbat = $self->ensure_path($dir);
3981 print "\tD\t$m->{file_b}\n" unless $q;
3982 $self->delete_entry($m->{file_b
}, $pbat);
3987 my ($p,$bat) = ($self->{pool
}, $self->{bat
});
3988 foreach (sort { $b =~ tr
#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
3989 $self->close_directory($bat->{$_}, $p);
3991 $self->SUPER::close_edit
($p);
3997 $self->SUPER::abort_edit
($self->{pool
});
3998 $self->{pool
}->clear;
4005 $svn_log hashref
(as returned by svn_log_raw
)
4007 fh
=> file handle of the
log file
,
4008 state => state of the
log file parser
(sep
/msg/rev
/msg_start
...)
4011 $log_msg hashref as returned by next_log_entry
($svn_log)
4013 msg
=> 'whitespace-formatted log entry
4014 ', # trailing newline is preserved
4015 revision
=> '8', # integer
4016 date
=> '2004-02-24T17:01:44.108345Z', # commit date
4017 author
=> 'committer name'
4021 @mods = array of diff
-index line hashes
, each element represents one line
4022 of diff
-index output
4024 diff
-index line
($m hash
)
4026 mode_a
=> first column of diff
-index output
, no leading
':',
4027 mode_b
=> second column of diff
-index output
,
4028 sha1_b
=> sha1sum of the final blob
,
4029 chg
=> change type
[MCRADT
],
4030 file_a
=> original file name of a file
(iff chg is
'C' or 'R')
4031 file_b
=> new
/current file name of a file
(any chg
)
4035 # retval of read_url_paths{,_all}();
4037 # repository root url
4038 'https://svn.musicpd.org' => {
4039 # repository path # GIT_SVN_ID
4040 'mpd/trunk' => 'trunk',
4041 'mpd/tags/0.11.5' => 'tags/0.11.5',
4046 I don
't trust the each() function on unless I created %hash myself
4047 because the internal iterator may not have started at base.