]> git.ipfire.org Git - thirdparty/git.git/blame - git-svn.perl
Fix markup in git-svn man page
[thirdparty/git.git] / git-svn.perl
CommitLineData
3397f9df 1#!/usr/bin/env perl
551ce28f
EW
2# Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3# License: GPL v2 or later
3397f9df
EW
4use warnings;
5use strict;
6use vars qw/ $AUTHOR $VERSION
9760adcc
EW
7 $sha1 $sha1_short $_revision
8 $_q $_authors %users/;
3397f9df 9$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
60d02ccc 10$VERSION = '@@GIT_VERSION@@';
13ccd6d4 11
5253dc33 12my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
706587fc 13$ENV{GIT_DIR} ||= '.git';
9fa00b65 14$Git::SVN::default_repo_id = 'svn';
8b8fc068 15$Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn';
6af1db44 16$Git::SVN::Ra::_log_window_size = 100;
13ccd6d4 17
f8c9d1d2 18$Git::SVN::Log::TZ = $ENV{TZ};
3397f9df 19$ENV{TZ} = 'UTC';
a00439ac 20$| = 1; # unbuffer STDOUT
3397f9df 21
6fda05ae 22sub fatal (@) { print STDERR @_; exit 1 }
b9c85187
EW
23require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
24require SVN::Ra;
25require SVN::Delta;
26if ($SVN::Core::VERSION lt '1.1.0') {
27 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)\n";
28}
d81bf827 29push @Git::SVN::Ra::ISA, 'SVN::Ra';
b9c85187
EW
30push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
31push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
3397f9df
EW
32use Carp qw/croak/;
33use IO::File qw//;
34use File::Basename qw/dirname basename/;
35use File::Path qw/mkpath/;
512b620b 36use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
968bdf1f 37use IPC::Open3;
336f1714 38use Git;
a5e0cedc 39
336f1714
EW
40BEGIN {
41 my $s;
42 foreach (qw/command command_oneline command_noisy command_output_pipe
43 command_input_pipe command_close_pipe/) {
44 $s .= "*SVN::Git::Editor::$_ = *SVN::Git::Fetcher::$_ = ".
706587fc 45 "*Git::SVN::Migration::$_ = ".
f8c9d1d2 46 "*Git::SVN::Log::$_ = *Git::SVN::$_ = *$_ = *Git::$_; ";
336f1714
EW
47 }
48 eval $s;
49}
50
b9c85187 51my ($SVN);
83e9940a 52
f8c9d1d2
EW
53$sha1 = qr/[a-f\d]{40}/;
54$sha1_short = qr/[a-f\d]{4,40}/;
44320b9e 55my ($_stdin, $_help, $_edit,
9760adcc 56 $_message, $_file,
d05d72e0 57 $_template, $_shared,
e98671e5 58 $_version, $_fetch_all,
dee41f3e 59 $_merge, $_strategy, $_dry_run, $_local,
905f8b7d 60 $_prefix, $_no_checkout, $_verbose);
0bed5eaa 61$Git::SVN::_follow_parent = 1;
706587fc
EW
62my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
63 'config-dir=s' => \$Git::SVN::Ra::config_dir,
64 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache );
0bed5eaa 65my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
dc5869c0 66 'authors-file|A=s' => \$_authors,
ecc712dd 67 'repack:i' => \$Git::SVN::_repack,
97ae0911
EW
68 'noMetadata' => \$Git::SVN::_no_metadata,
69 'useSvmProps' => \$Git::SVN::_use_svm_props,
62e349d2 70 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
6af1db44 71 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
1e889ef3 72 'no-checkout' => \$_no_checkout,
80f50749 73 'quiet|q' => \$_q,
ecc712dd
EW
74 'repack-flags|repack-args|repack-opts=s' =>
75 \$Git::SVN::_repack_flags,
706587fc 76 %remote_opts );
36f5b1f0 77
9d55b41a 78my ($_trunk, $_tags, $_branches);
0dfaf0a4 79my %icv;
dadc6d2a
EW
80my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
81 'trunk|T=s' => \$_trunk, 'tags|t=s' => \$_tags,
82 'branches|b=s' => \$_branches, 'prefix=s' => \$_prefix,
0dfaf0a4
EW
83 'no-metadata' => sub { $icv{noMetadata} = 1 },
84 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
85 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
86 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
dadc6d2a 87 %remote_opts );
27e9fb8d 88my %cmt_opts = ( 'edit|e' => \$_edit,
24e22aa8
EW
89 'rmdir' => \$SVN::Git::Editor::_rmdir,
90 'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
91 'l=i' => \$SVN::Git::Editor::_rename_limit,
92 'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
27e9fb8d 93);
9d55b41a 94
3397f9df 95my %cmd = (
2a3240be 96 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
e98671e5 97 { 'revision|r=s' => \$_revision,
905f8b7d 98 'fetch-all|all' => \$_fetch_all,
e98671e5 99 %fc_opts } ],
0425ea90
EW
100 clone => [ \&cmd_clone, "Initialize and fetch revisions",
101 { 'revision|r=s' => \$_revision,
102 %fc_opts, %init_opts } ],
d2866f9e 103 init => [ \&cmd_init, "Initialize a repo for tracking" .
f8ab6b73 104 " (requires URL argument)",
9d55b41a 105 \%init_opts ],
dadc6d2a
EW
106 'multi-init' => [ \&cmd_multi_init,
107 "Deprecated alias for ".
108 "'$0 init -T<trunk> -b<branches> -t<tags>'",
109 \%init_opts ],
d7ad3bed
EW
110 dcommit => [ \&cmd_dcommit,
111 'Commit several diffs to merge with upstream',
3289e86e
EW
112 { 'merge|m|M' => \$_merge,
113 'strategy|s=s' => \$_strategy,
905f8b7d 114 'verbose|v' => \$_verbose,
3289e86e 115 'dry-run|n' => \$_dry_run,
905f8b7d 116 'fetch-all|all' => \$_fetch_all,
4b155223 117 %cmt_opts, %fc_opts } ],
1ce255dc
EW
118 'set-tree' => [ \&cmd_set_tree,
119 "Set an SVN repository to a git tree-ish",
120 { 'stdin|' => \$_stdin, %cmt_opts, %fc_opts, } ],
5969cbe1 121 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
a5e0cedc 122 { 'revision|r=i' => \$_revision } ],
1c8443b0 123 'multi-fetch' => [ \&cmd_multi_fetch,
e98671e5
EW
124 "Deprecated alias for $0 fetch --all",
125 { 'revision|r=s' => \$_revision, %fc_opts } ],
706587fc
EW
126 'migrate' => [ sub { },
127 # no-op, we automatically run this anyways,
706587fc
EW
128 'Migrate configuration/metadata/layout from
129 previous versions of git-svn',
a836a0e1
EW
130 { 'minimize' => \$Git::SVN::Migration::_minimize,
131 %remote_opts } ],
f8c9d1d2
EW
132 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
133 { 'limit=i' => \$Git::SVN::Log::limit,
79bb8d88 134 'revision|r=s' => \$_revision,
f8c9d1d2
EW
135 'verbose|v' => \$Git::SVN::Log::verbose,
136 'incremental' => \$Git::SVN::Log::incremental,
137 'oneline' => \$Git::SVN::Log::oneline,
138 'show-commit' => \$Git::SVN::Log::show_commit,
139 'non-recursive' => \$Git::SVN::Log::non_recursive,
79bb8d88 140 'authors-file|A=s' => \$_authors,
f8c9d1d2
EW
141 'color' => \$Git::SVN::Log::color,
142 'pager=s' => \$Git::SVN::Log::pager,
79bb8d88 143 } ],
26e60160
AR
144 'find-rev' => [ \&cmd_find_rev, "Translate between SVN revision numbers and tree-ish",
145 { } ],
905f8b7d
EW
146 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
147 { 'merge|m|M' => \$_merge,
148 'verbose|v' => \$_verbose,
149 'strategy|s=s' => \$_strategy,
dee41f3e 150 'local|l' => \$_local,
905f8b7d
EW
151 'fetch-all|all' => \$_fetch_all,
152 %fc_opts } ],
44320b9e
EW
153 'commit-diff' => [ \&cmd_commit_diff,
154 'Commit a diff between two trees',
27e9fb8d
EW
155 { 'message|m=s' => \$_message,
156 'file|F=s' => \$_file,
45bf473a 157 'revision|r=s' => \$_revision,
27e9fb8d 158 %cmt_opts } ],
3397f9df 159);
9d55b41a 160
3397f9df
EW
161my $cmd;
162for (my $i = 0; $i < @ARGV; $i++) {
163 if (defined $cmd{$ARGV[$i]}) {
164 $cmd = $ARGV[$i];
165 splice @ARGV, $i, 1;
166 last;
167 }
168};
169
448c81b4 170my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
a9612be2 171
b8c92cad 172read_repo_config(\%opts);
c284914a 173Getopt::Long::Configure('pass_through') if ($cmd && $cmd eq 'log');
9760adcc
EW
174my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
175 'minimize-connections' => \$Git::SVN::Migration::_minimize,
176 'id|i=s' => \$Git::SVN::default_ref_id,
befc9adc
EW
177 'svn-remote|remote|R=s' => sub {
178 $Git::SVN::no_reuse_existing = 1;
179 $Git::SVN::default_repo_id = $_[1] });
c284914a 180exit 1 if (!$rv && $cmd && $cmd ne 'log');
6f0783cf 181
3397f9df 182usage(0) if $_help;
551ce28f 183version() if $_version;
eeb0abe0
EW
184usage(1) unless defined $cmd;
185load_authors() if $_authors;
5253dc33
EW
186
187# make sure we're always running
188unless ($cmd =~ /(?:clone|init|multi-init)$/) {
189 unless (-d $ENV{GIT_DIR}) {
190 if ($git_dir_user_set) {
191 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
192 "but it is not a directory\n";
193 }
194 my $git_dir = delete $ENV{GIT_DIR};
195 chomp(my $cdup = command_oneline(qw/rev-parse --show-cdup/));
196 unless (length $cdup) {
197 die "Already at toplevel, but $git_dir ",
198 "not found '$cdup'\n";
199 }
200 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
201 unless (-d $git_dir) {
202 die "$git_dir still not found after going to ",
203 "'$cdup'\n";
204 }
205 $ENV{GIT_DIR} = $git_dir;
206 }
207}
0425ea90 208unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
706587fc
EW
209 Git::SVN::Migration::migration_check();
210}
ecc712dd 211Git::SVN::init_vars();
b805b44a
EW
212eval {
213 Git::SVN::verify_remotes_sanity();
214 $cmd{$cmd}->[0]->(@ARGV);
215};
216fatal $@ if $@;
1e889ef3 217post_fetch_checkout();
3397f9df
EW
218exit 0;
219
220####################### primary functions ######################
221sub usage {
222 my $exit = shift || 0;
223 my $fd = $exit ? \*STDERR : \*STDOUT;
224 print $fd <<"";
225git-svn - bidirectional operations between a single Subversion tree and git
226Usage: $0 <command> [options] [arguments]\n
448c81b4
EW
227
228 print $fd "Available commands:\n" unless $cmd;
3397f9df
EW
229
230 foreach (sort keys %cmd) {
448c81b4 231 next if $cmd && $cmd ne $_;
a836a0e1 232 next if /^multi-/; # don't show deprecated commands
b203b769 233 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
448c81b4 234 foreach (keys %{$cmd{$_}->[2]}) {
512b620b
EW
235 # mixed-case options are for .git/config only
236 next if /[A-Z]/ && /^[a-z]+$/i;
448c81b4 237 # prints out arguments as they should be passed:
b8c92cad 238 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
b203b769 239 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
448c81b4
EW
240 "--$_" : "-$_" }
241 split /\|/,$_)," $x\n";
242 }
3397f9df
EW
243 }
244 print $fd <<"";
448c81b4
EW
245\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
246arbitrary identifier if you're tracking multiple SVN branches/repositories in
247one git repository and want to keep them separate. See git-svn(1) for more
248information.
3397f9df
EW
249
250 exit $exit;
251}
252
551ce28f 253sub version {
7d60ab2c 254 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
551ce28f
EW
255 exit 0;
256}
257
8164b652
EW
258sub do_git_init_db {
259 unless (-d $ENV{GIT_DIR}) {
260 my @init_db = ('init');
261 push @init_db, "--template=$_template" if defined $_template;
dadc6d2a
EW
262 if (defined $_shared) {
263 if ($_shared =~ /[a-z]/) {
264 push @init_db, "--shared=$_shared";
265 } else {
266 push @init_db, "--shared";
267 }
268 }
8164b652
EW
269 command_noisy(@init_db);
270 }
0dfaf0a4
EW
271 my $set;
272 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
273 foreach my $i (keys %icv) {
274 die "'$set' and '$i' cannot both be set\n" if $set;
275 next unless defined $icv{$i};
276 command_noisy('config', "$pfx.$i", $icv{$i});
277 $set = $i;
278 }
8164b652
EW
279}
280
dadc6d2a
EW
281sub init_subdir {
282 my $repo_path = shift or return;
283 mkpath([$repo_path]) unless -d $repo_path;
284 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
f30603fc 285 $ENV{GIT_DIR} = '.git';
dadc6d2a
EW
286}
287
0425ea90
EW
288sub cmd_clone {
289 my ($url, $path) = @_;
290 if (!defined $path &&
291 (defined $_trunk || defined $_branches || defined $_tags) &&
292 $url !~ m#^[a-z\+]+://#) {
293 $path = $url;
294 }
0425ea90 295 $path = basename($url) if !defined $path || !length $path;
f30603fc 296 cmd_init($url, $path);
0425ea90
EW
297 Git::SVN::fetch_all($Git::SVN::default_repo_id);
298}
299
d2866f9e 300sub cmd_init {
dadc6d2a
EW
301 if (defined $_trunk || defined $_branches || defined $_tags) {
302 return cmd_multi_init(@_);
03e0ea87 303 }
dadc6d2a
EW
304 my $url = shift or die "SVN repository location required ",
305 "as a command-line argument\n";
306 init_subdir(@_);
8164b652 307 do_git_init_db();
03e0ea87 308
706587fc 309 Git::SVN->init($url);
3397f9df
EW
310}
311
2a3240be 312sub cmd_fetch {
e98671e5
EW
313 if (grep /^\d+=./, @_) {
314 die "'<rev>=<commit>' fetch arguments are ",
315 "no longer supported.\n";
07a1c950 316 }
e98671e5
EW
317 my ($remote) = @_;
318 if (@_ > 1) {
905f8b7d 319 die "Usage: $0 fetch [--all] [svn-remote]\n";
e98671e5
EW
320 }
321 $remote ||= $Git::SVN::default_repo_id;
322 if ($_fetch_all) {
323 cmd_multi_fetch();
324 } else {
325 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
1c8443b0 326 }
2a3240be
EW
327}
328
1ce255dc 329sub cmd_set_tree {
3397f9df
EW
330 my (@commits) = @_;
331 if ($_stdin || !@commits) {
332 print "Reading from stdin...\n";
333 @commits = ();
334 while (<STDIN>) {
1ca72aef 335 if (/\b($sha1_short)\b/o) {
3397f9df
EW
336 unshift @commits, $1;
337 }
338 }
339 }
340 my @revs;
8de010ad 341 foreach my $c (@commits) {
aef4e921 342 my @tmp = command('rev-parse',$c);
8de010ad
EW
343 if (scalar @tmp == 1) {
344 push @revs, $tmp[0];
345 } elsif (scalar @tmp > 1) {
aef4e921 346 push @revs, reverse(command('rev-list',@tmp));
8de010ad 347 } else {
1ce255dc 348 fatal "Failed to rev-parse $c\n";
8de010ad 349 }
3397f9df 350 }
1ce255dc
EW
351 my $gs = Git::SVN->new;
352 my ($r_last, $cmt_last) = $gs->last_rev_commit;
353 $gs->fetch;
97f6987a 354 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
1ce255dc
EW
355 fatal "There are new revisions that were fetched ",
356 "and need to be merged (or acknowledged) ",
357 "before committing.\nlast rev: $r_last\n",
358 " current: $gs->{last_rev}\n";
a5e0cedc 359 }
1ce255dc
EW
360 $gs->set_tree($_) foreach @revs;
361 print "Done committing ",scalar @revs," revisions to SVN\n";
a5e0cedc 362}
8f22562c 363
d7ad3bed
EW
364sub cmd_dcommit {
365 my $head = shift;
d7ad3bed 366 $head ||= 'HEAD';
a8ae2623 367 my @refs;
13c823fb
EW
368 my ($url, $rev, $uuid, $gs) = working_head_info($head, \@refs);
369 unless ($gs) {
a8ae2623 370 die "Unable to determine upstream SVN information from ",
905f8b7d 371 "$head history\n";
a8ae2623 372 }
13c823fb 373 my $c = $refs[-1];
45bf473a 374 my $last_rev;
a8ae2623 375 foreach my $d (@refs) {
aef4e921 376 if (!verify_ref("$d~1")) {
d7ad3bed
EW
377 fatal "Commit $d\n",
378 "has no parent commit, and therefore ",
379 "nothing to diff against.\n",
380 "You should be working from a repository ",
381 "originally created by git-svn\n";
48d044b5 382 }
45bf473a
EW
383 unless (defined $last_rev) {
384 (undef, $last_rev, undef) = cmt_metadata("$d~1");
385 unless (defined $last_rev) {
d7ad3bed
EW
386 fatal "Unable to extract revision information ",
387 "from commit $d~1\n";
45bf473a
EW
388 }
389 }
b22d4497
EW
390 if ($_dry_run) {
391 print "diff-tree $d~1 $d\n";
392 } else {
d7ad3bed 393 my %ed_opts = ( r => $last_rev,
61395354 394 log => get_commit_entry($d)->{log},
a8ae2623 395 ra => Git::SVN::Ra->new($url),
61395354
EW
396 tree_a => "$d~1",
397 tree_b => $d,
398 editor_cb => sub {
399 print "Committed r$_[0]\n";
400 $last_rev = $_[0]; },
a8ae2623 401 svn_path => '');
61395354 402 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
d7ad3bed
EW
403 print "No changes\n$d~1 == $d\n";
404 }
b22d4497
EW
405 }
406 }
407 return if $_dry_run;
60d9c97a
EW
408 unless ($gs) {
409 warn "Could not determine fetch information for $url\n",
410 "Will not attempt to fetch and rebase commits.\n",
411 "This probably means you have useSvmProps and should\n",
412 "now resync your SVN::Mirror repository.\n";
413 return;
414 }
905f8b7d 415 $_fetch_all ? $gs->fetch_all : $gs->fetch;
d7ad3bed
EW
416 # we always want to rebase against the current HEAD, not any
417 # head that was passed to us
418 my @diff = command('diff-tree', 'HEAD', $gs->refname, '--');
b22d4497
EW
419 my @finish;
420 if (@diff) {
905f8b7d 421 @finish = rebase_cmd();
d7ad3bed
EW
422 print STDERR "W: HEAD and ", $gs->refname, " differ, ",
423 "using @finish:\n", "@diff";
b22d4497 424 } else {
d7ad3bed
EW
425 print "No changes between current HEAD and ",
426 $gs->refname, "\nResetting to the latest ",
427 $gs->refname, "\n";
4769489a 428 @finish = qw/reset --mixed/;
b22d4497 429 }
d7ad3bed 430 command_noisy(@finish, $gs->refname);
b22d4497
EW
431}
432
26e60160
AR
433sub cmd_find_rev {
434 my $revision_or_hash = shift;
435 my $result;
436 if ($revision_or_hash =~ /^r\d+$/) {
b3cb7e45
AR
437 my $head = shift;
438 $head ||= 'HEAD';
439 my @refs;
440 my (undef, undef, undef, $gs) = working_head_info($head, \@refs);
441 unless ($gs) {
442 die "Unable to determine upstream SVN information from ",
443 "$head history\n";
26e60160 444 }
b3cb7e45
AR
445 my $desired_revision = substr($revision_or_hash, 1);
446 $result = $gs->rev_db_get($desired_revision);
26e60160
AR
447 } else {
448 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
449 $result = $rev;
450 }
451 print "$result\n" if $result;
452}
453
905f8b7d
EW
454sub cmd_rebase {
455 command_noisy(qw/update-index --refresh/);
13c823fb
EW
456 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
457 unless ($gs) {
905f8b7d
EW
458 die "Unable to determine upstream SVN information from ",
459 "working tree history\n";
460 }
905f8b7d
EW
461 if (command(qw/diff-index HEAD --/)) {
462 print STDERR "Cannot rebase with uncommited changes:\n";
463 command_noisy('status');
464 exit 1;
465 }
dee41f3e
EW
466 unless ($_local) {
467 $_fetch_all ? $gs->fetch_all : $gs->fetch;
468 }
905f8b7d
EW
469 command_noisy(rebase_cmd(), $gs->refname);
470}
471
5969cbe1 472sub cmd_show_ignore {
13c823fb
EW
473 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
474 $gs ||= Git::SVN->new;
5969cbe1 475 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
102a0a2d 476 $gs->traverse_ignore(\*STDOUT, $gs->{path}, $r);
a5e0cedc
EW
477}
478
8164b652 479sub cmd_multi_init {
9d55b41a 480 my $url = shift;
98327e58
EW
481 unless (defined $_trunk || defined $_branches || defined $_tags) {
482 usage(1);
9d55b41a 483 }
8164b652 484 $_prefix = '' unless defined $_prefix;
dadc6d2a
EW
485 if (defined $url) {
486 $url =~ s#/+$##;
487 init_subdir(@_);
488 }
f30603fc 489 do_git_init_db();
98327e58 490 if (defined $_trunk) {
706587fc
EW
491 my $trunk_ref = $_prefix . 'trunk';
492 # try both old-style and new-style lookups:
493 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
8164b652 494 unless ($gs_trunk) {
706587fc
EW
495 my ($trunk_url, $trunk_path) =
496 complete_svn_url($url, $_trunk);
497 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
498 undef, $trunk_ref);
98327e58 499 }
c35b96e7 500 }
706587fc 501 return unless defined $_branches || defined $_tags;
e7db67e6
EW
502 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
503 complete_url_ls_init($ra, $_branches, '--branches/-b', $_prefix);
504 complete_url_ls_init($ra, $_tags, '--tags/-t', $_prefix . 'tags/');
9d55b41a
EW
505}
506
1c8443b0 507sub cmd_multi_fetch {
0af9c9f9
EW
508 my $remotes = Git::SVN::read_all_remotes();
509 foreach my $repo_id (sort keys %$remotes) {
db03cd24 510 if ($remotes->{$repo_id}->{url}) {
4bb9ed04
EW
511 Git::SVN::fetch_all($repo_id, $remotes);
512 }
9d55b41a 513 }
9d55b41a
EW
514}
515
44320b9e
EW
516# this command is special because it requires no metadata
517sub cmd_commit_diff {
518 my ($ta, $tb, $url) = @_;
519 my $usage = "Usage: $0 commit-diff -r<revision> ".
520 "<tree-ish> <tree-ish> [<URL>]\n";
521 fatal($usage) if (!defined $ta || !defined $tb);
d3a840dc 522 my $svn_path;
44320b9e
EW
523 if (!defined $url) {
524 my $gs = eval { Git::SVN->new };
525 if (!$gs) {
526 fatal("Needed URL or usable git-svn --id in ",
527 "the command-line\n", $usage);
528 }
529 $url = $gs->{url};
d3a840dc 530 $svn_path = $gs->{path};
44320b9e
EW
531 }
532 unless (defined $_revision) {
533 fatal("-r|--revision is a required argument\n", $usage);
534 }
535 if (defined $_message && defined $_file) {
536 fatal("Both --message/-m and --file/-F specified ",
537 "for the commit message.\n",
538 "I have no idea what you mean\n");
539 }
540 if (defined $_file) {
541 $_message = file_to_s($_file);
542 } else {
543 $_message ||= get_commit_entry($tb)->{log};
544 }
545 my $ra ||= Git::SVN::Ra->new($url);
d3a840dc 546 $svn_path ||= $ra->{svn_path};
44320b9e
EW
547 my $r = $_revision;
548 if ($r eq 'HEAD') {
549 $r = $ra->get_latest_revnum;
550 } elsif ($r !~ /^\d+$/) {
551 die "revision argument: $r not understood by git-svn\n";
552 }
61395354
EW
553 my %ed_opts = ( r => $r,
554 log => $_message,
555 ra => $ra,
556 tree_a => $ta,
557 tree_b => $tb,
558 editor_cb => sub { print "Committed r$_[0]\n" },
559 svn_path => $svn_path );
560 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
44320b9e
EW
561 print "No changes\n$ta == $tb\n";
562 }
44320b9e
EW
563}
564
3397f9df
EW
565########################### utility functions #########################
566
905f8b7d
EW
567sub rebase_cmd {
568 my @cmd = qw/rebase/;
569 push @cmd, '-v' if $_verbose;
570 push @cmd, qw/--merge/ if $_merge;
571 push @cmd, "--strategy=$_strategy" if $_strategy;
572 @cmd;
573}
574
1e889ef3
EW
575sub post_fetch_checkout {
576 return if $_no_checkout;
577 my $gs = $Git::SVN::_head or return;
578 return if verify_ref('refs/heads/master^0');
579
580 my $valid_head = verify_ref('HEAD^0');
581 command_noisy(qw(update-ref refs/heads/master), $gs->refname);
582 return if ($valid_head || !verify_ref('HEAD^0'));
583
584 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
585 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
586 return if -f $index;
587
588 chomp(my $bare = `git config --bool --get core.bare`);
589 return if $bare eq 'true';
590 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
591 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
592 print STDERR "Checked out HEAD:\n ",
593 $gs->full_url, " r", $gs->last_rev, "\n";
594}
595
98327e58
EW
596sub complete_svn_url {
597 my ($url, $path) = @_;
598 $path =~ s#/+$##;
98327e58 599 if ($path !~ m#^[a-z\+]+://#) {
98327e58
EW
600 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
601 fatal("E: '$path' is not a complete URL ",
602 "and a separate URL is not specified\n");
603 }
706587fc 604 return ($url, $path);
98327e58 605 }
706587fc 606 return ($path, '');
98327e58
EW
607}
608
9d55b41a 609sub complete_url_ls_init {
706587fc
EW
610 my ($ra, $repo_path, $switch, $pfx) = @_;
611 unless ($repo_path) {
9d55b41a
EW
612 print STDERR "W: $switch not specified\n";
613 return;
614 }
706587fc
EW
615 $repo_path =~ s#/+$##;
616 if ($repo_path =~ m#^[a-z\+]+://#) {
617 $ra = Git::SVN::Ra->new($repo_path);
618 $repo_path = '';
e7db67e6 619 } else {
706587fc 620 $repo_path =~ s#^/+##;
e7db67e6 621 unless ($ra) {
706587fc 622 fatal("E: '$repo_path' is not a complete URL ",
e7db67e6 623 "and a separate URL is not specified\n");
8164b652 624 }
e7db67e6 625 }
706587fc 626 my $url = $ra->{url};
b4d57e5e
EW
627 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
628 my $k = "svn-remote.$gs->{repo_id}.url";
629 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
630 if ($orig_url && ($orig_url ne $gs->{url})) {
631 die "$k already set: $orig_url\n",
632 "wanted to set to: $gs->{url}\n";
88cf4107 633 }
b4d57e5e
EW
634 command_oneline('config', $k, $gs->{url}) unless $orig_url;
635 my $remote_path = "$ra->{svn_path}/$repo_path/*";
636 $remote_path =~ s#/+#/#g;
637 $remote_path =~ s#^/##g;
638 my ($n) = ($switch =~ /^--(\w+)/);
639 if (length $pfx && $pfx !~ m#/$#) {
640 die "--prefix='$pfx' must have a trailing slash '/'\n";
9d55b41a 641 }
b4d57e5e
EW
642 command_noisy('config', "svn-remote.$gs->{repo_id}.$n",
643 "$remote_path:refs/remotes/$pfx*");
9d55b41a
EW
644}
645
aef4e921
EW
646sub verify_ref {
647 my ($ref) = @_;
2c5c1d53
EW
648 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
649 { STDERR => 0 }); };
aef4e921
EW
650}
651
a5e0cedc 652sub get_tree_from_treeish {
cf52b8f0 653 my ($treeish) = @_;
44320b9e 654 # $treeish can be a symbolic ref, too:
aef4e921 655 my $type = command_oneline(qw/cat-file -t/, $treeish);
cf52b8f0
EW
656 my $expected;
657 while ($type eq 'tag') {
aef4e921 658 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
cf52b8f0
EW
659 }
660 if ($type eq 'commit') {
aef4e921
EW
661 $expected = (grep /^tree /, command(qw/cat-file commit/,
662 $treeish))[0];
44320b9e 663 ($expected) = ($expected =~ /^tree ($sha1)$/o);
cf52b8f0
EW
664 die "Unable to get tree from $treeish\n" unless $expected;
665 } elsif ($type eq 'tree') {
666 $expected = $treeish;
667 } else {
668 die "$treeish is a $type, expected tree, tag or commit\n";
669 }
a5e0cedc
EW
670 return $expected;
671}
672
44320b9e
EW
673sub get_commit_entry {
674 my ($treeish) = shift;
675 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
676 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
677 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
678 open my $log_fh, '>', $commit_editmsg or croak $!;
3397f9df 679
44320b9e 680 my $type = command_oneline(qw/cat-file -t/, $treeish);
4ad4515d 681 if ($type eq 'commit' || $type eq 'tag') {
aef4e921 682 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
44320b9e 683 $type, $treeish);
3397f9df
EW
684 my $in_msg = 0;
685 while (<$msg_fh>) {
686 if (!$in_msg) {
687 $in_msg = 1 if (/^\s*$/);
df746c5a 688 } elsif (/^git-svn-id: /) {
44320b9e
EW
689 # skip this for now, we regenerate the
690 # correct one on re-fetch anyways
691 # TODO: set *:merge properties or like...
3397f9df 692 } else {
44320b9e 693 print $log_fh $_ or croak $!;
3397f9df
EW
694 }
695 }
aef4e921 696 command_close_pipe($msg_fh, $ctx);
3397f9df 697 }
44320b9e 698 close $log_fh or croak $!;
3397f9df
EW
699
700 if ($_edit || ($type eq 'tree')) {
701 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
44320b9e
EW
702 # TODO: strip out spaces, comments, like git-commit.sh
703 system($editor, $commit_editmsg);
3397f9df 704 }
44320b9e
EW
705 rename $commit_editmsg, $commit_msg or croak $!;
706 open $log_fh, '<', $commit_msg or croak $!;
707 { local $/; chomp($log_entry{log} = <$log_fh>); }
708 close $log_fh or croak $!;
709 unlink $commit_msg;
710 \%log_entry;
a5e0cedc
EW
711}
712
3397f9df
EW
713sub s_to_file {
714 my ($str, $file, $mode) = @_;
715 open my $fd,'>',$file or croak $!;
716 print $fd $str,"\n" or croak $!;
717 close $fd or croak $!;
718 chmod ($mode &~ umask, $file) if (defined $mode);
719}
720
721sub file_to_s {
722 my $file = shift;
723 open my $fd,'<',$file or croak "$!: file: $file\n";
724 local $/;
725 my $ret = <$fd>;
726 close $fd or croak $!;
727 $ret =~ s/\s*$//s;
728 return $ret;
729}
730
eeb0abe0
EW
731# '<svn username> = real-name <email address>' mapping based on git-svnimport:
732sub load_authors {
733 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
f8c9d1d2 734 my $log = $cmd eq 'log';
eeb0abe0
EW
735 while (<$authors>) {
736 chomp;
8815788e 737 next unless /^(\S+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
eeb0abe0 738 my ($user, $name, $email) = ($1, $2, $3);
f8c9d1d2
EW
739 if ($log) {
740 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
741 } else {
742 $users{$user} = [$name, $email];
743 }
79bb8d88
EW
744 }
745 close $authors or croak $!;
746}
747
e0d10e1c 748# convert GetOpt::Long specs for use by git-config
b8c92cad 749sub read_repo_config {
706587fc 750 return unless -d $ENV{GIT_DIR};
b8c92cad 751 my $opts = shift;
97ae0911 752 my @config_only;
b8c92cad 753 foreach my $o (keys %$opts) {
97ae0911
EW
754 # if we have mixedCase and a long option-only, then
755 # it's a config-only variable that we don't need for
756 # the command-line.
757 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
b8c92cad 758 my $v = $opts->{$o};
97ae0911 759 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
b8c92cad 760 $key =~ s/-//g;
e0d10e1c 761 my $arg = 'git-config';
b8c92cad
EW
762 $arg .= ' --int' if ($o =~ /[:=]i$/);
763 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
764 if (ref $v eq 'ARRAY') {
765 chomp(my @tmp = `$arg --get-all svn.$key`);
766 @$v = @tmp if @tmp;
767 } else {
768 chomp(my $tmp = `$arg --get svn.$key`);
7774284a 769 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
b8c92cad
EW
770 $$v = $tmp;
771 }
772 }
773 }
97ae0911 774 delete @$opts{@config_only} if @config_only;
b8c92cad
EW
775}
776
79bb8d88 777sub extract_metadata {
c1927a85 778 my $id = shift or return (undef, undef, undef);
79bb8d88
EW
779 my ($url, $rev, $uuid) = ($id =~ /^git-svn-id:\s(\S+?)\@(\d+)
780 \s([a-f\d\-]+)$/x);
e70dc780 781 if (!defined $rev || !$uuid || !$url) {
79bb8d88 782 # some of the original repositories I made had
82e5a82f 783 # identifiers like this:
79bb8d88
EW
784 ($rev, $uuid) = ($id =~/^git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
785 }
786 return ($url, $rev, $uuid);
787}
788
c1927a85
EW
789sub cmt_metadata {
790 return extract_metadata((grep(/^git-svn-id: /,
aef4e921 791 command(qw/cat-file commit/, shift)))[-1]);
c1927a85
EW
792}
793
905f8b7d
EW
794sub working_head_info {
795 my ($head, $refs) = @_;
905f8b7d 796 my ($fh, $ctx) = command_output_pipe('rev-list', $head);
b03c7a63
AR
797 while (my $hash = <$fh>) {
798 chomp($hash);
799 my ($url, $rev, $uuid) = cmt_metadata($hash);
13c823fb
EW
800 if (defined $url && defined $rev) {
801 if (my $gs = Git::SVN->find_by_url($url)) {
802 my $c = $gs->rev_db_get($rev);
b03c7a63 803 if ($c && $c eq $hash) {
13c823fb
EW
804 close $fh; # break the pipe
805 return ($url, $rev, $uuid, $gs);
806 }
807 }
808 }
b03c7a63 809 unshift @$refs, $hash if $refs;
905f8b7d 810 }
13c823fb
EW
811 command_close_pipe($fh, $ctx);
812 (undef, undef, undef, undef);
905f8b7d
EW
813}
814
9b981fc6
EW
815package Git::SVN;
816use strict;
817use warnings;
ecc712dd 818use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
62e349d2 819 $_repack $_repack_flags $_use_svm_props $_head
befc9adc 820 $_use_svnsync_props $no_reuse_existing/;
9b981fc6
EW
821use Carp qw/croak/;
822use File::Path qw/mkpath/;
373274f9 823use File::Copy qw/copy/;
9b981fc6
EW
824use IPC::Open3;
825
ecc712dd 826my $_repack_nr;
9b981fc6
EW
827# properties that we do not log:
828my %SKIP_PROP;
829BEGIN {
830 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
831 svn:special svn:executable
832 svn:entry:committed-rev
833 svn:entry:last-author
834 svn:entry:uuid
835 svn:entry:committed-date/;
91b03282
EW
836
837 # some options are read globally, but can be overridden locally
838 # per [svn-remote "..."] section. Command-line options will *NOT*
839 # override options set in an [svn-remote "..."] section
840 my $e;
62e349d2
EW
841 foreach (qw/follow_parent no_metadata use_svm_props
842 use_svnsync_props/) {
91b03282
EW
843 my $key = $_;
844 $key =~ tr/_//d;
845 $e .= "sub $_ {
846 my (\$self) = \@_;
847 return \$self->{-$_} if exists \$self->{-$_};
848 my \$k = \"svn-remote.\$self->{repo_id}\.$key\";
849 eval { command_oneline(qw/config --get/, \$k) };
850 if (\$@) {
851 \$self->{-$_} = \$Git::SVN::_$_;
852 } else {
853 my \$v = command_oneline(qw/config --bool/,\$k);
854 \$self->{-$_} = \$v eq 'false' ? 0 : 1;
855 }
856 return \$self->{-$_} }\n";
857 }
858 $e .= "1;\n";
859 eval $e or die $@;
9b981fc6
EW
860}
861
373274f9
EW
862my %LOCKFILES;
863END { unlink keys %LOCKFILES if %LOCKFILES }
864
4bb9ed04
EW
865sub resolve_local_globs {
866 my ($url, $fetch, $glob_spec) = @_;
867 return unless defined $glob_spec;
868 my $ref = $glob_spec->{ref};
869 my $path = $glob_spec->{path};
870 foreach (command(qw#for-each-ref --format=%(refname) refs/remotes#)) {
871 next unless m#^refs/remotes/$ref->{regex}$#;
872 my $p = $1;
873 my $pathname = $path->full_path($p);
874 my $refname = $ref->full_path($p);
875 if (my $existing = $fetch->{$pathname}) {
876 if ($existing ne $refname) {
877 die "Refspec conflict:\n",
878 "existing: refs/remotes/$existing\n",
879 " globbed: refs/remotes/$refname\n";
880 }
881 my $u = (::cmt_metadata("refs/remotes/$refname"))[0];
4e9f6cc7 882 $u =~ s!^\Q$url\E(/|$)!! or die
4bb9ed04
EW
883 "refs/remotes/$refname: '$url' not found in '$u'\n";
884 if ($pathname ne $u) {
885 warn "W: Refspec glob conflict ",
886 "(ref: refs/remotes/$refname):\n",
887 "expected path: $pathname\n",
888 " real path: $u\n",
889 "Continuing ahead with $u\n";
890 next;
891 }
892 } else {
4bb9ed04
EW
893 $fetch->{$pathname} = $refname;
894 }
895 }
896}
897
e98671e5
EW
898sub parse_revision_argument {
899 my ($base, $head) = @_;
900 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
901 return ($base, $head);
902 }
903 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
904 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
905 return ($head, $head) if ($::_revision eq 'HEAD');
906 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
907 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
908 die "revision argument: $::_revision not understood by git-svn\n";
909}
910
0af9c9f9 911sub fetch_all {
4bb9ed04 912 my ($repo_id, $remotes) = @_;
905f8b7d
EW
913 if (ref $repo_id) {
914 my $gs = $repo_id;
915 $repo_id = undef;
916 $repo_id = $gs->{repo_id};
917 }
918 $remotes ||= read_all_remotes();
7447b4bc
EW
919 my $remote = $remotes->{$repo_id} or
920 die "[svn-remote \"$repo_id\"] unknown\n";
e518192f 921 my $fetch = $remote->{fetch};
7447b4bc 922 my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
e518192f 923 my (@gs, @globs);
0af9c9f9 924 my $ra = Git::SVN::Ra->new($url);
26a62d57 925 my $uuid = $ra->get_uuid;
0af9c9f9 926 my $head = $ra->get_latest_revnum;
28710f74 927 my $base = defined $fetch ? $head : 0;
e518192f
EW
928
929 # read the max revs for wildcard expansion (branches/*, tags/*)
930 foreach my $t (qw/branches tags/) {
931 defined $remote->{$t} or next;
932 push @globs, $remote->{$t};
93f2689c
EW
933 my $max_rev = eval { tmp_config(qw/--int --get/,
934 "svn-remote.$repo_id.${t}-maxRev") };
935 if (defined $max_rev && ($max_rev < $base)) {
936 $base = $max_rev;
d6d3346b
EW
937 } elsif (!defined $max_rev) {
938 $base = 0;
e518192f
EW
939 }
940 }
941
db03cd24
EW
942 if ($fetch) {
943 foreach my $p (sort keys %$fetch) {
944 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
945 my $lr = $gs->rev_db_max;
946 if (defined $lr) {
947 $base = $lr if ($lr < $base);
948 }
949 push @gs, $gs;
0af9c9f9 950 }
0af9c9f9 951 }
e98671e5
EW
952
953 ($base, $head) = parse_revision_argument($base, $head);
e518192f 954 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
0af9c9f9
EW
955}
956
47e39c55
EW
957sub read_all_remotes {
958 my $r = {};
8b8fc068 959 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
47e39c55
EW
960 if (m!^(.+)\.fetch=\s*(.*)\s*:\s*refs/remotes/(.+)\s*$!) {
961 $r->{$1}->{fetch}->{$2} = $3;
962 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
963 $r->{$1}->{url} = $2;
4bb9ed04
EW
964 } elsif (m!^(.+)\.(branches|tags)=
965 (.*):refs/remotes/(.+)\s*$/!x) {
966 my ($p, $g) = ($3, $4);
967 my $rs = $r->{$1}->{$2} = {
e518192f 968 t => $2,
93f2689c 969 remote => $1,
4bb9ed04
EW
970 path => Git::SVN::GlobSpec->new($p),
971 ref => Git::SVN::GlobSpec->new($g) };
972 if (length($rs->{ref}->{right}) != 0) {
973 die "The '*' glob character must be the last ",
974 "character of '$g'\n";
975 }
47e39c55
EW
976 }
977 }
978 $r;
979}
980
ecc712dd
EW
981sub init_vars {
982 if (defined $_repack) {
983 $_repack = 1000 if ($_repack <= 0);
984 $_repack_nr = $_repack;
985 $_repack_flags ||= '-d';
986 }
987}
988
b805b44a 989sub verify_remotes_sanity {
536c4b09 990 return unless -d $ENV{GIT_DIR};
b805b44a
EW
991 my %seen;
992 foreach (command(qw/config -l/)) {
993 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
994 if ($seen{$1}) {
995 die "Remote ref refs/remote/$1 is tracked by",
996 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
997 "Please resolve this ambiguity in ",
998 "your git configuration file before ",
999 "continuing\n";
1000 }
1001 $seen{$1} = $_;
1002 }
1003 }
1004}
1005
47e39c55 1006# we allow more chars than remotes2config.sh...
706587fc
EW
1007sub sanitize_remote_name {
1008 my ($name) = @_;
47e39c55 1009 $name =~ tr{A-Za-z0-9:,/+-}{.}c;
706587fc
EW
1010 $name;
1011}
1012
e6434f87
EW
1013sub find_existing_remote {
1014 my ($url, $remotes) = @_;
befc9adc 1015 return undef if $no_reuse_existing;
e6434f87
EW
1016 my $existing;
1017 foreach my $repo_id (keys %$remotes) {
1018 my $u = $remotes->{$repo_id}->{url} or next;
1019 next if $u ne $url;
1020 $existing = $repo_id;
1021 last;
1022 }
1023 $existing;
1024}
b805b44a 1025
e6434f87 1026sub init_remote_config {
d8115c51 1027 my ($self, $url, $no_write) = @_;
e6434f87
EW
1028 $url =~ s!/+$!!; # strip trailing slash
1029 my $r = read_all_remotes();
1030 my $existing = find_existing_remote($url, $r);
1031 if ($existing) {
e518192f
EW
1032 unless ($no_write) {
1033 print STDERR "Using existing ",
1034 "[svn-remote \"$existing\"]\n";
1035 }
e6434f87
EW
1036 $self->{repo_id} = $existing;
1037 } else {
1038 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1039 $existing = find_existing_remote($min_url, $r);
1040 if ($existing) {
e518192f
EW
1041 unless ($no_write) {
1042 print STDERR "Using existing ",
1043 "[svn-remote \"$existing\"]\n";
1044 }
e6434f87
EW
1045 $self->{repo_id} = $existing;
1046 }
1047 if ($min_url ne $url) {
e518192f
EW
1048 unless ($no_write) {
1049 print STDERR "Using higher level of URL: ",
1050 "$url => $min_url\n";
1051 }
e6434f87
EW
1052 my $old_path = $self->{path};
1053 $self->{path} = $url;
4e9f6cc7 1054 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
e6434f87
EW
1055 if (length $old_path) {
1056 $self->{path} .= "/$old_path";
1057 }
1058 $url = $min_url;
1059 }
1060 }
1061 my $orig_url;
1062 if (!$existing) {
b805b44a 1063 # verify that we aren't overwriting anything:
e6434f87 1064 $orig_url = eval {
706587fc 1065 command_oneline('config', '--get',
e6434f87 1066 "svn-remote.$self->{repo_id}.url")
706587fc 1067 };
b805b44a 1068 if ($orig_url && ($orig_url ne $url)) {
e6434f87 1069 die "svn-remote.$self->{repo_id}.url already set: ",
b805b44a
EW
1070 "$orig_url\nwanted to set to: $url\n";
1071 }
9b981fc6 1072 }
e6434f87
EW
1073 my ($xrepo_id, $xpath) = find_ref($self->refname);
1074 if (defined $xpath) {
1075 die "svn-remote.$xrepo_id.fetch already set to track ",
1076 "$xpath:refs/remotes/", $self->refname, "\n";
1077 }
d8115c51
EW
1078 unless ($no_write) {
1079 command_noisy('config',
1080 "svn-remote.$self->{repo_id}.url", $url);
1081 command_noisy('config', '--add',
1082 "svn-remote.$self->{repo_id}.fetch",
1083 "$self->{path}:".$self->refname);
1084 }
9b981fc6 1085 $self->{url} = $url;
e6434f87
EW
1086}
1087
a8ae2623
EW
1088sub find_by_url { # repos_root and, path are optional
1089 my ($class, $full_url, $repos_root, $path) = @_;
56973d20 1090
1a97a506 1091 return undef unless defined $full_url;
56973d20
AR
1092 remove_username($full_url);
1093 remove_username($repos_root) if defined $repos_root;
a8ae2623
EW
1094 my $remotes = read_all_remotes();
1095 if (defined $full_url && defined $repos_root && !defined $path) {
1096 $path = $full_url;
1097 $path =~ s#^\Q$repos_root\E(?:/|$)##;
1098 }
1099 foreach my $repo_id (keys %$remotes) {
1100 my $u = $remotes->{$repo_id}->{url} or next;
56973d20 1101 remove_username($u);
a8ae2623
EW
1102 next if defined $repos_root && $repos_root ne $u;
1103
1104 my $fetch = $remotes->{$repo_id}->{fetch} || {};
1105 foreach (qw/branches tags/) {
1106 resolve_local_globs($u, $fetch,
1107 $remotes->{$repo_id}->{$_});
1108 }
1109 my $p = $path;
1110 unless (defined $p) {
1111 $p = $full_url;
1112 $p =~ s#^\Q$u\E(?:/|$)## or next;
1113 }
1114 foreach my $f (keys %$fetch) {
1115 next if $f ne $p;
1116 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
1117 }
1118 }
1119 undef;
1120}
1121
e6434f87 1122sub init {
d8115c51 1123 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
e6434f87
EW
1124 my $self = _new($class, $repo_id, $ref_id, $path);
1125 if (defined $url) {
d8115c51 1126 $self->init_remote_config($url, $no_write);
e6434f87 1127 }
9b981fc6
EW
1128 $self;
1129}
1130
706587fc
EW
1131sub find_ref {
1132 my ($ref_id) = @_;
1133 foreach (command(qw/config -l/)) {
1134 next unless m!^svn-remote\.(.+)\.fetch=
1135 \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
1136 my ($repo_id, $path, $ref) = ($1, $2, $3);
1137 if ($ref eq $ref_id) {
1138 $path = '' if ($path =~ m#^\./?#);
1139 return ($repo_id, $path);
1140 }
1141 }
1142 (undef, undef, undef);
1143}
1144
9b981fc6 1145sub new {
706587fc
EW
1146 my ($class, $ref_id, $repo_id, $path) = @_;
1147 if (defined $ref_id && !defined $repo_id && !defined $path) {
1148 ($repo_id, $path) = find_ref($ref_id);
1149 if (!defined $repo_id) {
1150 die "Could not find a \"svn-remote.*.fetch\" key ",
1151 "in the repository configuration matching: ",
1152 "refs/remotes/$ref_id\n";
1153 }
1154 }
1155 my $self = _new($class, $repo_id, $ref_id, $path);
8b8fc068
EW
1156 if (!defined $self->{path} || !length $self->{path}) {
1157 my $fetch = command_oneline('config', '--get',
1158 "svn-remote.$repo_id.fetch",
1159 ":refs/remotes/$ref_id\$") or
1160 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
1161 "\":refs/remotes/$ref_id\$\" in config\n";
1162 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
1163 }
706587fc
EW
1164 $self->{url} = command_oneline('config', '--get',
1165 "svn-remote.$repo_id.url") or
1166 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
d6d3346b 1167 $self->rebuild;
9b981fc6
EW
1168 $self;
1169}
1170
706587fc 1171sub refname { "refs/remotes/$_[0]->{ref_id}" }
9b981fc6 1172
26a62d57
EW
1173sub svm_uuid {
1174 my ($self) = @_;
1175 return $self->{svm}->{uuid} if $self->svm;
1176 $self->ra;
1177 unless ($self->{svm}) {
1178 die "SVM UUID not cached, and reading remotely failed\n";
1179 }
1180 $self->{svm}->{uuid};
1181}
8a49ee97 1182
26a62d57
EW
1183sub svm {
1184 my ($self) = @_;
1185 return $self->{svm} if $self->{svm};
1186 my $svm;
8a49ee97
EW
1187 # see if we have it in our config, first:
1188 eval {
26a62d57
EW
1189 my $section = "svn-remote.$self->{repo_id}";
1190 $svm = {
93f2689c
EW
1191 source => tmp_config('--get', "$section.svm-source"),
1192 uuid => tmp_config('--get', "$section.svm-uuid"),
befc9adc 1193 replace => tmp_config('--get', "$section.svm-replace"),
8a49ee97
EW
1194 }
1195 };
befc9adc
EW
1196 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
1197 $self->{svm} = $svm;
1198 }
26a62d57
EW
1199 $self->{svm};
1200}
1201
1202sub _set_svm_vars {
1203 my ($self, $ra) = @_;
db03cd24
EW
1204 return $ra if $self->svm;
1205
1206 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
befc9adc 1207 "(svm:source, svm:uuid) ",
db03cd24
EW
1208 "from the following URLs:\n" );
1209 sub read_svm_props {
befc9adc
EW
1210 my ($self, $ra, $path, $r) = @_;
1211 my $props = ($ra->get_dir($path, $r))[2];
db03cd24 1212 my $src = $props->{'svm:source'};
db03cd24 1213 my $uuid = $props->{'svm:uuid'};
befc9adc 1214 return undef if (!$src || !$uuid);
26a62d57 1215
befc9adc 1216 chomp($src, $uuid);
26a62d57 1217
db03cd24
EW
1218 $uuid =~ m{^[0-9a-f\-]{30,}$}
1219 or die "doesn't look right - svm:uuid is '$uuid'\n";
befc9adc
EW
1220
1221 # the '!' is used to mark the repos_root!/relative/path
1222 $src =~ s{/?!/?}{/};
db03cd24 1223 $src =~ s{/+$}{}; # no trailing slashes please
befc9adc 1224 # username is of no interest
8a49ee97 1225 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
8a49ee97 1226
befc9adc
EW
1227 my $replace = $ra->{url};
1228 $replace .= "/$path" if length $path;
1229
db03cd24 1230 my $section = "svn-remote.$self->{repo_id}";
befc9adc
EW
1231 tmp_config("$section.svm-source", $src);
1232 tmp_config("$section.svm-replace", $replace);
1233 tmp_config("$section.svm-uuid", $uuid);
1234 $self->{svm} = {
1235 source => $src,
1236 uuid => $uuid,
1237 replace => $replace
1238 };
db03cd24
EW
1239 }
1240
1241 my $r = $ra->get_latest_revnum;
1242 my $path = $self->{path};
befc9adc 1243 my %tried;
db03cd24 1244 while (length $path) {
befc9adc
EW
1245 unless ($tried{"$self->{url}/$path"}) {
1246 return $ra if $self->read_svm_props($ra, $path, $r);
1247 $tried{"$self->{url}/$path"} = 1;
db03cd24 1248 }
befc9adc 1249 $path =~ s#/?[^/]+$##;
8a49ee97 1250 }
befc9adc
EW
1251 die "Path: '$path' should be ''\n" if $path ne '';
1252 return $ra if $self->read_svm_props($ra, $path, $r);
1253 $tried{"$self->{url}/$path"} = 1;
db03cd24
EW
1254
1255 if ($ra->{repos_root} eq $self->{url}) {
befc9adc 1256 die @err, (map { " $_\n" } keys %tried), "\n";
db03cd24
EW
1257 }
1258
1259 # nope, make sure we're connected to the repository root:
1260 my $ok;
1261 my @tried_b;
1262 $path = $ra->{svn_path};
db03cd24
EW
1263 $ra = Git::SVN::Ra->new($ra->{repos_root});
1264 while (length $path) {
befc9adc
EW
1265 unless ($tried{"$ra->{url}/$path"}) {
1266 $ok = $self->read_svm_props($ra, $path, $r);
1267 last if $ok;
1268 $tried{"$ra->{url}/$path"} = 1;
1269 }
1270 $path =~ s#/?[^/]+$##;
db03cd24 1271 }
befc9adc
EW
1272 die "Path: '$path' should be ''\n" if $path ne '';
1273 $ok ||= $self->read_svm_props($ra, $path, $r);
1274 $tried{"$ra->{url}/$path"} = 1;
db03cd24 1275 if (!$ok) {
befc9adc 1276 die @err, (map { " $_\n" } keys %tried), "\n";
db03cd24
EW
1277 }
1278 Git::SVN::Ra->new($self->{url});
8a49ee97
EW
1279}
1280
62e349d2
EW
1281sub svnsync {
1282 my ($self) = @_;
1283 return $self->{svnsync} if $self->{svnsync};
1284
1285 if ($self->no_metadata) {
1286 die "Can't have both 'noMetadata' and ",
1287 "'useSvnsyncProps' options set!\n";
1288 }
1289 if ($self->rewrite_root) {
1290 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
1291 "options set!\n";
1292 }
1293
1294 my $svnsync;
1295 # see if we have it in our config, first:
1296 eval {
1297 my $section = "svn-remote.$self->{repo_id}";
1298 $svnsync = {
1299 url => tmp_config('--get', "$section.svnsync-url"),
1300 uuid => tmp_config('--get', "$section.svnsync-uuid"),
1301 }
1302 };
1303 if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) {
1304 return $self->{svnsync} = $svnsync;
1305 }
1306
1307 my $err = "useSvnsyncProps set, but failed to read " .
1308 "svnsync property: svn:sync-from-";
1309 my $rp = $self->ra->rev_proplist(0);
1310
1311 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
1312 $url =~ m{^[a-z\+]+://} or
1313 die "doesn't look right - svn:sync-from-url is '$url'\n";
1314
1315 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
1316 $uuid =~ m{^[0-9a-f\-]{30,}$} or
1317 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1318
1319 my $section = "svn-remote.$self->{repo_id}";
1320 tmp_config('--add', "$section.svnsync-uuid", $uuid);
1321 tmp_config('--add', "$section.svnsync-url", $url);
1322 return $self->{svnsync} = { url => $url, uuid => $uuid };
1323}
1324
26a62d57
EW
1325# this allows us to memoize our SVN::Ra UUID locally and avoid a
1326# remote lookup (useful for 'git svn log').
1327sub ra_uuid {
1328 my ($self) = @_;
1329 unless ($self->{ra_uuid}) {
1330 my $key = "svn-remote.$self->{repo_id}.uuid";
1331 my $uuid = eval { tmp_config('--get', $key) };
1332 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/) {
1333 $self->{ra_uuid} = $uuid;
1334 } else {
1335 die "ra_uuid called without URL\n" unless $self->{url};
1336 $self->{ra_uuid} = $self->ra->get_uuid;
1337 tmp_config('--add', $key, $self->{ra_uuid});
1338 }
1339 }
1340 $self->{ra_uuid};
1341}
1342
9b981fc6
EW
1343sub ra {
1344 my ($self) = shift;
8a49ee97 1345 my $ra = Git::SVN::Ra->new($self->{url});
91b03282
EW
1346 if ($self->use_svm_props && !$self->{svm}) {
1347 if ($self->no_metadata) {
97ae0911
EW
1348 die "Can't have both 'noMetadata' and ",
1349 "'useSvmProps' options set!\n";
62e349d2
EW
1350 } elsif ($self->use_svnsync_props) {
1351 die "Can't have both 'useSvnsyncProps' and ",
1352 "'useSvmProps' options set!\n";
91b03282 1353 }
26a62d57 1354 $ra = $self->_set_svm_vars($ra);
8a49ee97
EW
1355 $self->{-want_revprops} = 1;
1356 }
1357 $ra;
9b981fc6
EW
1358}
1359
15710b6f
EW
1360sub rel_path {
1361 my ($self) = @_;
1362 my $repos_root = $self->ra->{repos_root};
1363 return $self->{path} if ($self->{url} eq $repos_root);
0b59451c
EW
1364 my $url = $self->{url} .
1365 (length $self->{path} ? "/$self->{path}" : $self->{path});
1366 $url =~ s!^\Q$repos_root\E(?:/+|$)!!g;
1367 $url;
15710b6f
EW
1368}
1369
9b981fc6
EW
1370sub traverse_ignore {
1371 my ($self, $fh, $path, $r) = @_;
1372 $path =~ s#^/+##g;
5d3b7cd5
EW
1373 my $ra = $self->ra;
1374 my ($dirent, undef, $props) = $ra->get_dir($path, $r);
9b981fc6 1375 my $p = $path;
102a0a2d 1376 $p =~ s#^\Q$self->{path}\E(/|$)##;
9b981fc6
EW
1377 print $fh length $p ? "\n# $p\n" : "\n# /\n";
1378 if (my $s = $props->{'svn:ignore'}) {
1379 $s =~ s/[\r\n]+/\n/g;
1380 chomp $s;
1381 if (length $p == 0) {
1382 $s =~ s#\n#\n/$p#g;
1383 print $fh "/$s\n";
1384 } else {
1385 $s =~ s#\n#\n/$p/#g;
1386 print $fh "/$p/$s\n";
1387 }
1388 }
1389 foreach (sort keys %$dirent) {
1390 next if $dirent->{$_}->kind != $SVN::Node::dir;
1391 $self->traverse_ignore($fh, "$path/$_", $r);
1392 }
1393}
1394
3ebe8df7
EW
1395sub last_rev { ($_[0]->last_rev_commit)[0] }
1396sub last_commit { ($_[0]->last_rev_commit)[1] }
1397
9b981fc6
EW
1398# returns the newest SVN revision number and newest commit SHA1
1399sub last_rev_commit {
1400 my ($self) = @_;
1401 if (defined $self->{last_rev} && defined $self->{last_commit}) {
1402 return ($self->{last_rev}, $self->{last_commit});
1403 }
d2866f9e 1404 my $c = ::verify_ref($self->refname.'^0');
91b03282 1405 if ($c && !$self->use_svm_props && !$self->no_metadata) {
d2866f9e 1406 my $rev = (::cmt_metadata($c))[1];
9b981fc6
EW
1407 if (defined $rev) {
1408 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
1409 return ($rev, $c);
1410 }
1411 }
26a62d57
EW
1412 my $db_path = $self->db_path;
1413 unless (-e $db_path) {
1414 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
1415 return (undef, undef);
1416 }
9b981fc6
EW
1417 my $offset = -41; # from tail
1418 my $rl;
26a62d57 1419 open my $fh, '<', $db_path or croak "$db_path not readable: $!\n";
ce4b4af7
EW
1420 sysseek($fh, $offset, 2); # don't care for errors
1421 sysread($fh, $rl, 41) == 41 or return (undef, undef);
9b981fc6 1422 chomp $rl;
ce4b4af7 1423 while (('0' x40) eq $rl && sysseek($fh, 0, 1) != 0) {
9b981fc6 1424 $offset -= 41;
ce4b4af7
EW
1425 sysseek($fh, $offset, 2); # don't care for errors
1426 sysread($fh, $rl, 41) == 41 or return (undef, undef);
9b981fc6
EW
1427 chomp $rl;
1428 }
91b03282 1429 if ($c && $c ne $rl) {
26a62d57 1430 die "$db_path and ", $self->refname,
9c93fee5
EW
1431 " inconsistent!:\n$c != $rl\n";
1432 }
ce4b4af7 1433 my $rev = sysseek($fh, 0, 1) or croak $!;
9b981fc6
EW
1434 $rev = ($rev - 41) / 41;
1435 close $fh or croak $!;
1436 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
1437 return ($rev, $c);
1438}
1439
3ebe8df7
EW
1440sub get_fetch_range {
1441 my ($self, $min, $max) = @_;
1442 $max ||= $self->ra->get_latest_revnum;
9c93fee5 1443 $min ||= $self->rev_db_max;
3ebe8df7 1444 (++$min, $max);
9b981fc6
EW
1445}
1446
8a49ee97 1447sub tmp_config {
93f2689c 1448 my (@args) = @_;
b7e5348c
EW
1449 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
1450 my $config = "$ENV{GIT_DIR}/svn/.metadata";
1451 if (-e $old_def_config && ! -e $config) {
1452 rename $old_def_config, $config or
1453 die "Failed rename $old_def_config => $config: $!\n";
1454 }
8a49ee97 1455 my $old_config = $ENV{GIT_CONFIG};
93f2689c 1456 $ENV{GIT_CONFIG} = $config;
8a49ee97 1457 $@ = undef;
b4d57e5e
EW
1458 my @ret = eval {
1459 unless (-f $config) {
1460 mkfile($config);
1461 open my $fh, '>', $config or
1462 die "Can't open $config: $!\n";
1463 print $fh "; This file is used internally by ",
1464 "git-svn\n" or die
1465 "Couldn't write to $config: $!\n";
1466 print $fh "; You should not have to edit it\n" or
1467 die "Couldn't write to $config: $!\n";
1468 close $fh or die "Couldn't close $config: $!\n";
1469 }
1470 command('config', @args);
1471 };
8a49ee97
EW
1472 my $err = $@;
1473 if (defined $old_config) {
1474 $ENV{GIT_CONFIG} = $old_config;
1475 } else {
1476 delete $ENV{GIT_CONFIG};
1477 }
1478 die $err if $err;
1479 wantarray ? @ret : $ret[0];
1480}
1481
9b981fc6
EW
1482sub tmp_index_do {
1483 my ($self, $sub) = @_;
1484 my $old_index = $ENV{GIT_INDEX_FILE};
1485 $ENV{GIT_INDEX_FILE} = $self->{index};
8a49ee97 1486 $@ = undef;
b4d57e5e
EW
1487 my @ret = eval {
1488 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
1489 mkpath([$dir]) unless -d $dir;
1490 &$sub;
1491 };
8a49ee97
EW
1492 my $err = $@;
1493 if (defined $old_index) {
9b981fc6
EW
1494 $ENV{GIT_INDEX_FILE} = $old_index;
1495 } else {
1496 delete $ENV{GIT_INDEX_FILE};
1497 }
8a49ee97 1498 die $err if $err;
9b981fc6
EW
1499 wantarray ? @ret : $ret[0];
1500}
1501
1502sub assert_index_clean {
1503 my ($self, $treeish) = @_;
1504
1505 $self->tmp_index_do(sub {
1506 command_noisy('read-tree', $treeish) unless -e $self->{index};
1507 my $x = command_oneline('write-tree');
1508 my ($y) = (command(qw/cat-file commit/, $treeish) =~
1509 /^tree ($::sha1)/mo);
e8d120bd
EW
1510 return if $y eq $x;
1511
1512 warn "Index mismatch: $y != $x\nrereading $treeish\n";
1513 unlink $self->{index} or die "unlink $self->{index}: $!\n";
1514 command_noisy('read-tree', $treeish);
9b981fc6
EW
1515 $x = command_oneline('write-tree');
1516 if ($y ne $x) {
1517 ::fatal "trees ($treeish) $y != $x\n",
1518 "Something is seriously wrong...\n";
1519 }
1520 });
1521}
1522
1523sub get_commit_parents {
0af9c9f9 1524 my ($self, $log_entry) = @_;
9b981fc6 1525 my (%seen, @ret, @tmp);
0af9c9f9
EW
1526 # legacy support for 'set-tree'; this is only used by set_tree_cb:
1527 if (my $ip = $self->{inject_parents}) {
1528 if (my $commit = delete $ip->{$log_entry->{revision}}) {
1529 push @tmp, $commit;
9b981fc6
EW
1530 }
1531 }
d2866f9e 1532 if (my $cur = ::verify_ref($self->refname.'^0')) {
9b981fc6
EW
1533 push @tmp, $cur;
1534 }
44320b9e 1535 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
9b981fc6
EW
1536 while (my $p = shift @tmp) {
1537 next if $seen{$p};
1538 $seen{$p} = 1;
1539 push @ret, $p;
1540 # MAXPARENT is defined to 16 in commit-tree.c:
1541 last if @ret >= 16;
1542 }
1543 if (@tmp) {
44320b9e 1544 die "r$log_entry->{revision}: No room for parents:\n\t",
9b981fc6
EW
1545 join("\n\t", @tmp), "\n";
1546 }
1547 @ret;
1548}
1549
aea736cc
EW
1550sub rewrite_root {
1551 my ($self) = @_;
1552 return $self->{-rewrite_root} if exists $self->{-rewrite_root};
1553 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
1554 my $rwr = eval { command_oneline(qw/config --get/, $k) };
1555 if ($rwr) {
1556 $rwr =~ s#/+$##;
1557 if ($rwr !~ m#^[a-z\+]+://#) {
1558 die "$rwr is not a valid URL (key: $k)\n";
1559 }
1560 }
1561 $self->{-rewrite_root} = $rwr;
1562}
1563
1564sub metadata_url {
1565 my ($self) = @_;
1566 ($self->rewrite_root || $self->{url}) .
1567 (length $self->{path} ? '/' . $self->{path} : '');
1568}
1569
706587fc 1570sub full_url {
9b981fc6 1571 my ($self) = @_;
5d3b7cd5 1572 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
9b981fc6
EW
1573}
1574
1575sub do_git_commit {
0af9c9f9 1576 my ($self, $log_entry) = @_;
8a603774
EW
1577 my $lr = $self->last_rev;
1578 if (defined $lr && $lr >= $log_entry->{revision}) {
1579 die "Last fetched revision of ", $self->refname,
1580 " was r$lr, but we are about to fetch: ",
1581 "r$log_entry->{revision}!\n";
1582 }
44320b9e
EW
1583 if (my $c = $self->rev_db_get($log_entry->{revision})) {
1584 croak "$log_entry->{revision} = $c already exists! ",
9b981fc6
EW
1585 "Why are we refetching it?\n";
1586 }
db03cd24
EW
1587 $ENV{GIT_AUTHOR_NAME} = $ENV{GIT_COMMITTER_NAME} = $log_entry->{name};
1588 $ENV{GIT_AUTHOR_EMAIL} = $ENV{GIT_COMMITTER_EMAIL} =
1589 $log_entry->{email};
44320b9e 1590 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
9b981fc6 1591
44320b9e 1592 my $tree = $log_entry->{tree};
9b981fc6
EW
1593 if (!defined $tree) {
1594 $tree = $self->tmp_index_do(sub {
1595 command_oneline('write-tree') });
1596 }
1597 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
1598
1599 my @exec = ('git-commit-tree', $tree);
0af9c9f9 1600 foreach ($self->get_commit_parents($log_entry)) {
9b981fc6
EW
1601 push @exec, '-p', $_;
1602 }
1603 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
1604 or croak $!;
44320b9e 1605 print $msg_fh $log_entry->{log} or croak $!;
91b03282 1606 unless ($self->no_metadata) {
8a49ee97
EW
1607 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
1608 or croak $!;
9760adcc 1609 }
9b981fc6
EW
1610 $msg_fh->flush == 0 or croak $!;
1611 close $msg_fh or croak $!;
1612 chomp(my $commit = do { local $/; <$out_fh> });
1613 close $out_fh or croak $!;
1614 waitpid $pid, 0;
1615 croak $? if $?;
1616 if ($commit !~ /^$::sha1$/o) {
1617 die "Failed to commit, invalid sha1: $commit\n";
1618 }
1619
373274f9 1620 $self->rev_db_set($log_entry->{revision}, $commit, 1);
9b981fc6 1621
44320b9e 1622 $self->{last_rev} = $log_entry->{revision};
9b981fc6 1623 $self->{last_commit} = $commit;
8a49ee97
EW
1624 print "r$log_entry->{revision}";
1625 if (defined $log_entry->{svm_revision}) {
1626 print " (\@$log_entry->{svm_revision})";
26a62d57
EW
1627 $self->rev_db_set($log_entry->{svm_revision}, $commit,
1628 0, $self->svm_uuid);
8a49ee97
EW
1629 }
1630 print " = $commit ($self->{ref_id})\n";
ecc712dd
EW
1631 if (defined $_repack && (--$_repack_nr == 0)) {
1632 $_repack_nr = $_repack;
1633 # repack doesn't use any arguments with spaces in them, does it?
1634 print "Running git repack $_repack_flags ...\n";
1635 command_noisy('repack', split(/\s+/, $_repack_flags));
1636 print "Done repacking\n";
1637 }
9b981fc6
EW
1638 return $commit;
1639}
1640
fbcc1737
EW
1641sub match_paths {
1642 my ($self, $paths, $r) = @_;
4e9f6cc7 1643 return 1 if $self->{path} eq '';
d542aedb
EW
1644 if (my $path = $paths->{"/$self->{path}"}) {
1645 return ($path->{action} eq 'D') ? 0 : 1;
1646 }
4e9f6cc7 1647 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
fbcc1737
EW
1648 if (grep /$self->{path_regex}/, keys %$paths) {
1649 return 1;
1650 }
1651 my $c = '';
1652 foreach (split m#/#, $self->{path}) {
1653 $c .= "/$_";
74a81227
EW
1654 next unless ($paths->{$c} &&
1655 ($paths->{$c}->{action} =~ /^[AR]$/));
e518192f
EW
1656 if ($self->ra->check_path($self->{path}, $r) ==
1657 $SVN::Node::dir) {
fbcc1737
EW
1658 return 1;
1659 }
1660 }
1661 return 0;
1662}
1663
15710b6f
EW
1664sub find_parent_branch {
1665 my ($self, $paths, $rev) = @_;
91b03282 1666 return undef unless $self->follow_parent;
e5a0b240 1667 unless (defined $paths) {
c7eba716
EW
1668 my $err_handler = $SVN::Error::handler;
1669 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
d4eff2bd
EW
1670 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1, sub {
1671 $paths =
1672 Git::SVN::Ra::dup_changed_paths($_[0]) });
c7eba716 1673 $SVN::Error::handler = $err_handler;
e5a0b240
EW
1674 }
1675 return undef unless defined $paths;
15710b6f
EW
1676
1677 # look for a parent from another branch:
7f578c55
EW
1678 my @b_path_components = split m#/#, $self->rel_path;
1679 my @a_path_components;
1680 my $i;
1681 while (@b_path_components) {
1682 $i = $paths->{'/'.join('/', @b_path_components)};
74a81227 1683 last if $i && defined $i->{copyfrom_path};
7f578c55
EW
1684 unshift(@a_path_components, pop(@b_path_components));
1685 }
74a81227
EW
1686 return undef unless defined $i && defined $i->{copyfrom_path};
1687 my $branch_from = $i->{copyfrom_path};
7f578c55
EW
1688 if (@a_path_components) {
1689 print STDERR "branch_from: $branch_from => ";
1690 $branch_from .= '/'.join('/', @a_path_components);
1691 print STDERR $branch_from, "\n";
1692 }
3ebe8df7 1693 my $r = $i->{copyfrom_rev};
15710b6f
EW
1694 my $repos_root = $self->ra->{repos_root};
1695 my $url = $self->ra->{url};
1696 my $new_url = $repos_root . $branch_from;
1697 print STDERR "Found possible branch point: ",
1698 "$new_url => ", $self->full_url, ", $r\n";
1699 $branch_from =~ s#^/##;
a8ae2623 1700 my $gs = Git::SVN->find_by_url($new_url, $repos_root, $branch_from);
15710b6f 1701 unless ($gs) {
ce2a0f2f
EW
1702 my $ref_id = $self->{ref_id};
1703 $ref_id =~ s/\@\d+$//;
1704 $ref_id .= "\@$r";
15710b6f
EW
1705 # just grow a tail if we're not unique enough :x
1706 $ref_id .= '-' while find_ref($ref_id);
ce2a0f2f 1707 print STDERR "Initializing parent: $ref_id\n";
d8115c51 1708 $gs = Git::SVN->init($new_url, '', $ref_id, $ref_id, 1);
15710b6f
EW
1709 }
1710 my ($r0, $parent) = $gs->find_rev_before($r, 1);
91b03282 1711 if (!defined $r0 || !defined $parent) {
d627de6b
EW
1712 my ($base, $head) = parse_revision_argument(0, $r);
1713 if ($base <= $r) {
1714 $gs->fetch($base, $r);
1715 }
15710b6f
EW
1716 ($r0, $parent) = $gs->last_rev_commit;
1717 }
ef70de96 1718 if (defined $r0 && defined $parent) {
15710b6f 1719 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n";
15710b6f
EW
1720 my $ed;
1721 if ($self->ra->can_do_switch) {
2e5e2480 1722 $self->assert_index_clean($parent);
8b8fc068 1723 print STDERR "Following parent with do_switch\n";
15710b6f 1724 # do_switch works with svn/trunk >= r22312, but that
2b27f6c8 1725 # is not included with SVN 1.4.3 (the latest version
15710b6f
EW
1726 # at the moment), so we can't rely on it
1727 $self->{last_commit} = $parent;
1728 $ed = SVN::Git::Fetcher->new($self);
8a603774 1729 $gs->ra->gs_do_switch($r0, $rev, $gs,
15710b6f
EW
1730 $self->full_url, $ed)
1731 or die "SVN connection failed somewhere...\n";
1732 } else {
8b8fc068 1733 print STDERR "Following parent with do_update\n";
15710b6f 1734 $ed = SVN::Git::Fetcher->new($self);
8a603774 1735 $self->ra->gs_do_update($rev, $rev, $self, $ed)
15710b6f
EW
1736 or die "SVN connection failed somewhere...\n";
1737 }
f7c3fc4a 1738 print STDERR "Successfully followed parent\n";
15710b6f
EW
1739 return $self->make_log_entry($rev, [$parent], $ed);
1740 }
15710b6f
EW
1741 return undef;
1742}
1743
9b981fc6 1744sub do_fetch {
706587fc 1745 my ($self, $paths, $rev) = @_;
15710b6f 1746 my $ed;
9b981fc6 1747 my ($last_rev, @parents);
b9dffd8c
EW
1748 if (my $lc = $self->last_commit) {
1749 # we can have a branch that was deleted, then re-added
1750 # under the same name but copied from another path, in
1751 # which case we'll have multiple parents (we don't
1752 # want to break the original ref, nor lose copypath info):
1753 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
1754 push @{$log_entry->{parents}}, $lc;
1755 return $log_entry;
1756 }
15710b6f 1757 $ed = SVN::Git::Fetcher->new($self);
9b981fc6 1758 $last_rev = $self->{last_rev};
b9dffd8c
EW
1759 $ed->{c} = $lc;
1760 @parents = ($lc);
9b981fc6
EW
1761 } else {
1762 $last_rev = $rev;
15710b6f
EW
1763 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
1764 return $log_entry;
1765 }
1766 $ed = SVN::Git::Fetcher->new($self);
9b981fc6 1767 }
8a603774 1768 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
9b981fc6
EW
1769 die "SVN connection failed somewhere...\n";
1770 }
1771 $self->make_log_entry($rev, \@parents, $ed);
1772}
1773
97f6987a
EW
1774sub get_untracked {
1775 my ($self, $ed) = @_;
1776 my @out;
1777 my $h = $ed->{empty};
9b981fc6
EW
1778 foreach (sort keys %$h) {
1779 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
97f6987a 1780 push @out, " $act: " . uri_encode($_);
9b981fc6
EW
1781 warn "W: $act: $_\n";
1782 }
1783 foreach my $t (qw/dir_prop file_prop/) {
97f6987a 1784 $h = $ed->{$t} or next;
9b981fc6
EW
1785 foreach my $path (sort keys %$h) {
1786 my $ppath = $path eq '' ? '.' : $path;
1787 foreach my $prop (sort keys %{$h->{$path}}) {
1ce255dc 1788 next if $SKIP_PROP{$prop};
9b981fc6 1789 my $v = $h->{$path}->{$prop};
97f6987a
EW
1790 my $t_ppath_prop = "$t: " .
1791 uri_encode($ppath) . ' ' .
1792 uri_encode($prop);
9b981fc6 1793 if (defined $v) {
97f6987a
EW
1794 push @out, " +$t_ppath_prop " .
1795 uri_encode($v);
9b981fc6 1796 } else {
97f6987a 1797 push @out, " -$t_ppath_prop";
9b981fc6
EW
1798 }
1799 }
1800 }
1801 }
1802 foreach my $t (qw/absent_file absent_directory/) {
97f6987a 1803 $h = $ed->{$t} or next;
9b981fc6
EW
1804 foreach my $parent (sort keys %$h) {
1805 foreach my $path (sort @{$h->{$parent}}) {
97f6987a
EW
1806 push @out, " $t: " .
1807 uri_encode("$parent/$path");
9b981fc6
EW
1808 warn "W: $t: $parent/$path ",
1809 "Insufficient permissions?\n";
1810 }
1811 }
1812 }
97f6987a 1813 \@out;
9b981fc6
EW
1814}
1815
1c8443b0
EW
1816sub parse_svn_date {
1817 my $date = shift || return '+0000 1970-01-01 00:00:00';
1818 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
1819 (\d\d)\:(\d\d)\:(\d\d).\d+Z$/x) or
1820 croak "Unable to parse date: $date\n";
1821 "+0000 $Y-$m-$d $H:$M:$S";
1822}
1823
1824sub check_author {
1825 my ($author) = @_;
1826 if (!defined $author || length $author == 0) {
1827 $author = '(no author)';
1828 }
1829 if (defined $::_authors && ! defined $::users{$author}) {
1830 die "Author: $author not defined in $::_authors file\n";
1831 }
1832 $author;
1833}
1834
9b981fc6 1835sub make_log_entry {
97f6987a
EW
1836 my ($self, $rev, $parents, $ed) = @_;
1837 my $untracked = $self->get_untracked($ed);
1838
9b981fc6 1839 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
97f6987a
EW
1840 print $un "r$rev\n" or croak $!;
1841 print $un $_, "\n" foreach @$untracked;
1842 my %log_entry = ( parents => $parents || [], revision => $rev,
1843 log => '');
fbcc1737 1844
8a49ee97 1845 my $headrev;
fbcc1737 1846 my $logged = delete $self->{logged_rev_props};
8a49ee97 1847 if (!$logged || $self->{-want_revprops}) {
fbcc1737
EW
1848 my $rp = $self->ra->rev_proplist($rev);
1849 foreach (sort keys %$rp) {
1850 my $v = $rp->{$_};
1851 if (/^svn:(author|date|log)$/) {
1852 $log_entry{$1} = $v;
8a49ee97
EW
1853 } elsif ($_ eq 'svm:headrev') {
1854 $headrev = $v;
fbcc1737
EW
1855 } else {
1856 print $un " rev_prop: ", uri_encode($_), ' ',
1857 uri_encode($v), "\n";
1858 }
9b981fc6 1859 }
fbcc1737
EW
1860 } else {
1861 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
9b981fc6
EW
1862 }
1863 close $un or croak $!;
97f6987a 1864
9b981fc6 1865 $log_entry{date} = parse_svn_date($log_entry{date});
9b981fc6 1866 $log_entry{log} .= "\n";
db03cd24
EW
1867 my $author = $log_entry{author} = check_author($log_entry{author});
1868 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
1869 : ($author, undef);
91b03282 1870 if (defined $headrev && $self->use_svm_props) {
aea736cc
EW
1871 if ($self->rewrite_root) {
1872 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
1873 "options set!\n";
1874 }
8a49ee97 1875 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$};
befc9adc
EW
1876 # we don't want "SVM: initializing mirror for junk" ...
1877 return undef if $r == 0;
1878 my $svm = $self->svm;
1879 if ($uuid ne $svm->{uuid}) {
8a49ee97 1880 die "UUID mismatch on SVM path:\n",
befc9adc 1881 "expected: $svm->{uuid}\n",
8a49ee97
EW
1882 " got: $uuid\n";
1883 }
befc9adc
EW
1884 my $full_url = $self->full_url;
1885 $full_url =~ s#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
1886 die "Failed to replace '$svm->{replace}' with ",
1887 "'$svm->{source}' in $full_url\n";
18ea92bd
SV
1888 # throw away username for storing in records
1889 remove_username($full_url);
8a49ee97
EW
1890 $log_entry{metadata} = "$full_url\@$r $uuid";
1891 $log_entry{svm_revision} = $r;
db03cd24 1892 $email ||= "$author\@$uuid"
62e349d2
EW
1893 } elsif ($self->use_svnsync_props) {
1894 my $full_url = $self->svnsync->{url};
1895 $full_url .= "/$self->{path}" if length $self->{path};
ce118739 1896 remove_username($full_url);
62e349d2
EW
1897 my $uuid = $self->svnsync->{uuid};
1898 $log_entry{metadata} = "$full_url\@$rev $uuid";
1899 $email ||= "$author\@$uuid"
8a49ee97 1900 } else {
ce118739
AR
1901 my $url = $self->metadata_url;
1902 remove_username($url);
1903 $log_entry{metadata} = "$url\@$rev " .
26a62d57 1904 $self->ra->get_uuid;
db03cd24 1905 $email ||= "$author\@" . $self->ra->get_uuid;
8a49ee97 1906 }
db03cd24
EW
1907 $log_entry{name} = $name;
1908 $log_entry{email} = $email;
9b981fc6
EW
1909 \%log_entry;
1910}
1911
1912sub fetch {
3ebe8df7 1913 my ($self, $min_rev, $max_rev, @parents) = @_;
9b981fc6 1914 my ($last_rev, $last_commit) = $self->last_rev_commit;
3ebe8df7 1915 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
e518192f 1916 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
9b981fc6
EW
1917}
1918
1919sub set_tree_cb {
1920 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
490f49ea
EW
1921 $self->{inject_parents} = { $rev => $tree };
1922 $self->fetch(undef, undef);
9b981fc6
EW
1923}
1924
1925sub set_tree {
1926 my ($self, $tree) = (shift, shift);
1ce255dc 1927 my $log_entry = ::get_commit_entry($tree);
9b981fc6
EW
1928 unless ($self->{last_rev}) {
1929 fatal("Must have an existing revision to commit\n");
1930 }
61395354
EW
1931 my %ed_opts = ( r => $self->{last_rev},
1932 log => $log_entry->{log},
1933 ra => $self->ra,
1934 tree_a => $self->{last_commit},
1935 tree_b => $tree,
1936 editor_cb => sub {
1937 $self->set_tree_cb($log_entry, $tree, @_) },
1938 svn_path => $self->{path} );
1939 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
9b981fc6
EW
1940 print "No changes\nr$self->{last_rev} = $tree\n";
1941 }
9b981fc6
EW
1942}
1943
f0ecca10
EW
1944sub rebuild {
1945 my ($self) = @_;
26a62d57 1946 my $db_path = $self->db_path;
d6d3346b
EW
1947 return if (-e $db_path && ! -z $db_path);
1948 return unless ::verify_ref($self->refname.'^0');
26a62d57
EW
1949 if (-f $self->{db_root}) {
1950 rename $self->{db_root}, $db_path or die
1951 "rename $self->{db_root} => $db_path failed: $!\n";
1952 my ($dir, $base) = ($db_path =~ m#^(.*?)/?([^/]+)$#);
1953 symlink $base, $self->{db_root} or die
1954 "symlink $base => $self->{db_root} failed: $!\n";
1955 return;
1956 }
1957 print "Rebuilding $db_path ...\n";
f0ecca10
EW
1958 my ($rev_list, $ctx) = command_output_pipe("rev-list", $self->refname);
1959 my $latest;
1960 my $full_url = $self->full_url;
18ea92bd 1961 remove_username($full_url);
f0ecca10
EW
1962 my $svn_uuid;
1963 while (<$rev_list>) {
1964 chomp;
1965 my $c = $_;
1966 die "Non-SHA1: $c\n" unless $c =~ /^$::sha1$/o;
1967 my ($url, $rev, $uuid) = ::cmt_metadata($c);
18ea92bd 1968 remove_username($url);
f0ecca10
EW
1969
1970 # ignore merges (from set-tree)
1971 next if (!defined $rev || !$uuid);
1972
1973 # if we merged or otherwise started elsewhere, this is
1974 # how we break out of it
1975 if ((defined $svn_uuid && ($uuid ne $svn_uuid)) ||
1976 ($full_url && $url && ($url ne $full_url))) {
1977 next;
1978 }
1979 $latest ||= $rev;
1980 $svn_uuid ||= $uuid;
1981
1982 $self->rev_db_set($rev, $c);
1983 print "r$rev = $c\n";
1984 }
1985 command_close_pipe($rev_list, $ctx);
26a62d57 1986 print "Done rebuilding $db_path\n";
f0ecca10
EW
1987}
1988
9b981fc6
EW
1989# rev_db:
1990# Tie::File seems to be prone to offset errors if revisions get sparse,
1991# it's not that fast, either. Tie::File is also not in Perl 5.6. So
1992# one of my favorite modules is out :< Next up would be one of the DBM
1993# modules, but I'm not sure which is most portable... So I'll just
1994# go with something that's plain-text, but still capable of
1995# being randomly accessed. So here's my ultra-simple fixed-width
1996# database. All records are 40 characters + "\n", so it's easy to seek
1997# to a revision: (41 * rev) is the byte offset.
1998# A record of 40 0s denotes an empty revision.
1999# And yes, it's still pretty fast (faster than Tie::File).
97ae0911 2000# These files are disposable unless noMetadata or useSvmProps is set
9b981fc6 2001
26a62d57
EW
2002sub _rev_db_set {
2003 my ($fh, $rev, $commit) = @_;
2004 my $offset = $rev * 41;
2005 # assume that append is the common case:
2006 seek $fh, 0, 2 or croak $!;
2007 my $pos = tell $fh;
2008 if ($pos < $offset) {
2009 for (1 .. (($offset - $pos) / 41)) {
2010 print $fh (('0' x 40),"\n") or croak $!;
2011 }
2012 }
2013 seek $fh, $offset, 0 or croak $!;
2014 print $fh $commit,"\n" or croak $!;
2015}
2016
2017sub mkfile {
2018 my ($path) = @_;
2019 unless (-e $path) {
2020 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
2021 mkpath([$dir]) unless -d $dir;
2022 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
2023 close $fh or die "Couldn't close (create) $path: $!\n";
2024 }
2025}
2026
9b981fc6 2027sub rev_db_set {
26a62d57
EW
2028 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
2029 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
2030 my $db = $self->db_path($uuid);
2031 my $db_lock = "$db.lock";
373274f9
EW
2032 my $sig;
2033 if ($update_ref) {
2034 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2035 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
2036 }
26a62d57
EW
2037 mkfile($db);
2038
373274f9 2039 $LOCKFILES{$db_lock} = 1;
97ae0911 2040 my $sync;
97ae0911
EW
2041 # both of these options make our .rev_db file very, very important
2042 # and we can't afford to lose it because rebuild() won't work
2043 if ($self->use_svm_props || $self->no_metadata) {
2044 $sync = 1;
373274f9 2045 copy($db, $db_lock) or die "rev_db_set(@_): ",
26a62d57 2046 "Failed to copy: ",
373274f9
EW
2047 "$db => $db_lock ($!)\n";
2048 } else {
2049 rename $db, $db_lock or die "rev_db_set(@_): ",
26a62d57 2050 "Failed to rename: ",
373274f9
EW
2051 "$db => $db_lock ($!)\n";
2052 }
26a62d57
EW
2053 open my $fh, '+<', $db_lock or die "Couldn't open $db_lock: $!\n";
2054 _rev_db_set($fh, $rev, $commit);
97ae0911
EW
2055 if ($sync) {
2056 $fh->flush or die "Couldn't flush $db_lock: $!\n";
2057 $fh->sync or die "Couldn't sync $db_lock: $!\n";
2058 }
9b981fc6 2059 close $fh or croak $!;
373274f9 2060 if ($update_ref) {
1e889ef3 2061 $_head = $self;
373274f9
EW
2062 command_noisy('update-ref', '-m', "r$rev",
2063 $self->refname, $commit);
2064 }
2065 rename $db_lock, $db or die "rev_db_set(@_): ", "Failed to rename: ",
2066 "$db_lock => $db ($!)\n";
2067 delete $LOCKFILES{$db_lock};
2068 if ($update_ref) {
2069 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2070 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
2071 kill $sig, $$ if defined $sig;
2072 }
9b981fc6
EW
2073}
2074
9c93fee5
EW
2075sub rev_db_max {
2076 my ($self) = @_;
d6d3346b 2077 $self->rebuild;
26a62d57
EW
2078 my $db_path = $self->db_path;
2079 my @stat = stat $db_path or return 0;
2080 ($stat[7] % 41) == 0 or die "$db_path inconsistent size: $stat[7]\n";
9c93fee5
EW
2081 my $max = $stat[7] / 41;
2082 (($max > 0) ? $max - 1 : 0);
2083}
2084
9b981fc6 2085sub rev_db_get {
26a62d57 2086 my ($self, $rev, $uuid) = @_;
9b981fc6
EW
2087 my $ret;
2088 my $offset = $rev * 41;
26a62d57
EW
2089 my $db_path = $self->db_path($uuid);
2090 return undef unless -e $db_path;
2091 open my $fh, '<', $db_path or croak $!;
ce4b4af7
EW
2092 if (sysseek($fh, $offset, 0) == $offset) {
2093 my $read = sysread($fh, $ret, 40);
2094 $ret = undef if ($read != 40 || $ret eq ('0'x40));
9b981fc6
EW
2095 }
2096 close $fh or croak $!;
2097 $ret;
2098}
2099
15710b6f
EW
2100sub find_rev_before {
2101 my ($self, $rev, $eq_ok) = @_;
2102 --$rev unless $eq_ok;
2103 while ($rev > 0) {
2104 if (my $c = $self->rev_db_get($rev)) {
2105 return ($rev, $c);
2106 }
2107 --$rev;
2108 }
2109 return (undef, undef);
2110}
2111
9b981fc6 2112sub _new {
706587fc
EW
2113 my ($class, $repo_id, $ref_id, $path) = @_;
2114 unless (defined $repo_id && length $repo_id) {
2115 $repo_id = $Git::SVN::default_repo_id;
2116 }
2117 unless (defined $ref_id && length $ref_id) {
8b8fc068 2118 $_[2] = $ref_id = $Git::SVN::default_ref_id;
706587fc
EW
2119 }
2120 $_[1] = $repo_id = sanitize_remote_name($repo_id);
2121 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
2122 $_[3] = $path = '' unless (defined $path);
b4d57e5e 2123 mkpath(["$ENV{GIT_DIR}/svn"]);
26a62d57
EW
2124 bless {
2125 ref_id => $ref_id, dir => $dir, index => "$dir/index",
8a49ee97 2126 path => $path, config => "$ENV{GIT_DIR}/svn/config",
26a62d57
EW
2127 db_root => "$dir/.rev_db", repo_id => $repo_id }, $class;
2128}
2129
2130sub db_path {
2131 my ($self, $uuid) = @_;
2132 $uuid ||= $self->ra_uuid;
2133 "$self->{db_root}.$uuid";
9b981fc6
EW
2134}
2135
1c8443b0
EW
2136sub uri_encode {
2137 my ($f) = @_;
2138 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
2139 $f
2140}
9b981fc6 2141
18ea92bd
SV
2142sub remove_username {
2143 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
2144}
2145
d976acfd
EW
2146package Git::SVN::Prompt;
2147use strict;
2148use warnings;
2149require SVN::Core;
2150use vars qw/$_no_auth_cache $_username/;
2151
2152sub simple {
30d055aa
EW
2153 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
2154 $may_save = undef if $_no_auth_cache;
2155 $default_username = $_username if defined $_username;
2156 if (defined $default_username && length $default_username) {
2157 if (defined $realm && length $realm) {
6f729591
EW
2158 print STDERR "Authentication realm: $realm\n";
2159 STDERR->flush;
30d055aa
EW
2160 }
2161 $cred->username($default_username);
2162 } else {
d976acfd 2163 username($cred, $realm, $may_save, $pool);
30d055aa
EW
2164 }
2165 $cred->password(_read_password("Password for '" .
2166 $cred->username . "': ", $realm));
2167 $cred->may_save($may_save);
2168 $SVN::_Core::SVN_NO_ERROR;
2169}
2170
d976acfd 2171sub ssl_server_trust {
30d055aa
EW
2172 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
2173 $may_save = undef if $_no_auth_cache;
6f729591 2174 print STDERR "Error validating server certificate for '$realm':\n";
30d055aa 2175 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
6f729591 2176 print STDERR " - The certificate is not issued by a trusted ",
30d055aa
EW
2177 "authority. Use the\n",
2178 " fingerprint to validate the certificate manually!\n";
2179 }
2180 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
6f729591 2181 print STDERR " - The certificate hostname does not match.\n";
30d055aa
EW
2182 }
2183 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
6f729591 2184 print STDERR " - The certificate is not yet valid.\n";
30d055aa
EW
2185 }
2186 if ($failures & $SVN::Auth::SSL::EXPIRED) {
6f729591 2187 print STDERR " - The certificate has expired.\n";
30d055aa
EW
2188 }
2189 if ($failures & $SVN::Auth::SSL::OTHER) {
6f729591 2190 print STDERR " - The certificate has an unknown error.\n";
30d055aa 2191 }
6f729591
EW
2192 printf STDERR
2193 "Certificate information:\n".
30d055aa
EW
2194 " - Hostname: %s\n".
2195 " - Valid: from %s until %s\n".
2196 " - Issuer: %s\n".
2197 " - Fingerprint: %s\n",
2198 map $cert_info->$_, qw(hostname valid_from valid_until
6f729591 2199 issuer_dname fingerprint);
30d055aa
EW
2200 my $choice;
2201prompt:
6f729591 2202 print STDERR $may_save ?
30d055aa
EW
2203 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
2204 "(R)eject or accept (t)emporarily? ";
6f729591 2205 STDERR->flush;
30d055aa
EW
2206 $choice = lc(substr(<STDIN> || 'R', 0, 1));
2207 if ($choice =~ /^t$/i) {
2208 $cred->may_save(undef);
2209 } elsif ($choice =~ /^r$/i) {
2210 return -1;
2211 } elsif ($may_save && $choice =~ /^p$/i) {
2212 $cred->may_save($may_save);
2213 } else {
2214 goto prompt;
2215 }
2216 $cred->accepted_failures($failures);
2217 $SVN::_Core::SVN_NO_ERROR;
2218}
2219
d976acfd 2220sub ssl_client_cert {
30d055aa
EW
2221 my ($cred, $realm, $may_save, $pool) = @_;
2222 $may_save = undef if $_no_auth_cache;
6f729591
EW
2223 print STDERR "Client certificate filename: ";
2224 STDERR->flush;
30d055aa
EW
2225 chomp(my $filename = <STDIN>);
2226 $cred->cert_file($filename);
2227 $cred->may_save($may_save);
2228 $SVN::_Core::SVN_NO_ERROR;
2229}
2230
d976acfd 2231sub ssl_client_cert_pw {
30d055aa
EW
2232 my ($cred, $realm, $may_save, $pool) = @_;
2233 $may_save = undef if $_no_auth_cache;
2234 $cred->password(_read_password("Password: ", $realm));
2235 $cred->may_save($may_save);
2236 $SVN::_Core::SVN_NO_ERROR;
2237}
2238
d976acfd 2239sub username {
30d055aa
EW
2240 my ($cred, $realm, $may_save, $pool) = @_;
2241 $may_save = undef if $_no_auth_cache;
2242 if (defined $realm && length $realm) {
6f729591 2243 print STDERR "Authentication realm: $realm\n";
30d055aa
EW
2244 }
2245 my $username;
2246 if (defined $_username) {
2247 $username = $_username;
2248 } else {
6f729591
EW
2249 print STDERR "Username: ";
2250 STDERR->flush;
30d055aa
EW
2251 chomp($username = <STDIN>);
2252 }
2253 $cred->username($username);
2254 $cred->may_save($may_save);
2255 $SVN::_Core::SVN_NO_ERROR;
2256}
2257
2258sub _read_password {
2259 my ($prompt, $realm) = @_;
6f729591
EW
2260 print STDERR $prompt;
2261 STDERR->flush;
30d055aa
EW
2262 require Term::ReadKey;
2263 Term::ReadKey::ReadMode('noecho');
2264 my $password = '';
2265 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
2266 last if $key =~ /[\012\015]/; # \n\r
2267 $password .= $key;
2268 }
2269 Term::ReadKey::ReadMode('restore');
6f729591
EW
2270 print STDERR "\n";
2271 STDERR->flush;
30d055aa
EW
2272 $password;
2273}
2274
d976acfd
EW
2275package main;
2276
b9c85187
EW
2277{
2278 my $kill_stupid_warnings = $SVN::Node::none.$SVN::Node::file.
2279 $SVN::Node::dir.$SVN::Node::unknown.
2280 $SVN::Node::none.$SVN::Node::file.
2281 $SVN::Node::dir.$SVN::Node::unknown.
2282 $SVN::Auth::SSL::CNMISMATCH.
2283 $SVN::Auth::SSL::NOTYETVALID.
2284 $SVN::Auth::SSL::EXPIRED.
2285 $SVN::Auth::SSL::UNKNOWNCA.
2286 $SVN::Auth::SSL::OTHER;
2287}
2288
27a1a801
EW
2289package SVN::Git::Fetcher;
2290use vars qw/@ISA/;
2291use strict;
2292use warnings;
2293use Carp qw/croak/;
2294use IO::File qw//;
90c1b15d 2295use Digest::MD5;
27a1a801
EW
2296
2297# file baton members: path, mode_a, mode_b, pool, fh, blob, base
2298sub new {
2299 my ($class, $git_svn) = @_;
2300 my $self = SVN::Delta::Editor->new;
2301 bless $self, $class;
1c8443b0 2302 $self->{c} = $git_svn->{last_commit} if exists $git_svn->{last_commit};
d2a9a87b
EW
2303 $self->{empty} = {};
2304 $self->{dir_prop} = {};
2305 $self->{file_prop} = {};
2306 $self->{absent_dir} = {};
2307 $self->{absent_file} = {};
ef3cfaad 2308 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
27a1a801
EW
2309 $self;
2310}
2311
8b8fc068
EW
2312sub set_path_strip {
2313 my ($self, $path) = @_;
4e9f6cc7 2314 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
8b8fc068
EW
2315}
2316
d2a9a87b
EW
2317sub open_root {
2318 { path => '' };
2319}
2320
2321sub open_directory {
2322 my ($self, $path, $pb, $rev) = @_;
2323 { path => $path };
2324}
2325
706587fc
EW
2326sub git_path {
2327 my ($self, $path) = @_;
2b27f6c8
EW
2328 if ($self->{path_strip}) {
2329 $path =~ s!$self->{path_strip}!! or
2330 die "Failed to strip path '$path' ($self->{path_strip})\n";
2331 }
706587fc
EW
2332 $path;
2333}
2334
27a1a801
EW
2335sub delete_entry {
2336 my ($self, $path, $rev, $pb) = @_;
4a87db0e 2337
706587fc 2338 my $gpath = $self->git_path($path);
8a603774
EW
2339 return undef if ($gpath eq '');
2340
4a87db0e 2341 # remove entire directories.
706587fc 2342 if (command('ls-tree', $self->{c}, '--', $gpath) =~ /^040000 tree/) {
4a87db0e
EW
2343 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
2344 -r --name-only -z/,
706587fc 2345 $self->{c}, '--', $gpath);
4a87db0e
EW
2346 local $/ = "\0";
2347 while (<$ls>) {
ef3cfaad
EW
2348 chomp;
2349 $self->{gii}->remove($_);
9e3cdbd4 2350 print "\tD\t$_\n" unless $::_q;
4a87db0e 2351 }
9e3cdbd4 2352 print "\tD\t$gpath/\n" unless $::_q;
4a87db0e
EW
2353 command_close_pipe($ls, $ctx);
2354 $self->{empty}->{$path} = 0
2355 } else {
ef3cfaad 2356 $self->{gii}->remove($gpath);
9e3cdbd4 2357 print "\tD\t$gpath\n" unless $::_q;
4a87db0e 2358 }
27a1a801
EW
2359 undef;
2360}
2361
2362sub open_file {
2363 my ($self, $path, $pb, $rev) = @_;
706587fc
EW
2364 my $gpath = $self->git_path($path);
2365 my ($mode, $blob) = (command('ls-tree', $self->{c}, '--', $gpath)
27a1a801 2366 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
006ede5e
EW
2367 unless (defined $mode && defined $blob) {
2368 die "$path was not found in commit $self->{c} (r$rev)\n";
2369 }
27a1a801 2370 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
0864e3ba 2371 pool => SVN::Pool->new, action => 'M' };
27a1a801
EW
2372}
2373
2374sub add_file {
2375 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
d2a9a87b
EW
2376 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
2377 delete $self->{empty}->{$dir};
27a1a801 2378 { path => $path, mode_a => 100644, mode_b => 100644,
0864e3ba 2379 pool => SVN::Pool->new, action => 'A' };
27a1a801
EW
2380}
2381
d2a9a87b
EW
2382sub add_directory {
2383 my ($self, $path, $cp_path, $cp_rev) = @_;
2384 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
2385 delete $self->{empty}->{$dir};
2386 $self->{empty}->{$path} = 1;
2387 { path => $path };
2388}
2389
2390sub change_dir_prop {
2391 my ($self, $db, $prop, $value) = @_;
2392 $self->{dir_prop}->{$db->{path}} ||= {};
2393 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
2394 undef;
2395}
2396
2397sub absent_directory {
2398 my ($self, $path, $pb) = @_;
2399 $self->{absent_dir}->{$pb->{path}} ||= [];
2400 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
2401 undef;
2402}
2403
2404sub absent_file {
2405 my ($self, $path, $pb) = @_;
2406 $self->{absent_file}->{$pb->{path}} ||= [];
2407 push @{$self->{absent_file}->{$pb->{path}}}, $path;
2408 undef;
2409}
2410
27a1a801
EW
2411sub change_file_prop {
2412 my ($self, $fb, $prop, $value) = @_;
2413 if ($prop eq 'svn:executable') {
2414 if ($fb->{mode_b} != 120000) {
2415 $fb->{mode_b} = defined $value ? 100755 : 100644;
2416 }
2417 } elsif ($prop eq 'svn:special') {
2418 $fb->{mode_b} = defined $value ? 120000 : 100644;
d2a9a87b
EW
2419 } else {
2420 $self->{file_prop}->{$fb->{path}} ||= {};
2421 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
27a1a801
EW
2422 }
2423 undef;
2424}
2425
2426sub apply_textdelta {
2427 my ($self, $fb, $exp) = @_;
2428 my $fh = IO::File->new_tmpfile;
2429 $fh->autoflush(1);
2430 # $fh gets auto-closed() by SVN::TxDelta::apply(),
2431 # (but $base does not,) so dup() it for reading in close_file
2432 open my $dup, '<&', $fh or croak $!;
2433 my $base = IO::File->new_tmpfile;
2434 $base->autoflush(1);
2435 if ($fb->{blob}) {
2436 defined (my $pid = fork) or croak $!;
2437 if (!$pid) {
2438 open STDOUT, '>&', $base or croak $!;
2439 print STDOUT 'link ' if ($fb->{mode_a} == 120000);
2440 exec qw/git-cat-file blob/, $fb->{blob} or croak $!;
2441 }
2442 waitpid $pid, 0;
2443 croak $? if $?;
2444
2445 if (defined $exp) {
2446 seek $base, 0, 0 or croak $!;
2447 my $md5 = Digest::MD5->new;
2448 $md5->addfile($base);
2449 my $got = $md5->hexdigest;
2450 die "Checksum mismatch: $fb->{path} $fb->{blob}\n",
2451 "expected: $exp\n",
2452 " got: $got\n" if ($got ne $exp);
2453 }
2454 }
2455 seek $base, 0, 0 or croak $!;
2456 $fb->{fh} = $dup;
2457 $fb->{base} = $base;
2458 [ SVN::TxDelta::apply($base, $fh, undef, $fb->{path}, $fb->{pool}) ];
2459}
2460
2461sub close_file {
2462 my ($self, $fb, $exp) = @_;
2463 my $hash;
706587fc 2464 my $path = $self->git_path($fb->{path});
27a1a801
EW
2465 if (my $fh = $fb->{fh}) {
2466 seek($fh, 0, 0) or croak $!;
2467 my $md5 = Digest::MD5->new;
2468 $md5->addfile($fh);
2469 my $got = $md5->hexdigest;
2470 die "Checksum mismatch: $path\n",
2471 "expected: $exp\n got: $got\n" if ($got ne $exp);
bcd8ee5b 2472 sysseek($fh, 0, 0) or croak $!;
27a1a801 2473 if ($fb->{mode_b} == 120000) {
bcd8ee5b 2474 sysread($fh, my $buf, 5) == 5 or croak $!;
27a1a801
EW
2475 $buf eq 'link ' or die "$path has mode 120000",
2476 "but is not a link\n";
2477 }
2478 defined(my $pid = open my $out,'-|') or die "Can't fork: $!\n";
2479 if (!$pid) {
2480 open STDIN, '<&', $fh or croak $!;
2481 exec qw/git-hash-object -w --stdin/ or croak $!;
2482 }
2483 chomp($hash = do { local $/; <$out> });
2484 close $out or croak $!;
2485 close $fh or croak $!;
2486 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
2487 close $fb->{base} or croak $!;
2488 } else {
2489 $hash = $fb->{blob} or die "no blob information\n";
2490 }
2491 $fb->{pool}->clear;
ef3cfaad 2492 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
9e3cdbd4 2493 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
27a1a801
EW
2494 undef;
2495}
2496
2497sub abort_edit {
2498 my $self = shift;
ef3cfaad
EW
2499 $self->{nr} = $self->{gii}->{nr};
2500 delete $self->{gii};
27a1a801
EW
2501 $self->SUPER::abort_edit(@_);
2502}
2503
2504sub close_edit {
2505 my $self = shift;
dad73c0b 2506 $self->{git_commit_ok} = 1;
ef3cfaad
EW
2507 $self->{nr} = $self->{gii}->{nr};
2508 delete $self->{gii};
27a1a801
EW
2509 $self->SUPER::close_edit(@_);
2510}
1a82e793 2511
a5e0cedc 2512package SVN::Git::Editor;
24e22aa8 2513use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
a5e0cedc
EW
2514use strict;
2515use warnings;
2516use Carp qw/croak/;
2517use IO::File;
90c1b15d 2518use Digest::MD5;
a5e0cedc
EW
2519
2520sub new {
61395354
EW
2521 my ($class, $opts) = @_;
2522 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
2523 die "$_ required!\n" unless (defined $opts->{$_});
2524 }
2525
2526 my $pool = SVN::Pool->new;
2527 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
2528 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
2529 $opts->{r}, $mods);
2530
2531 # $opts->{ra} functions should not be used after this:
2532 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
2533 $opts->{editor_cb}, $pool);
2534 my $self = SVN::Delta::Editor->new(@ce, $pool);
a5e0cedc 2535 bless $self, $class;
61395354
EW
2536 foreach (qw/svn_path r tree_a tree_b/) {
2537 $self->{$_} = $opts->{$_};
a5e0cedc 2538 }
61395354
EW
2539 $self->{url} = $opts->{ra}->{url};
2540 $self->{mods} = $mods;
2541 $self->{types} = $types;
2542 $self->{pool} = $pool;
a5e0cedc
EW
2543 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
2544 $self->{rm} = { };
d3a840dc
EW
2545 $self->{path_prefix} = length $self->{svn_path} ?
2546 "$self->{svn_path}/" : '';
a5e0cedc
EW
2547 return $self;
2548}
2549
61395354
EW
2550sub generate_diff {
2551 my ($tree_a, $tree_b) = @_;
2552 my @diff_tree = qw(diff-tree -z -r);
24e22aa8
EW
2553 if ($_cp_similarity) {
2554 push @diff_tree, "-C$_cp_similarity";
61395354
EW
2555 } else {
2556 push @diff_tree, '-C';
2557 }
24e22aa8
EW
2558 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
2559 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
61395354
EW
2560 push @diff_tree, $tree_a, $tree_b;
2561 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
2562 local $/ = "\0";
2563 my $state = 'meta';
2564 my @mods;
2565 while (<$diff_fh>) {
2566 chomp $_; # this gets rid of the trailing "\0"
2567 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
2568 $::sha1\s($::sha1)\s
2569 ([MTCRAD])\d*$/xo) {
2570 push @mods, { mode_a => $1, mode_b => $2,
2571 sha1_b => $3, chg => $4 };
2572 if ($4 =~ /^(?:C|R)$/) {
2573 $state = 'file_a';
2574 } else {
2575 $state = 'file_b';
2576 }
2577 } elsif ($state eq 'file_a') {
2578 my $x = $mods[$#mods] or croak "Empty array\n";
2579 if ($x->{chg} !~ /^(?:C|R)$/) {
2580 croak "Error parsing $_, $x->{chg}\n";
2581 }
2582 $x->{file_a} = $_;
2583 $state = 'file_b';
2584 } elsif ($state eq 'file_b') {
2585 my $x = $mods[$#mods] or croak "Empty array\n";
2586 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
2587 croak "Error parsing $_, $x->{chg}\n";
2588 }
2589 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
2590 croak "Error parsing $_, $x->{chg}\n";
2591 }
2592 $x->{file_b} = $_;
2593 $state = 'meta';
2594 } else {
2595 croak "Error parsing $_\n";
2596 }
2597 }
2598 command_close_pipe($diff_fh, $ctx);
2599 \@mods;
2600}
2601
2602sub check_diff_paths {
2603 my ($ra, $pfx, $rev, $mods) = @_;
2604 my %types;
2605 $pfx .= '/' if length $pfx;
2606
2607 sub type_diff_paths {
2608 my ($ra, $types, $path, $rev) = @_;
2609 my @p = split m#/+#, $path;
2610 my $c = shift @p;
2611 unless (defined $types->{$c}) {
2612 $types->{$c} = $ra->check_path($c, $rev);
2613 }
2614 while (@p) {
2615 $c .= '/' . shift @p;
2616 next if defined $types->{$c};
2617 $types->{$c} = $ra->check_path($c, $rev);
2618 }
2619 }
2620
2621 foreach my $m (@$mods) {
2622 foreach my $f (qw/file_a file_b/) {
2623 next unless defined $m->{$f};
2624 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
2625 if (length $pfx.$dir && ! defined $types{$dir}) {
2626 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
2627 }
2628 }
2629 }
2630 \%types;
2631}
2632
a5e0cedc
EW
2633sub split_path {
2634 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
2635}
2636
2637sub repo_path {
d3a840dc
EW
2638 my ($self, $path) = @_;
2639 $self->{path_prefix}.(defined $path ? $path : '');
a5e0cedc
EW
2640}
2641
2642sub url_path {
2643 my ($self, $path) = @_;
6e8548cc 2644 $self->{url} . '/' . $self->repo_path($path);
a5e0cedc
EW
2645}
2646
2647sub rmdirs {
61395354 2648 my ($self) = @_;
a5e0cedc
EW
2649 my $rm = $self->{rm};
2650 delete $rm->{''}; # we never delete the url we're tracking
2651 return unless %$rm;
2652
2653 foreach (keys %$rm) {
2654 my @d = split m#/#, $_;
2655 my $c = shift @d;
2656 $rm->{$c} = 1;
2657 while (@d) {
2658 $c .= '/' . shift @d;
2659 $rm->{$c} = 1;
2660 }
2661 }
2662 delete $rm->{$self->{svn_path}};
2663 delete $rm->{''}; # we never delete the url we're tracking
2664 return unless %$rm;
2665
61395354
EW
2666 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
2667 $self->{tree_b});
a5e0cedc
EW
2668 local $/ = "\0";
2669 while (<$fh>) {
2670 chomp;
747fa12c 2671 my @dn = split m#/#, $_;
c07eee1f
EW
2672 while (pop @dn) {
2673 delete $rm->{join '/', @dn};
2674 }
2675 unless (%$rm) {
22600a25 2676 close $fh;
c07eee1f
EW
2677 return;
2678 }
a5e0cedc 2679 }
aef4e921 2680 command_close_pipe($fh, $ctx);
c07eee1f 2681
a5e0cedc
EW
2682 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
2683 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
2684 $self->close_directory($bat->{$d}, $p);
2685 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
44320b9e 2686 print "\tD+\t$d/\n" unless $::_q;
a5e0cedc
EW
2687 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
2688 delete $bat->{$d};
2689 }
2690}
2691
2692sub open_or_add_dir {
2693 my ($self, $full_path, $baton) = @_;
6e8548cc
EW
2694 my $t = $self->{types}->{$full_path};
2695 if (!defined $t) {
2696 die "$full_path not known in r$self->{r} or we have a bug!\n";
2697 }
a5e0cedc
EW
2698 if ($t == $SVN::Node::none) {
2699 return $self->add_directory($full_path, $baton,
2700 undef, -1, $self->{pool});
2701 } elsif ($t == $SVN::Node::dir) {
2702 return $self->open_directory($full_path, $baton,
2703 $self->{r}, $self->{pool});
2704 }
2705 print STDERR "$full_path already exists in repository at ",
2706 "r$self->{r} and it is not a directory (",
2707 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
2708 exit 1;
2709}
2710
2711sub ensure_path {
2712 my ($self, $path) = @_;
2713 my $bat = $self->{bat};
6e8548cc
EW
2714 my $repo_path = $self->repo_path($path);
2715 return $bat->{''} unless (length $repo_path);
2716 my @p = split m#/+#, $repo_path;
a5e0cedc
EW
2717 my $c = shift @p;
2718 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
2719 while (@p) {
2720 my $c0 = $c;
2721 $c .= '/' . shift @p;
2722 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
2723 }
2724 return $bat->{$c};
2725}
2726
2727sub A {
44320b9e 2728 my ($self, $m) = @_;
a5e0cedc
EW
2729 my ($dir, $file) = split_path($m->{file_b});
2730 my $pbat = $self->ensure_path($dir);
2731 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2732 undef, -1);
44320b9e 2733 print "\tA\t$m->{file_b}\n" unless $::_q;
a5e0cedc
EW
2734 $self->chg_file($fbat, $m);
2735 $self->close_file($fbat,undef,$self->{pool});
2736}
2737
2738sub C {
44320b9e 2739 my ($self, $m) = @_;
a5e0cedc
EW
2740 my ($dir, $file) = split_path($m->{file_b});
2741 my $pbat = $self->ensure_path($dir);
2742 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2743 $self->url_path($m->{file_a}), $self->{r});
44320b9e 2744 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
a5e0cedc
EW
2745 $self->chg_file($fbat, $m);
2746 $self->close_file($fbat,undef,$self->{pool});
2747}
2748
2749sub delete_entry {
2750 my ($self, $path, $pbat) = @_;
2751 my $rpath = $self->repo_path($path);
2752 my ($dir, $file) = split_path($rpath);
2753 $self->{rm}->{$dir} = 1;
2754 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
2755}
2756
2757sub R {
44320b9e 2758 my ($self, $m) = @_;
a5e0cedc
EW
2759 my ($dir, $file) = split_path($m->{file_b});
2760 my $pbat = $self->ensure_path($dir);
2761 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2762 $self->url_path($m->{file_a}), $self->{r});
44320b9e 2763 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
a5e0cedc
EW
2764 $self->chg_file($fbat, $m);
2765 $self->close_file($fbat,undef,$self->{pool});
2766
2767 ($dir, $file) = split_path($m->{file_a});
2768 $pbat = $self->ensure_path($dir);
2769 $self->delete_entry($m->{file_a}, $pbat);
2770}
2771
2772sub M {
44320b9e 2773 my ($self, $m) = @_;
a5e0cedc
EW
2774 my ($dir, $file) = split_path($m->{file_b});
2775 my $pbat = $self->ensure_path($dir);
2776 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
2777 $pbat,$self->{r},$self->{pool});
44320b9e 2778 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
a5e0cedc
EW
2779 $self->chg_file($fbat, $m);
2780 $self->close_file($fbat,undef,$self->{pool});
2781}
2782
2783sub T { shift->M(@_) }
2784
2785sub change_file_prop {
2786 my ($self, $fbat, $pname, $pval) = @_;
2787 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
2788}
2789
2790sub chg_file {
2791 my ($self, $fbat, $m) = @_;
2792 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
2793 $self->change_file_prop($fbat,'svn:executable','*');
2794 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
2795 $self->change_file_prop($fbat,'svn:executable',undef);
2796 }
2797 my $fh = IO::File->new_tmpfile or croak $!;
2798 if ($m->{mode_b} =~ /^120/) {
2799 print $fh 'link ' or croak $!;
2800 $self->change_file_prop($fbat,'svn:special','*');
2801 } elsif ($m->{mode_a} =~ /^120/ && $m->{mode_b} !~ /^120/) {
2802 $self->change_file_prop($fbat,'svn:special',undef);
2803 }
2804 defined(my $pid = fork) or croak $!;
2805 if (!$pid) {
2806 open STDOUT, '>&', $fh or croak $!;
2807 exec qw/git-cat-file blob/, $m->{sha1_b} or croak $!;
2808 }
2809 waitpid $pid, 0;
2810 croak $? if $?;
2811 $fh->flush == 0 or croak $!;
2812 seek $fh, 0, 0 or croak $!;
2813
2814 my $md5 = Digest::MD5->new;
2815 $md5->addfile($fh) or croak $!;
2816 seek $fh, 0, 0 or croak $!;
2817
2818 my $exp = $md5->hexdigest;
f7197dff
EW
2819 my $pool = SVN::Pool->new;
2820 my $atd = $self->apply_textdelta($fbat, undef, $pool);
2821 my $got = SVN::TxDelta::send_stream($fh, @$atd, $pool);
a5e0cedc 2822 die "Checksum mismatch\nexpected: $exp\ngot: $got\n" if ($got ne $exp);
f7197dff 2823 $pool->clear;
a5e0cedc
EW
2824
2825 close $fh or croak $!;
2826}
2827
2828sub D {
44320b9e 2829 my ($self, $m) = @_;
a5e0cedc
EW
2830 my ($dir, $file) = split_path($m->{file_b});
2831 my $pbat = $self->ensure_path($dir);
44320b9e 2832 print "\tD\t$m->{file_b}\n" unless $::_q;
a5e0cedc
EW
2833 $self->delete_entry($m->{file_b}, $pbat);
2834}
2835
2836sub close_edit {
2837 my ($self) = @_;
2838 my ($p,$bat) = ($self->{pool}, $self->{bat});
2839 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
2840 $self->close_directory($bat->{$_}, $p);
2841 }
2842 $self->SUPER::close_edit($p);
2843 $p->clear;
2844}
2845
2846sub abort_edit {
2847 my ($self) = @_;
2848 $self->SUPER::abort_edit($self->{pool});
61395354
EW
2849}
2850
2851sub DESTROY {
2852 my $self = shift;
2853 $self->SUPER::DESTROY(@_);
a5e0cedc
EW
2854 $self->{pool}->clear;
2855}
2856
44320b9e
EW
2857# this drives the editor
2858sub apply_diff {
61395354
EW
2859 my ($self) = @_;
2860 my $mods = $self->{mods};
44320b9e 2861 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
6e8548cc 2862 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
44320b9e
EW
2863 my $f = $m->{chg};
2864 if (defined $o{$f}) {
2865 $self->$f($m);
2866 } else {
2867 fatal("Invalid change type: $f\n");
2868 }
2869 }
24e22aa8 2870 $self->rmdirs if $_rmdir;
6e8548cc 2871 if (@$mods == 0) {
44320b9e
EW
2872 $self->abort_edit;
2873 } else {
2874 $self->close_edit;
2875 }
6e8548cc 2876 return scalar @$mods;
44320b9e
EW
2877}
2878
d81bf827 2879package Git::SVN::Ra;
6af1db44 2880use vars qw/@ISA $config_dir $_log_window_size/;
d81bf827
EW
2881use strict;
2882use warnings;
a6a15a99 2883my ($can_do_switch, %ignored_err, $RA);
d81bf827
EW
2884
2885BEGIN {
2886 # enforce temporary pool usage for some simple functions
2887 my $e;
74a81227 2888 foreach (qw/get_latest_revnum get_uuid get_repos_root/) {
d81bf827
EW
2889 $e .= "sub $_ {
2890 my \$self = shift;
2891 my \$pool = SVN::Pool->new;
2892 my \@ret = \$self->SUPER::$_(\@_,\$pool);
2893 \$pool->clear;
2894 wantarray ? \@ret : \$ret[0]; }\n";
2895 }
74a81227
EW
2896
2897 # get_dir needs $pool held in cache for dirents to work,
2898 # check_path is cacheable and rev_proplist is close enough
2899 # for our purposes.
2900 foreach (qw/check_path get_dir rev_proplist/) {
2901 $e .= "my \%${_}_cache; my \$${_}_rev = 0; sub $_ {
2902 my \$self = shift;
2903 my \$r = pop;
2904 my \$k = join(\"\\0\", \@_);
2905 if (my \$x = \$${_}_cache{\$r}->{\$k}) {
2906 return wantarray ? \@\$x : \$x->[0];
2907 }
2908 my \$pool = SVN::Pool->new;
2909 my \@ret = \$self->SUPER::$_(\@_, \$r, \$pool);
2910 if (\$r != \$${_}_rev) {
2911 \%${_}_cache = ( pool => [] );
2912 \$${_}_rev = \$r;
2913 }
2914 \$${_}_cache{\$r}->{\$k} = \\\@ret;
2915 push \@{\$${_}_cache{pool}}, \$pool;
2916 wantarray ? \@ret : \$ret[0]; }\n";
2917 }
2918 $e .= "\n1;";
2919 eval $e or die $@;
d81bf827
EW
2920}
2921
2922sub new {
2923 my ($class, $url) = @_;
f6f09876 2924 $url =~ s!/+$!!;
5d3b7cd5 2925 return $RA if ($RA && $RA->{url} eq $url);
e2c475d9 2926 $RA->{pool}->clear if $RA;
f6f09876 2927
d81bf827
EW
2928 SVN::_Core::svn_config_ensure($config_dir, undef);
2929 my ($baton, $callbacks) = SVN::Core::auth_open_helper([
2930 SVN::Client::get_simple_provider(),
2931 SVN::Client::get_ssl_server_trust_file_provider(),
2932 SVN::Client::get_simple_prompt_provider(
2933 \&Git::SVN::Prompt::simple, 2),
2934 SVN::Client::get_ssl_client_cert_prompt_provider(
2935 \&Git::SVN::Prompt::ssl_client_cert, 2),
2936 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
2937 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
2938 SVN::Client::get_username_provider(),
2939 SVN::Client::get_ssl_server_trust_prompt_provider(
2940 \&Git::SVN::Prompt::ssl_server_trust),
2941 SVN::Client::get_username_prompt_provider(
2942 \&Git::SVN::Prompt::username, 2),
2943 ]);
2944 my $config = SVN::Core::config_get_config($config_dir);
2945 my $self = SVN::Ra->new(url => $url, auth => $baton,
2946 config => $config,
2947 pool => SVN::Pool->new,
2948 auth_provider_callbacks => $callbacks);
2949 $self->{svn_path} = $url;
2950 $self->{repos_root} = $self->get_repos_root;
4e9f6cc7 2951 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
5d3b7cd5 2952 $RA = bless $self, $class;
d81bf827
EW
2953}
2954
2955sub DESTROY {
5d3b7cd5 2956 # do not call the real DESTROY since we store ourselves in $RA
d81bf827
EW
2957}
2958
d81bf827
EW
2959sub get_log {
2960 my ($self, @args) = @_;
2961 my $pool = SVN::Pool->new;
d81bf827
EW
2962 splice(@args, 3, 1) if ($SVN::Core::VERSION le '1.2.0');
2963 my $ret = $self->SUPER::get_log(@args, $pool);
2964 $pool->clear;
2965 $ret;
2966}
2967
2968sub get_commit_editor {
44320b9e 2969 my ($self, $log, $cb, $pool) = @_;
d81bf827 2970 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
44320b9e 2971 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
d81bf827
EW
2972}
2973
d81bf827 2974sub gs_do_update {
8a603774
EW
2975 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
2976 my $new = ($rev_a == $rev_b);
2977 my $path = $gs->{path};
2978
2e5e2480
EW
2979 if ($new && -e $gs->{index}) {
2980 unlink $gs->{index} or die
2981 "Couldn't unlink index: $gs->{index}: $!\n";
2982 }
d81bf827 2983 my $pool = SVN::Pool->new;
8b8fc068 2984 $editor->set_path_strip($path);
2b27f6c8
EW
2985 my (@pc) = split m#/#, $path;
2986 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
8a603774 2987 1, $editor, $pool);
d81bf827 2988 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
2b27f6c8
EW
2989
2990 # Since we can't rely on svn_ra_reparent being available, we'll
2991 # just have to do some magic with set_path to make it so
2992 # we only want a partial path.
2993 my $sp = '';
2994 my $final = join('/', @pc);
2995 while (@pc) {
2996 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
2997 $sp .= '/' if length $sp;
2998 $sp .= shift @pc;
2999 }
3000 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
3001
2b27f6c8
EW
3002 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
3003
d81bf827
EW
3004 $reporter->finish_report($pool);
3005 $pool->clear;
3006 $editor->{git_commit_ok};
3007}
3008
2b27f6c8
EW
3009# this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
3010# svn_ra_reparent didn't work before 1.4)
d81bf827 3011sub gs_do_switch {
8a603774
EW
3012 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
3013 my $path = $gs->{path};
d81bf827 3014 my $pool = SVN::Pool->new;
2b27f6c8
EW
3015
3016 my $full_url = $self->{url};
3017 my $old_url = $full_url;
3018 $full_url .= "/$path" if length $path;
5d3b7cd5
EW
3019 my ($ra, $reparented);
3020 if ($old_url ne $full_url) {
3021 if ($old_url !~ m#^svn(\+ssh)?://#) {
3022 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url,
3023 $pool);
3024 $self->{url} = $full_url;
3025 $reparented = 1;
3026 } else {
3027 $ra = Git::SVN::Ra->new($full_url);
3028 }
3029 }
3030 $ra ||= $self;
8a603774 3031 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
d81bf827 3032 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
8b8fc068 3033 $reporter->set_path('', $rev_a, 0, @lock, $pool);
d81bf827 3034 $reporter->finish_report($pool);
2b27f6c8 3035
5d3b7cd5
EW
3036 if ($reparented) {
3037 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
3038 $self->{url} = $old_url;
3039 }
2b27f6c8 3040
d81bf827
EW
3041 $pool->clear;
3042 $editor->{git_commit_ok};
3043}
3044
0af9c9f9 3045sub gs_fetch_loop_common {
e518192f
EW
3046 my ($self, $base, $head, $gsv, $globs) = @_;
3047 return if ($base > $head);
6af1db44 3048 my $inc = $_log_window_size;
0af9c9f9 3049 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
d2ae1434 3050 my %common;
e518192f
EW
3051 my $common_max = scalar @$gsv;
3052
3053 foreach my $gs (@$gsv) {
d2ae1434
EW
3054 my @tmp = split m#/#, $gs->{path};
3055 my $p = '';
3056 foreach (@tmp) {
3057 $p .= length($p) ? "/$_" : $_;
3058 $common{$p} ||= 0;
3059 $common{$p}++;
3060 }
3061 }
e518192f
EW
3062 $globs ||= [];
3063 $common_max += scalar @$globs;
3064 foreach my $glob (@$globs) {
3065 my @tmp = split m#/#, $glob->{path}->{left};
3066 my $p = '';
3067 foreach (@tmp) {
3068 $p .= length($p) ? "/$_" : $_;
3069 $common{$p} ||= 0;
3070 $common{$p}++;
3071 }
3072 }
3073
d2ae1434
EW
3074 my $longest_path = '';
3075 foreach (sort {length $b <=> length $a} keys %common) {
e518192f 3076 if ($common{$_} == $common_max) {
d2ae1434
EW
3077 $longest_path = $_;
3078 last;
3079 }
0af9c9f9
EW
3080 }
3081 while (1) {
d4eff2bd 3082 my %revs;
d2ae1434 3083 my $err;
f7c3fc4a 3084 my $err_handler = $SVN::Error::handler;
d2ae1434
EW
3085 $SVN::Error::handler = sub {
3086 ($err) = @_;
3087 skip_unknown_revs($err);
3088 };
3089 sub _cb {
3090 my ($paths, $r, $author, $date, $log) = @_;
3091 [ dup_changed_paths($paths),
3092 { author => $author, date => $date, log => $log } ];
3093 }
3094 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
3095 sub { $revs{$_[1]} = _cb(@_) });
3096 if ($err && $max >= $head) {
3097 print STDERR "Path '$longest_path' ",
3098 "was probably deleted:\n",
3099 $err->expanded_message,
3100 "\nWill attempt to follow ",
3101 "revisions r$min .. r$max ",
3102 "committed before the deletion\n";
3103 my $hi = $max;
3104 while (--$hi >= $min) {
3105 my $ok;
3106 $self->get_log([$longest_path], $min, $hi,
3107 0, 1, 1, sub {
3108 $ok ||= $_[1];
3109 $revs{$_[1]} = _cb(@_) });
3110 if ($ok) {
3111 print STDERR "r$min .. r$ok OK\n";
3112 last;
3113 }
3114 }
3115 }
d4eff2bd 3116 $SVN::Error::handler = $err_handler;
fbcc1737 3117
e518192f 3118 my %exists = map { $_->{path} => $_ } @$gsv;
d4eff2bd 3119 foreach my $r (sort {$a <=> $b} keys %revs) {
fbcc1737 3120 my ($paths, $logged) = @{$revs{$r}};
e518192f
EW
3121
3122 foreach my $gs ($self->match_globs(\%exists, $paths,
3123 $globs, $r)) {
fbcc1737
EW
3124 if ($gs->rev_db_max >= $r) {
3125 next;
3126 }
3127 next unless $gs->match_paths($paths, $r);
3128 $gs->{logged_rev_props} = $logged;
e8d120bd
EW
3129 if (my $last_commit = $gs->last_commit) {
3130 $gs->assert_index_clean($last_commit);
3131 }
fbcc1737
EW
3132 my $log_entry = $gs->do_fetch($paths, $r);
3133 if ($log_entry) {
0af9c9f9
EW
3134 $gs->do_git_commit($log_entry);
3135 }
3136 }
e518192f 3137 foreach my $g (@$globs) {
93f2689c
EW
3138 my $k = "svn-remote.$g->{remote}." .
3139 "$g->{t}-maxRev";
3140 Git::SVN::tmp_config($k, $r);
e518192f 3141 }
0af9c9f9 3142 }
9c93fee5
EW
3143 # pre-fill the .rev_db since it'll eventually get filled in
3144 # with '0' x40 if something new gets committed
e518192f 3145 foreach my $gs (@$gsv) {
9c93fee5
EW
3146 next if defined $gs->rev_db_get($max);
3147 $gs->rev_db_set($max, 0 x40);
3148 }
c3560e53
EW
3149 foreach my $g (@$globs) {
3150 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
3151 Git::SVN::tmp_config($k, $max);
3152 }
0af9c9f9
EW
3153 last if $max >= $head;
3154 $min = $max + 1;
3155 $max += $inc;
3156 $max = $head if ($max > $head);
3157 }
0af9c9f9
EW
3158}
3159
e518192f
EW
3160sub match_globs {
3161 my ($self, $exists, $paths, $globs, $r) = @_;
74a81227
EW
3162
3163 sub get_dir_check {
3164 my ($self, $exists, $g, $r) = @_;
3165 my @x = eval { $self->get_dir($g->{path}->{left}, $r) };
3166 return unless scalar @x == 3;
3167 my $dirents = $x[0];
3168 foreach my $de (keys %$dirents) {
3169 next if $dirents->{$de}->kind != $SVN::Node::dir;
3170 my $p = $g->{path}->full_path($de);
3171 next if $exists->{$p};
3172 next if (length $g->{path}->{right} &&
3173 ($self->check_path($p, $r) !=
3174 $SVN::Node::dir));
3175 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
3176 $g->{ref}->full_path($de), 1);
3177 }
3178 }
e518192f 3179 foreach my $g (@$globs) {
74a81227
EW
3180 if (my $path = $paths->{"/$g->{path}->{left}"}) {
3181 if ($path->{action} =~ /^[AR]$/) {
3182 get_dir_check($self, $exists, $g, $r);
3183 }
3184 }
e518192f 3185 foreach (keys %$paths) {
28710f74
EW
3186 if (/$g->{path}->{left_regex}/ &&
3187 !/$g->{path}->{regex}/) {
74a81227
EW
3188 next if $paths->{$_}->{action} !~ /^[AR]$/;
3189 get_dir_check($self, $exists, $g, $r);
3190 }
e518192f
EW
3191 next unless /$g->{path}->{regex}/;
3192 my $p = $1;
3193 my $pathname = $g->{path}->full_path($p);
3194 next if $exists->{$pathname};
0c1ec5a1
EW
3195 next if ($self->check_path($pathname, $r) !=
3196 $SVN::Node::dir);
e518192f
EW
3197 $exists->{$pathname} = Git::SVN->init(
3198 $self->{url}, $pathname, undef,
3199 $g->{ref}->full_path($p), 1);
3200 }
3201 my $c = '';
3202 foreach (split m#/#, $g->{path}->{left}) {
3203 $c .= "/$_";
3204 next unless ($paths->{$c} &&
74a81227
EW
3205 ($paths->{$c}->{action} =~ /^[AR]$/));
3206 get_dir_check($self, $exists, $g, $r);
e518192f
EW
3207 }
3208 }
3209 values %$exists;
3210}
3211
e6434f87
EW
3212sub minimize_url {
3213 my ($self) = @_;
3214 return $self->{url} if ($self->{url} eq $self->{repos_root});
3215 my $url = $self->{repos_root};
3216 my @components = split(m!/!, $self->{svn_path});
3217 my $c = '';
3218 do {
3219 $url .= "/$c" if length $c;
3220 eval { (ref $self)->new($url)->get_latest_revnum };
3221 } while ($@ && ($c = shift @components));
3222 $url;
3223}
3224
d81bf827
EW
3225sub can_do_switch {
3226 my $self = shift;
3227 unless (defined $can_do_switch) {
3228 my $pool = SVN::Pool->new;
3229 my $rep = eval {
3230 $self->do_switch(1, '', 0, $self->{url},
3231 SVN::Delta::Editor->new, $pool);
3232 };
3233 if ($@) {
3234 $can_do_switch = 0;
3235 } else {
3236 $rep->abort_report($pool);
3237 $can_do_switch = 1;
3238 }
3239 $pool->clear;
3240 }
3241 $can_do_switch;
3242}
3243
0af9c9f9
EW
3244sub skip_unknown_revs {
3245 my ($err) = @_;
3246 my $errno = $err->apr_err();
3247 # Maybe the branch we're tracking didn't
3248 # exist when the repo started, so it's
3249 # not an error if it doesn't, just continue
3250 #
3251 # Wonderfully consistent library, eh?
3252 # 160013 - svn:// and file://
3253 # 175002 - http(s)://
3254 # 175007 - http(s):// (this repo required authorization, too...)
3255 # More codes may be discovered later...
3256 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
a6a15a99
EW
3257 my $err_key = $err->expanded_message;
3258 # revision numbers change every time, filter them out
3259 $err_key =~ s/\d+/\0/g;
3260 $err_key = "$errno\0$err_key";
3261 unless ($ignored_err{$err_key}) {
3262 warn "W: Ignoring error from SVN, path probably ",
3263 "does not exist: ($errno): ",
3264 $err->expanded_message,"\n";
3265 $ignored_err{$err_key} = 1;
3266 }
0af9c9f9
EW
3267 return;
3268 }
3269 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
3270}
3271
3272# svn_log_changed_path_t objects passed to get_log are likely to be
3273# overwritten even if only the refs are copied to an external variable,
3274# so we should dup the structures in their entirety. Using an externally
3275# passed pool (instead of our temporary and quickly cleared pool in
3276# Git::SVN::Ra) does not help matters at all...
3277sub dup_changed_paths {
3278 my ($paths) = @_;
3279 return undef unless $paths;
3280 my %ret;
3281 foreach my $p (keys %$paths) {
3282 my $i = $paths->{$p};
3283 my %s = map { $_ => $i->$_ }
3284 qw/copyfrom_path copyfrom_rev action/;
3285 $ret{$p} = \%s;
3286 }
3287 \%ret;
3288}
3289
f8c9d1d2
EW
3290package Git::SVN::Log;
3291use strict;
3292use warnings;
3293use POSIX qw/strftime/;
3294use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
3295 %rusers $show_commit $incremental/;
3296my $l_fmt;
3297
3298sub cmt_showable {
3299 my ($c) = @_;
3300 return 1 if defined $c->{r};
c16d0871
EW
3301
3302 # big commit message got truncated by the 16k pretty buffer in rev-list
f8c9d1d2
EW
3303 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
3304 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
c16d0871 3305 @{$c->{l}} = ();
44320b9e 3306 my @log = command(qw/cat-file commit/, $c->{c});
c16d0871
EW
3307
3308 # shift off the headers
3309 shift @log while ($log[0] ne '');
44320b9e 3310 shift @log;
c16d0871
EW
3311
3312 # TODO: make $c->{l} not have a trailing newline in the future
3313 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
f8c9d1d2
EW
3314
3315 (undef, $c->{r}, undef) = ::extract_metadata(
44320b9e 3316 (grep(/^git-svn-id: /, @log))[-1]);
f8c9d1d2
EW
3317 }
3318 return defined $c->{r};
3319}
3320
3321sub log_use_color {
3322 return 1 if $color;
3323 my ($dc, $dcvar);
3324 $dcvar = 'color.diff';
3325 $dc = `git-config --get $dcvar`;
3326 if ($dc eq '') {
3327 # nothing at all; fallback to "diff.color"
3328 $dcvar = 'diff.color';
3329 $dc = `git-config --get $dcvar`;
3330 }
3331 chomp($dc);
3332 if ($dc eq 'auto') {
3333 my $pc;
3334 $pc = `git-config --get color.pager`;
3335 if ($pc eq '') {
3336 # does not have it -- fallback to pager.color
3337 $pc = `git-config --bool --get pager.color`;
3338 }
3339 else {
3340 $pc = `git-config --bool --get color.pager`;
3341 if ($?) {
3342 $pc = 'false';
3343 }
3344 }
3345 chomp($pc);
3346 if (-t *STDOUT || (defined $pager && $pc eq 'true')) {
3347 return ($ENV{TERM} && $ENV{TERM} ne 'dumb');
3348 }
3349 return 0;
3350 }
3351 return 0 if $dc eq 'never';
3352 return 1 if $dc eq 'always';
3353 chomp($dc = `git-config --bool --get $dcvar`);
3354 return ($dc eq 'true');
3355}
3356
3357sub git_svn_log_cmd {
3bc718ba
EW
3358 my ($r_min, $r_max, @args) = @_;
3359 my $head = 'HEAD';
3360 foreach my $x (@args) {
3361 last if $x eq '--';
3362 next unless ::verify_ref("$x^0");
3363 $head = $x;
3364 last;
3365 }
3366
13c823fb
EW
3367 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
3368 $gs ||= Git::SVN->_new;
f8c9d1d2
EW
3369 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
3370 $gs->refname);
3371 push @cmd, '-r' unless $non_recursive;
3372 push @cmd, qw/--raw --name-status/ if $verbose;
3373 push @cmd, '--color' if log_use_color();
3374 return @cmd unless defined $r_max;
3375 if ($r_max == $r_min) {
3376 push @cmd, '--max-count=1';
3377 if (my $c = $gs->rev_db_get($r_max)) {
3378 push @cmd, $c;
3379 }
3380 } else {
3381 my ($c_min, $c_max);
3382 $c_max = $gs->rev_db_get($r_max);
3383 $c_min = $gs->rev_db_get($r_min);
3384 if (defined $c_min && defined $c_max) {
3385 if ($r_max > $r_max) {
3386 push @cmd, "$c_min..$c_max";
3387 } else {
3388 push @cmd, "$c_max..$c_min";
3389 }
3390 } elsif ($r_max > $r_min) {
3391 push @cmd, $c_max;
3392 } else {
3393 push @cmd, $c_min;
3394 }
3395 }
3396 return @cmd;
3397}
3398
3399# adapted from pager.c
3400sub config_pager {
3401 $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
3402 if (!defined $pager) {
3403 $pager = 'less';
3404 } elsif (length $pager == 0 || $pager eq 'cat') {
3405 $pager = undef;
3406 }
3407}
3408
3409sub run_pager {
3410 return unless -t *STDOUT;
3411 pipe my $rfd, my $wfd or return;
3412 defined(my $pid = fork) or ::fatal "Can't fork: $!\n";
3413 if (!$pid) {
3414 open STDOUT, '>&', $wfd or
3415 ::fatal "Can't redirect to stdout: $!\n";
3416 return;
3417 }
3418 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!\n";
3419 $ENV{LESS} ||= 'FRSX';
3420 exec $pager or ::fatal "Can't run pager: $! ($pager)\n";
3421}
3422
21819a37
EW
3423sub tz_to_s_offset {
3424 my ($tz) = @_;
3425 $tz =~ s/(\d\d)$//;
3426 return ($1 * 60) + ($tz * 3600);
3427}
3428
f8c9d1d2
EW
3429sub get_author_info {
3430 my ($dest, $author, $t, $tz) = @_;
3431 $author =~ s/(?:^\s*|\s*$)//g;
3432 $dest->{a_raw} = $author;
3433 my $au;
1c8443b0 3434 if ($::_authors) {
f8c9d1d2
EW
3435 $au = $rusers{$author} || undef;
3436 }
3437 if (!$au) {
3438 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
3439 }
3440 $dest->{t} = $t;
3441 $dest->{tz} = $tz;
3442 $dest->{a} = $au;
3443 # Date::Parse isn't in the standard Perl distro :(
3444 if ($tz =~ s/^\+//) {
21819a37 3445 $t += tz_to_s_offset($tz);
f8c9d1d2 3446 } elsif ($tz =~ s/^\-//) {
21819a37 3447 $t -= tz_to_s_offset($tz);
f8c9d1d2
EW
3448 }
3449 $dest->{t_utc} = $t;
3450}
3451
3452sub process_commit {
3453 my ($c, $r_min, $r_max, $defer) = @_;
3454 if (defined $r_min && defined $r_max) {
3455 if ($r_min == $c->{r} && $r_min == $r_max) {
3456 show_commit($c);
3457 return 0;
3458 }
3459 return 1 if $r_min == $r_max;
3460 if ($r_min < $r_max) {
3461 # we need to reverse the print order
3462 return 0 if (defined $limit && --$limit < 0);
3463 push @$defer, $c;
3464 return 1;
3465 }
3466 if ($r_min != $r_max) {
3467 return 1 if ($r_min < $c->{r});
3468 return 1 if ($r_max > $c->{r});
3469 }
3470 }
3471 return 0 if (defined $limit && --$limit < 0);
3472 show_commit($c);
3473 return 1;
3474}
3475
3476sub show_commit {
3477 my $c = shift;
3478 if ($oneline) {
3479 my $x = "\n";
3480 if (my $l = $c->{l}) {
3481 while ($l->[0] =~ /^\s*$/) { shift @$l }
3482 $x = $l->[0];
3483 }
3484 $l_fmt ||= 'A' . length($c->{r});
3485 print 'r',pack($l_fmt, $c->{r}),' | ';
3486 print "$c->{c} | " if $show_commit;
3487 print $x;
3488 } else {
3489 show_commit_normal($c);
3490 }
3491}
3492
3493sub show_commit_changed_paths {
3494 my ($c) = @_;
3495 return unless $c->{changed};
3496 print "Changed paths:\n", @{$c->{changed}};
3497}
3498
3499sub show_commit_normal {
3500 my ($c) = @_;
3501 print '-' x72, "\nr$c->{r} | ";
3502 print "$c->{c} | " if $show_commit;
3503 print "$c->{a} | ", strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)",
3504 localtime($c->{t_utc})), ' | ';
3505 my $nr_line = 0;
3506
3507 if (my $l = $c->{l}) {
3508 while ($l->[$#$l] eq "\n" && $#$l > 0
3509 && $l->[($#$l - 1)] eq "\n") {
3510 pop @$l;
3511 }
3512 $nr_line = scalar @$l;
3513 if (!$nr_line) {
3514 print "1 line\n\n\n";
3515 } else {
3516 if ($nr_line == 1) {
3517 $nr_line = '1 line';
3518 } else {
3519 $nr_line .= ' lines';
3520 }
3521 print $nr_line, "\n";
3522 show_commit_changed_paths($c);
3523 print "\n";
3524 print $_ foreach @$l;
3525 }
3526 } else {
3527 print "1 line\n";
3528 show_commit_changed_paths($c);
3529 print "\n";
3530
3531 }
488a63ec 3532 foreach my $x (qw/raw stat diff/) {
f8c9d1d2
EW
3533 if ($c->{$x}) {
3534 print "\n";
3535 print $_ foreach @{$c->{$x}}
3536 }
3537 }
3538}
3539
3540sub cmd_show_log {
3541 my (@args) = @_;
3542 my ($r_min, $r_max);
3543 my $r_last = -1; # prevent dupes
3544 if (defined $TZ) {
3545 $ENV{TZ} = $TZ;
3546 } else {
3547 delete $ENV{TZ};
3548 }
3549 if (defined $::_revision) {
3550 if ($::_revision =~ /^(\d+):(\d+)$/) {
3551 ($r_min, $r_max) = ($1, $2);
3552 } elsif ($::_revision =~ /^\d+$/) {
3553 $r_min = $r_max = $::_revision;
3554 } else {
3555 ::fatal "-r$::_revision is not supported, use ",
3556 "standard \'git log\' arguments instead\n";
3557 }
3558 }
3559
3560 config_pager();
3bc718ba 3561 @args = (git_svn_log_cmd($r_min, $r_max, @args), @args);
f8c9d1d2
EW
3562 my $log = command_output_pipe(@args);
3563 run_pager();
488a63ec 3564 my (@k, $c, $d, $stat);
f8c9d1d2
EW
3565 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
3566 while (<$log>) {
3567 if (/^${esc_color}commit ($::sha1_short)/o) {
3568 my $cmt = $1;
3569 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
3570 $r_last = $c->{r};
3571 process_commit($c, $r_min, $r_max, \@k) or
3572 goto out;
3573 }
3574 $d = undef;
3575 $c = { c => $cmt };
3576 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
3577 get_author_info($c, $1, $2, $3);
3578 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
3579 # ignore
3580 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
3581 push @{$c->{raw}}, $_;
3582 } elsif (/^${esc_color}[ACRMDT]\t/) {
3583 # we could add $SVN->{svn_path} here, but that requires
3584 # remote access at the moment (repo_path_split)...
3585 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
3586 push @{$c->{changed}}, $_;
3587 } elsif (/^${esc_color}diff /o) {
3588 $d = 1;
3589 push @{$c->{diff}}, $_;
3590 } elsif ($d) {
3591 push @{$c->{diff}}, $_;
488a63ec
EW
3592 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
3593 $esc_color*[\+\-]*$esc_color$/x) {
3594 $stat = 1;
3595 push @{$c->{stat}}, $_;
3596 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
3597 push @{$c->{stat}}, $_;
3598 $stat = undef;
f8c9d1d2
EW
3599 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
3600 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
3601 } elsif (s/^${esc_color} //o) {
3602 push @{$c->{l}}, $_;
3603 }
3604 }
3605 if ($c && defined $c->{r} && $c->{r} != $r_last) {
3606 $r_last = $c->{r};
3607 process_commit($c, $r_min, $r_max, \@k);
3608 }
3609 if (@k) {
3610 my $swap = $r_max;
3611 $r_max = $r_min;
3612 $r_min = $swap;
3613 process_commit($_, $r_min, $r_max) foreach reverse @k;
3614 }
3615out:
c843c464 3616 close $log;
f8c9d1d2
EW
3617 print '-' x72,"\n" unless $incremental || $oneline;
3618}
3619
706587fc
EW
3620package Git::SVN::Migration;
3621# these version numbers do NOT correspond to actual version numbers
3622# of git nor git-svn. They are just relative.
3623#
3624# v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
3625#
3626# v1 layout: .git/$id/info/url, refs/remotes/$id
3627#
3628# v2 layout: .git/svn/$id/info/url, refs/remotes/$id
3629#
3630# v3 layout: .git/svn/$id, refs/remotes/$id
3631# - info/url may remain for backwards compatibility
3632# - this is what we migrate up to this layout automatically,
3633# - this will be used by git svn init on single branches
26a62d57
EW
3634# v3.1 layout (auto migrated):
3635# - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
3636# for backwards compatibility
706587fc
EW
3637#
3638# v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
3639# - this is only created for newly multi-init-ed
3640# repositories. Similar in spirit to the
3641# --use-separate-remotes option in git-clone (now default)
3642# - we do not automatically migrate to this (following
3643# the example set by core git)
3644use strict;
3645use warnings;
3646use Carp qw/croak/;
3647use File::Path qw/mkpath/;
47e39c55
EW
3648use File::Basename qw/dirname basename/;
3649use vars qw/$_minimize/;
706587fc
EW
3650
3651sub migrate_from_v0 {
3652 my $git_dir = $ENV{GIT_DIR};
3653 return undef unless -d $git_dir;
3654 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
3655 my $migrated = 0;
3656 while (<$fh>) {
3657 chomp;
3658 my ($id, $orig_ref) = ($_, $_);
3659 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
3660 next unless -f "$git_dir/$id/info/url";
3661 my $new_ref = "refs/remotes/$id";
3662 if (::verify_ref("$new_ref^0")) {
3663 print STDERR "W: $orig_ref is probably an old ",
3664 "branch used by an ancient version of ",
3665 "git-svn.\n",
3666 "However, $new_ref also exists.\n",
3667 "We will not be able ",
3668 "to use this branch until this ",
3669 "ambiguity is resolved.\n";
3670 next;
3671 }
3672 print STDERR "Migrating from v0 layout...\n" if !$migrated;
3673 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
3674 command_noisy('update-ref', $new_ref, $orig_ref);
3675 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
3676 $migrated++;
3677 }
3678 command_close_pipe($fh, $ctx);
3679 print STDERR "Done migrating from v0 layout...\n" if $migrated;
3680 $migrated;
3681}
3682
3683sub migrate_from_v1 {
3684 my $git_dir = $ENV{GIT_DIR};
3685 my $migrated = 0;
3686 return $migrated unless -d $git_dir;
3687 my $svn_dir = "$git_dir/svn";
3688
3689 # just in case somebody used 'svn' as their $id at some point...
3690 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
3691
3692 print STDERR "Migrating from a git-svn v1 layout...\n";
3693 mkpath([$svn_dir]);
3694 print STDERR "Data from a previous version of git-svn exists, but\n\t",
3695 "$svn_dir\n\t(required for this version ",
3696 "($::VERSION) of git-svn) does not. exist\n";
3697 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
3698 while (<$fh>) {
3699 my $x = $_;
3700 next unless $x =~ s#^refs/remotes/##;
3701 chomp $x;
3702 next unless -f "$git_dir/$x/info/url";
3703 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
3704 next unless $u;
3705 my $dn = dirname("$git_dir/svn/$x");
3706 mkpath([$dn]) unless -d $dn;
3707 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
3708 mkpath(["$git_dir/svn/svn"]);
3709 print STDERR " - $git_dir/$x/info => ",
3710 "$git_dir/svn/$x/info\n";
3711 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
3712 croak "$!: $x";
3713 # don't worry too much about these, they probably
3714 # don't exist with repos this old (save for index,
3715 # and we can easily regenerate that)
3716 foreach my $f (qw/unhandled.log index .rev_db/) {
3717 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
3718 }
3719 } else {
3720 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
3721 rename "$git_dir/$x", "$git_dir/svn/$x" or
3722 croak "$!: $x";
3723 }
3724 $migrated++;
3725 }
3726 command_close_pipe($fh, $ctx);
3727 print STDERR "Done migrating from a git-svn v1 layout\n";
3728 $migrated;
3729}
3730
3731sub read_old_urls {
3732 my ($l_map, $pfx, $path) = @_;
3733 my @dir;
3734 foreach (<$path/*>) {
3735 if (-r "$_/info/url") {
3736 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
3737 my $ref_id = $pfx . basename $_;
3738 my $url = ::file_to_s("$_/info/url");
3739 $l_map->{$ref_id} = $url;
3740 } elsif (-d $_) {
3741 push @dir, $_;
3742 }
3743 }
3744 foreach (@dir) {
3745 my $x = $_;
3746 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
3747 read_old_urls($l_map, $x, $_);
3748 }
3749}
3750
3751sub migrate_from_v2 {
3752 my @cfg = command(qw/config -l/);
3753 return if grep /^svn-remote\..+\.url=/, @cfg;
3754 my %l_map;
3755 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
3756 my $migrated = 0;
3757
3758 foreach my $ref_id (sort keys %l_map) {
471bc000
EW
3759 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
3760 if ($@) {
3761 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
3762 }
706587fc
EW
3763 $migrated++;
3764 }
3765 $migrated;
3766}
3767
47e39c55
EW
3768sub minimize_connections {
3769 my $r = Git::SVN::read_all_remotes();
3770 my $new_urls = {};
3771 my $root_repos = {};
3772 foreach my $repo_id (keys %$r) {
3773 my $url = $r->{$repo_id}->{url} or next;
3774 my $fetch = $r->{$repo_id}->{fetch} or next;
3775 my $ra = Git::SVN::Ra->new($url);
3776
3777 # skip existing cases where we already connect to the root
3778 if (($ra->{url} eq $ra->{repos_root}) ||
3779 (Git::SVN::sanitize_remote_name($ra->{repos_root}) eq
3780 $repo_id)) {
3781 $root_repos->{$ra->{url}} = $repo_id;
3782 next;
3783 }
3784
3785 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
3786 my $root_path = $ra->{url};
4e9f6cc7 3787 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
47e39c55
EW
3788 foreach my $path (keys %$fetch) {
3789 my $ref_id = $fetch->{$path};
3790 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
3791
3792 # make sure we can read when connecting to
3793 # a higher level of a repository
3794 my ($last_rev, undef) = $gs->last_rev_commit;
3795 if (!defined $last_rev) {
3796 $last_rev = eval {
3797 $root_ra->get_latest_revnum;
3798 };
3799 next if $@;
3800 }
3801 my $new = $root_path;
3802 $new .= length $path ? "/$path" : '';
3803 eval {
3804 $root_ra->get_log([$new], $last_rev, $last_rev,
3805 0, 0, 1, sub { });
3806 };
3807 next if $@;
3808 $new_urls->{$ra->{repos_root}}->{$new} =
3809 { ref_id => $ref_id,
3810 old_repo_id => $repo_id,
3811 old_path => $path };
3812 }
3813 }
3814
3815 my @emptied;
3816 foreach my $url (keys %$new_urls) {
3817 # see if we can re-use an existing [svn-remote "repo_id"]
3818 # instead of creating a(n ugly) new section:
3819 my $repo_id = $root_repos->{$url} ||
3820 Git::SVN::sanitize_remote_name($url);
3821
3822 my $fetch = $new_urls->{$url};
3823 foreach my $path (keys %$fetch) {
3824 my $x = $fetch->{$path};
3825 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
3826 my $pfx = "svn-remote.$x->{old_repo_id}";
3827
3828 my $old_fetch = quotemeta("$x->{old_path}:".
3829 "refs/remotes/$x->{ref_id}");
8b8fc068 3830 command_noisy(qw/config --unset/,
47e39c55
EW
3831 "$pfx.fetch", '^'. $old_fetch . '$');
3832 delete $r->{$x->{old_repo_id}}->
3833 {fetch}->{$x->{old_path}};
3834 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
8b8fc068 3835 command_noisy(qw/config --unset/,
47e39c55
EW
3836 "$pfx.url");
3837 push @emptied, $x->{old_repo_id}
3838 }
3839 }
3840 }
3841 if (@emptied) {
3842 my $file = $ENV{GIT_CONFIG} || $ENV{GIT_CONFIG_LOCAL} ||
3843 "$ENV{GIT_DIR}/config";
3844 print STDERR <<EOF;
3845The following [svn-remote] sections in your config file ($file) are empty
3846and can be safely removed:
3847EOF
3848 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
3849 }
3850}
3851
706587fc
EW
3852sub migration_check {
3853 migrate_from_v0();
3854 migrate_from_v1();
3855 migrate_from_v2();
47e39c55 3856 minimize_connections() if $_minimize;
706587fc
EW
3857}
3858
ef3cfaad
EW
3859package Git::IndexInfo;
3860use strict;
3861use warnings;
3862use Git qw/command_input_pipe command_close_pipe/;
3863
3864sub new {
3865 my ($class) = @_;
3866 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
3867 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
3868}
3869
3870sub remove {
3871 my ($self, $path) = @_;
3872 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
3873 return ++$self->{nr};
3874 }
3875 undef;
3876}
3877
3878sub update {
3879 my ($self, $mode, $hash, $path) = @_;
3880 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
3881 return ++$self->{nr};
3882 }
3883 undef;
3884}
3885
3886sub DESTROY {
3887 my ($self) = @_;
3888 command_close_pipe($self->{gui}, $self->{ctx});
3889}
3890
4bb9ed04
EW
3891package Git::SVN::GlobSpec;
3892use strict;
3893use warnings;
3894
3895sub new {
3896 my ($class, $glob) = @_;
4bb9ed04
EW
3897 my $re = $glob;
3898 $re =~ s!/+$!!g; # no need for trailing slashes
4e9f6cc7 3899 my $nr = ($re =~ s!^(.*)\*(.*)$!\(\[^/\]+\)!g);
4bb9ed04
EW
3900 my ($left, $right) = ($1, $2);
3901 if ($nr > 1) {
e518192f
EW
3902 die "Only one '*' wildcard expansion ",
3903 "is supported (got $nr): '$glob'\n";
4bb9ed04 3904 } elsif ($nr == 0) {
e518192f 3905 die "One '*' is needed for glob: '$glob'\n";
4bb9ed04
EW
3906 }
3907 $re = quotemeta($left) . $re . quotemeta($right);
4e9f6cc7
EW
3908 if (length $left && !($left =~ s!/+$!!g)) {
3909 die "Missing trailing '/' on left side of: '$glob' ($left)\n";
3910 }
3911 if (length $right && !($right =~ s!^/+!!g)) {
3912 die "Missing leading '/' on right side of: '$glob' ($right)\n";
3913 }
74a81227
EW
3914 my $left_re = qr/^\/\Q$left\E(\/|$)/;
3915 bless { left => $left, right => $right, left_regex => $left_re,
4bb9ed04
EW
3916 regex => qr/$re/, glob => $glob }, $class;
3917}
3918
3919sub full_path {
3920 my ($self, $path) = @_;
3921 return (length $self->{left} ? "$self->{left}/" : '') .
3922 $path . (length $self->{right} ? "/$self->{right}" : '');
3923}
3924
3397f9df
EW
3925__END__
3926
3927Data structures:
3928
4bb9ed04
EW
3929
3930$remotes = { # returned by read_all_remotes()
3931 'svn' => {
3932 # svn-remote.svn.url=https://svn.musicpd.org
3933 url => 'https://svn.musicpd.org',
3934 # svn-remote.svn.fetch=mpd/trunk:trunk
3935 fetch => {
3936 'mpd/trunk' => 'trunk',
3937 },
3938 # svn-remote.svn.tags=mpd/tags/*:tags/*
3939 tags => {
3940 path => {
3941 left => 'mpd/tags',
3942 right => '',
3943 regex => qr!mpd/tags/([^/]+)$!,
3944 glob => 'tags/*',
3945 },
3946 ref => {
3947 left => 'tags',
3948 right => '',
3949 regex => qr!tags/([^/]+)$!,
3950 glob => 'tags/*',
3951 },
3952 }
3953 }
3954};
3955
44320b9e 3956$log_entry hashref as returned by libsvn_log_entry()
3397f9df 3957{
44320b9e 3958 log => 'whitespace-formatted log entry
3397f9df
EW
3959', # trailing newline is preserved
3960 revision => '8', # integer
3961 date => '2004-02-24T17:01:44.108345Z', # commit date
3962 author => 'committer name'
3963};
3964
6e8548cc
EW
3965
3966# this is generated by generate_diff();
3397f9df
EW
3967@mods = array of diff-index line hashes, each element represents one line
3968 of diff-index output
3969
3970diff-index line ($m hash)
3971{
3972 mode_a => first column of diff-index output, no leading ':',
3973 mode_b => second column of diff-index output,
3974 sha1_b => sha1sum of the final blob,
ac8e0b91 3975 chg => change type [MCRADT],
3397f9df
EW
3976 file_a => original file name of a file (iff chg is 'C' or 'R')
3977 file_b => new/current file name of a file (any chg)
3978}
3979;
a5e0cedc 3980
a00439ac
EW
3981# retval of read_url_paths{,_all}();
3982$l_map = {
3983 # repository root url
3984 'https://svn.musicpd.org' => {
3985 # repository path # GIT_SVN_ID
3986 'mpd/trunk' => 'trunk',
3987 'mpd/tags/0.11.5' => 'tags/0.11.5',
3988 },
3989}
3990
a5e0cedc
EW
3991Notes:
3992 I don't trust the each() function on unless I created %hash myself
3993 because the internal iterator may not have started at base.