2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
6 use vars
qw/ $AUTHOR $VERSION
7 $sha1 $sha1_short $_revision $_repository
9 $AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
10 $VERSION = '@@GIT_VERSION@@';
12 # From which subdir have we been invoked?
13 my $cmd_dir_prefix = eval {
14 command_oneline
([qw/rev-parse --show-prefix/], STDERR
=> 0)
17 my $git_dir_user_set = 1 if defined $ENV{GIT_DIR
};
18 $ENV{GIT_DIR
} ||= '.git';
19 $Git::SVN
::default_repo_id
= 'svn';
20 $Git::SVN
::default_ref_id
= $ENV{GIT_SVN_ID
} || 'git-svn';
21 $Git::SVN
::Ra
::_log_window_size
= 100;
23 $Git::SVN
::Log
::TZ
= $ENV{TZ
};
25 $| = 1; # unbuffer STDOUT
27 sub fatal
(@
) { print STDERR
"@_\n"; exit 1 }
28 require SVN
::Core
; # use()-ing this causes segfaults for me... *shrug*
31 if ($SVN::Core
::VERSION
lt '1.1.0') {
32 fatal
"Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
34 push @Git::SVN
::Ra
::ISA
, 'SVN::Ra';
35 push @SVN::Git
::Editor
::ISA
, 'SVN::Delta::Editor';
36 push @SVN::Git
::Fetcher
::ISA
, 'SVN::Delta::Editor';
40 use File
::Basename
qw/dirname basename/;
41 use File
::Path
qw/mkpath/;
42 use Getopt
::Long
qw/:config gnu_getopt no_ignore_case auto_abbrev/;
47 # import functions from Git into our packages, en masse
49 foreach (qw/command command_oneline command_noisy command_output_pipe
50 command_input_pipe command_close_pipe
/) {
51 for my $package ( qw(SVN
::Git
::Editor SVN
::Git
::Fetcher
52 Git
::SVN
::Migration Git
::SVN
::Log Git
::SVN
),
54 *{"${package}::$_"} = \
&{"Git::$_"};
61 $sha1 = qr/[a-f\d]{40}/;
62 $sha1_short = qr/[a-f\d]{4,40}/;
63 my ($_stdin, $_help, $_edit,
66 $_version, $_fetch_all, $_no_rebase,
67 $_merge, $_strategy, $_dry_run, $_local,
68 $_prefix, $_no_checkout, $_url, $_verbose,
69 $_git_format, $_commit_url);
70 $Git::SVN
::_follow_parent
= 1;
71 my %remote_opts = ( 'username=s' => \
$Git::SVN
::Prompt
::_username
,
72 'config-dir=s' => \
$Git::SVN
::Ra
::config_dir
,
73 'no-auth-cache' => \
$Git::SVN
::Prompt
::_no_auth_cache
);
74 my %fc_opts = ( 'follow-parent|follow!' => \
$Git::SVN
::_follow_parent
,
75 'authors-file|A=s' => \
$_authors,
76 'repack:i' => \
$Git::SVN
::_repack
,
77 'noMetadata' => \
$Git::SVN
::_no_metadata
,
78 'useSvmProps' => \
$Git::SVN
::_use_svm_props
,
79 'useSvnsyncProps' => \
$Git::SVN
::_use_svnsync_props
,
80 'log-window-size=i' => \
$Git::SVN
::Ra
::_log_window_size
,
81 'no-checkout' => \
$_no_checkout,
83 'repack-flags|repack-args|repack-opts=s' =>
84 \
$Git::SVN
::_repack_flags
,
85 'use-log-author' => \
$Git::SVN
::_use_log_author
,
86 'add-author-from' => \
$Git::SVN
::_add_author_from
,
89 my ($_trunk, $_tags, $_branches, $_stdlayout);
91 my %init_opts = ( 'template=s' => \
$_template, 'shared:s' => \
$_shared,
92 'trunk|T=s' => \
$_trunk, 'tags|t=s' => \
$_tags,
93 'branches|b=s' => \
$_branches, 'prefix=s' => \
$_prefix,
94 'stdlayout|s' => \
$_stdlayout,
95 'minimize-url|m' => \
$Git::SVN
::_minimize_url
,
96 'no-metadata' => sub { $icv{noMetadata
} = 1 },
97 'use-svm-props' => sub { $icv{useSvmProps
} = 1 },
98 'use-svnsync-props' => sub { $icv{useSvnsyncProps
} = 1 },
99 'rewrite-root=s' => sub { $icv{rewriteRoot
} = $_[1] },
101 my %cmt_opts = ( 'edit|e' => \
$_edit,
102 'rmdir' => \
$SVN::Git
::Editor
::_rmdir
,
103 'find-copies-harder' => \
$SVN::Git
::Editor
::_find_copies_harder
,
104 'l=i' => \
$SVN::Git
::Editor
::_rename_limit
,
105 'copy-similarity|C=i'=> \
$SVN::Git
::Editor
::_cp_similarity
109 fetch
=> [ \
&cmd_fetch
, "Download new revisions from SVN",
110 { 'revision|r=s' => \
$_revision,
111 'fetch-all|all' => \
$_fetch_all,
113 clone
=> [ \
&cmd_clone
, "Initialize and fetch revisions",
114 { 'revision|r=s' => \
$_revision,
115 %fc_opts, %init_opts } ],
116 init
=> [ \
&cmd_init
, "Initialize a repo for tracking" .
117 " (requires URL argument)",
119 'multi-init' => [ \
&cmd_multi_init
,
120 "Deprecated alias for ".
121 "'$0 init -T<trunk> -b<branches> -t<tags>'",
123 dcommit
=> [ \
&cmd_dcommit
,
124 'Commit several diffs to merge with upstream',
125 { 'merge|m|M' => \
$_merge,
126 'strategy|s=s' => \
$_strategy,
127 'verbose|v' => \
$_verbose,
128 'dry-run|n' => \
$_dry_run,
129 'fetch-all|all' => \
$_fetch_all,
130 'commit-url=s' => \
$_commit_url,
131 'revision|r=i' => \
$_revision,
132 'no-rebase' => \
$_no_rebase,
133 %cmt_opts, %fc_opts } ],
134 'set-tree' => [ \
&cmd_set_tree
,
135 "Set an SVN repository to a git tree-ish",
136 { 'stdin|' => \
$_stdin, %cmt_opts, %fc_opts, } ],
137 'create-ignore' => [ \
&cmd_create_ignore
,
138 'Create a .gitignore per svn:ignore',
139 { 'revision|r=i' => \
$_revision
141 'propget' => [ \
&cmd_propget
,
142 'Print the value of a property on a file or directory',
143 { 'revision|r=i' => \
$_revision } ],
144 'proplist' => [ \
&cmd_proplist
,
145 'List all properties of a file or directory',
146 { 'revision|r=i' => \
$_revision } ],
147 'show-ignore' => [ \
&cmd_show_ignore
, "Show svn:ignore listings",
148 { 'revision|r=i' => \
$_revision
150 'show-externals' => [ \
&cmd_show_externals
, "Show svn:externals listings",
151 { 'revision|r=i' => \
$_revision
153 'multi-fetch' => [ \
&cmd_multi_fetch
,
154 "Deprecated alias for $0 fetch --all",
155 { 'revision|r=s' => \
$_revision, %fc_opts } ],
156 'migrate' => [ sub { },
157 # no-op, we automatically run this anyways,
158 'Migrate configuration/metadata/layout from
159 previous versions of git-svn',
160 { 'minimize' => \
$Git::SVN
::Migration
::_minimize
,
162 'log' => [ \
&Git
::SVN
::Log
::cmd_show_log
, 'Show commit logs',
163 { 'limit=i' => \
$Git::SVN
::Log
::limit
,
164 'revision|r=s' => \
$_revision,
165 'verbose|v' => \
$Git::SVN
::Log
::verbose
,
166 'incremental' => \
$Git::SVN
::Log
::incremental
,
167 'oneline' => \
$Git::SVN
::Log
::oneline
,
168 'show-commit' => \
$Git::SVN
::Log
::show_commit
,
169 'non-recursive' => \
$Git::SVN
::Log
::non_recursive
,
170 'authors-file|A=s' => \
$_authors,
171 'color' => \
$Git::SVN
::Log
::color
,
172 'pager=s' => \
$Git::SVN
::Log
::pager
174 'find-rev' => [ \
&cmd_find_rev
,
175 "Translate between SVN revision numbers and tree-ish",
177 'rebase' => [ \
&cmd_rebase
, "Fetch and rebase your working directory",
178 { 'merge|m|M' => \
$_merge,
179 'verbose|v' => \
$_verbose,
180 'strategy|s=s' => \
$_strategy,
181 'local|l' => \
$_local,
182 'fetch-all|all' => \
$_fetch_all,
183 'dry-run|n' => \
$_dry_run,
185 'commit-diff' => [ \
&cmd_commit_diff
,
186 'Commit a diff between two trees',
187 { 'message|m=s' => \
$_message,
188 'file|F=s' => \
$_file,
189 'revision|r=s' => \
$_revision,
191 'info' => [ \
&cmd_info
,
192 "Show info about the latest SVN revision
193 on the current branch",
194 { 'url' => \
$_url, } ],
195 'blame' => [ \
&Git
::SVN
::Log
::cmd_blame
,
196 "Show what revision and author last modified each line of a file",
197 { 'git-format' => \
$_git_format } ],
201 for (my $i = 0; $i < @ARGV; $i++) {
202 if (defined $cmd{$ARGV[$i]}) {
209 # make sure we're always running at the top-level working directory
210 unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
211 unless (-d
$ENV{GIT_DIR
}) {
212 if ($git_dir_user_set) {
213 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
214 "but it is not a directory\n";
216 my $git_dir = delete $ENV{GIT_DIR
};
217 chomp(my $cdup = command_oneline
(qw/rev-parse --show-cdup/));
218 unless (length $cdup) {
219 die "Already at toplevel, but $git_dir ",
220 "not found '$cdup'\n";
222 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
223 unless (-d
$git_dir) {
224 die "$git_dir still not found after going to ",
227 $ENV{GIT_DIR
} = $git_dir;
229 $_repository = Git
->repository(Repository
=> $ENV{GIT_DIR
});
232 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
234 read_repo_config
(\
%opts);
235 if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
236 Getopt
::Long
::Configure
('pass_through');
238 my $rv = GetOptions
(%opts, 'help|H|h' => \
$_help, 'version|V' => \
$_version,
239 'minimize-connections' => \
$Git::SVN
::Migration
::_minimize
,
240 'id|i=s' => \
$Git::SVN
::default_ref_id
,
241 'svn-remote|remote|R=s' => sub {
242 $Git::SVN
::no_reuse_existing
= 1;
243 $Git::SVN
::default_repo_id
= $_[1] });
244 exit 1 if (!$rv && $cmd && $cmd ne 'log');
247 version
() if $_version;
248 usage
(1) unless defined $cmd;
249 load_authors
() if $_authors;
251 unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
252 Git
::SVN
::Migration
::migration_check
();
254 Git
::SVN
::init_vars
();
256 Git
::SVN
::verify_remotes_sanity
();
257 $cmd{$cmd}->[0]->(@ARGV);
260 post_fetch_checkout
();
263 ####################### primary functions ######################
265 my $exit = shift || 0;
266 my $fd = $exit ? \
*STDERR
: \
*STDOUT
;
268 git
-svn
- bidirectional operations between a single Subversion tree
and git
269 Usage
: git svn
<command
> [options
] [arguments
]\n
271 print $fd "Available commands:\n" unless $cmd;
273 foreach (sort keys %cmd) {
274 next if $cmd && $cmd ne $_;
275 next if /^multi-/; # don't show deprecated commands
276 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
277 foreach (sort keys %{$cmd{$_}->[2]}) {
278 # mixed-case options are for .git/config only
279 next if /[A-Z]/ && /^[a-z]+$/i;
280 # prints out arguments as they should be passed:
281 my $x = s
#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
282 print $fd ' ' x
21, join(', ', map { length $_ > 1 ?
284 split /\|/,$_)," $x\n";
288 \nGIT_SVN_ID may be set in the environment
or via the
--id
/-i switch to an
289 arbitrary identifier
if you
're tracking multiple SVN branches/repositories in
290 one git repository and want to keep them separate. See git-svn(1) for more
297 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
302 unless (-d $ENV{GIT_DIR}) {
303 my @init_db = ('init
');
304 push @init_db, "--template=$_template" if defined $_template;
305 if (defined $_shared) {
306 if ($_shared =~ /[a-z]/) {
307 push @init_db, "--shared=$_shared";
309 push @init_db, "--shared";
312 command_noisy(@init_db);
313 $_repository = Git->repository(Repository => ".git");
316 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
317 foreach my $i (keys %icv) {
318 die "'$set' and '$i' cannot both be set\n" if $set;
319 next unless defined $icv{$i};
320 command_noisy('config
', "$pfx.$i", $icv{$i});
326 my $repo_path = shift or return;
327 mkpath([$repo_path]) unless -d $repo_path;
328 chdir $repo_path or die "Couldn't
chdir to
$repo_path: $!\n";
329 $ENV{GIT_DIR} = '.git';
330 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
334 my ($url, $path) = @_;
335 if (!defined $path &&
336 (defined $_trunk || defined $_branches || defined $_tags ||
337 defined $_stdlayout) &&
338 $url !~ m#^[a-z\+]+://#) {
341 $path = basename($url) if !defined $path || !length $path;
342 cmd_init($url, $path);
343 Git::SVN::fetch_all($Git::SVN::default_repo_id);
347 if (defined $_stdlayout) {
348 $_trunk = 'trunk' if (!defined $_trunk);
349 $_tags = 'tags' if (!defined $_tags);
350 $_branches = 'branches' if (!defined $_branches);
352 if (defined $_trunk || defined $_branches || defined $_tags) {
353 return cmd_multi_init(@_);
355 my $url = shift or die "SVN repository location required
",
356 "as a command
-line argument
\n";
360 Git::SVN->init($url);
364 if (grep /^\d+=./, @_) {
365 die "'<rev>=<commit>' fetch arguments are
",
366 "no longer supported
.\n";
370 die "Usage
: $0 fetch
[--all
] [svn
-remote
]\n";
372 $remote ||= $Git::SVN::default_repo_id;
376 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
382 if ($_stdin || !@commits) {
383 print "Reading from stdin
...\n";
386 if (/\b($sha1_short)\b/o) {
387 unshift @commits, $1;
392 foreach my $c (@commits) {
393 my @tmp = command('rev-parse',$c);
394 if (scalar @tmp == 1) {
396 } elsif (scalar @tmp > 1) {
397 push @revs, reverse(command('rev-list',@tmp));
399 fatal "Failed to rev
-parse
$c";
402 my $gs = Git::SVN->new;
403 my ($r_last, $cmt_last) = $gs->last_rev_commit;
405 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
406 fatal "There are new revisions that were fetched
",
407 "and need to be merged
(or acknowledged
) ",
408 "before committing
.\nlast rev
: $r_last\n",
409 " current
: $gs->{last_rev
}";
411 $gs->set_tree($_) foreach @revs;
412 print "Done committing
",scalar @revs," revisions to SVN
\n";
418 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
419 'Cannot dcommit with a dirty index. Commit your changes first, '
420 . "or stash them with
`git stash'.\n";
423 my ($url, $rev, $uuid, $gs) = working_head_info($head, \@refs);
425 die "Unable to determine upstream SVN information from ",
426 "$head history.\nPerhaps the repository is empty.";
428 $url = defined $_commit_url ? $_commit_url : $gs->full_url;
429 my $last_rev = $_revision if defined $_revision;
431 print "Committing to $url ...\n";
433 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
434 if ($_no_rebase && scalar(@$linear_refs) > 1) {
435 warn "Attempting to commit more than one change while ",
436 "--no-rebase is enabled.\n",
437 "If these changes depend on each other, re-running ",
438 "without --no-rebase may be required."
440 my $expect_url = $url;
441 Git::SVN::remove_username($expect_url);
443 my $d = shift @$linear_refs or last;
444 unless (defined $last_rev) {
445 (undef, $last_rev, undef) = cmt_metadata("$d~1");
446 unless (defined $last_rev) {
447 fatal "Unable to extract revision information ",
452 print "diff-tree $d~1 $d\n";
455 my %ed_opts = ( r => $last_rev,
456 log => get_commit_entry($d)->{log},
457 ra => Git::SVN::Ra->new($url),
458 config => SVN::Core::config_get_config(
459 $Git::SVN::Ra::config_dir
464 print "Committed r$_[0]\n";
468 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
469 print "No changes\n$d~1 == $d\n";
470 } elsif ($parents->{$d} && @{$parents->{$d}}) {
471 $gs->{inject_parents_dcommit}->{$cmt_rev} =
474 $_fetch_all ? $gs->fetch_all : $gs->fetch;
475 $last_rev = $cmt_rev;
478 # we always want to rebase against the current HEAD,
479 # not any head that was passed to us
480 my @diff = command('diff-tree', $d,
484 @finish = rebase_cmd();
485 print STDERR "W: $d and ", $gs->refname,
486 " differ, using @finish:\n",
487 join("\n", @diff), "\n";
489 print "No changes between current HEAD and ",
491 "\nResetting to the latest ",
493 @finish = qw/reset --mixed/;
495 command_noisy(@finish, $gs->refname);
498 my ($url_, $rev_, $uuid_, $gs_) =
499 working_head_info($head, \@refs);
500 my ($linear_refs_, $parents_) =
501 linearize_history($gs_, \@refs);
502 if (scalar(@$linear_refs) !=
503 scalar(@$linear_refs_)) {
504 fatal "# of revisions changed ",
506 join("\n", @$linear_refs),
508 join("\n", @$linear_refs_), "\n",
509 'If you are attempting to commit ',
510 "merges, try running:\n\t",
511 'git rebase --interactive',
512 '--preserve-merges ',
514 "\nBefore dcommitting";
516 if ($url_ ne $expect_url) {
517 fatal "URL mismatch after rebase: ",
518 "$url_ != $expect_url";
520 if ($uuid_ ne $uuid) {
521 fatal "uuid mismatch after rebase: ",
526 for ($i = 0; $i < scalar @$linear_refs; $i++) {
527 my $new = $linear_refs_->[$i] or next;
529 $parents->{$linear_refs->[$i]};
541 my $revision_or_hash = shift or die "SVN or git revision required ",
542 "as a command-line argument\n";
544 if ($revision_or_hash =~ /^r\d+$/) {
548 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
550 die "Unable to determine upstream SVN information from ",
553 my $desired_revision = substr($revision_or_hash, 1);
554 $result = $gs->rev_map_get($desired_revision, $uuid);
556 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
559 print "$result\n" if $result;
563 command_noisy(qw/update-index --refresh/);
564 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
566 die "Unable to determine upstream SVN information from ",
567 "working tree history\n";
570 print "Remote Branch: " . $gs->refname . "\n";
571 print "SVN URL: " . $url . "\n";
574 if (command(qw/diff-index HEAD --/)) {
575 print STDERR "Cannot rebase with uncommited changes:\n";
576 command_noisy('status');
580 # rebase will checkout for us, so no need to do it explicitly
581 $_no_checkout = 'true';
582 $_fetch_all ? $gs->fetch_all : $gs->fetch;
584 command_noisy(rebase_cmd(), $gs->refname);
587 sub cmd_show_ignore {
588 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
589 $gs ||= Git::SVN->new;
590 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
591 $gs->prop_walk($gs->{path}, $r, sub {
592 my ($gs, $path, $props) = @_;
593 print STDOUT "\n# $path\n";
594 my $s = $props->{'svn:ignore'} or return;
595 $s =~ s/[\r\n]+/\n/g;
602 sub cmd_show_externals {
603 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
604 $gs ||= Git::SVN->new;
605 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
606 $gs->prop_walk($gs->{path}, $r, sub {
607 my ($gs, $path, $props) = @_;
608 print STDOUT "\n# $path\n";
609 my $s = $props->{'svn:externals'} or return;
610 $s =~ s/[\r\n]+/\n/g;
617 sub cmd_create_ignore {
618 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
619 $gs ||= Git::SVN->new;
620 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
621 $gs->prop_walk($gs->{path}, $r, sub {
622 my ($gs, $path, $props) = @_;
623 # $path is of the form /path/to/dir/
624 my $ignore = '.' . $path . '.gitignore';
625 my $s = $props->{'svn:ignore'} or return;
626 open(GITIGNORE, '>', $ignore)
627 or fatal("Failed to open `$ignore' for writing: $!");
628 $s =~ s/[\r\n]+/\n/g;
630 # Prefix all patterns so that the ignore doesn't apply
631 # to sub-directories.
633 print GITIGNORE
"$s\n";
635 or fatal
("Failed to close `$ignore': $!");
636 command_noisy
('add', '-f', $ignore);
640 sub canonicalize_path
{
642 my $dot_slash_added = 0;
643 if (substr($path, 0, 1) ne "/") {
644 $path = "./" . $path;
645 $dot_slash_added = 1;
647 # File::Spec->canonpath doesn't collapse x/../y into y (for a
648 # good reason), so let's do this manually.
650 $path =~ s
#/\.(?:/|$)#/#g;
651 $path =~ s
#/[^/]+/\.\.##g;
653 $path =~ s
#^\./## if $dot_slash_added;
661 # Helper for cmd_propget and cmd_proplist below.
664 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
665 $gs ||= Git
::SVN
->new;
667 # prefix THE PATH by the sub-directory from which the user
669 $path = $cmd_dir_prefix . $path;
670 fatal
("No such file or directory: $path") unless -e
$path;
671 my $is_dir = -d
$path ?
1 : 0;
672 $path = $gs->{path
} . '/' . $path;
674 # canonicalize the path (otherwise libsvn will abort or fail to
676 $path = canonicalize_path
($path);
678 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
681 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
684 (undef, $props) = $gs->ra->get_file($path, $r, undef);
689 # cmd_propget (PROP, PATH)
690 # ------------------------
691 # Print the SVN property PROP for PATH.
693 my ($prop, $path) = @_;
694 $path = '.' if not defined $path;
695 usage
(1) if not defined $prop;
696 my $props = get_svnprops
($path);
697 if (not defined $props->{$prop}) {
698 fatal
("`$path' does not have a `$prop' SVN property.");
700 print $props->{$prop} . "\n";
703 # cmd_proplist (PATH)
704 # -------------------
705 # Print the list of SVN properties for PATH.
708 $path = '.' if not defined $path;
709 my $props = get_svnprops
($path);
710 print "Properties on '$path':\n";
711 foreach (sort keys %{$props}) {
718 unless (defined $_trunk || defined $_branches || defined $_tags) {
722 # there are currently some bugs that prevent multi-init/multi-fetch
723 # setups from working well without this.
724 $Git::SVN
::_minimize_url
= 1;
726 $_prefix = '' unless defined $_prefix;
732 if (defined $_trunk) {
733 my $trunk_ref = $_prefix . 'trunk';
734 # try both old-style and new-style lookups:
735 my $gs_trunk = eval { Git
::SVN
->new($trunk_ref) };
737 my ($trunk_url, $trunk_path) =
738 complete_svn_url
($url, $_trunk);
739 $gs_trunk = Git
::SVN
->init($trunk_url, $trunk_path,
743 return unless defined $_branches || defined $_tags;
744 my $ra = $url ? Git
::SVN
::Ra
->new($url) : undef;
745 complete_url_ls_init
($ra, $_branches, '--branches/-b', $_prefix);
746 complete_url_ls_init
($ra, $_tags, '--tags/-t', $_prefix . 'tags/');
749 sub cmd_multi_fetch
{
750 my $remotes = Git
::SVN
::read_all_remotes
();
751 foreach my $repo_id (sort keys %$remotes) {
752 if ($remotes->{$repo_id}->{url
}) {
753 Git
::SVN
::fetch_all
($repo_id, $remotes);
758 # this command is special because it requires no metadata
759 sub cmd_commit_diff
{
760 my ($ta, $tb, $url) = @_;
761 my $usage = "Usage: $0 commit-diff -r<revision> ".
762 "<tree-ish> <tree-ish> [<URL>]";
763 fatal
($usage) if (!defined $ta || !defined $tb);
766 my $gs = eval { Git
::SVN
->new };
768 fatal
("Needed URL or usable git-svn --id in ",
769 "the command-line\n", $usage);
772 $svn_path = $gs->{path
};
774 unless (defined $_revision) {
775 fatal
("-r|--revision is a required argument\n", $usage);
777 if (defined $_message && defined $_file) {
778 fatal
("Both --message/-m and --file/-F specified ",
779 "for the commit message.\n",
780 "I have no idea what you mean");
782 if (defined $_file) {
783 $_message = file_to_s
($_file);
785 $_message ||= get_commit_entry
($tb)->{log};
787 my $ra ||= Git
::SVN
::Ra
->new($url);
790 $r = $ra->get_latest_revnum;
791 } elsif ($r !~ /^\d+$/) {
792 die "revision argument: $r not understood by git-svn\n";
794 my %ed_opts = ( r
=> $r,
799 editor_cb
=> sub { print "Committed r$_[0]\n" },
800 svn_path
=> $svn_path );
801 if (!SVN
::Git
::Editor
->new(\
%ed_opts)->apply_diff) {
802 print "No changes\n$ta == $tb\n";
806 sub escape_uri_only
{
809 foreach (split m{/}, $uri) {
810 s/([^\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
818 if ($url =~ m
#^([^:]+)://([^/]*)(.*)$#) {
819 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only
($3));
820 $url = "$scheme://$domain$uri";
826 my $path = canonicalize_path
(defined($_[0]) ?
$_[0] : ".");
827 my $fullpath = canonicalize_path
($cmd_dir_prefix . $path);
829 die "Too many arguments specified\n";
832 my ($file_type, $diff_status) = find_file_type_and_diff_status
($path);
834 if (!$file_type && !$diff_status) {
835 print STDERR
"svn: '$path' is not under version control\n";
839 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
841 die "Unable to determine upstream SVN information from ",
842 "working tree history\n";
845 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
846 $path = "." if $path eq "";
848 my $full_url = $url . ($fullpath eq "" ?
"" : "/$fullpath");
851 print escape_url
($full_url), "\n";
855 my $result = "Path: $path\n";
856 $result .= "Name: " . basename
($path) . "\n" if $file_type ne "dir";
857 $result .= "URL: " . escape_url
($full_url) . "\n";
860 my $repos_root = $gs->repos_root;
861 Git
::SVN
::remove_username
($repos_root);
862 $result .= "Repository Root: " . escape_url
($repos_root) . "\n";
865 $result .= "Repository Root: (offline)\n";
867 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A";
868 $result .= "Revision: " . ($diff_status eq "A" ?
0 : $rev) . "\n";
870 $result .= "Node Kind: " .
871 ($file_type eq "dir" ?
"directory" : "file") . "\n";
873 my $schedule = $diff_status eq "A"
875 : ($diff_status eq "D" ?
"delete" : "normal");
876 $result .= "Schedule: $schedule\n";
878 if ($diff_status eq "A") {
883 my ($lc_author, $lc_rev, $lc_date_utc);
884 my @args = Git
::SVN
::Log
::git_svn_log_cmd
($rev, $rev, "--", $fullpath);
885 my $log = command_output_pipe
(@args);
886 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
888 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
890 $lc_date_utc = Git
::SVN
::Log
::parse_git_date
($2, $3);
891 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
892 (undef, $lc_rev, undef) = ::extract_metadata
($1);
897 Git
::SVN
::Log
::set_local_timezone
();
899 $result .= "Last Changed Author: $lc_author\n";
900 $result .= "Last Changed Rev: $lc_rev\n";
901 $result .= "Last Changed Date: " .
902 Git
::SVN
::Log
::format_svn_date
($lc_date_utc) . "\n";
904 if ($file_type ne "dir") {
905 my $text_last_updated_date =
906 ($diff_status eq "D" ?
$lc_date_utc : (stat $path)[9]);
908 "Text Last Updated: " .
909 Git
::SVN
::Log
::format_svn_date
($text_last_updated_date) .
912 if ($diff_status eq "D") {
914 command_output_pipe
(qw(cat
-file blob
), "HEAD:$path");
915 if ($file_type eq "link") {
916 my $file_name = <$fh>;
917 $checksum = md5sum
("link $file_name");
919 $checksum = md5sum
($fh);
921 command_close_pipe
($fh, $ctx);
922 } elsif ($file_type eq "link") {
924 command
(qw(cat
-file blob
), "HEAD:$path");
926 md5sum
("link " . $file_name);
928 open FILE
, "<", $path or die $!;
929 $checksum = md5sum
(\
*FILE
);
930 close FILE
or die $!;
932 $result .= "Checksum: " . $checksum . "\n";
938 ########################### utility functions #########################
941 my @cmd = qw/rebase/;
942 push @cmd, '-v' if $_verbose;
943 push @cmd, qw/--merge/ if $_merge;
944 push @cmd, "--strategy=$_strategy" if $_strategy;
948 sub post_fetch_checkout
{
949 return if $_no_checkout;
950 my $gs = $Git::SVN
::_head
or return;
951 return if verify_ref
('refs/heads/master^0');
953 my $valid_head = verify_ref
('HEAD^0');
954 command_noisy
(qw(update
-ref refs
/heads/master
), $gs->refname);
955 return if ($valid_head || !verify_ref
('HEAD^0'));
957 return if $ENV{GIT_DIR
} !~ m
#^(?:.*/)?\.git$#;
958 my $index = $ENV{GIT_INDEX_FILE
} || "$ENV{GIT_DIR}/index";
961 return if command_oneline
(qw/rev-parse --is-inside-work-tree/) eq 'false';
962 return if command_oneline
(qw/rev-parse --is-inside-git-dir/) eq 'true';
963 command_noisy
(qw/read-tree -m -u -v HEAD HEAD/);
964 print STDERR
"Checked out HEAD:\n ",
965 $gs->full_url, " r", $gs->last_rev, "\n";
968 sub complete_svn_url
{
969 my ($url, $path) = @_;
971 if ($path !~ m
#^[a-z\+]+://#) {
972 if (!defined $url || $url !~ m
#^[a-z\+]+://#) {
973 fatal
("E: '$path' is not a complete URL ",
974 "and a separate URL is not specified");
976 return ($url, $path);
981 sub complete_url_ls_init
{
982 my ($ra, $repo_path, $switch, $pfx) = @_;
983 unless ($repo_path) {
984 print STDERR
"W: $switch not specified\n";
987 $repo_path =~ s
#/+$##;
988 if ($repo_path =~ m
#^[a-z\+]+://#) {
989 $ra = Git
::SVN
::Ra
->new($repo_path);
992 $repo_path =~ s
#^/+##;
994 fatal
("E: '$repo_path' is not a complete URL ",
995 "and a separate URL is not specified");
998 my $url = $ra->{url
};
999 my $gs = Git
::SVN
->init($url, undef, undef, undef, 1);
1000 my $k = "svn-remote.$gs->{repo_id}.url";
1001 my $orig_url = eval { command_oneline
(qw/config --get/, $k) };
1002 if ($orig_url && ($orig_url ne $gs->{url
})) {
1003 die "$k already set: $orig_url\n",
1004 "wanted to set to: $gs->{url}\n";
1006 command_oneline
('config', $k, $gs->{url
}) unless $orig_url;
1007 my $remote_path = "$ra->{svn_path}/$repo_path";
1008 $remote_path =~ s
#/+#/#g;
1009 $remote_path =~ s
#^/##g;
1010 $remote_path .= "/*" if $remote_path !~ /\*/;
1011 my ($n) = ($switch =~ /^--(\w+)/);
1012 if (length $pfx && $pfx !~ m#/$#) {
1013 die "--prefix
='$pfx' must have a trailing slash
'/'\n";
1015 command_noisy('config',
1016 "svn
-remote
.$gs->{repo_id
}.$n",
1017 "$remote_path:refs
/remotes/$pfx*" .
1018 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
1023 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1024 { STDERR => 0 }); };
1027 sub get_tree_from_treeish {
1029 # $treeish can be a symbolic ref, too:
1030 my $type = command_oneline(qw/cat-file -t/, $treeish);
1032 while ($type eq 'tag') {
1033 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
1035 if ($type eq 'commit') {
1036 $expected = (grep /^tree /, command(qw/cat-file commit/,
1038 ($expected) = ($expected =~ /^tree ($sha1)$/o);
1039 die "Unable to get tree from
$treeish\n" unless $expected;
1040 } elsif ($type eq 'tree') {
1041 $expected = $treeish;
1043 die "$treeish is a
$type, expected tree
, tag
or commit
\n";
1048 sub get_commit_entry {
1049 my ($treeish) = shift;
1050 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1051 my $commit_editmsg = "$ENV{GIT_DIR
}/COMMIT_EDITMSG
";
1052 my $commit_msg = "$ENV{GIT_DIR
}/COMMIT_MSG
";
1053 open my $log_fh, '>', $commit_editmsg or croak $!;
1055 my $type = command_oneline(qw/cat-file -t/, $treeish);
1056 if ($type eq 'commit' || $type eq 'tag') {
1057 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
1065 $in_msg = 1 if (/^\s*$/);
1066 $author = $1 if (/^author (.*>)/);
1067 } elsif (/^git-svn-id: /) {
1068 # skip this for now, we regenerate the
1069 # correct one on re-fetch anyways
1070 # TODO: set *:merge properties or like...
1072 if (/^From:/ || /^Signed-off-by:/) {
1078 $msgbuf =~ s/\s+$//s;
1079 if ($Git::SVN::_add_author_from && defined($author)
1081 $msgbuf .= "\n\nFrom
: $author";
1083 print $log_fh $msgbuf or croak $!;
1084 command_close_pipe($msg_fh, $ctx);
1086 close $log_fh or croak $!;
1088 if ($_edit || ($type eq 'tree')) {
1089 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
1090 # TODO: strip out spaces, comments, like git-commit.sh
1091 system($editor, $commit_editmsg);
1093 rename $commit_editmsg, $commit_msg or croak $!;
1094 open $log_fh, '<', $commit_msg or croak $!;
1095 { local $/; chomp($log_entry{log} = <$log_fh>); }
1096 close $log_fh or croak $!;
1102 my ($str, $file, $mode) = @_;
1103 open my $fd,'>',$file or croak $!;
1104 print $fd $str,"\n" or croak $!;
1105 close $fd or croak $!;
1106 chmod ($mode &~ umask, $file) if (defined $mode);
1111 open my $fd,'<',$file or croak "$!: file
: $file\n";
1114 close $fd or croak $!;
1119 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1121 open my $authors, '<', $_authors or die "Can
't open $_authors $!\n";
1122 my $log = $cmd eq 'log';
1123 while (<$authors>) {
1125 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
1126 my ($user, $name, $email) = ($1, $2, $3);
1128 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1130 $users{$user} = [$name, $email];
1133 close $authors or croak $!;
1136 # convert GetOpt::Long specs for use by git-config
1137 sub read_repo_config {
1138 return unless -d $ENV{GIT_DIR};
1141 foreach my $o (keys %$opts) {
1142 # if we have mixedCase and a long option-only, then
1143 # it's a config
-only variable that we don
't need for
1145 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
1146 my $v = $opts->{$o};
1147 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
1149 my $arg = 'git
-config
';
1150 $arg .= ' --int' if ($o =~ /[:=]i$/);
1151 $arg .= ' --bool
' if ($o !~ /[:=][sfi]$/);
1152 if (ref $v eq 'ARRAY
') {
1153 chomp(my @tmp = `$arg --get-all svn.$key`);
1156 chomp(my $tmp = `$arg --get svn.$key`);
1157 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false
')) {
1162 delete @$opts{@config_only} if @config_only;
1165 sub extract_metadata {
1166 my $id = shift or return (undef, undef, undef);
1167 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
1169 if (!defined $rev || !$uuid || !$url) {
1170 # some of the original repositories I made had
1171 # identifiers like this:
1172 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
1174 return ($url, $rev, $uuid);
1178 return extract_metadata((grep(/^git-svn-id: /,
1179 command(qw/cat-file commit/, shift)))[-1]);
1182 sub working_head_info {
1183 my ($head, $refs) = @_;
1184 my @args = ('log', '--no-color
', '--first
-parent
', '--pretty
=medium
');
1185 my ($fh, $ctx) = command_output_pipe(@args, $head);
1189 if ( m{^commit ($::sha1)$} ) {
1190 unshift @$refs, $hash if $hash and $refs;
1194 next unless s{^\s*(git-svn-id:)}{$1};
1195 my ($url, $rev, $uuid) = extract_metadata($_);
1196 if (defined $url && defined $rev) {
1197 next if $max{$url} and $max{$url} < $rev;
1198 if (my $gs = Git::SVN->find_by_url($url)) {
1199 my $c = $gs->rev_map_get($rev, $uuid);
1200 if ($c && $c eq $hash) {
1201 close $fh; # break the pipe
1202 return ($url, $rev, $uuid, $gs);
1204 $max{$url} ||= $gs->rev_map_max;
1209 command_close_pipe($fh, $ctx);
1210 (undef, undef, undef, undef);
1213 sub read_commit_parents {
1214 my ($parents, $c) = @_;
1215 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1216 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1217 @{$parents->{$c}} = split(/ /, $p);
1220 sub linearize_history {
1221 my ($gs, $refs) = @_;
1223 foreach my $c (@$refs) {
1224 read_commit_parents(\%parents, $c);
1229 my $last_svn_commit = $gs->last_commit;
1230 foreach my $c (reverse @$refs) {
1231 next if $c eq $last_svn_commit;
1234 unshift @linear_refs, $c;
1237 # we only want the first parent to diff against for linear
1238 # history, we save the rest to inject when we finalize the
1240 my $fp_a = verify_ref("$c~1");
1241 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1242 if (!$fp_a || !$fp_b) {
1244 "has no parent commit, and therefore ",
1245 "nothing to diff against.\n",
1246 "You should be working from a repository ",
1247 "originally created by git-svn\n";
1249 if ($fp_a ne $fp_b) {
1250 die "$c~1 = $fp_a, however parsing commit $c ",
1251 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1254 foreach my $p (@{$parents{$c}}) {
1258 (\@linear_refs, \%parents);
1261 sub find_file_type_and_diff_status {
1263 return ('dir
', '') if $path eq '';
1266 command_oneline(qw(diff --cached --name-status --), $path) || "";
1267 my $diff_status = (split(' ', $diff_output))[0] || "";
1269 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1271 return (undef, undef) if !$diff_status && !$ls_tree;
1273 if ($diff_status eq "A") {
1274 return ("link", $diff_status) if -l $path;
1275 return ("dir", $diff_status) if -d $path;
1276 return ("file", $diff_status);
1279 my $mode = (split(' ', $ls_tree))[0] || "";
1281 return ("link", $diff_status) if $mode eq "120000";
1282 return ("dir", $diff_status) if $mode eq "040000";
1283 return ("file", $diff_status);
1289 my $md5 = Digest::MD5->new();
1290 if ($ref eq 'GLOB
' || $ref eq 'IO
::File
' || $ref eq 'File
::Temp
') {
1291 $md5->addfile($arg) or croak $!;
1292 } elsif ($ref eq 'SCALAR
') {
1293 $md5->add($$arg) or croak $!;
1295 $md5->add($arg) or croak $!;
1297 ::fatal "Can't provide MD5 hash
for unknown
ref type
: '", $ref, "'";
1299 return $md5->hexdigest();
1305 use Fcntl qw/:DEFAULT :seek/;
1306 use constant rev_map_fmt => 'NH40';
1307 use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
1308 $_repack $_repack_flags $_use_svm_props $_head
1309 $_use_svnsync_props $no_reuse_existing $_minimize_url
1310 $_use_log_author $_add_author_from/;
1312 use File::Path qw/mkpath/;
1313 use File::Copy qw/copy/;
1316 my ($_gc_nr, $_gc_period);
1318 # properties that we do not log:
1321 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
1322 svn:special svn:executable
1323 svn:entry:committed-rev
1324 svn:entry:last-author
1326 svn:entry:committed-date/;
1328 # some options are read globally, but can be overridden locally
1329 # per [svn-remote "..."] section. Command-line options will *NOT*
1330 # override options set in an [svn-remote "..."] section
1332 for my $option (qw/follow_parent no_metadata use_svm_props
1333 use_svnsync_props/) {
1336 my $prop = "-$option";
1339 return $self->{$prop} if exists $self->{$prop};
1340 my $k = "svn
-remote
.$self->{repo_id
}.$key";
1341 eval { command_oneline(qw/config --get/, $k) };
1343 $self->{$prop} = ${"Git
::SVN
::_
$option"};
1345 my $v = command_oneline(qw/config --bool/,$k);
1346 $self->{$prop} = $v eq 'false' ? 0 : 1;
1348 return $self->{$prop};
1354 my (%LOCKFILES, %INDEX_FILES);
1356 unlink keys %LOCKFILES if %LOCKFILES;
1357 unlink keys %INDEX_FILES if %INDEX_FILES;
1360 sub resolve_local_globs {
1361 my ($url, $fetch, $glob_spec) = @_;
1362 return unless defined $glob_spec;
1363 my $ref = $glob_spec->{ref};
1364 my $path = $glob_spec->{path};
1365 foreach (command(qw#for-each-ref --format=%(refname) refs/remotes#)) {
1366 next unless m#^refs/remotes/$ref->{regex}$#;
1368 my $pathname = desanitize_refname($path->full_path($p));
1369 my $refname = desanitize_refname($ref->full_path($p));
1370 if (my $existing = $fetch->{$pathname}) {
1371 if ($existing ne $refname) {
1372 die "Refspec conflict
:\n",
1373 "existing
: refs
/remotes/$existing\n",
1374 " globbed
: refs
/remotes/$refname\n";
1376 my $u = (::cmt_metadata("refs
/remotes/$refname"))[0];
1377 $u =~ s!^\Q$url\E(/|$)!! or die
1378 "refs
/remotes/$refname: '$url' not found in
'$u'\n";
1379 if ($pathname ne $u) {
1380 warn "W
: Refspec
glob conflict
",
1381 "(ref: refs
/remotes/$refname):\n",
1382 "expected path
: $pathname\n",
1384 "Continuing ahead with
$u\n";
1388 $fetch->{$pathname} = $refname;
1393 sub parse_revision_argument {
1394 my ($base, $head) = @_;
1395 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
1396 return ($base, $head);
1398 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
1399 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
1400 return ($head, $head) if ($::_revision eq 'HEAD');
1401 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
1402 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
1403 die "revision argument
: $::_revision
not understood by git
-svn
\n";
1407 my ($repo_id, $remotes) = @_;
1411 $repo_id = $gs->{repo_id};
1413 $remotes ||= read_all_remotes();
1414 my $remote = $remotes->{$repo_id} or
1415 die "[svn
-remote
\"$repo_id\"] unknown
\n";
1416 my $fetch = $remote->{fetch};
1417 my $url = $remote->{url} or die "svn
-remote
.$repo_id.url
not defined\n";
1419 my $ra = Git::SVN::Ra->new($url);
1420 my $uuid = $ra->get_uuid;
1421 my $head = $ra->get_latest_revnum;
1422 my $base = defined $fetch ? $head : 0;
1424 # read the max revs for wildcard expansion (branches/*, tags/*)
1425 foreach my $t (qw/branches tags/) {
1426 defined $remote->{$t} or next;
1427 push @globs, $remote->{$t};
1428 my $max_rev = eval { tmp_config(qw/--int --get/,
1429 "svn
-remote
.$repo_id.${t
}-maxRev
") };
1430 if (defined $max_rev && ($max_rev < $base)) {
1432 } elsif (!defined $max_rev) {
1438 foreach my $p (sort keys %$fetch) {
1439 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
1440 my $lr = $gs->rev_map_max;
1442 $base = $lr if ($lr < $base);
1448 ($base, $head) = parse_revision_argument($base, $head);
1449 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
1452 sub read_all_remotes {
1454 my $use_svm_props = eval { command_oneline(qw/config --bool
1455 svn.useSvmProps/) };
1456 $use_svm_props = $use_svm_props eq 'true' if $use_svm_props;
1457 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
1458 if (m!^(.+)\.fetch=\s*(.*)\s*:\s*(.+)\s*$!) {
1459 my ($remote, $local_ref, $_remote_ref) = ($1, $2, $3);
1460 die("svn
-remote
.$remote: remote
ref '$_remote_ref' "
1461 . "must start with
'refs/remotes/'\n")
1462 unless $_remote_ref =~ m{^refs/remotes/(.+)};
1463 my $remote_ref = $1;
1464 $local_ref =~ s{^/}{};
1465 $r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
1466 $r->{$remote}->{svm} = {} if $use_svm_props;
1467 } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
1468 $r->{$1}->{svm} = {};
1469 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
1470 $r->{$1}->{url} = $2;
1471 } elsif (m!^(.+)\.(branches|tags)=
1472 (.*):refs/remotes/(.+)\s*$/!x) {
1473 my ($p, $g) = ($3, $4);
1474 my $rs = $r->{$1}->{$2} = {
1477 path => Git::SVN::GlobSpec->new($p),
1478 ref => Git::SVN::GlobSpec->new($g) };
1479 if (length($rs->{ref}->{right}) != 0) {
1480 die "The
'*' glob character must be the
last ",
1481 "character of
'$g'\n";
1487 if (defined $r->{$_}->{svm}) {
1490 my $section = "svn
-remote
.$_";
1492 source => tmp_config('--get',
1493 "$section.svm
-source
"),
1494 replace => tmp_config('--get',
1495 "$section.svm
-replace
"),
1498 $r->{$_}->{svm} = $svm;
1506 $_gc_nr = $_gc_period = 1000;
1507 if (defined $_repack || defined $_repack_flags) {
1508 warn "Repack options are obsolete
; they have
no effect
.\n";
1512 sub verify_remotes_sanity {
1513 return unless -d $ENV{GIT_DIR};
1515 foreach (command(qw/config -l/)) {
1516 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
1518 die "Remote
ref refs
/remote/$1 is tracked by
",
1519 "\n \"$_\"\nand
\n \"$seen{$1}\"\n",
1520 "Please resolve this ambiguity in
",
1521 "your git configuration file before
",
1529 sub find_existing_remote {
1530 my ($url, $remotes) = @_;
1531 return undef if $no_reuse_existing;
1533 foreach my $repo_id (keys %$remotes) {
1534 my $u = $remotes->{$repo_id}->{url} or next;
1536 $existing = $repo_id;
1542 sub init_remote_config {
1543 my ($self, $url, $no_write) = @_;
1544 $url =~ s!/+$!!; # strip trailing slash
1545 my $r = read_all_remotes();
1546 my $existing = find_existing_remote($url, $r);
1548 unless ($no_write) {
1549 print STDERR "Using existing
",
1550 "[svn
-remote
\"$existing\"]\n";
1552 $self->{repo_id} = $existing;
1553 } elsif ($_minimize_url) {
1554 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1555 $existing = find_existing_remote($min_url, $r);
1557 unless ($no_write) {
1558 print STDERR "Using existing
",
1559 "[svn
-remote
\"$existing\"]\n";
1561 $self->{repo_id} = $existing;
1563 if ($min_url ne $url) {
1564 unless ($no_write) {
1565 print STDERR "Using higher level of URL
: ",
1566 "$url => $min_url\n";
1568 my $old_path = $self->{path};
1569 $self->{path} = $url;
1570 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
1571 if (length $old_path) {
1572 $self->{path} .= "/$old_path";
1579 # verify that we aren't overwriting anything:
1581 command_oneline('config', '--get',
1582 "svn
-remote
.$self->{repo_id
}.url
")
1584 if ($orig_url && ($orig_url ne $url)) {
1585 die "svn
-remote
.$self->{repo_id
}.url already set
: ",
1586 "$orig_url\nwanted to set to
: $url\n";
1589 my ($xrepo_id, $xpath) = find_ref($self->refname);
1590 if (defined $xpath) {
1591 die "svn
-remote
.$xrepo_id.fetch already set to track
",
1592 "$xpath:refs
/remotes/", $self->refname, "\n";
1594 unless ($no_write) {
1595 command_noisy('config',
1596 "svn
-remote
.$self->{repo_id
}.url
", $url);
1597 $self->{path} =~ s{^/}{};
1598 command_noisy('config', '--add',
1599 "svn
-remote
.$self->{repo_id
}.fetch
",
1600 "$self->{path
}:".$self->refname);
1602 $self->{url} = $url;
1605 sub find_by_url { # repos_root and, path are optional
1606 my ($class, $full_url, $repos_root, $path) = @_;
1608 return undef unless defined $full_url;
1609 remove_username($full_url);
1610 remove_username($repos_root) if defined $repos_root;
1611 my $remotes = read_all_remotes();
1612 if (defined $full_url && defined $repos_root && !defined $path) {
1614 $path =~ s#^\Q$repos_root\E(?:/|$)##;
1616 foreach my $repo_id (keys %$remotes) {
1617 my $u = $remotes->{$repo_id}->{url} or next;
1618 remove_username($u);
1619 next if defined $repos_root && $repos_root ne $u;
1621 my $fetch = $remotes->{$repo_id}->{fetch} || {};
1622 foreach (qw/branches tags/) {
1623 resolve_local_globs($u, $fetch,
1624 $remotes->{$repo_id}->{$_});
1627 my $rwr = rewrite_root({repo_id => $repo_id});
1628 my $svm = $remotes->{$repo_id}->{svm}
1629 if defined $remotes->{$repo_id}->{svm};
1630 unless (defined $p) {
1636 } elsif (defined $svm) {
1637 $z = $svm->{source};
1638 $prefix = $svm->{replace};
1639 $prefix =~ s#^\Q$u\E(?:/|$)##;
1642 $p =~ s#^\Q$z\E(?:/|$)#$prefix# or next;
1644 foreach my $f (keys %$fetch) {
1646 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
1653 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
1654 my $self = _new($class, $repo_id, $ref_id, $path);
1656 $self->init_remote_config($url, $no_write);
1663 foreach (command(qw/config -l/)) {
1664 next unless m!^svn-remote\.(.+)\.fetch=
1665 \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
1666 my ($repo_id, $path, $ref) = ($1, $2, $3);
1667 if ($ref eq $ref_id) {
1668 $path = '' if ($path =~ m#^\./?#);
1669 return ($repo_id, $path);
1672 (undef, undef, undef);
1676 my ($class, $ref_id, $repo_id, $path) = @_;
1677 if (defined $ref_id && !defined $repo_id && !defined $path) {
1678 ($repo_id, $path) = find_ref($ref_id);
1679 if (!defined $repo_id) {
1680 die "Could
not find a
\"svn
-remote
.*.fetch
\" key
",
1681 "in the repository configuration matching
: ",
1682 "refs
/remotes/$ref_id\n";
1685 my $self = _new($class, $repo_id, $ref_id, $path);
1686 if (!defined $self->{path} || !length $self->{path}) {
1687 my $fetch = command_oneline('config', '--get',
1688 "svn
-remote
.$repo_id.fetch
",
1689 ":refs
/remotes/$ref_id\
$") or
1690 die "Failed to
read \"svn
-remote
.$repo_id.fetch
\" ",
1691 "\":refs
/remotes/$ref_id\
$\" in config
\n";
1692 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
1694 $self->{url} = command_oneline('config', '--get',
1695 "svn
-remote
.$repo_id.url
") or
1696 die "Failed to
read \"svn
-remote
.$repo_id.url
\" in config
\n";
1702 my ($refname) = "refs
/remotes/$_[0]->{ref_id
}" ;
1704 # It cannot end with a slash /, we'll throw up on this because
1705 # SVN can't have directories with a slash in their name, either:
1706 if ($refname =~ m{/$}) {
1707 die "ref: '$refname' ends with a trailing slash
, this is
",
1708 "not permitted by git nor Subversion
\n";
1711 # It cannot have ASCII control character space, tilde ~, caret ^,
1712 # colon :, question-mark ?, asterisk *, space, or open bracket [
1715 # Additionally, % must be escaped because it is used for escaping
1716 # and we want our escaped refname to be reversible
1717 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
1719 # no slash-separated component can begin with a dot .
1721 $refname =~ s{/\.}{/%2E}g;
1723 # It cannot have two consecutive dots .. anywhere
1725 $refname =~ s{\.\.}{%2E%2E}g;
1730 sub desanitize_refname {
1732 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
1738 return $self->{svm}->{uuid} if $self->svm;
1740 unless ($self->{svm}) {
1741 die "SVM UUID
not cached
, and reading remotely failed
\n";
1743 $self->{svm}->{uuid};
1748 return $self->{svm} if $self->{svm};
1750 # see if we have it in our config, first:
1752 my $section = "svn
-remote
.$self->{repo_id
}";
1754 source => tmp_config('--get', "$section.svm
-source
"),
1755 uuid => tmp_config('--get', "$section.svm
-uuid
"),
1756 replace => tmp_config('--get', "$section.svm
-replace
"),
1759 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
1760 $self->{svm} = $svm;
1766 my ($self, $ra) = @_;
1767 return $ra if $self->svm;
1769 my @err = ( "useSvmProps set
, but failed to
read SVM properties
\n",
1770 "(svm
:source
, svm
:uuid
) ",
1771 "from the following URLs
:\n" );
1772 sub read_svm_props {
1773 my ($self, $ra, $path, $r) = @_;
1774 my $props = ($ra->get_dir($path, $r))[2];
1775 my $src = $props->{'svm:source'};
1776 my $uuid = $props->{'svm:uuid'};
1777 return undef if (!$src || !$uuid);
1781 $uuid =~ m{^[0-9a-f\-]{30,}$}
1782 or die "doesn
't look right - svm:uuid is '$uuid'\n";
1784 # the '!' is used to mark the repos_root!/relative/path
1785 $src =~ s{/?!/?}{/};
1786 $src =~ s{/+$}{}; # no trailing slashes please
1787 # username is of no interest
1788 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
1790 my $replace = $ra->{url};
1791 $replace .= "/$path" if length $path;
1793 my $section = "svn-remote.$self->{repo_id}";
1794 tmp_config("$section.svm-source", $src);
1795 tmp_config("$section.svm-replace", $replace);
1796 tmp_config("$section.svm-uuid", $uuid);
1804 my $r = $ra->get_latest_revnum;
1805 my $path = $self->{path};
1807 while (length $path) {
1808 unless ($tried{"$self->{url}/$path"}) {
1809 return $ra if $self->read_svm_props($ra, $path, $r);
1810 $tried{"$self->{url}/$path"} = 1;
1812 $path =~ s#/?[^/]+$##;
1814 die "Path: '$path' should be ''\n" if $path ne '';
1815 return $ra if $self->read_svm_props($ra, $path, $r);
1816 $tried{"$self->{url}/$path"} = 1;
1818 if ($ra->{repos_root} eq $self->{url}) {
1819 die @err, (map { " $_\n" } keys %tried), "\n";
1822 # nope, make sure we're connected to the repository root
:
1825 $path = $ra->{svn_path
};
1826 $ra = Git
::SVN
::Ra
->new($ra->{repos_root
});
1827 while (length $path) {
1828 unless ($tried{"$ra->{url}/$path"}) {
1829 $ok = $self->read_svm_props($ra, $path, $r);
1831 $tried{"$ra->{url}/$path"} = 1;
1833 $path =~ s
#/?[^/]+$##;
1835 die "Path: '$path' should be ''\n" if $path ne '';
1836 $ok ||= $self->read_svm_props($ra, $path, $r);
1837 $tried{"$ra->{url}/$path"} = 1;
1839 die @err, (map { " $_\n" } keys %tried), "\n";
1841 Git
::SVN
::Ra
->new($self->{url
});
1846 return $self->{svnsync
} if $self->{svnsync
};
1848 if ($self->no_metadata) {
1849 die "Can't have both 'noMetadata' and ",
1850 "'useSvnsyncProps' options set!\n";
1852 if ($self->rewrite_root) {
1853 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
1858 # see if we have it in our config, first:
1860 my $section = "svn-remote.$self->{repo_id}";
1862 my $url = tmp_config
('--get', "$section.svnsync-url");
1863 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
1864 die "doesn't look right - svn:sync-from-url is '$url'\n";
1866 my $uuid = tmp_config
('--get', "$section.svnsync-uuid");
1867 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
1868 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1870 $svnsync = { url
=> $url, uuid
=> $uuid }
1872 if ($svnsync && $svnsync->{url
} && $svnsync->{uuid
}) {
1873 return $self->{svnsync
} = $svnsync;
1876 my $err = "useSvnsyncProps set, but failed to read " .
1877 "svnsync property: svn:sync-from-";
1878 my $rp = $self->ra->rev_proplist(0);
1880 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
1881 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
1882 die "doesn't look right - svn:sync-from-url is '$url'\n";
1884 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
1885 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
1886 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1888 my $section = "svn-remote.$self->{repo_id}";
1889 tmp_config
('--add', "$section.svnsync-uuid", $uuid);
1890 tmp_config
('--add', "$section.svnsync-url", $url);
1891 return $self->{svnsync
} = { url
=> $url, uuid
=> $uuid };
1894 # this allows us to memoize our SVN::Ra UUID locally and avoid a
1895 # remote lookup (useful for 'git svn log').
1898 unless ($self->{ra_uuid
}) {
1899 my $key = "svn-remote.$self->{repo_id}.uuid";
1900 my $uuid = eval { tmp_config
('--get', $key) };
1901 if (!$@
&& $uuid && $uuid =~ /^([a-f\d\-]{30,})$/) {
1902 $self->{ra_uuid
} = $uuid;
1904 die "ra_uuid called without URL\n" unless $self->{url
};
1905 $self->{ra_uuid
} = $self->ra->get_uuid;
1906 tmp_config
('--add', $key, $self->{ra_uuid
});
1912 sub _set_repos_root
{
1913 my ($self, $repos_root) = @_;
1914 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1915 $repos_root ||= $self->ra->{repos_root
};
1916 tmp_config
($k, $repos_root);
1922 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1923 eval { tmp_config
('--get', $k) } || $self->_set_repos_root;
1928 my $ra = Git
::SVN
::Ra
->new($self->{url
});
1929 $self->_set_repos_root($ra->{repos_root
});
1930 if ($self->use_svm_props && !$self->{svm
}) {
1931 if ($self->no_metadata) {
1932 die "Can't have both 'noMetadata' and ",
1933 "'useSvmProps' options set!\n";
1934 } elsif ($self->use_svnsync_props) {
1935 die "Can't have both 'useSvnsyncProps' and ",
1936 "'useSvmProps' options set!\n";
1938 $ra = $self->_set_svm_vars($ra);
1939 $self->{-want_revprops
} = 1;
1946 my $repos_root = $self->ra->{repos_root
};
1947 return $self->{path
} if ($self->{url
} eq $repos_root);
1948 my $url = $self->{url
} .
1949 (length $self->{path
} ?
"/$self->{path}" : $self->{path
});
1950 $url =~ s!^\Q$repos_root\E(?:/+|$)!!g;
1954 # prop_walk(PATH, REV, SUB)
1955 # -------------------------
1956 # Recursively traverse PATH at revision REV and invoke SUB for each
1957 # directory that contains a SVN property. SUB will be invoked as
1958 # follows: &SUB(gs, path, props); where `gs' is this instance of
1959 # Git::SVN, `path' the path to the directory where the properties
1960 # `props' were found. The `path' will be relative to point of checkout,
1961 # that is, if url://repo/trunk is the current Git branch, and that
1962 # directory contains a sub-directory `d', SUB will be invoked with `/d/'
1963 # as `path' (note the trailing `/').
1965 my ($self, $path, $rev, $sub) = @_;
1968 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
1971 # Strip the irrelevant part of the path.
1972 $p =~ s
#^/+\Q$self->{path}\E(/|$)#/#;
1973 # Ensure the path is terminated by a `/'.
1976 # The properties contain all the internal SVN stuff nobody
1977 # (usually) cares about.
1978 my $interesting_props = 0;
1979 foreach (keys %{$props}) {
1980 # If it doesn't start with `svn:', it must be a
1981 # user-defined property.
1982 ++$interesting_props and next if $_ !~ /^svn:/;
1983 # FIXME: Fragile, if SVN adds new public properties,
1984 # this needs to be updated.
1985 ++$interesting_props if /^svn
:(?
:ignore
|keywords
|executable
1986 |eol
-style
|mime
-type
1987 |externals
|needs
-lock)$/x
;
1989 &$sub($self, $p, $props) if $interesting_props;
1991 foreach (sort keys %$dirent) {
1992 next if $dirent->{$_}->{kind
} != $SVN::Node
::dir
;
1993 $self->prop_walk($self->{path
} . $p . $_, $rev, $sub);
1997 sub last_rev
{ ($_[0]->last_rev_commit)[0] }
1998 sub last_commit
{ ($_[0]->last_rev_commit)[1] }
2000 # returns the newest SVN revision number and newest commit SHA1
2001 sub last_rev_commit
{
2003 if (defined $self->{last_rev
} && defined $self->{last_commit
}) {
2004 return ($self->{last_rev
}, $self->{last_commit
});
2006 my $c = ::verify_ref
($self->refname.'^0');
2007 if ($c && !$self->use_svm_props && !$self->no_metadata) {
2008 my $rev = (::cmt_metadata
($c))[1];
2010 ($self->{last_rev
}, $self->{last_commit
}) = ($rev, $c);
2014 my $map_path = $self->map_path;
2015 unless (-e
$map_path) {
2016 ($self->{last_rev
}, $self->{last_commit
}) = (undef, undef);
2017 return (undef, undef);
2019 my ($rev, $commit) = $self->rev_map_max(1);
2020 ($self->{last_rev
}, $self->{last_commit
}) = ($rev, $commit);
2021 return ($rev, $commit);
2024 sub get_fetch_range
{
2025 my ($self, $min, $max) = @_;
2026 $max ||= $self->ra->get_latest_revnum;
2027 $min ||= $self->rev_map_max;
2033 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
2034 my $config = "$ENV{GIT_DIR}/svn/.metadata";
2035 if (! -f
$config && -f
$old_def_config) {
2036 rename $old_def_config, $config or
2037 die "Failed rename $old_def_config => $config: $!\n";
2039 my $old_config = $ENV{GIT_CONFIG
};
2040 $ENV{GIT_CONFIG
} = $config;
2043 unless (-f
$config) {
2045 open my $fh, '>', $config or
2046 die "Can't open $config: $!\n";
2047 print $fh "; This file is used internally by ",
2049 "Couldn't write to $config: $!\n";
2050 print $fh "; You should not have to edit it\n" or
2051 die "Couldn't write to $config: $!\n";
2052 close $fh or die "Couldn't close $config: $!\n";
2054 command
('config', @args);
2057 if (defined $old_config) {
2058 $ENV{GIT_CONFIG
} = $old_config;
2060 delete $ENV{GIT_CONFIG
};
2063 wantarray ?
@ret : $ret[0];
2067 my ($self, $sub) = @_;
2068 my $old_index = $ENV{GIT_INDEX_FILE
};
2069 $ENV{GIT_INDEX_FILE
} = $self->{index};
2072 my ($dir, $base) = ($self->{index} =~ m
#^(.*?)/?([^/]+)$#);
2073 mkpath
([$dir]) unless -d
$dir;
2077 if (defined $old_index) {
2078 $ENV{GIT_INDEX_FILE
} = $old_index;
2080 delete $ENV{GIT_INDEX_FILE
};
2083 wantarray ?
@ret : $ret[0];
2086 sub assert_index_clean
{
2087 my ($self, $treeish) = @_;
2089 $self->tmp_index_do(sub {
2090 command_noisy
('read-tree', $treeish) unless -e
$self->{index};
2091 my $x = command_oneline
('write-tree');
2092 my ($y) = (command
(qw/cat-file commit/, $treeish) =~
2093 /^tree ($::sha1)/mo);
2096 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2097 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2098 command_noisy
('read-tree', $treeish);
2099 $x = command_oneline
('write-tree');
2101 ::fatal
"trees ($treeish) $y != $x\n",
2102 "Something is seriously wrong...";
2107 sub get_commit_parents
{
2108 my ($self, $log_entry) = @_;
2109 my (%seen, @ret, @tmp);
2110 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2111 if (my $ip = $self->{inject_parents
}) {
2112 if (my $commit = delete $ip->{$log_entry->{revision
}}) {
2116 if (my $cur = ::verify_ref
($self->refname.'^0')) {
2119 if (my $ipd = $self->{inject_parents_dcommit
}) {
2120 if (my $commit = delete $ipd->{$log_entry->{revision
}}) {
2121 push @tmp, @
$commit;
2124 push @tmp, $_ foreach (@
{$log_entry->{parents
}}, @tmp);
2125 while (my $p = shift @tmp) {
2129 # MAXPARENT is defined to 16 in commit-tree.c:
2133 die "r$log_entry->{revision}: No room for parents:\n\t",
2134 join("\n\t", @tmp), "\n";
2141 return $self->{-rewrite_root
} if exists $self->{-rewrite_root
};
2142 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2143 my $rwr = eval { command_oneline
(qw/config --get/, $k) };
2146 if ($rwr !~ m
#^[a-z\+]+://#) {
2147 die "$rwr is not a valid URL (key: $k)\n";
2150 $self->{-rewrite_root
} = $rwr;
2155 ($self->rewrite_root || $self->{url
}) .
2156 (length $self->{path
} ?
'/' . $self->{path
} : '');
2161 $self->{url
} . (length $self->{path
} ?
'/' . $self->{path
} : '');
2165 sub set_commit_header_env
{
2166 my ($log_entry) = @_;
2168 foreach my $ned (qw/NAME EMAIL DATE/) {
2169 foreach my $ac (qw/AUTHOR COMMITTER/) {
2170 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2174 $ENV{GIT_AUTHOR_NAME
} = $log_entry->{name
};
2175 $ENV{GIT_AUTHOR_EMAIL
} = $log_entry->{email
};
2176 $ENV{GIT_AUTHOR_DATE
} = $ENV{GIT_COMMITTER_DATE
} = $log_entry->{date
};
2178 $ENV{GIT_COMMITTER_NAME
} = (defined $log_entry->{commit_name
})
2179 ?
$log_entry->{commit_name
}
2180 : $log_entry->{name
};
2181 $ENV{GIT_COMMITTER_EMAIL
} = (defined $log_entry->{commit_email
})
2182 ?
$log_entry->{commit_email
}
2183 : $log_entry->{email
};
2187 sub restore_commit_header_env
{
2189 foreach my $ned (qw/NAME EMAIL DATE/) {
2190 foreach my $ac (qw/AUTHOR COMMITTER/) {
2191 my $k = "GIT_${ac}_${ned}";
2192 if (defined $env->{$k}) {
2193 $ENV{$k} = $env->{$k};
2202 command_noisy
('gc', '--auto');
2206 my ($self, $log_entry) = @_;
2207 my $lr = $self->last_rev;
2208 if (defined $lr && $lr >= $log_entry->{revision
}) {
2209 die "Last fetched revision of ", $self->refname,
2210 " was r$lr, but we are about to fetch: ",
2211 "r$log_entry->{revision}!\n";
2213 if (my $c = $self->rev_map_get($log_entry->{revision
})) {
2214 croak
"$log_entry->{revision} = $c already exists! ",
2215 "Why are we refetching it?\n";
2217 my $old_env = set_commit_header_env
($log_entry);
2218 my $tree = $log_entry->{tree
};
2219 if (!defined $tree) {
2220 $tree = $self->tmp_index_do(sub {
2221 command_oneline
('write-tree') });
2223 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2225 my @exec = ('git-commit-tree', $tree);
2226 foreach ($self->get_commit_parents($log_entry)) {
2227 push @exec, '-p', $_;
2229 defined(my $pid = open3
(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2231 print $msg_fh $log_entry->{log} or croak
$!;
2232 restore_commit_header_env
($old_env);
2233 unless ($self->no_metadata) {
2234 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
2237 $msg_fh->flush == 0 or croak
$!;
2238 close $msg_fh or croak
$!;
2239 chomp(my $commit = do { local $/; <$out_fh> });
2240 close $out_fh or croak
$!;
2243 if ($commit !~ /^$::sha1$/o) {
2244 die "Failed to commit, invalid sha1: $commit\n";
2247 $self->rev_map_set($log_entry->{revision
}, $commit, 1);
2249 $self->{last_rev
} = $log_entry->{revision
};
2250 $self->{last_commit
} = $commit;
2251 print "r$log_entry->{revision}";
2252 if (defined $log_entry->{svm_revision
}) {
2253 print " (\@$log_entry->{svm_revision})";
2254 $self->rev_map_set($log_entry->{svm_revision
}, $commit,
2255 0, $self->svm_uuid);
2257 print " = $commit ($self->{ref_id})\n";
2258 if (--$_gc_nr == 0) {
2259 $_gc_nr = $_gc_period;
2266 my ($self, $paths, $r) = @_;
2267 return 1 if $self->{path
} eq '';
2268 if (my $path = $paths->{"/$self->{path}"}) {
2269 return ($path->{action
} eq 'D') ?
0 : 1;
2271 $self->{path_regex
} ||= qr/^\/\Q
$self->{path
}\E\
//;
2272 if (grep /$self->{path_regex}/, keys %$paths) {
2276 foreach (split m
#/#, $self->{path}) {
2278 next unless ($paths->{$c} &&
2279 ($paths->{$c}->{action
} =~ /^[AR]$/));
2280 if ($self->ra->check_path($self->{path
}, $r) ==
2288 sub find_parent_branch
{
2289 my ($self, $paths, $rev) = @_;
2290 return undef unless $self->follow_parent;
2291 unless (defined $paths) {
2292 my $err_handler = $SVN::Error
::handler
;
2293 $SVN::Error
::handler
= \
&Git
::SVN
::Ra
::skip_unknown_revs
;
2294 $self->ra->get_log([$self->{path
}], $rev, $rev, 0, 1, 1, sub {
2296 Git
::SVN
::Ra
::dup_changed_paths
($_[0]) });
2297 $SVN::Error
::handler
= $err_handler;
2299 return undef unless defined $paths;
2301 # look for a parent from another branch:
2302 my @b_path_components = split m
#/#, $self->rel_path;
2303 my @a_path_components;
2305 while (@b_path_components) {
2306 $i = $paths->{'/'.join('/', @b_path_components)};
2307 last if $i && defined $i->{copyfrom_path
};
2308 unshift(@a_path_components, pop(@b_path_components));
2310 return undef unless defined $i && defined $i->{copyfrom_path
};
2311 my $branch_from = $i->{copyfrom_path
};
2312 if (@a_path_components) {
2313 print STDERR
"branch_from: $branch_from => ";
2314 $branch_from .= '/'.join('/', @a_path_components);
2315 print STDERR
$branch_from, "\n";
2317 my $r = $i->{copyfrom_rev
};
2318 my $repos_root = $self->ra->{repos_root
};
2319 my $url = $self->ra->{url
};
2320 my $new_url = $repos_root . $branch_from;
2321 print STDERR
"Found possible branch point: ",
2322 "$new_url => ", $self->full_url, ", $r\n";
2323 $branch_from =~ s
#^/##;
2324 my $gs = Git
::SVN
->find_by_url($new_url, $repos_root, $branch_from);
2326 my $ref_id = $self->{ref_id
};
2327 $ref_id =~ s/\@\d+$//;
2329 # just grow a tail if we're not unique enough :x
2330 $ref_id .= '-' while find_ref
($ref_id);
2331 print STDERR
"Initializing parent: $ref_id\n";
2332 my ($u, $p, $repo_id) = ($new_url, '', $ref_id);
2333 if ($u =~ s
#^\Q$url\E(/|$)##) {
2336 $repo_id = $self->{repo_id
};
2338 $gs = Git
::SVN
->init($u, $p, $repo_id, $ref_id, 1);
2340 my ($r0, $parent) = $gs->find_rev_before($r, 1);
2341 if (!defined $r0 || !defined $parent) {
2342 my ($base, $head) = parse_revision_argument
(0, $r);
2344 $gs->fetch($base, $r);
2346 ($r0, $parent) = $gs->last_rev_commit;
2348 if (defined $r0 && defined $parent) {
2349 print STDERR
"Found branch parent: ($self->{ref_id}) $parent\n";
2351 if ($self->ra->can_do_switch) {
2352 $self->assert_index_clean($parent);
2353 print STDERR
"Following parent with do_switch\n";
2354 # do_switch works with svn/trunk >= r22312, but that
2355 # is not included with SVN 1.4.3 (the latest version
2356 # at the moment), so we can't rely on it
2357 $self->{last_commit
} = $parent;
2358 $ed = SVN
::Git
::Fetcher
->new($self);
2359 $gs->ra->gs_do_switch($r0, $rev, $gs,
2360 $self->full_url, $ed)
2361 or die "SVN connection failed somewhere...\n";
2362 } elsif ($self->ra->trees_match($new_url, $r0,
2363 $self->full_url, $rev)) {
2364 print STDERR
"Trees match:\n",
2366 " ${\$self->full_url}\@$rev\n",
2367 "Following parent with no changes\n";
2368 $self->tmp_index_do(sub {
2369 command_noisy
('read-tree', $parent);
2371 $self->{last_commit
} = $parent;
2373 print STDERR
"Following parent with do_update\n";
2374 $ed = SVN
::Git
::Fetcher
->new($self);
2375 $self->ra->gs_do_update($rev, $rev, $self, $ed)
2376 or die "SVN connection failed somewhere...\n";
2378 print STDERR
"Successfully followed parent\n";
2379 return $self->make_log_entry($rev, [$parent], $ed);
2385 my ($self, $paths, $rev) = @_;
2387 my ($last_rev, @parents);
2388 if (my $lc = $self->last_commit) {
2389 # we can have a branch that was deleted, then re-added
2390 # under the same name but copied from another path, in
2391 # which case we'll have multiple parents (we don't
2392 # want to break the original ref, nor lose copypath info):
2393 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2394 push @
{$log_entry->{parents
}}, $lc;
2397 $ed = SVN
::Git
::Fetcher
->new($self);
2398 $last_rev = $self->{last_rev
};
2403 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2406 $ed = SVN
::Git
::Fetcher
->new($self);
2408 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
2409 die "SVN connection failed somewhere...\n";
2411 $self->make_log_entry($rev, \
@parents, $ed);
2415 my ($self, $ed) = @_;
2417 my $h = $ed->{empty
};
2418 foreach (sort keys %$h) {
2419 my $act = $h->{$_} ?
'+empty_dir' : '-empty_dir';
2420 push @out, " $act: " . uri_encode
($_);
2421 warn "W: $act: $_\n";
2423 foreach my $t (qw/dir_prop file_prop/) {
2424 $h = $ed->{$t} or next;
2425 foreach my $path (sort keys %$h) {
2426 my $ppath = $path eq '' ?
'.' : $path;
2427 foreach my $prop (sort keys %{$h->{$path}}) {
2428 next if $SKIP_PROP{$prop};
2429 my $v = $h->{$path}->{$prop};
2430 my $t_ppath_prop = "$t: " .
2431 uri_encode
($ppath) . ' ' .
2434 push @out, " +$t_ppath_prop " .
2437 push @out, " -$t_ppath_prop";
2442 foreach my $t (qw/absent_file absent_directory/) {
2443 $h = $ed->{$t} or next;
2444 foreach my $parent (sort keys %$h) {
2445 foreach my $path (sort @
{$h->{$parent}}) {
2446 push @out, " $t: " .
2447 uri_encode
("$parent/$path");
2448 warn "W: $t: $parent/$path ",
2449 "Insufficient permissions?\n";
2456 sub parse_svn_date
{
2457 my $date = shift || return '+0000 1970-01-01 00:00:00';
2458 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d
{4})\
-(\d\d
)\
-(\d\d
)T
2459 (\d\d
)\
:(\d\d
)\
:(\d\d
).\d
+Z
$/x
) or
2460 croak
"Unable to parse date: $date\n";
2461 "+0000 $Y-$m-$d $H:$M:$S";
2466 if (!defined $author || length $author == 0) {
2467 $author = '(no author)';
2468 } elsif (defined $::_authors
&& ! defined $::users
{$author}) {
2469 die "Author: $author not defined in $::_authors file\n";
2474 sub make_log_entry
{
2475 my ($self, $rev, $parents, $ed) = @_;
2476 my $untracked = $self->get_untracked($ed);
2478 open my $un, '>>', "$self->{dir}/unhandled.log" or croak
$!;
2479 print $un "r$rev\n" or croak
$!;
2480 print $un $_, "\n" foreach @
$untracked;
2481 my %log_entry = ( parents
=> $parents || [], revision
=> $rev,
2485 my $logged = delete $self->{logged_rev_props
};
2486 if (!$logged || $self->{-want_revprops
}) {
2487 my $rp = $self->ra->rev_proplist($rev);
2488 foreach (sort keys %$rp) {
2490 if (/^svn:(author|date|log)$/) {
2491 $log_entry{$1} = $v;
2492 } elsif ($_ eq 'svm:headrev') {
2495 print $un " rev_prop: ", uri_encode
($_), ' ',
2496 uri_encode
($v), "\n";
2500 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
2502 close $un or croak
$!;
2504 $log_entry{date
} = parse_svn_date
($log_entry{date
});
2505 $log_entry{log} .= "\n";
2506 my $author = $log_entry{author
} = check_author
($log_entry{author
});
2507 my ($name, $email) = defined $::users
{$author} ? @
{$::users
{$author}}
2510 my ($commit_name, $commit_email) = ($name, $email);
2511 if ($_use_log_author) {
2513 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
2515 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
2518 if (!defined $name_field) {
2519 if (!defined $email) {
2522 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
2523 ($name, $email) = ($1, $2);
2524 } elsif ($name_field =~ /(.*)@/) {
2525 ($name, $email) = ($1, $name_field);
2527 ($name, $email) = ($name_field, $name_field);
2530 if (defined $headrev && $self->use_svm_props) {
2531 if ($self->rewrite_root) {
2532 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
2535 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d
+)$};
2536 # we don't want "SVM: initializing mirror for junk" ...
2537 return undef if $r == 0;
2538 my $svm = $self->svm;
2539 if ($uuid ne $svm->{uuid
}) {
2540 die "UUID mismatch on SVM path:\n",
2541 "expected: $svm->{uuid}\n",
2544 my $full_url = $self->full_url;
2545 $full_url =~ s
#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
2546 die "Failed to replace '$svm->{replace}' with ",
2547 "'$svm->{source}' in $full_url\n";
2548 # throw away username for storing in records
2549 remove_username
($full_url);
2550 $log_entry{metadata
} = "$full_url\@$r $uuid";
2551 $log_entry{svm_revision
} = $r;
2552 $email ||= "$author\@$uuid";
2553 $commit_email ||= "$author\@$uuid";
2554 } elsif ($self->use_svnsync_props) {
2555 my $full_url = $self->svnsync->{url
};
2556 $full_url .= "/$self->{path}" if length $self->{path
};
2557 remove_username
($full_url);
2558 my $uuid = $self->svnsync->{uuid
};
2559 $log_entry{metadata
} = "$full_url\@$rev $uuid";
2560 $email ||= "$author\@$uuid";
2561 $commit_email ||= "$author\@$uuid";
2563 my $url = $self->metadata_url;
2564 remove_username
($url);
2565 $log_entry{metadata
} = "$url\@$rev " .
2566 $self->ra->get_uuid;
2567 $email ||= "$author\@" . $self->ra->get_uuid;
2568 $commit_email ||= "$author\@" . $self->ra->get_uuid;
2570 $log_entry{name
} = $name;
2571 $log_entry{email
} = $email;
2572 $log_entry{commit_name
} = $commit_name;
2573 $log_entry{commit_email
} = $commit_email;
2578 my ($self, $min_rev, $max_rev, @parents) = @_;
2579 my ($last_rev, $last_commit) = $self->last_rev_commit;
2580 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
2581 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
2585 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
2586 $self->{inject_parents
} = { $rev => $tree };
2587 $self->fetch(undef, undef);
2591 my ($self, $tree) = (shift, shift);
2592 my $log_entry = ::get_commit_entry
($tree);
2593 unless ($self->{last_rev
}) {
2594 fatal
("Must have an existing revision to commit");
2596 my %ed_opts = ( r
=> $self->{last_rev
},
2597 log => $log_entry->{log},
2599 tree_a
=> $self->{last_commit
},
2602 $self->set_tree_cb($log_entry, $tree, @_) },
2603 svn_path
=> $self->{path
} );
2604 if (!SVN
::Git
::Editor
->new(\
%ed_opts)->apply_diff) {
2605 print "No changes\nr$self->{last_rev} = $tree\n";
2609 sub rebuild_from_rev_db
{
2610 my ($self, $path) = @_;
2612 open my $fh, '<', $path or croak
"open: $!";
2613 binmode $fh or croak
"binmode: $!";
2615 length($_) == 41 or croak
"inconsistent size in ($_) != 41";
2618 next if $_ eq ('0' x
40);
2619 $self->rev_map_set($r, $_);
2622 close $fh or croak
"close: $!";
2623 unlink $path or croak
"unlink: $!";
2628 my $map_path = $self->map_path;
2629 return if (-e
$map_path && ! -z
$map_path);
2630 return unless ::verify_ref
($self->refname.'^0');
2631 if ($self->use_svm_props || $self->no_metadata) {
2632 my $rev_db = $self->rev_db_path;
2633 $self->rebuild_from_rev_db($rev_db);
2634 if ($self->use_svm_props) {
2635 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
2636 $self->rebuild_from_rev_db($svm_rev_db);
2638 $self->unlink_rev_db_symlink;
2641 print "Rebuilding $map_path ...\n";
2643 command_output_pipe
(qw/rev-list --pretty=raw --no-color --reverse/,
2644 $self->refname, '--');
2645 my $metadata_url = $self->metadata_url;
2646 remove_username
($metadata_url);
2647 my $svn_uuid = $self->ra_uuid;
2650 if ( m{^commit ($::sha1)$} ) {
2654 next unless s{^\s*(git-svn-id:)}{$1};
2655 my ($url, $rev, $uuid) = ::extract_metadata
($_);
2656 remove_username
($url);
2658 # ignore merges (from set-tree)
2659 next if (!defined $rev || !$uuid);
2661 # if we merged or otherwise started elsewhere, this is
2662 # how we break out of it
2663 if (($uuid ne $svn_uuid) ||
2664 ($metadata_url && $url && ($url ne $metadata_url))) {
2668 $self->rev_map_set($rev, $c);
2669 print "r$rev = $c\n";
2671 command_close_pipe
($log, $ctx);
2672 print "Done rebuilding $map_path\n";
2673 my $rev_db_path = $self->rev_db_path;
2674 if (-f
$self->rev_db_path) {
2675 unlink $self->rev_db_path or croak
"unlink: $!";
2677 $self->unlink_rev_db_symlink;
2681 # Tie::File seems to be prone to offset errors if revisions get sparse,
2682 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
2683 # one of my favorite modules is out :< Next up would be one of the DBM
2684 # modules, but I'm not sure which is most portable...
2686 # This is the replacement for the rev_db format, which was too big
2687 # and inefficient for large repositories with a lot of sparse history
2690 # The format is this:
2691 # - 24 bytes for every record,
2692 # * 4 bytes for the integer representing an SVN revision number
2693 # * 20 bytes representing the sha1 of a git commit
2694 # - No empty padding records like the old format
2695 # (except the last record, which can be overwritten)
2696 # - new records are written append-only since SVN revision numbers
2697 # increase monotonically
2698 # - lookups on SVN revision number are done via a binary search
2699 # - Piping the file to xxd -c24 is a good way of dumping it for
2700 # viewing or editing (piped back through xxd -r), should the need
2702 # - The last record can be padding revision with an all-zero sha1
2703 # This is used to optimize fetch performance when using multiple
2704 # "fetch" directives in .git/config
2706 # These files are disposable unless noMetadata or useSvmProps is set
2709 my ($fh, $rev, $commit) = @_;
2711 binmode $fh or croak
"binmode: $!";
2712 my $size = (stat($fh))[7];
2713 ($size % 24) == 0 or croak
"inconsistent size: $size";
2717 sysseek($fh, -24, SEEK_END
) or croak
"seek: $!";
2718 my $read = sysread($fh, my $buf, 24) or croak
"read: $!";
2719 $read == 24 or croak
"read only $read bytes (!= 24)";
2720 my ($last_rev, $last_commit) = unpack(rev_map_fmt
, $buf);
2721 if ($last_commit eq ('0' x40
)) {
2723 sysseek($fh, -48, SEEK_END
) or croak
"seek: $!";
2724 $read = sysread($fh, $buf, 24) or
2727 croak
"read only $read bytes (!= 24)";
2728 ($last_rev, $last_commit) =
2729 unpack(rev_map_fmt
, $buf);
2730 if ($last_commit eq ('0' x40
)) {
2731 croak
"inconsistent .rev_map\n";
2734 if ($last_rev >= $rev) {
2735 croak
"last_rev is higher!: $last_rev >= $rev";
2740 sysseek($fh, $wr_offset, SEEK_END
) or croak
"seek: $!";
2741 syswrite($fh, pack(rev_map_fmt
, $rev, $commit), 24) == 24 or
2748 my ($dir, $base) = ($path =~ m
#^(.*?)/?([^/]+)$#);
2749 mkpath
([$dir]) unless -d
$dir;
2750 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
2751 close $fh or die "Couldn't close (create) $path: $!\n";
2756 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
2757 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
2758 my $db = $self->map_path($uuid);
2759 my $db_lock = "$db.lock";
2762 $SIG{INT
} = $SIG{HUP
} = $SIG{TERM
} = $SIG{ALRM
} = $SIG{PIPE
} =
2763 $SIG{USR1
} = $SIG{USR2
} = sub { $sig = $_[0] };
2767 $LOCKFILES{$db_lock} = 1;
2769 # both of these options make our .rev_db file very, very important
2770 # and we can't afford to lose it because rebuild() won't work
2771 if ($self->use_svm_props || $self->no_metadata) {
2773 copy
($db, $db_lock) or die "rev_map_set(@_): ",
2775 "$db => $db_lock ($!)\n";
2777 rename $db, $db_lock or die "rev_map_set(@_): ",
2778 "Failed to rename: ",
2779 "$db => $db_lock ($!)\n";
2782 sysopen(my $fh, $db_lock, O_RDWR
| O_CREAT
)
2783 or croak
"Couldn't open $db_lock: $!\n";
2784 _rev_map_set
($fh, $rev, $commit);
2786 $fh->flush or die "Couldn't flush $db_lock: $!\n";
2787 $fh->sync or die "Couldn't sync $db_lock: $!\n";
2789 close $fh or croak
$!;
2792 command_noisy
('update-ref', '-m', "r$rev",
2793 $self->refname, $commit);
2795 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
2796 "$db_lock => $db ($!)\n";
2797 delete $LOCKFILES{$db_lock};
2799 $SIG{INT
} = $SIG{HUP
} = $SIG{TERM
} = $SIG{ALRM
} = $SIG{PIPE
} =
2800 $SIG{USR1
} = $SIG{USR2
} = 'DEFAULT';
2801 kill $sig, $$ if defined $sig;
2805 # If want_commit, this will return an array of (rev, commit) where
2806 # commit _must_ be a valid commit in the archive.
2807 # Otherwise, it'll return the max revision (whether or not the
2808 # commit is valid or just a 0x40 placeholder).
2810 my ($self, $want_commit) = @_;
2812 my $map_path = $self->map_path;
2813 stat $map_path or return $want_commit ?
(0, undef) : 0;
2814 sysopen(my $fh, $map_path, O_RDONLY
) or croak
"open: $!";
2815 binmode $fh or croak
"binmode: $!";
2816 my $size = (stat($fh))[7];
2817 ($size % 24) == 0 or croak
"inconsistent size: $size";
2820 close $fh or croak
"close: $!";
2821 return $want_commit ?
(0, undef) : 0;
2824 sysseek($fh, -24, SEEK_END
) or croak
"seek: $!";
2825 sysread($fh, my $buf, 24) == 24 or croak
"read: $!";
2826 my ($r, $c) = unpack(rev_map_fmt
, $buf);
2827 if ($want_commit && $c eq ('0' x40
)) {
2829 return $want_commit ?
(0, undef) : 0;
2831 sysseek($fh, -48, SEEK_END
) or croak
"seek: $!";
2832 sysread($fh, $buf, 24) == 24 or croak
"read: $!";
2833 ($r, $c) = unpack(rev_map_fmt
, $buf);
2834 if ($c eq ('0'x40
)) {
2835 croak
"Penultimate record is all-zeroes in $map_path";
2838 close $fh or croak
"close: $!";
2839 $want_commit ?
($r, $c) : $r;
2843 my ($self, $rev, $uuid) = @_;
2844 my $map_path = $self->map_path($uuid);
2845 return undef unless -e
$map_path;
2847 sysopen(my $fh, $map_path, O_RDONLY
) or croak
"open: $!";
2848 binmode $fh or croak
"binmode: $!";
2849 my $size = (stat($fh))[7];
2850 ($size % 24) == 0 or croak
"inconsistent size: $size";
2853 close $fh or croak
"close: $fh";
2857 my ($l, $u) = (0, $size - 24);
2861 my $i = int(($l/24 + $u/24) / 2) * 24;
2862 sysseek($fh, $i, SEEK_SET
) or croak
"seek: $!";
2863 sysread($fh, my $buf, 24) == 24 or croak
"read: $!";
2864 my ($r, $c) = unpack('NH40', $buf);
2868 } elsif ($r > $rev) {
2870 } else { # $r == $rev
2871 close($fh) or croak
"close: $!";
2872 return $c eq ('0' x
40) ?
undef : $c;
2875 close($fh) or croak
"close: $!";
2879 # Finds the first svn revision that exists on (if $eq_ok is true) or
2880 # before $rev for the current branch. It will not search any lower
2881 # than $min_rev. Returns the git commit hash and svn revision number
2882 # if found, else (undef, undef).
2883 sub find_rev_before
{
2884 my ($self, $rev, $eq_ok, $min_rev) = @_;
2885 --$rev unless $eq_ok;
2887 while ($rev >= $min_rev) {
2888 if (my $c = $self->rev_map_get($rev)) {
2893 return (undef, undef);
2896 # Finds the first svn revision that exists on (if $eq_ok is true) or
2897 # after $rev for the current branch. It will not search any higher
2898 # than $max_rev. Returns the git commit hash and svn revision number
2899 # if found, else (undef, undef).
2900 sub find_rev_after
{
2901 my ($self, $rev, $eq_ok, $max_rev) = @_;
2902 ++$rev unless $eq_ok;
2903 $max_rev ||= $self->rev_map_max;
2904 while ($rev <= $max_rev) {
2905 if (my $c = $self->rev_map_get($rev)) {
2910 return (undef, undef);
2914 my ($class, $repo_id, $ref_id, $path) = @_;
2915 unless (defined $repo_id && length $repo_id) {
2916 $repo_id = $Git::SVN
::default_repo_id
;
2918 unless (defined $ref_id && length $ref_id) {
2919 $_[2] = $ref_id = $Git::SVN
::default_ref_id
;
2922 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
2923 $_[3] = $path = '' unless (defined $path);
2924 mkpath
(["$ENV{GIT_DIR}/svn"]);
2926 ref_id
=> $ref_id, dir
=> $dir, index => "$dir/index",
2927 path
=> $path, config
=> "$ENV{GIT_DIR}/svn/config",
2928 map_root
=> "$dir/.rev_map", repo_id
=> $repo_id }, $class;
2931 # for read-only access of old .rev_db formats
2932 sub unlink_rev_db_symlink
{
2934 my $link = $self->rev_db_path;
2935 $link =~ s/\.[\w-]+$// or croak
"missing UUID at the end of $link";
2937 unlink $link or croak
"unlink: $link failed!";
2942 my ($self, $uuid) = @_;
2943 my $db_path = $self->map_path($uuid);
2944 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
2945 or croak
"map_path: $db_path does not contain '/.rev_map.' !";
2949 # the new replacement for .rev_db
2951 my ($self, $uuid) = @_;
2952 $uuid ||= $self->ra_uuid;
2953 "$self->{map_root}.$uuid";
2958 $f =~ s
#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
2962 sub remove_username
{
2963 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
2966 package Git
::SVN
::Prompt
;
2970 use vars
qw/$_no_auth_cache $_username/;
2973 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
2974 $may_save = undef if $_no_auth_cache;
2975 $default_username = $_username if defined $_username;
2976 if (defined $default_username && length $default_username) {
2977 if (defined $realm && length $realm) {
2978 print STDERR
"Authentication realm: $realm\n";
2981 $cred->username($default_username);
2983 username
($cred, $realm, $may_save, $pool);
2985 $cred->password(_read_password
("Password for '" .
2986 $cred->username . "': ", $realm));
2987 $cred->may_save($may_save);
2988 $SVN::_Core
::SVN_NO_ERROR
;
2991 sub ssl_server_trust
{
2992 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
2993 $may_save = undef if $_no_auth_cache;
2994 print STDERR
"Error validating server certificate for '$realm':\n";
2997 # All variables SVN::Auth::SSL::* are used only once,
2998 # so we're shutting up Perl warnings about this.
2999 if ($failures & $SVN::Auth
::SSL
::UNKNOWNCA
) {
3000 print STDERR
" - The certificate is not issued ",
3001 "by a trusted authority. Use the\n",
3002 " fingerprint to validate ",
3003 "the certificate manually!\n";
3005 if ($failures & $SVN::Auth
::SSL
::CNMISMATCH
) {
3006 print STDERR
" - The certificate hostname ",
3007 "does not match.\n";
3009 if ($failures & $SVN::Auth
::SSL
::NOTYETVALID
) {
3010 print STDERR
" - The certificate is not yet valid.\n";
3012 if ($failures & $SVN::Auth
::SSL
::EXPIRED
) {
3013 print STDERR
" - The certificate has expired.\n";
3015 if ($failures & $SVN::Auth
::SSL
::OTHER
) {
3016 print STDERR
" - The certificate has ",
3017 "an unknown error.\n";
3019 } # no warnings 'once'
3021 "Certificate information:\n".
3022 " - Hostname: %s\n".
3023 " - Valid: from %s until %s\n".
3025 " - Fingerprint: %s\n",
3026 map $cert_info->$_, qw(hostname valid_from valid_until
3027 issuer_dname fingerprint
);
3030 print STDERR
$may_save ?
3031 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
3032 "(R)eject or accept (t)emporarily? ";
3034 $choice = lc(substr(<STDIN
> || 'R', 0, 1));
3035 if ($choice =~ /^t$/i) {
3036 $cred->may_save(undef);
3037 } elsif ($choice =~ /^r$/i) {
3039 } elsif ($may_save && $choice =~ /^p$/i) {
3040 $cred->may_save($may_save);
3044 $cred->accepted_failures($failures);
3045 $SVN::_Core
::SVN_NO_ERROR
;
3048 sub ssl_client_cert
{
3049 my ($cred, $realm, $may_save, $pool) = @_;
3050 $may_save = undef if $_no_auth_cache;
3051 print STDERR
"Client certificate filename: ";
3053 chomp(my $filename = <STDIN
>);
3054 $cred->cert_file($filename);
3055 $cred->may_save($may_save);
3056 $SVN::_Core
::SVN_NO_ERROR
;
3059 sub ssl_client_cert_pw
{
3060 my ($cred, $realm, $may_save, $pool) = @_;
3061 $may_save = undef if $_no_auth_cache;
3062 $cred->password(_read_password
("Password: ", $realm));
3063 $cred->may_save($may_save);
3064 $SVN::_Core
::SVN_NO_ERROR
;
3068 my ($cred, $realm, $may_save, $pool) = @_;
3069 $may_save = undef if $_no_auth_cache;
3070 if (defined $realm && length $realm) {
3071 print STDERR
"Authentication realm: $realm\n";
3074 if (defined $_username) {
3075 $username = $_username;
3077 print STDERR
"Username: ";
3079 chomp($username = <STDIN
>);
3081 $cred->username($username);
3082 $cred->may_save($may_save);
3083 $SVN::_Core
::SVN_NO_ERROR
;
3086 sub _read_password
{
3087 my ($prompt, $realm) = @_;
3088 print STDERR
$prompt;
3090 require Term
::ReadKey
;
3091 Term
::ReadKey
::ReadMode
('noecho');
3093 while (defined(my $key = Term
::ReadKey
::ReadKey
(0))) {
3094 last if $key =~ /[\012\015]/; # \n\r
3097 Term
::ReadKey
::ReadMode
('restore');
3103 package SVN
::Git
::Fetcher
;
3108 use File
::Temp
qw/tempfile/;
3111 # file baton members: path, mode_a, mode_b, pool, fh, blob, base
3113 my ($class, $git_svn) = @_;
3114 my $self = SVN
::Delta
::Editor
->new;
3115 bless $self, $class;
3116 $self->{c
} = $git_svn->{last_commit
} if exists $git_svn->{last_commit
};
3117 $self->{empty
} = {};
3118 $self->{dir_prop
} = {};
3119 $self->{file_prop
} = {};
3120 $self->{absent_dir
} = {};
3121 $self->{absent_file
} = {};
3122 $self->{gii
} = $git_svn->tmp_index_do(sub { Git
::IndexInfo
->new });
3126 sub set_path_strip
{
3127 my ($self, $path) = @_;
3128 $self->{path_strip
} = qr/^\Q$path\E(\/|$)/ if length $path;
3135 sub open_directory
{
3136 my ($self, $path, $pb, $rev) = @_;
3141 my ($self, $path) = @_;
3142 if ($self->{path_strip
}) {
3143 $path =~ s!$self->{path_strip}!! or
3144 die "Failed to strip path '$path' ($self->{path_strip})\n";
3150 my ($self, $path, $rev, $pb) = @_;
3152 my $gpath = $self->git_path($path);
3153 return undef if ($gpath eq '');
3155 # remove entire directories.
3156 if (command
('ls-tree', $self->{c
}, '--', $gpath) =~ /^040000 tree/) {
3157 my ($ls, $ctx) = command_output_pipe
(qw/ls
-tree
3159 $self->{c
}, '--', $gpath);
3163 $self->{gii
}->remove($_);
3164 print "\tD\t$_\n" unless $::_q
;
3166 print "\tD\t$gpath/\n" unless $::_q
;
3167 command_close_pipe
($ls, $ctx);
3168 $self->{empty
}->{$path} = 0
3170 $self->{gii
}->remove($gpath);
3171 print "\tD\t$gpath\n" unless $::_q
;
3177 my ($self, $path, $pb, $rev) = @_;
3178 my $gpath = $self->git_path($path);
3179 my ($mode, $blob) = (command
('ls-tree', $self->{c
}, '--', $gpath)
3180 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
3181 unless (defined $mode && defined $blob) {
3182 die "$path was not found in commit $self->{c} (r$rev)\n";
3184 { path
=> $path, mode_a
=> $mode, mode_b
=> $mode, blob
=> $blob,
3185 pool
=> SVN
::Pool
->new, action
=> 'M' };
3189 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
3190 my ($dir, $file) = ($path =~ m
#^(.*?)/?([^/]+)$#);
3191 delete $self->{empty
}->{$dir};
3192 { path
=> $path, mode_a
=> 100644, mode_b
=> 100644,
3193 pool
=> SVN
::Pool
->new, action
=> 'A' };
3197 my ($self, $path, $cp_path, $cp_rev) = @_;
3198 my $gpath = $self->git_path($path);
3200 my ($ls, $ctx) = command_output_pipe
(qw/ls
-tree
3206 $self->{gii
}->remove($_);
3207 print "\tD\t$_\n" unless $::_q
;
3209 command_close_pipe
($ls, $ctx);
3210 $self->{empty
}->{$path} = 0;
3212 my ($dir, $file) = ($path =~ m
#^(.*?)/?([^/]+)$#);
3213 delete $self->{empty
}->{$dir};
3214 $self->{empty
}->{$path} = 1;
3218 sub change_dir_prop
{
3219 my ($self, $db, $prop, $value) = @_;
3220 $self->{dir_prop
}->{$db->{path
}} ||= {};
3221 $self->{dir_prop
}->{$db->{path
}}->{$prop} = $value;
3225 sub absent_directory
{
3226 my ($self, $path, $pb) = @_;
3227 $self->{absent_dir
}->{$pb->{path
}} ||= [];
3228 push @
{$self->{absent_dir
}->{$pb->{path
}}}, $path;
3233 my ($self, $path, $pb) = @_;
3234 $self->{absent_file
}->{$pb->{path
}} ||= [];
3235 push @
{$self->{absent_file
}->{$pb->{path
}}}, $path;
3239 sub change_file_prop
{
3240 my ($self, $fb, $prop, $value) = @_;
3241 if ($prop eq 'svn:executable') {
3242 if ($fb->{mode_b
} != 120000) {
3243 $fb->{mode_b
} = defined $value ?
100755 : 100644;
3245 } elsif ($prop eq 'svn:special') {
3246 $fb->{mode_b
} = defined $value ?
120000 : 100644;
3248 $self->{file_prop
}->{$fb->{path
}} ||= {};
3249 $self->{file_prop
}->{$fb->{path
}}->{$prop} = $value;
3254 sub apply_textdelta
{
3255 my ($self, $fb, $exp) = @_;
3256 my $fh = Git
::temp_acquire
('svn_delta');
3257 # $fh gets auto-closed() by SVN::TxDelta::apply(),
3258 # (but $base does not,) so dup() it for reading in close_file
3259 open my $dup, '<&', $fh or croak
$!;
3260 my $base = Git
::temp_acquire
('git_blob');
3262 print $base 'link ' if ($fb->{mode_a
} == 120000);
3263 my $size = $::_repository
->cat_blob($fb->{blob
}, $base);
3264 die "Failed to read object $fb->{blob}" if ($size < 0);
3267 seek $base, 0, 0 or croak
$!;
3268 my $got = ::md5sum
($base);
3269 die "Checksum mismatch: $fb->{path} $fb->{blob}\n",
3271 " got: $got\n" if ($got ne $exp);
3274 seek $base, 0, 0 or croak
$!;
3276 $fb->{base
} = $base;
3277 [ SVN
::TxDelta
::apply
($base, $dup, undef, $fb->{path
}, $fb->{pool
}) ];
3281 my ($self, $fb, $exp) = @_;
3283 my $path = $self->git_path($fb->{path
});
3284 if (my $fh = $fb->{fh
}) {
3286 seek($fh, 0, 0) or croak
$!;
3287 my $got = ::md5sum
($fh);
3289 die "Checksum mismatch: $path\n",
3290 "expected: $exp\n got: $got\n";
3293 if ($fb->{mode_b
} == 120000) {