]> git.ipfire.org Git - thirdparty/git.git/blame - git-svn.perl
git-svn: better attempt to handle broken symlink updates
[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
ffe256f9 7 $sha1 $sha1_short $_revision $_repository
9760adcc 8 $_q $_authors %users/;
3397f9df 9$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
60d02ccc 10$VERSION = '@@GIT_VERSION@@';
13ccd6d4 11
15153451
BS
12# From which subdir have we been invoked?
13my $cmd_dir_prefix = eval {
14 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
15} || '';
16
5253dc33 17my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
706587fc 18$ENV{GIT_DIR} ||= '.git';
9fa00b65 19$Git::SVN::default_repo_id = 'svn';
8b8fc068 20$Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn';
6af1db44 21$Git::SVN::Ra::_log_window_size = 100;
13ccd6d4 22
f8c9d1d2 23$Git::SVN::Log::TZ = $ENV{TZ};
3397f9df 24$ENV{TZ} = 'UTC';
a00439ac 25$| = 1; # unbuffer STDOUT
3397f9df 26
207f1a75 27sub fatal (@) { print STDERR "@_\n"; exit 1 }
b9c85187
EW
28require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
29require SVN::Ra;
30require SVN::Delta;
31if ($SVN::Core::VERSION lt '1.1.0') {
207f1a75 32 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
b9c85187 33}
d81bf827 34push @Git::SVN::Ra::ISA, 'SVN::Ra';
b9c85187
EW
35push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
36push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
3397f9df 37use Carp qw/croak/;
8d7c4fad 38use Digest::MD5;
3397f9df
EW
39use IO::File qw//;
40use File::Basename qw/dirname basename/;
41use File::Path qw/mkpath/;
512b620b 42use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
968bdf1f 43use IPC::Open3;
336f1714 44use Git;
a5e0cedc 45
336f1714 46BEGIN {
c5f71ad0
SV
47 # import functions from Git into our packages, en masse
48 no strict 'refs';
336f1714
EW
49 foreach (qw/command command_oneline command_noisy command_output_pipe
50 command_input_pipe command_close_pipe/) {
c5f71ad0 51 for my $package ( qw(SVN::Git::Editor SVN::Git::Fetcher
8d7c4fad 52 Git::SVN::Migration Git::SVN::Log Git::SVN),
c5f71ad0
SV
53 __PACKAGE__) {
54 *{"${package}::$_"} = \&{"Git::$_"};
55 }
336f1714 56 }
336f1714
EW
57}
58
b9c85187 59my ($SVN);
83e9940a 60
f8c9d1d2
EW
61$sha1 = qr/[a-f\d]{40}/;
62$sha1_short = qr/[a-f\d]{4,40}/;
44320b9e 63my ($_stdin, $_help, $_edit,
9760adcc 64 $_message, $_file,
d05d72e0 65 $_template, $_shared,
171af110 66 $_version, $_fetch_all, $_no_rebase,
dee41f3e 67 $_merge, $_strategy, $_dry_run, $_local,
4be40381 68 $_prefix, $_no_checkout, $_url, $_verbose,
5de70efb 69 $_git_format, $_commit_url, $_tag);
0bed5eaa 70$Git::SVN::_follow_parent = 1;
706587fc
EW
71my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
72 'config-dir=s' => \$Git::SVN::Ra::config_dir,
73 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache );
0bed5eaa 74my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
dc5869c0 75 'authors-file|A=s' => \$_authors,
ecc712dd 76 'repack:i' => \$Git::SVN::_repack,
97ae0911
EW
77 'noMetadata' => \$Git::SVN::_no_metadata,
78 'useSvmProps' => \$Git::SVN::_use_svm_props,
62e349d2 79 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
6af1db44 80 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
1e889ef3 81 'no-checkout' => \$_no_checkout,
80f50749 82 'quiet|q' => \$_q,
ecc712dd
EW
83 'repack-flags|repack-args|repack-opts=s' =>
84 \$Git::SVN::_repack_flags,
70ae04e4 85 'use-log-author' => \$Git::SVN::_use_log_author,
6aa9ba14 86 'add-author-from' => \$Git::SVN::_add_author_from,
706587fc 87 %remote_opts );
36f5b1f0 88
8f728fb9 89my ($_trunk, $_tags, $_branches, $_stdlayout);
0dfaf0a4 90my %icv;
dadc6d2a
EW
91my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
92 'trunk|T=s' => \$_trunk, 'tags|t=s' => \$_tags,
93 'branches|b=s' => \$_branches, 'prefix=s' => \$_prefix,
8f728fb9 94 'stdlayout|s' => \$_stdlayout,
4a1bb4c3 95 'minimize-url|m' => \$Git::SVN::_minimize_url,
0dfaf0a4
EW
96 'no-metadata' => sub { $icv{noMetadata} = 1 },
97 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
98 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
99 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
dadc6d2a 100 %remote_opts );
27e9fb8d 101my %cmt_opts = ( 'edit|e' => \$_edit,
24e22aa8
EW
102 'rmdir' => \$SVN::Git::Editor::_rmdir,
103 'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
104 'l=i' => \$SVN::Git::Editor::_rename_limit,
105 'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
27e9fb8d 106);
9d55b41a 107
3397f9df 108my %cmd = (
2a3240be 109 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
e98671e5 110 { 'revision|r=s' => \$_revision,
905f8b7d 111 'fetch-all|all' => \$_fetch_all,
e98671e5 112 %fc_opts } ],
0425ea90
EW
113 clone => [ \&cmd_clone, "Initialize and fetch revisions",
114 { 'revision|r=s' => \$_revision,
115 %fc_opts, %init_opts } ],
d2866f9e 116 init => [ \&cmd_init, "Initialize a repo for tracking" .
f8ab6b73 117 " (requires URL argument)",
9d55b41a 118 \%init_opts ],
dadc6d2a
EW
119 'multi-init' => [ \&cmd_multi_init,
120 "Deprecated alias for ".
121 "'$0 init -T<trunk> -b<branches> -t<tags>'",
122 \%init_opts ],
d7ad3bed
EW
123 dcommit => [ \&cmd_dcommit,
124 'Commit several diffs to merge with upstream',
3289e86e
EW
125 { 'merge|m|M' => \$_merge,
126 'strategy|s=s' => \$_strategy,
905f8b7d 127 'verbose|v' => \$_verbose,
3289e86e 128 'dry-run|n' => \$_dry_run,
905f8b7d 129 'fetch-all|all' => \$_fetch_all,
ba24e745
EW
130 'commit-url=s' => \$_commit_url,
131 'revision|r=i' => \$_revision,
171af110 132 'no-rebase' => \$_no_rebase,
4b155223 133 %cmt_opts, %fc_opts } ],
5de70efb
FR
134 branch => [ \&cmd_branch,
135 'Create a branch in the SVN repository',
136 { 'message|m=s' => \$_message,
137 'dry-run|n' => \$_dry_run,
138 'tag|t' => \$_tag } ],
139 tag => [ sub { $_tag = 1; cmd_branch(@_) },
140 'Create a tag in the SVN repository',
141 { 'message|m=s' => \$_message,
142 'dry-run|n' => \$_dry_run } ],
1ce255dc
EW
143 'set-tree' => [ \&cmd_set_tree,
144 "Set an SVN repository to a git tree-ish",
145 { 'stdin|' => \$_stdin, %cmt_opts, %fc_opts, } ],
d05ddec5
BS
146 'create-ignore' => [ \&cmd_create_ignore,
147 'Create a .gitignore per svn:ignore',
148 { 'revision|r=i' => \$_revision
149 } ],
15153451
BS
150 'propget' => [ \&cmd_propget,
151 'Print the value of a property on a file or directory',
152 { 'revision|r=i' => \$_revision } ],
51e057cf
BS
153 'proplist' => [ \&cmd_proplist,
154 'List all properties of a file or directory',
155 { 'revision|r=i' => \$_revision } ],
5969cbe1 156 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
4dbfe2e9 157 { 'revision|r=i' => \$_revision
05b4df31 158 } ],
2d879792
VK
159 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
160 { 'revision|r=i' => \$_revision
161 } ],
1c8443b0 162 'multi-fetch' => [ \&cmd_multi_fetch,
e98671e5
EW
163 "Deprecated alias for $0 fetch --all",
164 { 'revision|r=s' => \$_revision, %fc_opts } ],
706587fc
EW
165 'migrate' => [ sub { },
166 # no-op, we automatically run this anyways,
706587fc
EW
167 'Migrate configuration/metadata/layout from
168 previous versions of git-svn',
a836a0e1
EW
169 { 'minimize' => \$Git::SVN::Migration::_minimize,
170 %remote_opts } ],
f8c9d1d2
EW
171 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
172 { 'limit=i' => \$Git::SVN::Log::limit,
79bb8d88 173 'revision|r=s' => \$_revision,
f8c9d1d2
EW
174 'verbose|v' => \$Git::SVN::Log::verbose,
175 'incremental' => \$Git::SVN::Log::incremental,
176 'oneline' => \$Git::SVN::Log::oneline,
177 'show-commit' => \$Git::SVN::Log::show_commit,
178 'non-recursive' => \$Git::SVN::Log::non_recursive,
79bb8d88 179 'authors-file|A=s' => \$_authors,
f8c9d1d2 180 'color' => \$Git::SVN::Log::color,
4dbfe2e9 181 'pager=s' => \$Git::SVN::Log::pager
79bb8d88 182 } ],
222566e4
EW
183 'find-rev' => [ \&cmd_find_rev,
184 "Translate between SVN revision numbers and tree-ish",
4dbfe2e9 185 {} ],
905f8b7d
EW
186 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
187 { 'merge|m|M' => \$_merge,
188 'verbose|v' => \$_verbose,
189 'strategy|s=s' => \$_strategy,
dee41f3e 190 'local|l' => \$_local,
905f8b7d 191 'fetch-all|all' => \$_fetch_all,
7d45e146 192 'dry-run|n' => \$_dry_run,
905f8b7d 193 %fc_opts } ],
44320b9e
EW
194 'commit-diff' => [ \&cmd_commit_diff,
195 'Commit a diff between two trees',
27e9fb8d
EW
196 { 'message|m=s' => \$_message,
197 'file|F=s' => \$_file,
45bf473a 198 'revision|r=s' => \$_revision,
27e9fb8d 199 %cmt_opts } ],
e6fefa92
DK
200 'info' => [ \&cmd_info,
201 "Show info about the latest SVN revision
202 on the current branch",
8b014d71 203 { 'url' => \$_url, } ],
6fb5375e
TS
204 'blame' => [ \&Git::SVN::Log::cmd_blame,
205 "Show what revision and author last modified each line of a file",
4be40381 206 { 'git-format' => \$_git_format } ],
3397f9df 207);
9d55b41a 208
3397f9df
EW
209my $cmd;
210for (my $i = 0; $i < @ARGV; $i++) {
211 if (defined $cmd{$ARGV[$i]}) {
212 $cmd = $ARGV[$i];
213 splice @ARGV, $i, 1;
214 last;
215 }
216};
217
540424b2
EW
218# make sure we're always running at the top-level working directory
219unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
5253dc33
EW
220 unless (-d $ENV{GIT_DIR}) {
221 if ($git_dir_user_set) {
222 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
223 "but it is not a directory\n";
224 }
225 my $git_dir = delete $ENV{GIT_DIR};
fe4003f6
DM
226 my $cdup = undef;
227 git_cmd_try {
228 $cdup = command_oneline(qw/rev-parse --show-cdup/);
229 $git_dir = '.' unless ($cdup);
230 chomp $cdup if ($cdup);
231 $cdup = "." unless ($cdup && length $cdup);
232 } "Already at toplevel, but $git_dir not found\n";
5253dc33
EW
233 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
234 unless (-d $git_dir) {
235 die "$git_dir still not found after going to ",
236 "'$cdup'\n";
237 }
238 $ENV{GIT_DIR} = $git_dir;
239 }
ffe256f9 240 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
5253dc33 241}
f4dd334b
GH
242
243my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
244
245read_repo_config(\%opts);
222566e4
EW
246if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
247 Getopt::Long::Configure('pass_through');
248}
f4dd334b
GH
249my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
250 'minimize-connections' => \$Git::SVN::Migration::_minimize,
251 'id|i=s' => \$Git::SVN::default_ref_id,
252 'svn-remote|remote|R=s' => sub {
253 $Git::SVN::no_reuse_existing = 1;
254 $Git::SVN::default_repo_id = $_[1] });
255exit 1 if (!$rv && $cmd && $cmd ne 'log');
256
257usage(0) if $_help;
258version() if $_version;
259usage(1) unless defined $cmd;
260load_authors() if $_authors;
261
0425ea90 262unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
706587fc
EW
263 Git::SVN::Migration::migration_check();
264}
ecc712dd 265Git::SVN::init_vars();
b805b44a
EW
266eval {
267 Git::SVN::verify_remotes_sanity();
268 $cmd{$cmd}->[0]->(@ARGV);
269};
270fatal $@ if $@;
1e889ef3 271post_fetch_checkout();
3397f9df
EW
272exit 0;
273
274####################### primary functions ######################
275sub usage {
276 my $exit = shift || 0;
277 my $fd = $exit ? \*STDERR : \*STDOUT;
278 print $fd <<"";
279git-svn - bidirectional operations between a single Subversion tree and git
1b1dd23f 280Usage: git svn <command> [options] [arguments]\n
448c81b4
EW
281
282 print $fd "Available commands:\n" unless $cmd;
3397f9df
EW
283
284 foreach (sort keys %cmd) {
448c81b4 285 next if $cmd && $cmd ne $_;
a836a0e1 286 next if /^multi-/; # don't show deprecated commands
b203b769 287 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
aa807bc2 288 foreach (sort keys %{$cmd{$_}->[2]}) {
512b620b
EW
289 # mixed-case options are for .git/config only
290 next if /[A-Z]/ && /^[a-z]+$/i;
448c81b4 291 # prints out arguments as they should be passed:
b8c92cad 292 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
b203b769 293 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
448c81b4
EW
294 "--$_" : "-$_" }
295 split /\|/,$_)," $x\n";
296 }
3397f9df
EW
297 }
298 print $fd <<"";
448c81b4
EW
299\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
300arbitrary identifier if you're tracking multiple SVN branches/repositories in
301one git repository and want to keep them separate. See git-svn(1) for more
302information.
3397f9df
EW
303
304 exit $exit;
305}
306
551ce28f 307sub version {
7d60ab2c 308 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
551ce28f
EW
309 exit 0;
310}
311
8164b652
EW
312sub do_git_init_db {
313 unless (-d $ENV{GIT_DIR}) {
314 my @init_db = ('init');
315 push @init_db, "--template=$_template" if defined $_template;
dadc6d2a
EW
316 if (defined $_shared) {
317 if ($_shared =~ /[a-z]/) {
318 push @init_db, "--shared=$_shared";
319 } else {
320 push @init_db, "--shared";
321 }
322 }
8164b652 323 command_noisy(@init_db);
ffe256f9 324 $_repository = Git->repository(Repository => ".git");
8164b652 325 }
0dfaf0a4
EW
326 my $set;
327 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
328 foreach my $i (keys %icv) {
329 die "'$set' and '$i' cannot both be set\n" if $set;
330 next unless defined $icv{$i};
331 command_noisy('config', "$pfx.$i", $icv{$i});
332 $set = $i;
333 }
8164b652
EW
334}
335
dadc6d2a
EW
336sub init_subdir {
337 my $repo_path = shift or return;
338 mkpath([$repo_path]) unless -d $repo_path;
339 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
f30603fc 340 $ENV{GIT_DIR} = '.git';
ffe256f9 341 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
dadc6d2a
EW
342}
343
0425ea90
EW
344sub cmd_clone {
345 my ($url, $path) = @_;
346 if (!defined $path &&
8f728fb9 347 (defined $_trunk || defined $_branches || defined $_tags ||
348 defined $_stdlayout) &&
0425ea90
EW
349 $url !~ m#^[a-z\+]+://#) {
350 $path = $url;
351 }
0425ea90 352 $path = basename($url) if !defined $path || !length $path;
f30603fc 353 cmd_init($url, $path);
0425ea90
EW
354 Git::SVN::fetch_all($Git::SVN::default_repo_id);
355}
356
d2866f9e 357sub cmd_init {
8f728fb9 358 if (defined $_stdlayout) {
359 $_trunk = 'trunk' if (!defined $_trunk);
360 $_tags = 'tags' if (!defined $_tags);
361 $_branches = 'branches' if (!defined $_branches);
362 }
dadc6d2a
EW
363 if (defined $_trunk || defined $_branches || defined $_tags) {
364 return cmd_multi_init(@_);
03e0ea87 365 }
dadc6d2a
EW
366 my $url = shift or die "SVN repository location required ",
367 "as a command-line argument\n";
368 init_subdir(@_);
8164b652 369 do_git_init_db();
03e0ea87 370
706587fc 371 Git::SVN->init($url);
3397f9df
EW
372}
373
2a3240be 374sub cmd_fetch {
e98671e5
EW
375 if (grep /^\d+=./, @_) {
376 die "'<rev>=<commit>' fetch arguments are ",
377 "no longer supported.\n";
07a1c950 378 }
e98671e5
EW
379 my ($remote) = @_;
380 if (@_ > 1) {
905f8b7d 381 die "Usage: $0 fetch [--all] [svn-remote]\n";
e98671e5
EW
382 }
383 $remote ||= $Git::SVN::default_repo_id;
384 if ($_fetch_all) {
385 cmd_multi_fetch();
386 } else {
387 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
1c8443b0 388 }
2a3240be
EW
389}
390
1ce255dc 391sub cmd_set_tree {
3397f9df
EW
392 my (@commits) = @_;
393 if ($_stdin || !@commits) {
394 print "Reading from stdin...\n";
395 @commits = ();
396 while (<STDIN>) {
1ca72aef 397 if (/\b($sha1_short)\b/o) {
3397f9df
EW
398 unshift @commits, $1;
399 }
400 }
401 }
402 my @revs;
8de010ad 403 foreach my $c (@commits) {
aef4e921 404 my @tmp = command('rev-parse',$c);
8de010ad
EW
405 if (scalar @tmp == 1) {
406 push @revs, $tmp[0];
407 } elsif (scalar @tmp > 1) {
aef4e921 408 push @revs, reverse(command('rev-list',@tmp));
8de010ad 409 } else {
207f1a75 410 fatal "Failed to rev-parse $c";
8de010ad 411 }
3397f9df 412 }
1ce255dc
EW
413 my $gs = Git::SVN->new;
414 my ($r_last, $cmt_last) = $gs->last_rev_commit;
415 $gs->fetch;
97f6987a 416 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
1ce255dc
EW
417 fatal "There are new revisions that were fetched ",
418 "and need to be merged (or acknowledged) ",
419 "before committing.\nlast rev: $r_last\n",
207f1a75 420 " current: $gs->{last_rev}";
a5e0cedc 421 }
1ce255dc
EW
422 $gs->set_tree($_) foreach @revs;
423 print "Done committing ",scalar @revs," revisions to SVN\n";
3157dd9e 424 unlink $gs->{index};
a5e0cedc 425}
8f22562c 426
d7ad3bed
EW
427sub cmd_dcommit {
428 my $head = shift;
c8cfa3e4 429 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
826a9339 430 'Cannot dcommit with a dirty index. Commit your changes first, '
c8cfa3e4 431 . "or stash them with `git stash'.\n";
d7ad3bed 432 $head ||= 'HEAD';
a8ae2623 433 my @refs;
13c823fb 434 my ($url, $rev, $uuid, $gs) = working_head_info($head, \@refs);
2cb61105
TR
435 unless ($gs) {
436 die "Unable to determine upstream SVN information from ",
437 "$head history.\nPerhaps the repository is empty.";
438 }
711521e2 439 $url = defined $_commit_url ? $_commit_url : $gs->full_url;
ba24e745 440 my $last_rev = $_revision if defined $_revision;
59b0c24d
MM
441 if ($url) {
442 print "Committing to $url ...\n";
443 }
733a65aa 444 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
751eb395
EW
445 if ($_no_rebase && scalar(@$linear_refs) > 1) {
446 warn "Attempting to commit more than one change while ",
447 "--no-rebase is enabled.\n",
448 "If these changes depend on each other, re-running ",
7dfa16b9 449 "without --no-rebase may be required."
751eb395 450 }
711521e2
EW
451 my $expect_url = $url;
452 Git::SVN::remove_username($expect_url);
c74d9acf
EW
453 while (1) {
454 my $d = shift @$linear_refs or last;
45bf473a
EW
455 unless (defined $last_rev) {
456 (undef, $last_rev, undef) = cmt_metadata("$d~1");
457 unless (defined $last_rev) {
d7ad3bed 458 fatal "Unable to extract revision information ",
207f1a75 459 "from commit $d~1";
45bf473a
EW
460 }
461 }
b22d4497
EW
462 if ($_dry_run) {
463 print "diff-tree $d~1 $d\n";
464 } else {
751eb395 465 my $cmt_rev;
d7ad3bed 466 my %ed_opts = ( r => $last_rev,
61395354 467 log => get_commit_entry($d)->{log},
ba24e745 468 ra => Git::SVN::Ra->new($url),
3caf320b
KA
469 config => SVN::Core::config_get_config(
470 $Git::SVN::Ra::config_dir
471 ),
61395354
EW
472 tree_a => "$d~1",
473 tree_b => $d,
474 editor_cb => sub {
475 print "Committed r$_[0]\n";
751eb395
EW
476 $cmt_rev = $_[0];
477 },
a8ae2623 478 svn_path => '');
61395354 479 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
d7ad3bed 480 print "No changes\n$d~1 == $d\n";
733a65aa 481 } elsif ($parents->{$d} && @{$parents->{$d}}) {
751eb395 482 $gs->{inject_parents_dcommit}->{$cmt_rev} =
733a65aa 483 $parents->{$d};
d7ad3bed 484 }
751eb395 485 $_fetch_all ? $gs->fetch_all : $gs->fetch;
7dfa16b9 486 $last_rev = $cmt_rev;
751eb395
EW
487 next if $_no_rebase;
488
489 # we always want to rebase against the current HEAD,
490 # not any head that was passed to us
c74d9acf 491 my @diff = command('diff-tree', $d,
751eb395
EW
492 $gs->refname, '--');
493 my @finish;
494 if (@diff) {
495 @finish = rebase_cmd();
c74d9acf 496 print STDERR "W: $d and ", $gs->refname,
751eb395 497 " differ, using @finish:\n",
c74d9acf 498 join("\n", @diff), "\n";
751eb395
EW
499 } else {
500 print "No changes between current HEAD and ",
501 $gs->refname,
502 "\nResetting to the latest ",
503 $gs->refname, "\n";
504 @finish = qw/reset --mixed/;
505 }
506 command_noisy(@finish, $gs->refname);
c74d9acf
EW
507 if (@diff) {
508 @refs = ();
509 my ($url_, $rev_, $uuid_, $gs_) =
510 working_head_info($head, \@refs);
511 my ($linear_refs_, $parents_) =
512 linearize_history($gs_, \@refs);
513 if (scalar(@$linear_refs) !=
514 scalar(@$linear_refs_)) {
515 fatal "# of revisions changed ",
516 "\nbefore:\n",
517 join("\n", @$linear_refs),
518 "\n\nafter:\n",
519 join("\n", @$linear_refs_), "\n",
520 'If you are attempting to commit ',
521 "merges, try running:\n\t",
522 'git rebase --interactive',
523 '--preserve-merges ',
524 $gs->refname,
525 "\nBefore dcommitting";
526 }
711521e2 527 if ($url_ ne $expect_url) {
c74d9acf 528 fatal "URL mismatch after rebase: ",
711521e2 529 "$url_ != $expect_url";
c74d9acf
EW
530 }
531 if ($uuid_ ne $uuid) {
532 fatal "uuid mismatch after rebase: ",
533 "$uuid_ != $uuid";
534 }
535 # remap parents
536 my (%p, @l, $i);
537 for ($i = 0; $i < scalar @$linear_refs; $i++) {
538 my $new = $linear_refs_->[$i] or next;
539 $p{$new} =
540 $parents->{$linear_refs->[$i]};
541 push @l, $new;
542 }
543 $parents = \%p;
544 $linear_refs = \@l;
545 }
b22d4497
EW
546 }
547 }
3157dd9e 548 unlink $gs->{index};
b22d4497
EW
549}
550
5de70efb
FR
551sub cmd_branch {
552 my ($branch_name, $head) = @_;
553
554 unless (defined $branch_name && length $branch_name) {
555 die(($_tag ? "tag" : "branch") . " name required\n");
556 }
557 $head ||= 'HEAD';
558
559 my ($src, $rev, undef, $gs) = working_head_info($head);
560
a0fbc87c 561 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
5de70efb
FR
562 my $glob = $remote->{ $_tag ? 'tags' : 'branches' };
563 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
564 my $dst = join '/', $remote->{url}, $lft, $branch_name, ($rgt || ());
565
566 my $ctx = SVN::Client->new(
567 auth => Git::SVN::Ra::_auth_providers(),
568 log_msg => sub {
569 ${ $_[0] } = defined $_message
570 ? $_message
571 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
572 . $branch_name;
573 },
574 );
575
576 eval {
577 $ctx->ls($dst, 'HEAD', 0);
578 } and die "branch ${branch_name} already exists\n";
579
580 print "Copying ${src} at r${rev} to ${dst}...\n";
581 $ctx->copy($src, $rev, $dst)
582 unless $_dry_run;
583
584 $gs->fetch_all;
585}
586
26e60160 587sub cmd_find_rev {
ea14e6c5
MAL
588 my $revision_or_hash = shift or die "SVN or git revision required ",
589 "as a command-line argument\n";
26e60160
AR
590 my $result;
591 if ($revision_or_hash =~ /^r\d+$/) {
b3cb7e45
AR
592 my $head = shift;
593 $head ||= 'HEAD';
594 my @refs;
63c56022 595 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
b3cb7e45
AR
596 unless ($gs) {
597 die "Unable to determine upstream SVN information from ",
598 "$head history\n";
26e60160 599 }
b3cb7e45 600 my $desired_revision = substr($revision_or_hash, 1);
63c56022 601 $result = $gs->rev_map_get($desired_revision, $uuid);
26e60160
AR
602 } else {
603 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
604 $result = $rev;
605 }
606 print "$result\n" if $result;
607}
608
905f8b7d
EW
609sub cmd_rebase {
610 command_noisy(qw/update-index --refresh/);
13c823fb
EW
611 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
612 unless ($gs) {
905f8b7d
EW
613 die "Unable to determine upstream SVN information from ",
614 "working tree history\n";
615 }
7d45e146
SF
616 if ($_dry_run) {
617 print "Remote Branch: " . $gs->refname . "\n";
618 print "SVN URL: " . $url . "\n";
619 return;
620 }
905f8b7d
EW
621 if (command(qw/diff-index HEAD --/)) {
622 print STDERR "Cannot rebase with uncommited changes:\n";
623 command_noisy('status');
624 exit 1;
625 }
dee41f3e 626 unless ($_local) {
cec0d5a3
SG
627 # rebase will checkout for us, so no need to do it explicitly
628 $_no_checkout = 'true';
dee41f3e
EW
629 $_fetch_all ? $gs->fetch_all : $gs->fetch;
630 }
905f8b7d
EW
631 command_noisy(rebase_cmd(), $gs->refname);
632}
633
5969cbe1 634sub cmd_show_ignore {
13c823fb
EW
635 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
636 $gs ||= Git::SVN->new;
5969cbe1 637 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
01bdab84
BS
638 $gs->prop_walk($gs->{path}, $r, sub {
639 my ($gs, $path, $props) = @_;
640 print STDOUT "\n# $path\n";
641 my $s = $props->{'svn:ignore'} or return;
642 $s =~ s/[\r\n]+/\n/g;
643 chomp $s;
644 $s =~ s#^#$path#gm;
645 print STDOUT "$s\n";
646 });
a5e0cedc
EW
647}
648
2d879792
VK
649sub cmd_show_externals {
650 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
651 $gs ||= Git::SVN->new;
652 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
653 $gs->prop_walk($gs->{path}, $r, sub {
654 my ($gs, $path, $props) = @_;
655 print STDOUT "\n# $path\n";
656 my $s = $props->{'svn:externals'} or return;
657 $s =~ s/[\r\n]+/\n/g;
658 chomp $s;
659 $s =~ s#^#$path#gm;
660 print STDOUT "$s\n";
661 });
662}
663
d05ddec5
BS
664sub cmd_create_ignore {
665 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
666 $gs ||= Git::SVN->new;
667 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
668 $gs->prop_walk($gs->{path}, $r, sub {
669 my ($gs, $path, $props) = @_;
670 # $path is of the form /path/to/dir/
671 my $ignore = '.' . $path . '.gitignore';
672 my $s = $props->{'svn:ignore'} or return;
673 open(GITIGNORE, '>', $ignore)
207f1a75 674 or fatal("Failed to open `$ignore' for writing: $!");
d05ddec5
BS
675 $s =~ s/[\r\n]+/\n/g;
676 chomp $s;
677 # Prefix all patterns so that the ignore doesn't apply
678 # to sub-directories.
679 $s =~ s#^#/#gm;
680 print GITIGNORE "$s\n";
681 close(GITIGNORE)
207f1a75 682 or fatal("Failed to close `$ignore': $!");
c4c66b26 683 command_noisy('add', '-f', $ignore);
d05ddec5
BS
684 });
685}
686
b2b3ada7
DK
687sub canonicalize_path {
688 my ($path) = @_;
e6fefa92
DK
689 my $dot_slash_added = 0;
690 if (substr($path, 0, 1) ne "/") {
691 $path = "./" . $path;
692 $dot_slash_added = 1;
693 }
b2b3ada7
DK
694 # File::Spec->canonpath doesn't collapse x/../y into y (for a
695 # good reason), so let's do this manually.
696 $path =~ s#/+#/#g;
697 $path =~ s#/\.(?:/|$)#/#g;
698 $path =~ s#/[^/]+/\.\.##g;
699 $path =~ s#/$##g;
e6fefa92 700 $path =~ s#^\./## if $dot_slash_added;
2fe403e7
GP
701 $path =~ s#^/##;
702 $path =~ s#^\.$##;
b2b3ada7
DK
703 return $path;
704}
705
15153451
BS
706# get_svnprops(PATH)
707# ------------------
51e057cf 708# Helper for cmd_propget and cmd_proplist below.
15153451
BS
709sub get_svnprops {
710 my $path = shift;
711 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
712 $gs ||= Git::SVN->new;
713
714 # prefix THE PATH by the sub-directory from which the user
715 # invoked us.
716 $path = $cmd_dir_prefix . $path;
207f1a75 717 fatal("No such file or directory: $path") unless -e $path;
15153451
BS
718 my $is_dir = -d $path ? 1 : 0;
719 $path = $gs->{path} . '/' . $path;
720
721 # canonicalize the path (otherwise libsvn will abort or fail to
722 # find the file)
b2b3ada7 723 $path = canonicalize_path($path);
15153451
BS
724
725 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
726 my $props;
727 if ($is_dir) {
728 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
729 }
730 else {
731 (undef, $props) = $gs->ra->get_file($path, $r, undef);
732 }
733 return $props;
734}
735
736# cmd_propget (PROP, PATH)
737# ------------------------
738# Print the SVN property PROP for PATH.
739sub cmd_propget {
740 my ($prop, $path) = @_;
741 $path = '.' if not defined $path;
742 usage(1) if not defined $prop;
743 my $props = get_svnprops($path);
744 if (not defined $props->{$prop}) {
207f1a75 745 fatal("`$path' does not have a `$prop' SVN property.");
15153451
BS
746 }
747 print $props->{$prop} . "\n";
748}
749
51e057cf
BS
750# cmd_proplist (PATH)
751# -------------------
752# Print the list of SVN properties for PATH.
753sub cmd_proplist {
754 my $path = shift;
755 $path = '.' if not defined $path;
756 my $props = get_svnprops($path);
757 print "Properties on '$path':\n";
758 foreach (sort keys %{$props}) {
759 print " $_\n";
760 }
761}
762
8164b652 763sub cmd_multi_init {
9d55b41a 764 my $url = shift;
98327e58
EW
765 unless (defined $_trunk || defined $_branches || defined $_tags) {
766 usage(1);
9d55b41a 767 }
dc431666
EW
768
769 # there are currently some bugs that prevent multi-init/multi-fetch
770 # setups from working well without this.
771 $Git::SVN::_minimize_url = 1;
772
8164b652 773 $_prefix = '' unless defined $_prefix;
dadc6d2a
EW
774 if (defined $url) {
775 $url =~ s#/+$##;
776 init_subdir(@_);
777 }
f30603fc 778 do_git_init_db();
98327e58 779 if (defined $_trunk) {
706587fc
EW
780 my $trunk_ref = $_prefix . 'trunk';
781 # try both old-style and new-style lookups:
782 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
8164b652 783 unless ($gs_trunk) {
706587fc
EW
784 my ($trunk_url, $trunk_path) =
785 complete_svn_url($url, $_trunk);
786 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
787 undef, $trunk_ref);
98327e58 788 }
c35b96e7 789 }
706587fc 790 return unless defined $_branches || defined $_tags;
e7db67e6
EW
791 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
792 complete_url_ls_init($ra, $_branches, '--branches/-b', $_prefix);
793 complete_url_ls_init($ra, $_tags, '--tags/-t', $_prefix . 'tags/');
9d55b41a
EW
794}
795
1c8443b0 796sub cmd_multi_fetch {
0af9c9f9
EW
797 my $remotes = Git::SVN::read_all_remotes();
798 foreach my $repo_id (sort keys %$remotes) {
db03cd24 799 if ($remotes->{$repo_id}->{url}) {
4bb9ed04
EW
800 Git::SVN::fetch_all($repo_id, $remotes);
801 }
9d55b41a 802 }
9d55b41a
EW
803}
804
44320b9e
EW
805# this command is special because it requires no metadata
806sub cmd_commit_diff {
807 my ($ta, $tb, $url) = @_;
808 my $usage = "Usage: $0 commit-diff -r<revision> ".
207f1a75 809 "<tree-ish> <tree-ish> [<URL>]";
44320b9e 810 fatal($usage) if (!defined $ta || !defined $tb);
d72ab8c8 811 my $svn_path = '';
44320b9e
EW
812 if (!defined $url) {
813 my $gs = eval { Git::SVN->new };
814 if (!$gs) {
815 fatal("Needed URL or usable git-svn --id in ",
816 "the command-line\n", $usage);
817 }
818 $url = $gs->{url};
d3a840dc 819 $svn_path = $gs->{path};
44320b9e
EW
820 }
821 unless (defined $_revision) {
822 fatal("-r|--revision is a required argument\n", $usage);
823 }
824 if (defined $_message && defined $_file) {
825 fatal("Both --message/-m and --file/-F specified ",
826 "for the commit message.\n",
207f1a75 827 "I have no idea what you mean");
44320b9e
EW
828 }
829 if (defined $_file) {
830 $_message = file_to_s($_file);
831 } else {
832 $_message ||= get_commit_entry($tb)->{log};
833 }
834 my $ra ||= Git::SVN::Ra->new($url);
835 my $r = $_revision;
836 if ($r eq 'HEAD') {
837 $r = $ra->get_latest_revnum;
838 } elsif ($r !~ /^\d+$/) {
839 die "revision argument: $r not understood by git-svn\n";
840 }
61395354
EW
841 my %ed_opts = ( r => $r,
842 log => $_message,
843 ra => $ra,
844 tree_a => $ta,
845 tree_b => $tb,
846 editor_cb => sub { print "Committed r$_[0]\n" },
847 svn_path => $svn_path );
848 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
44320b9e
EW
849 print "No changes\n$ta == $tb\n";
850 }
44320b9e
EW
851}
852
05427b91
TR
853sub escape_uri_only {
854 my ($uri) = @_;
855 my @tmp;
856 foreach (split m{/}, $uri) {
6a004d3f 857 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
05427b91
TR
858 push @tmp, $_;
859 }
860 join('/', @tmp);
861}
862
863sub escape_url {
864 my ($url) = @_;
865 if ($url =~ m#^([^:]+)://([^/]*)(.*)$#) {
866 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
867 $url = "$scheme://$domain$uri";
868 }
869 $url;
870}
871
e6fefa92 872sub cmd_info {
bd2d4f96 873 my $path = canonicalize_path(defined($_[0]) ? $_[0] : ".");
edde9112 874 my $fullpath = canonicalize_path($cmd_dir_prefix . $path);
bd2d4f96 875 if (exists $_[1]) {
e6fefa92
DK
876 die "Too many arguments specified\n";
877 }
878
879 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
880
881 if (!$file_type && !$diff_status) {
2cf3e3ac
TR
882 print STDERR "svn: '$path' is not under version control\n";
883 exit 1;
e6fefa92
DK
884 }
885
886 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
887 unless ($gs) {
888 die "Unable to determine upstream SVN information from ",
889 "working tree history\n";
890 }
bd2d4f96
EW
891
892 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
893 $path = "." if $path eq "";
894
edde9112 895 my $full_url = $url . ($fullpath eq "" ? "" : "/$fullpath");
e6fefa92 896
8b014d71 897 if ($_url) {
05427b91 898 print escape_url($full_url), "\n";
8b014d71
DK
899 return;
900 }
901
e6fefa92
DK
902 my $result = "Path: $path\n";
903 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
05427b91 904 $result .= "URL: " . escape_url($full_url) . "\n";
e6fefa92 905
a5460eb7
EW
906 eval {
907 my $repos_root = $gs->repos_root;
908 Git::SVN::remove_username($repos_root);
05427b91 909 $result .= "Repository Root: " . escape_url($repos_root) . "\n";
a5460eb7
EW
910 };
911 if ($@) {
912 $result .= "Repository Root: (offline)\n";
913 }
e6fefa92
DK
914 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A";
915 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
916
917 $result .= "Node Kind: " .
918 ($file_type eq "dir" ? "directory" : "file") . "\n";
919
920 my $schedule = $diff_status eq "A"
921 ? "add"
922 : ($diff_status eq "D" ? "delete" : "normal");
923 $result .= "Schedule: $schedule\n";
924
925 if ($diff_status eq "A") {
926 print $result, "\n";
927 return;
928 }
929
930 my ($lc_author, $lc_rev, $lc_date_utc);
edde9112 931 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath);
e6fefa92
DK
932 my $log = command_output_pipe(@args);
933 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
934 while (<$log>) {
935 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
936 $lc_author = $1;
937 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
938 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
939 (undef, $lc_rev, undef) = ::extract_metadata($1);
940 }
941 }
942 close $log;
943
944 Git::SVN::Log::set_local_timezone();
945
946 $result .= "Last Changed Author: $lc_author\n";
947 $result .= "Last Changed Rev: $lc_rev\n";
948 $result .= "Last Changed Date: " .
949 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
950
951 if ($file_type ne "dir") {
952 my $text_last_updated_date =
953 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
954 $result .=
955 "Text Last Updated: " .
956 Git::SVN::Log::format_svn_date($text_last_updated_date) .
957 "\n";
958 my $checksum;
959 if ($diff_status eq "D") {
960 my ($fh, $ctx) =
961 command_output_pipe(qw(cat-file blob), "HEAD:$path");
962 if ($file_type eq "link") {
963 my $file_name = <$fh>;
8d7c4fad 964 $checksum = md5sum("link $file_name");
e6fefa92 965 } else {
8d7c4fad 966 $checksum = md5sum($fh);
e6fefa92
DK
967 }
968 command_close_pipe($fh, $ctx);
969 } elsif ($file_type eq "link") {
970 my $file_name =
971 command(qw(cat-file blob), "HEAD:$path");
972 $checksum =
8d7c4fad 973 md5sum("link " . $file_name);
e6fefa92
DK
974 } else {
975 open FILE, "<", $path or die $!;
8d7c4fad 976 $checksum = md5sum(\*FILE);
e6fefa92
DK
977 close FILE or die $!;
978 }
979 $result .= "Checksum: " . $checksum . "\n";
980 }
981
982 print $result, "\n";
983}
984
3397f9df
EW
985########################### utility functions #########################
986
905f8b7d
EW
987sub rebase_cmd {
988 my @cmd = qw/rebase/;
989 push @cmd, '-v' if $_verbose;
990 push @cmd, qw/--merge/ if $_merge;
991 push @cmd, "--strategy=$_strategy" if $_strategy;
992 @cmd;
993}
994
1e889ef3
EW
995sub post_fetch_checkout {
996 return if $_no_checkout;
997 my $gs = $Git::SVN::_head or return;
998 return if verify_ref('refs/heads/master^0');
999
1000 my $valid_head = verify_ref('HEAD^0');
1001 command_noisy(qw(update-ref refs/heads/master), $gs->refname);
1002 return if ($valid_head || !verify_ref('HEAD^0'));
1003
1004 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1005 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1006 return if -f $index;
1007
7ae3df8c 1008 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
1e889ef3
EW
1009 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1010 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1011 print STDERR "Checked out HEAD:\n ",
1012 $gs->full_url, " r", $gs->last_rev, "\n";
1013}
1014
98327e58
EW
1015sub complete_svn_url {
1016 my ($url, $path) = @_;
1017 $path =~ s#/+$##;
98327e58 1018 if ($path !~ m#^[a-z\+]+://#) {
98327e58
EW
1019 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1020 fatal("E: '$path' is not a complete URL ",
207f1a75 1021 "and a separate URL is not specified");
98327e58 1022 }
706587fc 1023 return ($url, $path);
98327e58 1024 }
706587fc 1025 return ($path, '');
98327e58
EW
1026}
1027
9d55b41a 1028sub complete_url_ls_init {
706587fc
EW
1029 my ($ra, $repo_path, $switch, $pfx) = @_;
1030 unless ($repo_path) {
9d55b41a
EW
1031 print STDERR "W: $switch not specified\n";
1032 return;
1033 }
706587fc
EW
1034 $repo_path =~ s#/+$##;
1035 if ($repo_path =~ m#^[a-z\+]+://#) {
1036 $ra = Git::SVN::Ra->new($repo_path);
1037 $repo_path = '';
e7db67e6 1038 } else {
706587fc 1039 $repo_path =~ s#^/+##;
e7db67e6 1040 unless ($ra) {
706587fc 1041 fatal("E: '$repo_path' is not a complete URL ",
207f1a75 1042 "and a separate URL is not specified");
8164b652 1043 }
e7db67e6 1044 }
706587fc 1045 my $url = $ra->{url};
b4d57e5e
EW
1046 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1047 my $k = "svn-remote.$gs->{repo_id}.url";
1048 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
1049 if ($orig_url && ($orig_url ne $gs->{url})) {
1050 die "$k already set: $orig_url\n",
1051 "wanted to set to: $gs->{url}\n";
88cf4107 1052 }
b4d57e5e 1053 command_oneline('config', $k, $gs->{url}) unless $orig_url;
ed0b9d43 1054 my $remote_path = "$ra->{svn_path}/$repo_path";
b4d57e5e
EW
1055 $remote_path =~ s#/+#/#g;
1056 $remote_path =~ s#^/##g;
ed0b9d43 1057 $remote_path .= "/*" if $remote_path !~ /\*/;
b4d57e5e
EW
1058 my ($n) = ($switch =~ /^--(\w+)/);
1059 if (length $pfx && $pfx !~ m#/$#) {
1060 die "--prefix='$pfx' must have a trailing slash '/'\n";
9d55b41a 1061 }
570d35c2
MG
1062 command_noisy('config',
1063 "svn-remote.$gs->{repo_id}.$n",
1064 "$remote_path:refs/remotes/$pfx*" .
1065 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
9d55b41a
EW
1066}
1067
aef4e921
EW
1068sub verify_ref {
1069 my ($ref) = @_;
2c5c1d53
EW
1070 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1071 { STDERR => 0 }); };
aef4e921
EW
1072}
1073
a5e0cedc 1074sub get_tree_from_treeish {
cf52b8f0 1075 my ($treeish) = @_;
44320b9e 1076 # $treeish can be a symbolic ref, too:
aef4e921 1077 my $type = command_oneline(qw/cat-file -t/, $treeish);
cf52b8f0
EW
1078 my $expected;
1079 while ($type eq 'tag') {
aef4e921 1080 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
cf52b8f0
EW
1081 }
1082 if ($type eq 'commit') {
aef4e921
EW
1083 $expected = (grep /^tree /, command(qw/cat-file commit/,
1084 $treeish))[0];
44320b9e 1085 ($expected) = ($expected =~ /^tree ($sha1)$/o);
cf52b8f0
EW
1086 die "Unable to get tree from $treeish\n" unless $expected;
1087 } elsif ($type eq 'tree') {
1088 $expected = $treeish;
1089 } else {
1090 die "$treeish is a $type, expected tree, tag or commit\n";
1091 }
a5e0cedc
EW
1092 return $expected;
1093}
1094
44320b9e
EW
1095sub get_commit_entry {
1096 my ($treeish) = shift;
1097 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1098 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1099 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1100 open my $log_fh, '>', $commit_editmsg or croak $!;
3397f9df 1101
44320b9e 1102 my $type = command_oneline(qw/cat-file -t/, $treeish);
4ad4515d 1103 if ($type eq 'commit' || $type eq 'tag') {
aef4e921 1104 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
44320b9e 1105 $type, $treeish);
3397f9df 1106 my $in_msg = 0;
6aa9ba14
AP
1107 my $author;
1108 my $saw_from = 0;
328eb9b3 1109 my $msgbuf = "";
3397f9df
EW
1110 while (<$msg_fh>) {
1111 if (!$in_msg) {
1112 $in_msg = 1 if (/^\s*$/);
6aa9ba14 1113 $author = $1 if (/^author (.*>)/);
df746c5a 1114 } elsif (/^git-svn-id: /) {
44320b9e
EW
1115 # skip this for now, we regenerate the
1116 # correct one on re-fetch anyways
1117 # TODO: set *:merge properties or like...
3397f9df 1118 } else {
6aa9ba14
AP
1119 if (/^From:/ || /^Signed-off-by:/) {
1120 $saw_from = 1;
1121 }
328eb9b3 1122 $msgbuf .= $_;
3397f9df
EW
1123 }
1124 }
328eb9b3 1125 $msgbuf =~ s/\s+$//s;
6aa9ba14
AP
1126 if ($Git::SVN::_add_author_from && defined($author)
1127 && !$saw_from) {
328eb9b3 1128 $msgbuf .= "\n\nFrom: $author";
6aa9ba14 1129 }
328eb9b3 1130 print $log_fh $msgbuf or croak $!;
aef4e921 1131 command_close_pipe($msg_fh, $ctx);
3397f9df 1132 }
44320b9e 1133 close $log_fh or croak $!;
3397f9df
EW
1134
1135 if ($_edit || ($type eq 'tree')) {
1136 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
44320b9e
EW
1137 # TODO: strip out spaces, comments, like git-commit.sh
1138 system($editor, $commit_editmsg);
3397f9df 1139 }
44320b9e 1140 rename $commit_editmsg, $commit_msg or croak $!;
16fc08e2
EW
1141 {
1142 # SVN requires messages to be UTF-8 when entering the repo
1143 local $/;
1144 open $log_fh, '<', $commit_msg or croak $!;
1145 binmode $log_fh;
1146 chomp($log_entry{log} = <$log_fh>);
1147
1148 if (my $enc = Git::config('i18n.commitencoding')) {
1149 require Encode;
1150 Encode::from_to($log_entry{log}, $enc, 'UTF-8');
1151 }
1152 close $log_fh or croak $!;
1153 }
44320b9e
EW
1154 unlink $commit_msg;
1155 \%log_entry;
a5e0cedc
EW
1156}
1157
3397f9df
EW
1158sub s_to_file {
1159 my ($str, $file, $mode) = @_;
1160 open my $fd,'>',$file or croak $!;
1161 print $fd $str,"\n" or croak $!;
1162 close $fd or croak $!;
1163 chmod ($mode &~ umask, $file) if (defined $mode);
1164}
1165
1166sub file_to_s {
1167 my $file = shift;
1168 open my $fd,'<',$file or croak "$!: file: $file\n";
1169 local $/;
1170 my $ret = <$fd>;
1171 close $fd or croak $!;
1172 $ret =~ s/\s*$//s;
1173 return $ret;
1174}
1175
eeb0abe0
EW
1176# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1177sub load_authors {
1178 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
f8c9d1d2 1179 my $log = $cmd eq 'log';
eeb0abe0
EW
1180 while (<$authors>) {
1181 chomp;
575d025c 1182 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
eeb0abe0 1183 my ($user, $name, $email) = ($1, $2, $3);
f8c9d1d2
EW
1184 if ($log) {
1185 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1186 } else {
1187 $users{$user} = [$name, $email];
1188 }
79bb8d88
EW
1189 }
1190 close $authors or croak $!;
1191}
1192
e0d10e1c 1193# convert GetOpt::Long specs for use by git-config
b8c92cad 1194sub read_repo_config {
706587fc 1195 return unless -d $ENV{GIT_DIR};
b8c92cad 1196 my $opts = shift;
97ae0911 1197 my @config_only;
b8c92cad 1198 foreach my $o (keys %$opts) {
97ae0911
EW
1199 # if we have mixedCase and a long option-only, then
1200 # it's a config-only variable that we don't need for
1201 # the command-line.
1202 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
b8c92cad 1203 my $v = $opts->{$o};
97ae0911 1204 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
b8c92cad 1205 $key =~ s/-//g;
225f1d0c 1206 my $arg = 'git config';
b8c92cad
EW
1207 $arg .= ' --int' if ($o =~ /[:=]i$/);
1208 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1209 if (ref $v eq 'ARRAY') {
1210 chomp(my @tmp = `$arg --get-all svn.$key`);
1211 @$v = @tmp if @tmp;
1212 } else {
1213 chomp(my $tmp = `$arg --get svn.$key`);
7774284a 1214 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
b8c92cad
EW
1215 $$v = $tmp;
1216 }
1217 }
1218 }
97ae0911 1219 delete @$opts{@config_only} if @config_only;
b8c92cad
EW
1220}
1221
79bb8d88 1222sub extract_metadata {
c1927a85 1223 my $id = shift or return (undef, undef, undef);
3dfab993 1224 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
79bb8d88 1225 \s([a-f\d\-]+)$/x);
e70dc780 1226 if (!defined $rev || !$uuid || !$url) {
79bb8d88 1227 # some of the original repositories I made had
82e5a82f 1228 # identifiers like this:
3dfab993 1229 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
79bb8d88
EW
1230 }
1231 return ($url, $rev, $uuid);
1232}
1233
c1927a85
EW
1234sub cmt_metadata {
1235 return extract_metadata((grep(/^git-svn-id: /,
aef4e921 1236 command(qw/cat-file commit/, shift)))[-1]);
c1927a85
EW
1237}
1238
905f8b7d
EW
1239sub working_head_info {
1240 my ($head, $refs) = @_;
b6309ac2 1241 my @args = ('log', '--no-color', '--first-parent', '--pretty=medium');
05b4df31 1242 my ($fh, $ctx) = command_output_pipe(@args, $head);
3dfab993 1243 my $hash;
40cb8f8f 1244 my %max;
3dfab993
SV
1245 while (<$fh>) {
1246 if ( m{^commit ($::sha1)$} ) {
1247 unshift @$refs, $hash if $hash and $refs;
1248 $hash = $1;
1249 next;
1250 }
1251 next unless s{^\s*(git-svn-id:)}{$1};
1252 my ($url, $rev, $uuid) = extract_metadata($_);
13c823fb 1253 if (defined $url && defined $rev) {
40cb8f8f 1254 next if $max{$url} and $max{$url} < $rev;
13c823fb 1255 if (my $gs = Git::SVN->find_by_url($url)) {
63c56022 1256 my $c = $gs->rev_map_get($rev, $uuid);
b03c7a63 1257 if ($c && $c eq $hash) {
13c823fb
EW
1258 close $fh; # break the pipe
1259 return ($url, $rev, $uuid, $gs);
40cb8f8f 1260 } else {
060610c5 1261 $max{$url} ||= $gs->rev_map_max;
13c823fb
EW
1262 }
1263 }
1264 }
905f8b7d 1265 }
13c823fb
EW
1266 command_close_pipe($fh, $ctx);
1267 (undef, undef, undef, undef);
905f8b7d
EW
1268}
1269
733a65aa
EW
1270sub read_commit_parents {
1271 my ($parents, $c) = @_;
7b02b85a
EW
1272 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1273 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1274 @{$parents->{$c}} = split(/ /, $p);
733a65aa
EW
1275}
1276
1277sub linearize_history {
1278 my ($gs, $refs) = @_;
1279 my %parents;
1280 foreach my $c (@$refs) {
1281 read_commit_parents(\%parents, $c);
1282 }
1283
1284 my @linear_refs;
1285 my %skip = ();
1286 my $last_svn_commit = $gs->last_commit;
1287 foreach my $c (reverse @$refs) {
1288 next if $c eq $last_svn_commit;
1289 last if $skip{$c};
1290
1291 unshift @linear_refs, $c;
1292 $skip{$c} = 1;
1293
1294 # we only want the first parent to diff against for linear
1295 # history, we save the rest to inject when we finalize the
1296 # svn commit
1297 my $fp_a = verify_ref("$c~1");
1298 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1299 if (!$fp_a || !$fp_b) {
1300 die "Commit $c\n",
1301 "has no parent commit, and therefore ",
1302 "nothing to diff against.\n",
1303 "You should be working from a repository ",
1304 "originally created by git-svn\n";
1305 }
1306 if ($fp_a ne $fp_b) {
1307 die "$c~1 = $fp_a, however parsing commit $c ",
1308 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1309 }
1310
1311 foreach my $p (@{$parents{$c}}) {
1312 $skip{$p} = 1;
1313 }
1314 }
1315 (\@linear_refs, \%parents);
1316}
1317
e6fefa92
DK
1318sub find_file_type_and_diff_status {
1319 my ($path) = @_;
107cee50 1320 return ('dir', '') if $path eq '';
e6fefa92
DK
1321
1322 my $diff_output =
1323 command_oneline(qw(diff --cached --name-status --), $path) || "";
1324 my $diff_status = (split(' ', $diff_output))[0] || "";
1325
1326 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1327
1328 return (undef, undef) if !$diff_status && !$ls_tree;
1329
1330 if ($diff_status eq "A") {
1331 return ("link", $diff_status) if -l $path;
1332 return ("dir", $diff_status) if -d $path;
1333 return ("file", $diff_status);
1334 }
1335
1336 my $mode = (split(' ', $ls_tree))[0] || "";
1337
1338 return ("link", $diff_status) if $mode eq "120000";
1339 return ("dir", $diff_status) if $mode eq "040000";
1340 return ("file", $diff_status);
1341}
1342
b2b3ada7
DK
1343sub md5sum {
1344 my $arg = shift;
1345 my $ref = ref $arg;
1346 my $md5 = Digest::MD5->new();
0b19138b 1347 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
b2b3ada7
DK
1348 $md5->addfile($arg) or croak $!;
1349 } elsif ($ref eq 'SCALAR') {
1350 $md5->add($$arg) or croak $!;
1351 } elsif (!$ref) {
1352 $md5->add($arg) or croak $!;
1353 } else {
1354 ::fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1355 }
1356 return $md5->hexdigest();
1357}
1358
9b981fc6
EW
1359package Git::SVN;
1360use strict;
1361use warnings;
060610c5
EW
1362use Fcntl qw/:DEFAULT :seek/;
1363use constant rev_map_fmt => 'NH40';
ecc712dd 1364use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
62e349d2 1365 $_repack $_repack_flags $_use_svm_props $_head
70ae04e4 1366 $_use_svnsync_props $no_reuse_existing $_minimize_url
6aa9ba14 1367 $_use_log_author $_add_author_from/;
9b981fc6
EW
1368use Carp qw/croak/;
1369use File::Path qw/mkpath/;
373274f9 1370use File::Copy qw/copy/;
9b981fc6
EW
1371use IPC::Open3;
1372
94bc914c
KW
1373my ($_gc_nr, $_gc_period);
1374
9b981fc6
EW
1375# properties that we do not log:
1376my %SKIP_PROP;
1377BEGIN {
1378 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
1379 svn:special svn:executable
1380 svn:entry:committed-rev
1381 svn:entry:last-author
1382 svn:entry:uuid
1383 svn:entry:committed-date/;
91b03282
EW
1384
1385 # some options are read globally, but can be overridden locally
1386 # per [svn-remote "..."] section. Command-line options will *NOT*
1387 # override options set in an [svn-remote "..."] section
c5f71ad0
SV
1388 no strict 'refs';
1389 for my $option (qw/follow_parent no_metadata use_svm_props
1390 use_svnsync_props/) {
1391 my $key = $option;
91b03282 1392 $key =~ tr/_//d;
c5f71ad0
SV
1393 my $prop = "-$option";
1394 *$option = sub {
1395 my ($self) = @_;
1396 return $self->{$prop} if exists $self->{$prop};
1397 my $k = "svn-remote.$self->{repo_id}.$key";
1398 eval { command_oneline(qw/config --get/, $k) };
1399 if ($@) {
1400 $self->{$prop} = ${"Git::SVN::_$option"};
91b03282 1401 } else {
c5f71ad0
SV
1402 my $v = command_oneline(qw/config --bool/,$k);
1403 $self->{$prop} = $v eq 'false' ? 0 : 1;
91b03282 1404 }
c5f71ad0
SV
1405 return $self->{$prop};
1406 }
91b03282 1407 }
9b981fc6
EW
1408}
1409
0b19138b 1410
321b1842
EW
1411my (%LOCKFILES, %INDEX_FILES);
1412END {
1413 unlink keys %LOCKFILES if %LOCKFILES;
1414 unlink keys %INDEX_FILES if %INDEX_FILES;
1415}
373274f9 1416
4bb9ed04
EW
1417sub resolve_local_globs {
1418 my ($url, $fetch, $glob_spec) = @_;
1419 return unless defined $glob_spec;
1420 my $ref = $glob_spec->{ref};
1421 my $path = $glob_spec->{path};
1422 foreach (command(qw#for-each-ref --format=%(refname) refs/remotes#)) {
1423 next unless m#^refs/remotes/$ref->{regex}$#;
1424 my $p = $1;
bf655fd7
RE
1425 my $pathname = desanitize_refname($path->full_path($p));
1426 my $refname = desanitize_refname($ref->full_path($p));
4bb9ed04
EW
1427 if (my $existing = $fetch->{$pathname}) {
1428 if ($existing ne $refname) {
1429 die "Refspec conflict:\n",
1430 "existing: refs/remotes/$existing\n",
1431 " globbed: refs/remotes/$refname\n";
1432 }
1433 my $u = (::cmt_metadata("refs/remotes/$refname"))[0];
4e9f6cc7 1434 $u =~ s!^\Q$url\E(/|$)!! or die
4bb9ed04
EW
1435 "refs/remotes/$refname: '$url' not found in '$u'\n";
1436 if ($pathname ne $u) {
1437 warn "W: Refspec glob conflict ",
1438 "(ref: refs/remotes/$refname):\n",
1439 "expected path: $pathname\n",
1440 " real path: $u\n",
1441 "Continuing ahead with $u\n";
1442 next;
1443 }
1444 } else {
4bb9ed04
EW
1445 $fetch->{$pathname} = $refname;
1446 }
1447 }
1448}
1449
e98671e5
EW
1450sub parse_revision_argument {
1451 my ($base, $head) = @_;
1452 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
1453 return ($base, $head);
1454 }
1455 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
1456 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
1457 return ($head, $head) if ($::_revision eq 'HEAD');
1458 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
1459 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
1460 die "revision argument: $::_revision not understood by git-svn\n";
1461}
1462
0af9c9f9 1463sub fetch_all {
4bb9ed04 1464 my ($repo_id, $remotes) = @_;
905f8b7d
EW
1465 if (ref $repo_id) {
1466 my $gs = $repo_id;
1467 $repo_id = undef;
1468 $repo_id = $gs->{repo_id};
1469 }
1470 $remotes ||= read_all_remotes();
7447b4bc
EW
1471 my $remote = $remotes->{$repo_id} or
1472 die "[svn-remote \"$repo_id\"] unknown\n";
e518192f 1473 my $fetch = $remote->{fetch};
7447b4bc 1474 my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
e518192f 1475 my (@gs, @globs);
0af9c9f9 1476 my $ra = Git::SVN::Ra->new($url);
26a62d57 1477 my $uuid = $ra->get_uuid;
0af9c9f9 1478 my $head = $ra->get_latest_revnum;
28710f74 1479 my $base = defined $fetch ? $head : 0;
e518192f
EW
1480
1481 # read the max revs for wildcard expansion (branches/*, tags/*)
1482 foreach my $t (qw/branches tags/) {
1483 defined $remote->{$t} or next;
1484 push @globs, $remote->{$t};
93f2689c
EW
1485 my $max_rev = eval { tmp_config(qw/--int --get/,
1486 "svn-remote.$repo_id.${t}-maxRev") };
1487 if (defined $max_rev && ($max_rev < $base)) {
1488 $base = $max_rev;
d6d3346b
EW
1489 } elsif (!defined $max_rev) {
1490 $base = 0;
e518192f
EW
1491 }
1492 }
1493
db03cd24
EW
1494 if ($fetch) {
1495 foreach my $p (sort keys %$fetch) {
1496 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
060610c5 1497 my $lr = $gs->rev_map_max;
db03cd24
EW
1498 if (defined $lr) {
1499 $base = $lr if ($lr < $base);
1500 }
1501 push @gs, $gs;
0af9c9f9 1502 }
0af9c9f9 1503 }
e98671e5
EW
1504
1505 ($base, $head) = parse_revision_argument($base, $head);
e518192f 1506 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
0af9c9f9
EW
1507}
1508
47e39c55
EW
1509sub read_all_remotes {
1510 my $r = {};
63c56022
JA
1511 my $use_svm_props = eval { command_oneline(qw/config --bool
1512 svn.useSvmProps/) };
1513 $use_svm_props = $use_svm_props eq 'true' if $use_svm_props;
8b8fc068 1514 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
61192165
AP
1515 if (m!^(.+)\.fetch=\s*(.*)\s*:\s*(.+)\s*$!) {
1516 my ($remote, $local_ref, $_remote_ref) = ($1, $2, $3);
1517 die("svn-remote.$remote: remote ref '$_remote_ref' "
1518 . "must start with 'refs/remotes/'\n")
1519 unless $_remote_ref =~ m{^refs/remotes/(.+)};
1520 my $remote_ref = $1;
46cf98ba
EW
1521 $local_ref =~ s{^/}{};
1522 $r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
63c56022
JA
1523 $r->{$remote}->{svm} = {} if $use_svm_props;
1524 } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
1525 $r->{$1}->{svm} = {};
47e39c55
EW
1526 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
1527 $r->{$1}->{url} = $2;
4bb9ed04
EW
1528 } elsif (m!^(.+)\.(branches|tags)=
1529 (.*):refs/remotes/(.+)\s*$/!x) {
1530 my ($p, $g) = ($3, $4);
1531 my $rs = $r->{$1}->{$2} = {
e518192f 1532 t => $2,
93f2689c 1533 remote => $1,
4bb9ed04
EW
1534 path => Git::SVN::GlobSpec->new($p),
1535 ref => Git::SVN::GlobSpec->new($g) };
1536 if (length($rs->{ref}->{right}) != 0) {
1537 die "The '*' glob character must be the last ",
1538 "character of '$g'\n";
1539 }
47e39c55
EW
1540 }
1541 }
63c56022
JA
1542
1543 map {
1544 if (defined $r->{$_}->{svm}) {
1545 my $svm;
1546 eval {
1547 my $section = "svn-remote.$_";
1548 $svm = {
1549 source => tmp_config('--get',
1550 "$section.svm-source"),
1551 replace => tmp_config('--get',
1552 "$section.svm-replace"),
1553 }
1554 };
1555 $r->{$_}->{svm} = $svm;
1556 }
1557 } keys %$r;
1558
47e39c55
EW
1559 $r;
1560}
1561
ecc712dd 1562sub init_vars {
94bc914c 1563 $_gc_nr = $_gc_period = 1000;
af788a6e
KW
1564 if (defined $_repack || defined $_repack_flags) {
1565 warn "Repack options are obsolete; they have no effect.\n";
1566 }
ecc712dd
EW
1567}
1568
b805b44a 1569sub verify_remotes_sanity {
536c4b09 1570 return unless -d $ENV{GIT_DIR};
b805b44a
EW
1571 my %seen;
1572 foreach (command(qw/config -l/)) {
1573 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
1574 if ($seen{$1}) {
1575 die "Remote ref refs/remote/$1 is tracked by",
1576 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
1577 "Please resolve this ambiguity in ",
1578 "your git configuration file before ",
1579 "continuing\n";
1580 }
1581 $seen{$1} = $_;
1582 }
1583 }
1584}
1585
e6434f87
EW
1586sub find_existing_remote {
1587 my ($url, $remotes) = @_;
befc9adc 1588 return undef if $no_reuse_existing;
e6434f87
EW
1589 my $existing;
1590 foreach my $repo_id (keys %$remotes) {
1591 my $u = $remotes->{$repo_id}->{url} or next;
1592 next if $u ne $url;
1593 $existing = $repo_id;
1594 last;
1595 }
1596 $existing;
1597}
b805b44a 1598
e6434f87 1599sub init_remote_config {
d8115c51 1600 my ($self, $url, $no_write) = @_;
e6434f87
EW
1601 $url =~ s!/+$!!; # strip trailing slash
1602 my $r = read_all_remotes();
1603 my $existing = find_existing_remote($url, $r);
1604 if ($existing) {
e518192f
EW
1605 unless ($no_write) {
1606 print STDERR "Using existing ",
1607 "[svn-remote \"$existing\"]\n";
1608 }
e6434f87 1609 $self->{repo_id} = $existing;
4a1bb4c3 1610 } elsif ($_minimize_url) {
e6434f87
EW
1611 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1612 $existing = find_existing_remote($min_url, $r);
1613 if ($existing) {
e518192f
EW
1614 unless ($no_write) {
1615 print STDERR "Using existing ",
1616 "[svn-remote \"$existing\"]\n";
1617 }
e6434f87
EW
1618 $self->{repo_id} = $existing;
1619 }
1620 if ($min_url ne $url) {
e518192f
EW
1621 unless ($no_write) {
1622 print STDERR "Using higher level of URL: ",
1623 "$url => $min_url\n";
1624 }
e6434f87
EW
1625 my $old_path = $self->{path};
1626 $self->{path} = $url;
4e9f6cc7 1627 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
e6434f87
EW
1628 if (length $old_path) {
1629 $self->{path} .= "/$old_path";
1630 }
1631 $url = $min_url;
1632 }
1633 }
1634 my $orig_url;
1635 if (!$existing) {
b805b44a 1636 # verify that we aren't overwriting anything:
e6434f87 1637 $orig_url = eval {
706587fc 1638 command_oneline('config', '--get',
e6434f87 1639 "svn-remote.$self->{repo_id}.url")
706587fc 1640 };
b805b44a 1641 if ($orig_url && ($orig_url ne $url)) {
e6434f87 1642 die "svn-remote.$self->{repo_id}.url already set: ",
b805b44a
EW
1643 "$orig_url\nwanted to set to: $url\n";
1644 }
9b981fc6 1645 }
e6434f87
EW
1646 my ($xrepo_id, $xpath) = find_ref($self->refname);
1647 if (defined $xpath) {
1648 die "svn-remote.$xrepo_id.fetch already set to track ",
1649 "$xpath:refs/remotes/", $self->refname, "\n";
1650 }
d8115c51
EW
1651 unless ($no_write) {
1652 command_noisy('config',
1653 "svn-remote.$self->{repo_id}.url", $url);
46cf98ba 1654 $self->{path} =~ s{^/}{};
d8115c51
EW
1655 command_noisy('config', '--add',
1656 "svn-remote.$self->{repo_id}.fetch",
1657 "$self->{path}:".$self->refname);
1658 }
9b981fc6 1659 $self->{url} = $url;
e6434f87
EW
1660}
1661
a8ae2623
EW
1662sub find_by_url { # repos_root and, path are optional
1663 my ($class, $full_url, $repos_root, $path) = @_;
56973d20 1664
1a97a506 1665 return undef unless defined $full_url;
56973d20
AR
1666 remove_username($full_url);
1667 remove_username($repos_root) if defined $repos_root;
a8ae2623
EW
1668 my $remotes = read_all_remotes();
1669 if (defined $full_url && defined $repos_root && !defined $path) {
1670 $path = $full_url;
1671 $path =~ s#^\Q$repos_root\E(?:/|$)##;
1672 }
1673 foreach my $repo_id (keys %$remotes) {
1674 my $u = $remotes->{$repo_id}->{url} or next;
56973d20 1675 remove_username($u);
a8ae2623
EW
1676 next if defined $repos_root && $repos_root ne $u;
1677
1678 my $fetch = $remotes->{$repo_id}->{fetch} || {};
1679 foreach (qw/branches tags/) {
1680 resolve_local_globs($u, $fetch,
1681 $remotes->{$repo_id}->{$_});
1682 }
1683 my $p = $path;
0bb91d9a 1684 my $rwr = rewrite_root({repo_id => $repo_id});
63c56022
JA
1685 my $svm = $remotes->{$repo_id}->{svm}
1686 if defined $remotes->{$repo_id}->{svm};
a8ae2623
EW
1687 unless (defined $p) {
1688 $p = $full_url;
0bb91d9a 1689 my $z = $u;
63c56022 1690 my $prefix = '';
0bb91d9a
JG
1691 if ($rwr) {
1692 $z = $rwr;
63c56022
JA
1693 } elsif (defined $svm) {
1694 $z = $svm->{source};
1695 $prefix = $svm->{replace};
1696 $prefix =~ s#^\Q$u\E(?:/|$)##;
1697 $prefix =~ s#/$##;
0bb91d9a 1698 }
63c56022 1699 $p =~ s#^\Q$z\E(?:/|$)#$prefix# or next;
a8ae2623
EW
1700 }
1701 foreach my $f (keys %$fetch) {
1702 next if $f ne $p;
1703 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
1704 }
1705 }
1706 undef;
1707}
1708
e6434f87 1709sub init {
d8115c51 1710 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
e6434f87
EW
1711 my $self = _new($class, $repo_id, $ref_id, $path);
1712 if (defined $url) {
d8115c51 1713 $self->init_remote_config($url, $no_write);
e6434f87 1714 }
9b981fc6
EW
1715 $self;
1716}
1717
706587fc
EW
1718sub find_ref {
1719 my ($ref_id) = @_;
1720 foreach (command(qw/config -l/)) {
1721 next unless m!^svn-remote\.(.+)\.fetch=
1722 \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
1723 my ($repo_id, $path, $ref) = ($1, $2, $3);
1724 if ($ref eq $ref_id) {
1725 $path = '' if ($path =~ m#^\./?#);
1726 return ($repo_id, $path);
1727 }
1728 }
1729 (undef, undef, undef);
1730}
1731
9b981fc6 1732sub new {
706587fc
EW
1733 my ($class, $ref_id, $repo_id, $path) = @_;
1734 if (defined $ref_id && !defined $repo_id && !defined $path) {
1735 ($repo_id, $path) = find_ref($ref_id);
1736 if (!defined $repo_id) {
1737 die "Could not find a \"svn-remote.*.fetch\" key ",
1738 "in the repository configuration matching: ",
1739 "refs/remotes/$ref_id\n";
1740 }
1741 }
1742 my $self = _new($class, $repo_id, $ref_id, $path);
8b8fc068
EW
1743 if (!defined $self->{path} || !length $self->{path}) {
1744 my $fetch = command_oneline('config', '--get',
1745 "svn-remote.$repo_id.fetch",
1746 ":refs/remotes/$ref_id\$") or
1747 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
1748 "\":refs/remotes/$ref_id\$\" in config\n";
1749 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
1750 }
706587fc
EW
1751 $self->{url} = command_oneline('config', '--get',
1752 "svn-remote.$repo_id.url") or
1753 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
d6d3346b 1754 $self->rebuild;
9b981fc6
EW
1755 $self;
1756}
1757
bf655fd7
RE
1758sub refname {
1759 my ($refname) = "refs/remotes/$_[0]->{ref_id}" ;
1760
1761 # It cannot end with a slash /, we'll throw up on this because
1762 # SVN can't have directories with a slash in their name, either:
1763 if ($refname =~ m{/$}) {
1764 die "ref: '$refname' ends with a trailing slash, this is ",
1765 "not permitted by git nor Subversion\n";
1766 }
1767
1768 # It cannot have ASCII control character space, tilde ~, caret ^,
1769 # colon :, question-mark ?, asterisk *, space, or open bracket [
1770 # anywhere.
1771 #
1772 # Additionally, % must be escaped because it is used for escaping
1773 # and we want our escaped refname to be reversible
1774 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
1775
1776 # no slash-separated component can begin with a dot .
1777 # /.* becomes /%2E*
1778 $refname =~ s{/\.}{/%2E}g;
1779
1780 # It cannot have two consecutive dots .. anywhere
1781 # .. becomes %2E%2E
1782 $refname =~ s{\.\.}{%2E%2E}g;
1783
1784 return $refname;
1785}
1786
1787sub desanitize_refname {
1788 my ($refname) = @_;
1789 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
1790 return $refname;
1791}
9b981fc6 1792
26a62d57
EW
1793sub svm_uuid {
1794 my ($self) = @_;
1795 return $self->{svm}->{uuid} if $self->svm;
1796 $self->ra;
1797 unless ($self->{svm}) {
1798 die "SVM UUID not cached, and reading remotely failed\n";
1799 }
1800 $self->{svm}->{uuid};
1801}
8a49ee97 1802
26a62d57
EW
1803sub svm {
1804 my ($self) = @_;
1805 return $self->{svm} if $self->{svm};
1806 my $svm;
8a49ee97
EW
1807 # see if we have it in our config, first:
1808 eval {
26a62d57
EW
1809 my $section = "svn-remote.$self->{repo_id}";
1810 $svm = {
93f2689c
EW
1811 source => tmp_config('--get', "$section.svm-source"),
1812 uuid => tmp_config('--get', "$section.svm-uuid"),
befc9adc 1813 replace => tmp_config('--get', "$section.svm-replace"),
8a49ee97
EW
1814 }
1815 };
befc9adc
EW
1816 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
1817 $self->{svm} = $svm;
1818 }
26a62d57
EW
1819 $self->{svm};
1820}
1821
1822sub _set_svm_vars {
1823 my ($self, $ra) = @_;
db03cd24
EW
1824 return $ra if $self->svm;
1825
1826 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
befc9adc 1827 "(svm:source, svm:uuid) ",
db03cd24
EW
1828 "from the following URLs:\n" );
1829 sub read_svm_props {
befc9adc
EW
1830 my ($self, $ra, $path, $r) = @_;
1831 my $props = ($ra->get_dir($path, $r))[2];
db03cd24 1832 my $src = $props->{'svm:source'};
db03cd24 1833 my $uuid = $props->{'svm:uuid'};
befc9adc 1834 return undef if (!$src || !$uuid);
26a62d57 1835
befc9adc 1836 chomp($src, $uuid);
26a62d57 1837
db03cd24
EW
1838 $uuid =~ m{^[0-9a-f\-]{30,}$}
1839 or die "doesn't look right - svm:uuid is '$uuid'\n";
befc9adc
EW
1840
1841 # the '!' is used to mark the repos_root!/relative/path
1842 $src =~ s{/?!/?}{/};
db03cd24 1843 $src =~ s{/+$}{}; # no trailing slashes please
befc9adc 1844 # username is of no interest
8a49ee97 1845 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
8a49ee97 1846
befc9adc
EW
1847 my $replace = $ra->{url};
1848 $replace .= "/$path" if length $path;
1849
db03cd24 1850 my $section = "svn-remote.$self->{repo_id}";
befc9adc
EW
1851 tmp_config("$section.svm-source", $src);
1852 tmp_config("$section.svm-replace", $replace);
1853 tmp_config("$section.svm-uuid", $uuid);
1854 $self->{svm} = {
1855 source => $src,
1856 uuid => $uuid,
1857 replace => $replace
1858 };
db03cd24
EW
1859 }
1860
1861 my $r = $ra->get_latest_revnum;
1862 my $path = $self->{path};
befc9adc 1863 my %tried;
db03cd24 1864 while (length $path) {
befc9adc
EW
1865 unless ($tried{"$self->{url}/$path"}) {
1866 return $ra if $self->read_svm_props($ra, $path, $r);
1867 $tried{"$self->{url}/$path"} = 1;
db03cd24 1868 }
befc9adc 1869 $path =~ s#/?[^/]+$##;
8a49ee97 1870 }
befc9adc
EW
1871 die "Path: '$path' should be ''\n" if $path ne '';
1872 return $ra if $self->read_svm_props($ra, $path, $r);
1873 $tried{"$self->{url}/$path"} = 1;
db03cd24
EW
1874
1875 if ($ra->{repos_root} eq $self->{url}) {
befc9adc 1876 die @err, (map { " $_\n" } keys %tried), "\n";
db03cd24
EW
1877 }
1878
1879 # nope, make sure we're connected to the repository root:
1880 my $ok;
1881 my @tried_b;
1882 $path = $ra->{svn_path};
db03cd24
EW
1883 $ra = Git::SVN::Ra->new($ra->{repos_root});
1884 while (length $path) {
befc9adc
EW
1885 unless ($tried{"$ra->{url}/$path"}) {
1886 $ok = $self->read_svm_props($ra, $path, $r);
1887 last if $ok;
1888 $tried{"$ra->{url}/$path"} = 1;
1889 }
1890 $path =~ s#/?[^/]+$##;
db03cd24 1891 }
befc9adc
EW
1892 die "Path: '$path' should be ''\n" if $path ne '';
1893 $ok ||= $self->read_svm_props($ra, $path, $r);
1894 $tried{"$ra->{url}/$path"} = 1;
db03cd24 1895 if (!$ok) {
befc9adc 1896 die @err, (map { " $_\n" } keys %tried), "\n";
db03cd24
EW
1897 }
1898 Git::SVN::Ra->new($self->{url});
8a49ee97
EW
1899}
1900
62e349d2
EW
1901sub svnsync {
1902 my ($self) = @_;
1903 return $self->{svnsync} if $self->{svnsync};
1904
1905 if ($self->no_metadata) {
1906 die "Can't have both 'noMetadata' and ",
1907 "'useSvnsyncProps' options set!\n";
1908 }
1909 if ($self->rewrite_root) {
1910 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
1911 "options set!\n";
1912 }
1913
1914 my $svnsync;
1915 # see if we have it in our config, first:
1916 eval {
1917 my $section = "svn-remote.$self->{repo_id}";
98fa5b68
EW
1918
1919 my $url = tmp_config('--get', "$section.svnsync-url");
1920 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
1921 die "doesn't look right - svn:sync-from-url is '$url'\n";
1922
1923 my $uuid = tmp_config('--get', "$section.svnsync-uuid");
1924 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
1925 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1926
1927 $svnsync = { url => $url, uuid => $uuid }
62e349d2
EW
1928 };
1929 if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) {
1930 return $self->{svnsync} = $svnsync;
1931 }
1932
1933 my $err = "useSvnsyncProps set, but failed to read " .
1934 "svnsync property: svn:sync-from-";
1935 my $rp = $self->ra->rev_proplist(0);
1936
1937 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
98fa5b68 1938 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
62e349d2
EW
1939 die "doesn't look right - svn:sync-from-url is '$url'\n";
1940
1941 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
98fa5b68 1942 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
62e349d2
EW
1943 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1944
1945 my $section = "svn-remote.$self->{repo_id}";
1946 tmp_config('--add', "$section.svnsync-uuid", $uuid);
1947 tmp_config('--add', "$section.svnsync-url", $url);
1948 return $self->{svnsync} = { url => $url, uuid => $uuid };
1949}
1950
26a62d57
EW
1951# this allows us to memoize our SVN::Ra UUID locally and avoid a
1952# remote lookup (useful for 'git svn log').
1953sub ra_uuid {
1954 my ($self) = @_;
1955 unless ($self->{ra_uuid}) {
1956 my $key = "svn-remote.$self->{repo_id}.uuid";
1957 my $uuid = eval { tmp_config('--get', $key) };
1958 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/) {
1959 $self->{ra_uuid} = $uuid;
1960 } else {
1961 die "ra_uuid called without URL\n" unless $self->{url};
1962 $self->{ra_uuid} = $self->ra->get_uuid;
1963 tmp_config('--add', $key, $self->{ra_uuid});
1964 }
1965 }
1966 $self->{ra_uuid};
1967}
1968
a5460eb7
EW
1969sub _set_repos_root {
1970 my ($self, $repos_root) = @_;
1971 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1972 $repos_root ||= $self->ra->{repos_root};
1973 tmp_config($k, $repos_root);
1974 $repos_root;
1975}
1976
1977sub repos_root {
1978 my ($self) = @_;
1979 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1980 eval { tmp_config('--get', $k) } || $self->_set_repos_root;
1981}
1982
9b981fc6
EW
1983sub ra {
1984 my ($self) = shift;
8a49ee97 1985 my $ra = Git::SVN::Ra->new($self->{url});
a5460eb7 1986 $self->_set_repos_root($ra->{repos_root});
91b03282
EW
1987 if ($self->use_svm_props && !$self->{svm}) {
1988 if ($self->no_metadata) {
97ae0911
EW
1989 die "Can't have both 'noMetadata' and ",
1990 "'useSvmProps' options set!\n";
62e349d2
EW
1991 } elsif ($self->use_svnsync_props) {
1992 die "Can't have both 'useSvnsyncProps' and ",
1993 "'useSvmProps' options set!\n";
91b03282 1994 }
26a62d57 1995 $ra = $self->_set_svm_vars($ra);
8a49ee97
EW
1996 $self->{-want_revprops} = 1;
1997 }
1998 $ra;
9b981fc6
EW
1999}
2000
15710b6f
EW
2001sub rel_path {
2002 my ($self) = @_;
2003 my $repos_root = $self->ra->{repos_root};
2004 return $self->{path} if ($self->{url} eq $repos_root);
0b59451c
EW
2005 my $url = $self->{url} .
2006 (length $self->{path} ? "/$self->{path}" : $self->{path});
2007 $url =~ s!^\Q$repos_root\E(?:/+|$)!!g;
2008 $url;
15710b6f
EW
2009}
2010
01bdab84
BS
2011# prop_walk(PATH, REV, SUB)
2012# -------------------------
2013# Recursively traverse PATH at revision REV and invoke SUB for each
2014# directory that contains a SVN property. SUB will be invoked as
2015# follows: &SUB(gs, path, props); where `gs' is this instance of
2016# Git::SVN, `path' the path to the directory where the properties
2017# `props' were found. The `path' will be relative to point of checkout,
2018# that is, if url://repo/trunk is the current Git branch, and that
2019# directory contains a sub-directory `d', SUB will be invoked with `/d/'
2020# as `path' (note the trailing `/').
2021sub prop_walk {
2022 my ($self, $path, $rev, $sub) = @_;
2023
35cda061 2024 $path =~ s#^/##;
01bdab84
BS
2025 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
2026 $path =~ s#^/*#/#g;
9b981fc6 2027 my $p = $path;
01bdab84
BS
2028 # Strip the irrelevant part of the path.
2029 $p =~ s#^/+\Q$self->{path}\E(/|$)#/#;
2030 # Ensure the path is terminated by a `/'.
2031 $p =~ s#/*$#/#;
2032
2033 # The properties contain all the internal SVN stuff nobody
2034 # (usually) cares about.
2035 my $interesting_props = 0;
2036 foreach (keys %{$props}) {
2037 # If it doesn't start with `svn:', it must be a
2038 # user-defined property.
2039 ++$interesting_props and next if $_ !~ /^svn:/;
2040 # FIXME: Fragile, if SVN adds new public properties,
2041 # this needs to be updated.
2042 ++$interesting_props if /^svn:(?:ignore|keywords|executable
2043 |eol-style|mime-type
2044 |externals|needs-lock)$/x;
2045 }
2046 &$sub($self, $p, $props) if $interesting_props;
2047
9b981fc6 2048 foreach (sort keys %$dirent) {
0dc03d6a 2049 next if $dirent->{$_}->{kind} != $SVN::Node::dir;
b7166cce 2050 $self->prop_walk($self->{path} . $p . $_, $rev, $sub);
9b981fc6
EW
2051 }
2052}
2053
3ebe8df7
EW
2054sub last_rev { ($_[0]->last_rev_commit)[0] }
2055sub last_commit { ($_[0]->last_rev_commit)[1] }
2056
9b981fc6
EW
2057# returns the newest SVN revision number and newest commit SHA1
2058sub last_rev_commit {
2059 my ($self) = @_;
2060 if (defined $self->{last_rev} && defined $self->{last_commit}) {
2061 return ($self->{last_rev}, $self->{last_commit});
2062 }
d2866f9e 2063 my $c = ::verify_ref($self->refname.'^0');
91b03282 2064 if ($c && !$self->use_svm_props && !$self->no_metadata) {
d2866f9e 2065 my $rev = (::cmt_metadata($c))[1];
9b981fc6
EW
2066 if (defined $rev) {
2067 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
2068 return ($rev, $c);
2069 }
2070 }
060610c5
EW
2071 my $map_path = $self->map_path;
2072 unless (-e $map_path) {
26a62d57
EW
2073 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
2074 return (undef, undef);
2075 }
66ab84b9 2076 my ($rev, $commit) = $self->rev_map_max(1);
060610c5
EW
2077 ($self->{last_rev}, $self->{last_commit}) = ($rev, $commit);
2078 return ($rev, $commit);
9b981fc6
EW
2079}
2080
3ebe8df7
EW
2081sub get_fetch_range {
2082 my ($self, $min, $max) = @_;
2083 $max ||= $self->ra->get_latest_revnum;
060610c5 2084 $min ||= $self->rev_map_max;
3ebe8df7 2085 (++$min, $max);
9b981fc6
EW
2086}
2087
8a49ee97 2088sub tmp_config {
93f2689c 2089 my (@args) = @_;
b7e5348c
EW
2090 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
2091 my $config = "$ENV{GIT_DIR}/svn/.metadata";
38570a47 2092 if (! -f $config && -f $old_def_config) {
b7e5348c
EW
2093 rename $old_def_config, $config or
2094 die "Failed rename $old_def_config => $config: $!\n";
2095 }
8a49ee97 2096 my $old_config = $ENV{GIT_CONFIG};
93f2689c 2097 $ENV{GIT_CONFIG} = $config;
8a49ee97 2098 $@ = undef;
b4d57e5e
EW
2099 my @ret = eval {
2100 unless (-f $config) {
2101 mkfile($config);
2102 open my $fh, '>', $config or
2103 die "Can't open $config: $!\n";
2104 print $fh "; This file is used internally by ",
2105 "git-svn\n" or die
2106 "Couldn't write to $config: $!\n";
2107 print $fh "; You should not have to edit it\n" or
2108 die "Couldn't write to $config: $!\n";
2109 close $fh or die "Couldn't close $config: $!\n";
2110 }
2111 command('config', @args);
2112 };
8a49ee97
EW
2113 my $err = $@;
2114 if (defined $old_config) {
2115 $ENV{GIT_CONFIG} = $old_config;
2116 } else {
2117 delete $ENV{GIT_CONFIG};
2118 }
2119 die $err if $err;
2120 wantarray ? @ret : $ret[0];
2121}
2122
9b981fc6
EW
2123sub tmp_index_do {
2124 my ($self, $sub) = @_;
2125 my $old_index = $ENV{GIT_INDEX_FILE};
2126 $ENV{GIT_INDEX_FILE} = $self->{index};
8a49ee97 2127 $@ = undef;
b4d57e5e
EW
2128 my @ret = eval {
2129 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
2130 mkpath([$dir]) unless -d $dir;
2131 &$sub;
2132 };
8a49ee97
EW
2133 my $err = $@;
2134 if (defined $old_index) {
9b981fc6
EW
2135 $ENV{GIT_INDEX_FILE} = $old_index;
2136 } else {
2137 delete $ENV{GIT_INDEX_FILE};
2138 }
8a49ee97 2139 die $err if $err;
9b981fc6
EW
2140 wantarray ? @ret : $ret[0];
2141}
2142
2143sub assert_index_clean {
2144 my ($self, $treeish) = @_;
2145
2146 $self->tmp_index_do(sub {
2147 command_noisy('read-tree', $treeish) unless -e $self->{index};
2148 my $x = command_oneline('write-tree');
2149 my ($y) = (command(qw/cat-file commit/, $treeish) =~
2150 /^tree ($::sha1)/mo);
e8d120bd
EW
2151 return if $y eq $x;
2152
2153 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2154 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2155 command_noisy('read-tree', $treeish);
9b981fc6
EW
2156 $x = command_oneline('write-tree');
2157 if ($y ne $x) {
2158 ::fatal "trees ($treeish) $y != $x\n",
207f1a75 2159 "Something is seriously wrong...";
9b981fc6
EW
2160 }
2161 });
2162}
2163
2164sub get_commit_parents {
0af9c9f9 2165 my ($self, $log_entry) = @_;
9b981fc6 2166 my (%seen, @ret, @tmp);
0af9c9f9
EW
2167 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2168 if (my $ip = $self->{inject_parents}) {
2169 if (my $commit = delete $ip->{$log_entry->{revision}}) {
2170 push @tmp, $commit;
9b981fc6
EW
2171 }
2172 }
d2866f9e 2173 if (my $cur = ::verify_ref($self->refname.'^0')) {
9b981fc6
EW
2174 push @tmp, $cur;
2175 }
733a65aa
EW
2176 if (my $ipd = $self->{inject_parents_dcommit}) {
2177 if (my $commit = delete $ipd->{$log_entry->{revision}}) {
2178 push @tmp, @$commit;
2179 }
2180 }
44320b9e 2181 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
9b981fc6
EW
2182 while (my $p = shift @tmp) {
2183 next if $seen{$p};
2184 $seen{$p} = 1;
2185 push @ret, $p;
2186 # MAXPARENT is defined to 16 in commit-tree.c:
2187 last if @ret >= 16;
2188 }
2189 if (@tmp) {
44320b9e 2190 die "r$log_entry->{revision}: No room for parents:\n\t",
9b981fc6
EW
2191 join("\n\t", @tmp), "\n";
2192 }
2193 @ret;
2194}
2195
aea736cc
EW
2196sub rewrite_root {
2197 my ($self) = @_;
2198 return $self->{-rewrite_root} if exists $self->{-rewrite_root};
2199 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2200 my $rwr = eval { command_oneline(qw/config --get/, $k) };
2201 if ($rwr) {
2202 $rwr =~ s#/+$##;
2203 if ($rwr !~ m#^[a-z\+]+://#) {
2204 die "$rwr is not a valid URL (key: $k)\n";
2205 }
2206 }
2207 $self->{-rewrite_root} = $rwr;
2208}
2209
2210sub metadata_url {
2211 my ($self) = @_;
2212 ($self->rewrite_root || $self->{url}) .
2213 (length $self->{path} ? '/' . $self->{path} : '');
2214}
2215
706587fc 2216sub full_url {
9b981fc6 2217 my ($self) = @_;
5d3b7cd5 2218 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
9b981fc6
EW
2219}
2220
ad94802a
EW
2221
2222sub set_commit_header_env {
2223 my ($log_entry) = @_;
2224 my %env;
2225 foreach my $ned (qw/NAME EMAIL DATE/) {
2226 foreach my $ac (qw/AUTHOR COMMITTER/) {
2227 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2228 }
9b981fc6 2229 }
ad94802a 2230
70ae04e4
AW
2231 $ENV{GIT_AUTHOR_NAME} = $log_entry->{name};
2232 $ENV{GIT_AUTHOR_EMAIL} = $log_entry->{email};
44320b9e 2233 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
9b981fc6 2234
70ae04e4
AW
2235 $ENV{GIT_COMMITTER_NAME} = (defined $log_entry->{commit_name})
2236 ? $log_entry->{commit_name}
2237 : $log_entry->{name};
2238 $ENV{GIT_COMMITTER_EMAIL} = (defined $log_entry->{commit_email})
2239 ? $log_entry->{commit_email}
2240 : $log_entry->{email};
ad94802a
EW
2241 \%env;
2242}
70ae04e4 2243
ad94802a
EW
2244sub restore_commit_header_env {
2245 my ($env) = @_;
2246 foreach my $ned (qw/NAME EMAIL DATE/) {
2247 foreach my $ac (qw/AUTHOR COMMITTER/) {
2248 my $k = "GIT_${ac}_${ned}";
2249 if (defined $env->{$k}) {
2250 $ENV{$k} = $env->{$k};
2251 } else {
2252 delete $ENV{$k};
2253 }
2254 }
2255 }
2256}
2257
94bc914c
KW
2258sub gc {
2259 command_noisy('gc', '--auto');
2260};
2261
ad94802a
EW
2262sub do_git_commit {
2263 my ($self, $log_entry) = @_;
2264 my $lr = $self->last_rev;
2265 if (defined $lr && $lr >= $log_entry->{revision}) {
2266 die "Last fetched revision of ", $self->refname,
2267 " was r$lr, but we are about to fetch: ",
2268 "r$log_entry->{revision}!\n";
2269 }
2270 if (my $c = $self->rev_map_get($log_entry->{revision})) {
2271 croak "$log_entry->{revision} = $c already exists! ",
2272 "Why are we refetching it?\n";
2273 }
2274 my $old_env = set_commit_header_env($log_entry);
44320b9e 2275 my $tree = $log_entry->{tree};
9b981fc6
EW
2276 if (!defined $tree) {
2277 $tree = $self->tmp_index_do(sub {
2278 command_oneline('write-tree') });
2279 }
2280 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2281
e855bfc0 2282 my @exec = ('git', 'commit-tree', $tree);
0af9c9f9 2283 foreach ($self->get_commit_parents($log_entry)) {
9b981fc6
EW
2284 push @exec, '-p', $_;
2285 }
2286 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2287 or croak $!;
16fc08e2
EW
2288 binmode $msg_fh;
2289
2290 # we always get UTF-8 from SVN, but we may want our commits in
2291 # a different encoding.
2292 if (my $enc = Git::config('i18n.commitencoding')) {
2293 require Encode;
2294 Encode::from_to($log_entry->{log}, 'UTF-8', $enc);
2295 }
44320b9e 2296 print $msg_fh $log_entry->{log} or croak $!;
ad94802a 2297 restore_commit_header_env($old_env);
91b03282 2298 unless ($self->no_metadata) {
8a49ee97
EW
2299 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
2300 or croak $!;
9760adcc 2301 }
9b981fc6
EW
2302 $msg_fh->flush == 0 or croak $!;
2303 close $msg_fh or croak $!;
2304 chomp(my $commit = do { local $/; <$out_fh> });
2305 close $out_fh or croak $!;
2306 waitpid $pid, 0;
2307 croak $? if $?;
2308 if ($commit !~ /^$::sha1$/o) {
2309 die "Failed to commit, invalid sha1: $commit\n";
2310 }
2311
060610c5 2312 $self->rev_map_set($log_entry->{revision}, $commit, 1);
9b981fc6 2313
44320b9e 2314 $self->{last_rev} = $log_entry->{revision};
9b981fc6 2315 $self->{last_commit} = $commit;
8a49ee97
EW
2316 print "r$log_entry->{revision}";
2317 if (defined $log_entry->{svm_revision}) {
2318 print " (\@$log_entry->{svm_revision})";
060610c5 2319 $self->rev_map_set($log_entry->{svm_revision}, $commit,
26a62d57 2320 0, $self->svm_uuid);
8a49ee97
EW
2321 }
2322 print " = $commit ($self->{ref_id})\n";
94bc914c
KW
2323 if (--$_gc_nr == 0) {
2324 $_gc_nr = $_gc_period;
2325 gc();
2326 }
9b981fc6
EW
2327 return $commit;
2328}
2329
fbcc1737
EW
2330sub match_paths {
2331 my ($self, $paths, $r) = @_;
4e9f6cc7 2332 return 1 if $self->{path} eq '';
d542aedb
EW
2333 if (my $path = $paths->{"/$self->{path}"}) {
2334 return ($path->{action} eq 'D') ? 0 : 1;
2335 }
4e9f6cc7 2336 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
fbcc1737
EW
2337 if (grep /$self->{path_regex}/, keys %$paths) {
2338 return 1;
2339 }
2340 my $c = '';
2341 foreach (split m#/#, $self->{path}) {
2342 $c .= "/$_";
74a81227
EW
2343 next unless ($paths->{$c} &&
2344 ($paths->{$c}->{action} =~ /^[AR]$/));
e518192f
EW
2345 if ($self->ra->check_path($self->{path}, $r) ==
2346 $SVN::Node::dir) {
fbcc1737
EW
2347 return 1;
2348 }
2349 }
2350 return 0;
2351}
2352
15710b6f
EW
2353sub find_parent_branch {
2354 my ($self, $paths, $rev) = @_;
91b03282 2355 return undef unless $self->follow_parent;
e5a0b240 2356 unless (defined $paths) {
c7eba716
EW
2357 my $err_handler = $SVN::Error::handler;
2358 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
d4eff2bd
EW
2359 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1, sub {
2360 $paths =
2361 Git::SVN::Ra::dup_changed_paths($_[0]) });
c7eba716 2362 $SVN::Error::handler = $err_handler;
e5a0b240
EW
2363 }
2364 return undef unless defined $paths;
15710b6f
EW
2365
2366 # look for a parent from another branch:
7f578c55
EW
2367 my @b_path_components = split m#/#, $self->rel_path;
2368 my @a_path_components;
2369 my $i;
2370 while (@b_path_components) {
2371 $i = $paths->{'/'.join('/', @b_path_components)};
74a81227 2372 last if $i && defined $i->{copyfrom_path};
7f578c55
EW
2373 unshift(@a_path_components, pop(@b_path_components));
2374 }
74a81227
EW
2375 return undef unless defined $i && defined $i->{copyfrom_path};
2376 my $branch_from = $i->{copyfrom_path};
7f578c55
EW
2377 if (@a_path_components) {
2378 print STDERR "branch_from: $branch_from => ";
2379 $branch_from .= '/'.join('/', @a_path_components);
2380 print STDERR $branch_from, "\n";
2381 }
3ebe8df7 2382 my $r = $i->{copyfrom_rev};
15710b6f
EW
2383 my $repos_root = $self->ra->{repos_root};
2384 my $url = $self->ra->{url};
2385 my $new_url = $repos_root . $branch_from;
2386 print STDERR "Found possible branch point: ",
2387 "$new_url => ", $self->full_url, ", $r\n";
2388 $branch_from =~ s#^/##;
a8ae2623 2389 my $gs = Git::SVN->find_by_url($new_url, $repos_root, $branch_from);
15710b6f 2390 unless ($gs) {
ce2a0f2f
EW
2391 my $ref_id = $self->{ref_id};
2392 $ref_id =~ s/\@\d+$//;
2393 $ref_id .= "\@$r";
15710b6f
EW
2394 # just grow a tail if we're not unique enough :x
2395 $ref_id .= '-' while find_ref($ref_id);
ce2a0f2f 2396 print STDERR "Initializing parent: $ref_id\n";
f61cc48d 2397 my ($u, $p, $repo_id) = ($new_url, '', $ref_id);
c586879c
EW
2398 if ($u =~ s#^\Q$url\E(/|$)##) {
2399 $p = $u;
2400 $u = $url;
f61cc48d 2401 $repo_id = $self->{repo_id};
c586879c 2402 }
f61cc48d 2403 $gs = Git::SVN->init($u, $p, $repo_id, $ref_id, 1);
15710b6f
EW
2404 }
2405 my ($r0, $parent) = $gs->find_rev_before($r, 1);
553589f7
DM
2406 {
2407 my ($base, $head);
2408 if (!defined $r0 || !defined $parent) {
2409 ($base, $head) = parse_revision_argument(0, $r);
2410 } else {
2411 if ($r0 < $r) {
2412 $gs->ra->get_log([$gs->{path}], $r0 + 1, $r, 1,
2413 0, 1, sub { $base = $_[1] - 1 });
2414 }
2415 }
2416 if (defined $base && $base <= $r) {
d627de6b
EW
2417 $gs->fetch($base, $r);
2418 }
553589f7 2419 ($r0, $parent) = $gs->find_rev_before($r, 1);
15710b6f 2420 }
ef70de96 2421 if (defined $r0 && defined $parent) {
15710b6f 2422 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n";
15710b6f
EW
2423 my $ed;
2424 if ($self->ra->can_do_switch) {
2e5e2480 2425 $self->assert_index_clean($parent);
8b8fc068 2426 print STDERR "Following parent with do_switch\n";
15710b6f 2427 # do_switch works with svn/trunk >= r22312, but that
2b27f6c8 2428 # is not included with SVN 1.4.3 (the latest version
15710b6f
EW
2429 # at the moment), so we can't rely on it
2430 $self->{last_commit} = $parent;
2431 $ed = SVN::Git::Fetcher->new($self);
8a603774 2432 $gs->ra->gs_do_switch($r0, $rev, $gs,
15710b6f
EW
2433 $self->full_url, $ed)
2434 or die "SVN connection failed somewhere...\n";
9ff74e95
SW
2435 } elsif ($self->ra->trees_match($new_url, $r0,
2436 $self->full_url, $rev)) {
2437 print STDERR "Trees match:\n",
2438 " $new_url\@$r0\n",
2439 " ${\$self->full_url}\@$rev\n",
2440 "Following parent with no changes\n";
2441 $self->tmp_index_do(sub {
2442 command_noisy('read-tree', $parent);
2443 });
2444 $self->{last_commit} = $parent;
15710b6f 2445 } else {
8b8fc068 2446 print STDERR "Following parent with do_update\n";
15710b6f 2447 $ed = SVN::Git::Fetcher->new($self);
8a603774 2448 $self->ra->gs_do_update($rev, $rev, $self, $ed)
15710b6f
EW
2449 or die "SVN connection failed somewhere...\n";
2450 }
f7c3fc4a 2451 print STDERR "Successfully followed parent\n";
15710b6f
EW
2452 return $self->make_log_entry($rev, [$parent], $ed);
2453 }
15710b6f
EW
2454 return undef;
2455}
2456
9b981fc6 2457sub do_fetch {
706587fc 2458 my ($self, $paths, $rev) = @_;
15710b6f 2459 my $ed;
9b981fc6 2460 my ($last_rev, @parents);
b9dffd8c
EW
2461 if (my $lc = $self->last_commit) {
2462 # we can have a branch that was deleted, then re-added
2463 # under the same name but copied from another path, in
2464 # which case we'll have multiple parents (we don't
2465 # want to break the original ref, nor lose copypath info):
2466 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2467 push @{$log_entry->{parents}}, $lc;
2468 return $log_entry;
2469 }
15710b6f 2470 $ed = SVN::Git::Fetcher->new($self);
9b981fc6 2471 $last_rev = $self->{last_rev};
b9dffd8c
EW
2472 $ed->{c} = $lc;
2473 @parents = ($lc);
9b981fc6
EW
2474 } else {
2475 $last_rev = $rev;
15710b6f
EW
2476 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2477 return $log_entry;
2478 }
2479 $ed = SVN::Git::Fetcher->new($self);
9b981fc6 2480 }
8a603774 2481 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
9b981fc6
EW
2482 die "SVN connection failed somewhere...\n";
2483 }
2484 $self->make_log_entry($rev, \@parents, $ed);
2485}
2486
97f6987a
EW
2487sub get_untracked {
2488 my ($self, $ed) = @_;
2489 my @out;
2490 my $h = $ed->{empty};
9b981fc6
EW
2491 foreach (sort keys %$h) {
2492 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
97f6987a 2493 push @out, " $act: " . uri_encode($_);
9b981fc6
EW
2494 warn "W: $act: $_\n";
2495 }
2496 foreach my $t (qw/dir_prop file_prop/) {
97f6987a 2497 $h = $ed->{$t} or next;
9b981fc6
EW
2498 foreach my $path (sort keys %$h) {
2499 my $ppath = $path eq '' ? '.' : $path;
2500 foreach my $prop (sort keys %{$h->{$path}}) {
1ce255dc 2501 next if $SKIP_PROP{$prop};
9b981fc6 2502 my $v = $h->{$path}->{$prop};
97f6987a
EW
2503 my $t_ppath_prop = "$t: " .
2504 uri_encode($ppath) . ' ' .
2505 uri_encode($prop);
9b981fc6 2506 if (defined $v) {
97f6987a
EW
2507 push @out, " +$t_ppath_prop " .
2508 uri_encode($v);
9b981fc6 2509 } else {
97f6987a 2510 push @out, " -$t_ppath_prop";
9b981fc6
EW
2511 }
2512 }
2513 }
2514 }
2515 foreach my $t (qw/absent_file absent_directory/) {
97f6987a 2516 $h = $ed->{$t} or next;
9b981fc6
EW
2517 foreach my $parent (sort keys %$h) {
2518 foreach my $path (sort @{$h->{$parent}}) {
97f6987a
EW
2519 push @out, " $t: " .
2520 uri_encode("$parent/$path");
9b981fc6
EW
2521 warn "W: $t: $parent/$path ",
2522 "Insufficient permissions?\n";
2523 }
2524 }
2525 }
97f6987a 2526 \@out;
9b981fc6
EW
2527}
2528
1c8443b0
EW
2529sub parse_svn_date {
2530 my $date = shift || return '+0000 1970-01-01 00:00:00';
2531 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
2532 (\d\d)\:(\d\d)\:(\d\d).\d+Z$/x) or
2533 croak "Unable to parse date: $date\n";
2534 "+0000 $Y-$m-$d $H:$M:$S";
2535}
2536
2537sub check_author {
2538 my ($author) = @_;
2539 if (!defined $author || length $author == 0) {
2540 $author = '(no author)';
9231f500 2541 } elsif (defined $::_authors && ! defined $::users{$author}) {
1c8443b0
EW
2542 die "Author: $author not defined in $::_authors file\n";
2543 }
2544 $author;
2545}
2546
9b981fc6 2547sub make_log_entry {
97f6987a
EW
2548 my ($self, $rev, $parents, $ed) = @_;
2549 my $untracked = $self->get_untracked($ed);
2550
9b981fc6 2551 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
97f6987a
EW
2552 print $un "r$rev\n" or croak $!;
2553 print $un $_, "\n" foreach @$untracked;
2554 my %log_entry = ( parents => $parents || [], revision => $rev,
2555 log => '');
fbcc1737 2556
8a49ee97 2557 my $headrev;
fbcc1737 2558 my $logged = delete $self->{logged_rev_props};
8a49ee97 2559 if (!$logged || $self->{-want_revprops}) {
fbcc1737
EW
2560 my $rp = $self->ra->rev_proplist($rev);
2561 foreach (sort keys %$rp) {
2562 my $v = $rp->{$_};
2563 if (/^svn:(author|date|log)$/) {
2564 $log_entry{$1} = $v;
8a49ee97
EW
2565 } elsif ($_ eq 'svm:headrev') {
2566 $headrev = $v;
fbcc1737
EW
2567 } else {
2568 print $un " rev_prop: ", uri_encode($_), ' ',
2569 uri_encode($v), "\n";
2570 }
9b981fc6 2571 }
fbcc1737
EW
2572 } else {
2573 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
9b981fc6
EW
2574 }
2575 close $un or croak $!;
97f6987a 2576
9b981fc6 2577 $log_entry{date} = parse_svn_date($log_entry{date});
9b981fc6 2578 $log_entry{log} .= "\n";
db03cd24
EW
2579 my $author = $log_entry{author} = check_author($log_entry{author});
2580 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
70ae04e4
AW
2581 : ($author, undef);
2582
2583 my ($commit_name, $commit_email) = ($name, $email);
2584 if ($_use_log_author) {
5ff6aae8
AW
2585 my $name_field;
2586 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
2587 $name_field = $1;
2588 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
2589 $name_field = $1;
2590 }
2591 if (!defined $name_field) {
abfa533d
SB
2592 if (!defined $email) {
2593 $email = $name;
2594 }
5ff6aae8 2595 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
70ae04e4 2596 ($name, $email) = ($1, $2);
5ff6aae8
AW
2597 } elsif ($name_field =~ /(.*)@/) {
2598 ($name, $email) = ($1, $name_field);
2599 } else {
abfa533d 2600 ($name, $email) = ($name_field, $name_field);
70ae04e4
AW
2601 }
2602 }
91b03282 2603 if (defined $headrev && $self->use_svm_props) {
aea736cc
EW
2604 if ($self->rewrite_root) {
2605 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
2606 "options set!\n";
2607 }
8a49ee97 2608 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$};
befc9adc
EW
2609 # we don't want "SVM: initializing mirror for junk" ...
2610 return undef if $r == 0;
2611 my $svm = $self->svm;
2612 if ($uuid ne $svm->{uuid}) {
8a49ee97 2613 die "UUID mismatch on SVM path:\n",
befc9adc 2614 "expected: $svm->{uuid}\n",
8a49ee97
EW
2615 " got: $uuid\n";
2616 }
befc9adc
EW
2617 my $full_url = $self->full_url;
2618 $full_url =~ s#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
2619 die "Failed to replace '$svm->{replace}' with ",
2620 "'$svm->{source}' in $full_url\n";
18ea92bd
SV
2621 # throw away username for storing in records
2622 remove_username($full_url);
8a49ee97
EW
2623 $log_entry{metadata} = "$full_url\@$r $uuid";
2624 $log_entry{svm_revision} = $r;
70ae04e4
AW
2625 $email ||= "$author\@$uuid";
2626 $commit_email ||= "$author\@$uuid";
62e349d2
EW
2627 } elsif ($self->use_svnsync_props) {
2628 my $full_url = $self->svnsync->{url};
2629 $full_url .= "/$self->{path}" if length $self->{path};
ce118739 2630 remove_username($full_url);
62e349d2
EW
2631 my $uuid = $self->svnsync->{uuid};
2632 $log_entry{metadata} = "$full_url\@$rev $uuid";
70ae04e4
AW
2633 $email ||= "$author\@$uuid";
2634 $commit_email ||= "$author\@$uuid";
8a49ee97 2635 } else {
ce118739
AR
2636 my $url = $self->metadata_url;
2637 remove_username($url);
2638 $log_entry{metadata} = "$url\@$rev " .
26a62d57 2639 $self->ra->get_uuid;
db03cd24 2640 $email ||= "$author\@" . $self->ra->get_uuid;
70ae04e4 2641 $commit_email ||= "$author\@" . $self->ra->get_uuid;
8a49ee97 2642 }
db03cd24
EW
2643 $log_entry{name} = $name;
2644 $log_entry{email} = $email;
70ae04e4
AW
2645 $log_entry{commit_name} = $commit_name;
2646 $log_entry{commit_email} = $commit_email;
9b981fc6
EW
2647 \%log_entry;
2648}
2649
2650sub fetch {
3ebe8df7 2651 my ($self, $min_rev, $max_rev, @parents) = @_;
9b981fc6 2652 my ($last_rev, $last_commit) = $self->last_rev_commit;
3ebe8df7 2653 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
e518192f 2654 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
9b981fc6
EW
2655}
2656
2657sub set_tree_cb {
2658 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
490f49ea
EW
2659 $self->{inject_parents} = { $rev => $tree };
2660 $self->fetch(undef, undef);
9b981fc6
EW
2661}
2662
2663sub set_tree {
2664 my ($self, $tree) = (shift, shift);
1ce255dc 2665 my $log_entry = ::get_commit_entry($tree);
9b981fc6 2666 unless ($self->{last_rev}) {
0a1a1c86 2667 ::fatal("Must have an existing revision to commit");
9b981fc6 2668 }
61395354
EW
2669 my %ed_opts = ( r => $self->{last_rev},
2670 log => $log_entry->{log},
2671 ra => $self->ra,
2672 tree_a => $self->{last_commit},
2673 tree_b => $tree,
2674 editor_cb => sub {
2675 $self->set_tree_cb($log_entry, $tree, @_) },
2676 svn_path => $self->{path} );
2677 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
9b981fc6
EW
2678 print "No changes\nr$self->{last_rev} = $tree\n";
2679 }
9b981fc6
EW
2680}
2681
060610c5
EW
2682sub rebuild_from_rev_db {
2683 my ($self, $path) = @_;
2684 my $r = -1;
2685 open my $fh, '<', $path or croak "open: $!";
4f7ec797 2686 binmode $fh or croak "binmode: $!";
060610c5
EW
2687 while (<$fh>) {
2688 length($_) == 41 or croak "inconsistent size in ($_) != 41";
2689 chomp($_);
2690 ++$r;
2691 next if $_ eq ('0' x 40);
2692 $self->rev_map_set($r, $_);
2693 print "r$r = $_\n";
2694 }
2695 close $fh or croak "close: $!";
2696 unlink $path or croak "unlink: $!";
2697}
2698
f0ecca10
EW
2699sub rebuild {
2700 my ($self) = @_;
060610c5 2701 my $map_path = $self->map_path;
2beec897 2702 my $partial = (-e $map_path && ! -z $map_path);
d6d3346b 2703 return unless ::verify_ref($self->refname.'^0');
2beec897 2704 if (!$partial && ($self->use_svm_props || $self->no_metadata)) {
060610c5
EW
2705 my $rev_db = $self->rev_db_path;
2706 $self->rebuild_from_rev_db($rev_db);
2707 if ($self->use_svm_props) {
2708 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
2709 $self->rebuild_from_rev_db($svm_rev_db);
2710 }
2711 $self->unlink_rev_db_symlink;
26a62d57
EW
2712 return;
2713 }
2beec897
DM
2714 print "Rebuilding $map_path ...\n" if (!$partial);
2715 my ($base_rev, $head) = ($partial ? $self->rev_map_max_norebuild(1) :
2716 (undef, undef));
060610c5
EW
2717 my ($log, $ctx) =
2718 command_output_pipe(qw/rev-list --pretty=raw --no-color --reverse/,
2beec897
DM
2719 ($head ? "$head.." : "") . $self->refname,
2720 '--');
74b1e123
JK
2721 my $metadata_url = $self->metadata_url;
2722 remove_username($metadata_url);
060610c5 2723 my $svn_uuid = $self->ra_uuid;
3dfab993
SV
2724 my $c;
2725 while (<$log>) {
2726 if ( m{^commit ($::sha1)$} ) {
2727 $c = $1;
2728 next;
2729 }
2730 next unless s{^\s*(git-svn-id:)}{$1};
2731 my ($url, $rev, $uuid) = ::extract_metadata($_);
18ea92bd 2732 remove_username($url);
f0ecca10
EW
2733
2734 # ignore merges (from set-tree)
2735 next if (!defined $rev || !$uuid);
2736
2737 # if we merged or otherwise started elsewhere, this is
2738 # how we break out of it
060610c5 2739 if (($uuid ne $svn_uuid) ||
74b1e123 2740 ($metadata_url && $url && ($url ne $metadata_url))) {
f0ecca10
EW
2741 next;
2742 }
2beec897
DM
2743 if ($partial && $head) {
2744 print "Partial-rebuilding $map_path ...\n";
2745 print "Currently at $base_rev = $head\n";
2746 $head = undef;
2747 }
f0ecca10 2748
060610c5 2749 $self->rev_map_set($rev, $c);
f0ecca10
EW
2750 print "r$rev = $c\n";
2751 }
3dfab993 2752 command_close_pipe($log, $ctx);
2beec897 2753 print "Done rebuilding $map_path\n" if (!$partial || !$head);
060610c5
EW
2754 my $rev_db_path = $self->rev_db_path;
2755 if (-f $self->rev_db_path) {
2756 unlink $self->rev_db_path or croak "unlink: $!";
2757 }
2758 $self->unlink_rev_db_symlink;
f0ecca10
EW
2759}
2760
060610c5 2761# rev_map:
9b981fc6
EW
2762# Tie::File seems to be prone to offset errors if revisions get sparse,
2763# it's not that fast, either. Tie::File is also not in Perl 5.6. So
2764# one of my favorite modules is out :< Next up would be one of the DBM
060610c5
EW
2765# modules, but I'm not sure which is most portable...
2766#
2767# This is the replacement for the rev_db format, which was too big
2768# and inefficient for large repositories with a lot of sparse history
2769# (mainly tags)
2770#
2771# The format is this:
2772# - 24 bytes for every record,
2773# * 4 bytes for the integer representing an SVN revision number
2774# * 20 bytes representing the sha1 of a git commit
2775# - No empty padding records like the old format
66ab84b9 2776# (except the last record, which can be overwritten)
060610c5
EW
2777# - new records are written append-only since SVN revision numbers
2778# increase monotonically
2779# - lookups on SVN revision number are done via a binary search
66ab84b9
EW
2780# - Piping the file to xxd -c24 is a good way of dumping it for
2781# viewing or editing (piped back through xxd -r), should the need
2782# ever arise.
2783# - The last record can be padding revision with an all-zero sha1
2784# This is used to optimize fetch performance when using multiple
2785# "fetch" directives in .git/config
060610c5 2786#
97ae0911 2787# These files are disposable unless noMetadata or useSvmProps is set
9b981fc6 2788
060610c5 2789sub _rev_map_set {
26a62d57 2790 my ($fh, $rev, $commit) = @_;
060610c5 2791
4f7ec797 2792 binmode $fh or croak "binmode: $!";
060610c5
EW
2793 my $size = (stat($fh))[7];
2794 ($size % 24) == 0 or croak "inconsistent size: $size";
2795
66ab84b9 2796 my $wr_offset = 0;
060610c5
EW
2797 if ($size > 0) {
2798 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
2799 my $read = sysread($fh, my $buf, 24) or croak "read: $!";
2800 $read == 24 or croak "read only $read bytes (!= 24)";
2801 my ($last_rev, $last_commit) = unpack(rev_map_fmt, $buf);
66ab84b9
EW
2802 if ($last_commit eq ('0' x40)) {
2803 if ($size >= 48) {
2804 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2805 $read = sysread($fh, $buf, 24) or
2806 croak "read: $!";
2807 $read == 24 or
2808 croak "read only $read bytes (!= 24)";
2809 ($last_rev, $last_commit) =
2810 unpack(rev_map_fmt, $buf);
2811 if ($last_commit eq ('0' x40)) {
2812 croak "inconsistent .rev_map\n";
2813 }
2814 }
2815 if ($last_rev >= $rev) {
2816 croak "last_rev is higher!: $last_rev >= $rev";
2817 }
2818 $wr_offset = -24;
26a62d57
EW
2819 }
2820 }
66ab84b9 2821 sysseek($fh, $wr_offset, SEEK_END) or croak "seek: $!";
060610c5
EW
2822 syswrite($fh, pack(rev_map_fmt, $rev, $commit), 24) == 24 or
2823 croak "write: $!";
26a62d57
EW
2824}
2825
2826sub mkfile {
2827 my ($path) = @_;
2828 unless (-e $path) {
2829 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
2830 mkpath([$dir]) unless -d $dir;
2831 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
2832 close $fh or die "Couldn't close (create) $path: $!\n";
2833 }
2834}
2835
060610c5 2836sub rev_map_set {
26a62d57
EW
2837 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
2838 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
060610c5 2839 my $db = $self->map_path($uuid);
26a62d57 2840 my $db_lock = "$db.lock";
373274f9
EW
2841 my $sig;
2842 if ($update_ref) {
2843 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2844 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
2845 }
26a62d57
EW
2846 mkfile($db);
2847
373274f9 2848 $LOCKFILES{$db_lock} = 1;
97ae0911 2849 my $sync;
97ae0911
EW
2850 # both of these options make our .rev_db file very, very important
2851 # and we can't afford to lose it because rebuild() won't work
2852 if ($self->use_svm_props || $self->no_metadata) {
2853 $sync = 1;
060610c5 2854 copy($db, $db_lock) or die "rev_map_set(@_): ",
26a62d57 2855 "Failed to copy: ",
373274f9
EW
2856 "$db => $db_lock ($!)\n";
2857 } else {
060610c5 2858 rename $db, $db_lock or die "rev_map_set(@_): ",
26a62d57 2859 "Failed to rename: ",
373274f9
EW
2860 "$db => $db_lock ($!)\n";
2861 }
060610c5 2862
66ab84b9 2863 sysopen(my $fh, $db_lock, O_RDWR | O_CREAT)
060610c5
EW
2864 or croak "Couldn't open $db_lock: $!\n";
2865 _rev_map_set($fh, $rev, $commit);
97ae0911
EW
2866 if ($sync) {
2867 $fh->flush or die "Couldn't flush $db_lock: $!\n";
2868 $fh->sync or die "Couldn't sync $db_lock: $!\n";
2869 }
9b981fc6 2870 close $fh or croak $!;
373274f9 2871 if ($update_ref) {
1e889ef3 2872 $_head = $self;
373274f9
EW
2873 command_noisy('update-ref', '-m', "r$rev",
2874 $self->refname, $commit);
2875 }
060610c5 2876 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
373274f9
EW
2877 "$db_lock => $db ($!)\n";
2878 delete $LOCKFILES{$db_lock};
2879 if ($update_ref) {
2880 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2881 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
2882 kill $sig, $$ if defined $sig;
2883 }
9b981fc6
EW
2884}
2885
66ab84b9
EW
2886# If want_commit, this will return an array of (rev, commit) where
2887# commit _must_ be a valid commit in the archive.
2888# Otherwise, it'll return the max revision (whether or not the
2889# commit is valid or just a 0x40 placeholder).
060610c5 2890sub rev_map_max {
66ab84b9 2891 my ($self, $want_commit) = @_;
d6d3346b 2892 $self->rebuild;
2beec897
DM
2893 my ($r, $c) = $self->rev_map_max_norebuild($want_commit);
2894 $want_commit ? ($r, $c) : $r;
2895}
2896
2897sub rev_map_max_norebuild {
2898 my ($self, $want_commit) = @_;
060610c5 2899 my $map_path = $self->map_path;
66ab84b9 2900 stat $map_path or return $want_commit ? (0, undef) : 0;
060610c5 2901 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
4f7ec797 2902 binmode $fh or croak "binmode: $!";
060610c5
EW
2903 my $size = (stat($fh))[7];
2904 ($size % 24) == 0 or croak "inconsistent size: $size";
2905
2906 if ($size == 0) {
2907 close $fh or croak "close: $!";
66ab84b9 2908 return $want_commit ? (0, undef) : 0;
060610c5
EW
2909 }
2910
66ab84b9 2911 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
060610c5 2912 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
060610c5 2913 my ($r, $c) = unpack(rev_map_fmt, $buf);
66ab84b9
EW
2914 if ($want_commit && $c eq ('0' x40)) {
2915 if ($size < 48) {
2916 return $want_commit ? (0, undef) : 0;
2917 }
2918 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2919 sysread($fh, $buf, 24) == 24 or croak "read: $!";
2920 ($r, $c) = unpack(rev_map_fmt, $buf);
2921 if ($c eq ('0'x40)) {
2922 croak "Penultimate record is all-zeroes in $map_path";
2923 }
2924 }
2925 close $fh or croak "close: $!";
2926 $want_commit ? ($r, $c) : $r;
9c93fee5
EW
2927}
2928
060610c5 2929sub rev_map_get {
26a62d57 2930 my ($self, $rev, $uuid) = @_;
060610c5
EW
2931 my $map_path = $self->map_path($uuid);
2932 return undef unless -e $map_path;
2933
2934 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
4f7ec797 2935 binmode $fh or croak "binmode: $!";
060610c5
EW
2936 my $size = (stat($fh))[7];
2937 ($size % 24) == 0 or croak "inconsistent size: $size";
2938
2939 if ($size == 0) {
2940 close $fh or croak "close: $fh";
2941 return undef;
2942 }
2943
2944 my ($l, $u) = (0, $size - 24);
2945 my ($r, $c, $buf);
2946
2947 while ($l <= $u) {
2948 my $i = int(($l/24 + $u/24) / 2) * 24;
2949 sysseek($fh, $i, SEEK_SET) or croak "seek: $!";
2950 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
2951 my ($r, $c) = unpack('NH40', $buf);
2952
2953 if ($r < $rev) {
2954 $l = $i + 24;
2955 } elsif ($r > $rev) {
2956 $u = $i - 24;
2957 } else { # $r == $rev
2958 close($fh) or croak "close: $!";
66ab84b9 2959 return $c eq ('0' x 40) ? undef : $c;
060610c5 2960 }
9b981fc6 2961 }
060610c5
EW
2962 close($fh) or croak "close: $!";
2963 undef;
9b981fc6
EW
2964}
2965
111947ef
DK
2966# Finds the first svn revision that exists on (if $eq_ok is true) or
2967# before $rev for the current branch. It will not search any lower
2968# than $min_rev. Returns the git commit hash and svn revision number
2969# if found, else (undef, undef).
15710b6f 2970sub find_rev_before {
111947ef 2971 my ($self, $rev, $eq_ok, $min_rev) = @_;
15710b6f 2972 --$rev unless $eq_ok;
111947ef
DK
2973 $min_rev ||= 1;
2974 while ($rev >= $min_rev) {
060610c5 2975 if (my $c = $self->rev_map_get($rev)) {
15710b6f
EW
2976 return ($rev, $c);
2977 }
2978 --$rev;
2979 }
2980 return (undef, undef);
2981}
2982
111947ef
DK
2983# Finds the first svn revision that exists on (if $eq_ok is true) or
2984# after $rev for the current branch. It will not search any higher
2985# than $max_rev. Returns the git commit hash and svn revision number
2986# if found, else (undef, undef).
2987sub find_rev_after {
2988 my ($self, $rev, $eq_ok, $max_rev) = @_;
2989 ++$rev unless $eq_ok;
060610c5 2990 $max_rev ||= $self->rev_map_max;
111947ef 2991 while ($rev <= $max_rev) {
060610c5 2992 if (my $c = $self->rev_map_get($rev)) {
111947ef
DK
2993 return ($rev, $c);
2994 }
2995 ++$rev;
2996 }
2997 return (undef, undef);
2998}
2999
9b981fc6 3000sub _new {
706587fc
EW
3001 my ($class, $repo_id, $ref_id, $path) = @_;
3002 unless (defined $repo_id && length $repo_id) {
3003 $repo_id = $Git::SVN::default_repo_id;
3004 }
3005 unless (defined $ref_id && length $ref_id) {
8b8fc068 3006 $_[2] = $ref_id = $Git::SVN::default_ref_id;
706587fc 3007 }
7829f20f 3008 $_[1] = $repo_id;
706587fc
EW
3009 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
3010 $_[3] = $path = '' unless (defined $path);
b4d57e5e 3011 mkpath(["$ENV{GIT_DIR}/svn"]);
26a62d57
EW
3012 bless {
3013 ref_id => $ref_id, dir => $dir, index => "$dir/index",
8a49ee97 3014 path => $path, config => "$ENV{GIT_DIR}/svn/config",
060610c5 3015 map_root => "$dir/.rev_map", repo_id => $repo_id }, $class;
26a62d57
EW
3016}
3017
060610c5
EW
3018# for read-only access of old .rev_db formats
3019sub unlink_rev_db_symlink {
3020 my ($self) = @_;
3021 my $link = $self->rev_db_path;
3022 $link =~ s/\.[\w-]+$// or croak "missing UUID at the end of $link";
3023 if (-l $link) {
3024 unlink $link or croak "unlink: $link failed!";
3025 }
3026}
3027
3028sub rev_db_path {
3029 my ($self, $uuid) = @_;
3030 my $db_path = $self->map_path($uuid);
3031 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
3032 or croak "map_path: $db_path does not contain '/.rev_map.' !";
3033 $db_path;
3034}
3035
3036# the new replacement for .rev_db
3037sub map_path {
26a62d57
EW
3038 my ($self, $uuid) = @_;
3039 $uuid ||= $self->ra_uuid;
060610c5 3040 "$self->{map_root}.$uuid";
9b981fc6
EW
3041}
3042
1c8443b0
EW
3043sub uri_encode {
3044 my ($f) = @_;
3045 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
3046 $f
3047}
9b981fc6 3048
18ea92bd
SV
3049sub remove_username {
3050 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
3051}
3052
d976acfd
EW
3053package Git::SVN::Prompt;
3054use strict;
3055use warnings;
3056require SVN::Core;
3057use vars qw/$_no_auth_cache $_username/;
3058
3059sub simple {
30d055aa
EW
3060 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
3061 $may_save = undef if $_no_auth_cache;
3062 $default_username = $_username if defined $_username;
3063 if (defined $default_username && length $default_username) {
3064 if (defined $realm && length $realm) {
6f729591
EW
3065 print STDERR "Authentication realm: $realm\n";
3066 STDERR->flush;
30d055aa
EW
3067 }
3068 $cred->username($default_username);
3069 } else {
d976acfd 3070 username($cred, $realm, $may_save, $pool);
30d055aa
EW
3071 }
3072 $cred->password(_read_password("Password for '" .
3073 $cred->username . "': ", $realm));
3074 $cred->may_save($may_save);
3075 $SVN::_Core::SVN_NO_ERROR;
3076}
3077
d976acfd 3078sub ssl_server_trust {
30d055aa
EW
3079 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
3080 $may_save = undef if $_no_auth_cache;
6f729591 3081 print STDERR "Error validating server certificate for '$realm':\n";
fd499bcc
ER
3082 {
3083 no warnings 'once';
3084 # All variables SVN::Auth::SSL::* are used only once,
3085 # so we're shutting up Perl warnings about this.
3086 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
3087 print STDERR " - The certificate is not issued ",
3088 "by a trusted authority. Use the\n",
3089 " fingerprint to validate ",
3090 "the certificate manually!\n";
3091 }
3092 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
3093 print STDERR " - The certificate hostname ",
3094 "does not match.\n";
3095 }
3096 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
3097 print STDERR " - The certificate is not yet valid.\n";
3098 }
3099 if ($failures & $SVN::Auth::SSL::EXPIRED) {
3100 print STDERR " - The certificate has expired.\n";
3101 }
3102 if ($failures & $SVN::Auth::SSL::OTHER) {
3103 print STDERR " - The certificate has ",
3104 "an unknown error.\n";
3105 }
3106 } # no warnings 'once'
6f729591
EW
3107 printf STDERR
3108 "Certificate information:\n".
30d055aa
EW
3109 " - Hostname: %s\n".
3110 " - Valid: from %s until %s\n".
3111 " - Issuer: %s\n".
3112 " - Fingerprint: %s\n",
3113 map $cert_info->$_, qw(hostname valid_from valid_until
6f729591 3114 issuer_dname fingerprint);
30d055aa
EW
3115 my $choice;
3116prompt:
6f729591 3117 print STDERR $may_save ?
30d055aa
EW
3118 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
3119 "(R)eject or accept (t)emporarily? ";
6f729591 3120 STDERR->flush;
30d055aa
EW
3121 $choice = lc(substr(<STDIN> || 'R', 0, 1));
3122 if ($choice =~ /^t$/i) {
3123 $cred->may_save(undef);
3124 } elsif ($choice =~ /^r$/i) {
3125 return -1;
3126 } elsif ($may_save && $choice =~ /^p$/i) {
3127 $cred->may_save($may_save);
3128 } else {
3129 goto prompt;
3130 }
3131 $cred->accepted_failures($failures);
3132 $SVN::_Core::SVN_NO_ERROR;
3133}
3134
d976acfd 3135sub ssl_client_cert {
30d055aa
EW
3136 my ($cred, $realm, $may_save, $pool) = @_;
3137 $may_save = undef if $_no_auth_cache;
6f729591
EW
3138 print STDERR "Client certificate filename: ";
3139 STDERR->flush;
30d055aa
EW
3140 chomp(my $filename = <STDIN>);
3141 $cred->cert_file($filename);
3142 $cred->may_save($may_save);
3143 $SVN::_Core::SVN_NO_ERROR;
3144}
3145
d976acfd 3146sub ssl_client_cert_pw {
30d055aa
EW
3147 my ($cred, $realm, $may_save, $pool) = @_;
3148 $may_save = undef if $_no_auth_cache;
3149 $cred->password(_read_password("Password: ", $realm));
3150 $cred->may_save($may_save);
3151 $SVN::_Core::SVN_NO_ERROR;
3152}
3153
d976acfd 3154sub username {
30d055aa
EW
3155 my ($cred, $realm, $may_save, $pool) = @_;
3156 $may_save = undef if $_no_auth_cache;
3157 if (defined $realm && length $realm) {
6f729591 3158 print STDERR "Authentication realm: $realm\n";
30d055aa
EW
3159 }
3160 my $username;
3161 if (defined $_username) {
3162 $username = $_username;
3163 } else {
6f729591
EW
3164 print STDERR "Username: ";
3165 STDERR->flush;
30d055aa
EW
3166 chomp($username = <STDIN>);
3167 }
3168 $cred->username($username);
3169 $cred->may_save($may_save);
3170 $SVN::_Core::SVN_NO_ERROR;
3171}
3172
3173sub _read_password {
3174 my ($prompt, $realm) = @_;
6f729591
EW
3175 print STDERR $prompt;
3176 STDERR->flush;
30d055aa
EW
3177 require Term::ReadKey;
3178 Term::ReadKey::ReadMode('noecho');
3179 my $password = '';
3180 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
3181 last if $key =~ /[\012\015]/; # \n\r
3182 $password .= $key;
3183 }
3184 Term::ReadKey::ReadMode('restore');
6f729591
EW
3185 print STDERR "\n";
3186 STDERR->flush;
30d055aa
EW
3187 $password;
3188}
3189
27a1a801
EW
3190package SVN::Git::Fetcher;
3191use vars qw/@ISA/;
3192use strict;
3193use warnings;
3194use Carp qw/croak/;
ffe256f9 3195use File::Temp qw/tempfile/;
27a1a801
EW
3196use IO::File qw//;
3197
3198# file baton members: path, mode_a, mode_b, pool, fh, blob, base
3199sub new {
3200 my ($class, $git_svn) = @_;
3201 my $self = SVN::Delta::Editor->new;
3202 bless $self, $class;
dbc6c74d
EW
3203 if (exists $git_svn->{last_commit}) {
3204 $self->{c} = $git_svn->{last_commit};
3205 $self->{empty_symlinks} = _mark_empty_symlinks($git_svn);
3206 }
d2a9a87b
EW
3207 $self->{empty} = {};
3208 $self->{dir_prop} = {};
3209 $self->{file_prop} = {};
3210 $self->{absent_dir} = {};
3211 $self->{absent_file} = {};
ef3cfaad 3212 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
27a1a801
EW
3213 $self;
3214}
3215
dbc6c74d
EW
3216# this uses the Ra object, so it must be called before do_{switch,update},
3217# not inside them (when the Git::SVN::Fetcher object is passed) to
3218# do_{switch,update}
3219sub _mark_empty_symlinks {
3220 my ($git_svn) = @_;
3221 my %ret;
3222 my ($rev, $cmt) = $git_svn->last_rev_commit;
3223 return {} unless ($rev && $cmt);
3224
3225 chomp(my $empty_blob = `git hash-object -t blob --stdin < /dev/null`);
3226 my ($ls, $ctx) = command_output_pipe(qw/ls-tree -r -z/, $cmt);
3227 local $/ = "\0";
3228 my $pfx = $git_svn->{path};
3229 $pfx .= '/' if length($pfx);
3230 while (<$ls>) {
3231 chomp;
3232 s/\A100644 blob $empty_blob\t//o or next;
3233 my $path = $_;
3234 my (undef, $props) =
3235 $git_svn->ra->get_file($pfx.$path, $rev, undef);
3236 if ($props->{'svn:special'}) {
3237 $ret{$path} = 1;
3238 }
3239 }
3240 command_close_pipe($ls, $ctx);
3241 \%ret;
3242}
3243
8b8fc068
EW
3244sub set_path_strip {
3245 my ($self, $path) = @_;
4e9f6cc7 3246 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
8b8fc068
EW
3247}
3248
d2a9a87b
EW
3249sub open_root {
3250 { path => '' };
3251}
3252
3253sub open_directory {
3254 my ($self, $path, $pb, $rev) = @_;
3255 { path => $path };
3256}
3257
706587fc
EW
3258sub git_path {
3259 my ($self, $path) = @_;
2b27f6c8
EW
3260 if ($self->{path_strip}) {
3261 $path =~ s!$self->{path_strip}!! or
3262 die "Failed to strip path '$path' ($self->{path_strip})\n";
3263 }
706587fc
EW
3264 $path;
3265}
3266
27a1a801
EW
3267sub delete_entry {
3268 my ($self, $path, $rev, $pb) = @_;
4a87db0e 3269
706587fc 3270 my $gpath = $self->git_path($path);
8a603774
EW
3271 return undef if ($gpath eq '');
3272
4a87db0e 3273 # remove entire directories.
706587fc 3274 if (command('ls-tree', $self->{c}, '--', $gpath) =~ /^040000 tree/) {
4a87db0e
EW
3275 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3276 -r --name-only -z/,
706587fc 3277 $self->{c}, '--', $gpath);
4a87db0e
EW
3278 local $/ = "\0";
3279 while (<$ls>) {
ef3cfaad
EW
3280 chomp;
3281 $self->{gii}->remove($_);
9e3cdbd4 3282 print "\tD\t$_\n" unless $::_q;
4a87db0e 3283 }
9e3cdbd4 3284 print "\tD\t$gpath/\n" unless $::_q;
4a87db0e
EW
3285 command_close_pipe($ls, $ctx);
3286 $self->{empty}->{$path} = 0
3287 } else {
ef3cfaad 3288 $self->{gii}->remove($gpath);
9e3cdbd4 3289 print "\tD\t$gpath\n" unless $::_q;
4a87db0e 3290 }
27a1a801
EW
3291 undef;
3292}
3293
3294sub open_file {
3295 my ($self, $path, $pb, $rev) = @_;
706587fc
EW
3296 my $gpath = $self->git_path($path);
3297 my ($mode, $blob) = (command('ls-tree', $self->{c}, '--', $gpath)
27a1a801 3298 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
006ede5e
EW
3299 unless (defined $mode && defined $blob) {
3300 die "$path was not found in commit $self->{c} (r$rev)\n";
3301 }
dbc6c74d
EW
3302 if ($mode eq '100644' && $self->{empty_symlinks}->{$path}) {
3303 $mode = '120000';
3304 }
27a1a801 3305 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
0864e3ba 3306 pool => SVN::Pool->new, action => 'M' };
27a1a801
EW
3307}
3308
3309sub add_file {
3310 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
d2a9a87b
EW
3311 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3312 delete $self->{empty}->{$dir};
27a1a801 3313 { path => $path, mode_a => 100644, mode_b => 100644,
0864e3ba 3314 pool => SVN::Pool->new, action => 'A' };
27a1a801
EW
3315}
3316
d2a9a87b
EW
3317sub add_directory {
3318 my ($self, $path, $cp_path, $cp_rev) = @_;
12a6d752
EW
3319 my $gpath = $self->git_path($path);
3320 if ($gpath eq '') {
3321 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3322 -r --name-only -z/,
3323 $self->{c});
3324 local $/ = "\0";
3325 while (<$ls>) {
3326 chomp;
3327 $self->{gii}->remove($_);
3328 print "\tD\t$_\n" unless $::_q;
3329 }
3330 command_close_pipe($ls, $ctx);
3331 $self->{empty}->{$path} = 0;
3332 }
d2a9a87b
EW
3333 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3334 delete $self->{empty}->{$dir};
3335 $self->{empty}->{$path} = 1;
3336 { path => $path };
3337}
3338
3339sub change_dir_prop {
3340 my ($self, $db, $prop, $value) = @_;
3341 $self->{dir_prop}->{$db->{path}} ||= {};
3342 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
3343 undef;
3344}
3345
3346sub absent_directory {
3347 my ($self, $path, $pb) = @_;
3348 $self->{absent_dir}->{$pb->{path}} ||= [];
3349 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
3350 undef;
3351}
3352
3353sub absent_file {
3354 my ($self, $path, $pb) = @_;
3355 $self->{absent_file}->{$pb->{path}} ||= [];
3356 push @{$self->{absent_file}->{$pb->{path}}}, $path;
3357 undef;
3358}
3359
27a1a801
EW
3360sub change_file_prop {
3361 my ($self, $fb, $prop, $value) = @_;
3362 if ($prop eq 'svn:executable') {
3363 if ($fb->{mode_b} != 120000) {
3364 $fb->{mode_b} = defined $value ? 100755 : 100644;
3365 }
3366 } elsif ($prop eq 'svn:special') {
3367 $fb->{mode_b} = defined $value ? 120000 : 100644;
d2a9a87b
EW
3368 } else {
3369 $self->{file_prop}->{$fb->{path}} ||= {};
3370 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
27a1a801
EW
3371 }
3372 undef;
3373}
3374
3375sub apply_textdelta {
3376 my ($self, $fb, $exp) = @_;
1b3069a7 3377 my $fh = $::_repository->temp_acquire('svn_delta');
27a1a801
EW
3378 # $fh gets auto-closed() by SVN::TxDelta::apply(),
3379 # (but $base does not,) so dup() it for reading in close_file
3380 open my $dup, '<&', $fh or croak $!;
1b3069a7 3381 my $base = $::_repository->temp_acquire('git_blob');
27a1a801 3382 if ($fb->{blob}) {
baf5fa8a
EW
3383 my ($base_is_link, $size);
3384
dbc6c74d
EW
3385 if ($fb->{mode_a} eq '120000' &&
3386 ! $self->{empty_symlinks}->{$fb->{path}}) {
3387 print $base 'link ' or die "print $!\n";
baf5fa8a 3388 $base_is_link = 1;
dbc6c74d 3389 }
baf5fa8a
EW
3390 retry:
3391 $size = $::_repository->cat_blob($fb->{blob}, $base);
d683a0e0 3392 die "Failed to read object $fb->{blob}" if ($size < 0);
27a1a801
EW
3393
3394 if (defined $exp) {
3395 seek $base, 0, 0 or croak $!;
8d7c4fad 3396 my $got = ::md5sum($base);
baf5fa8a
EW
3397 if ($got ne $exp) {
3398 my $err = "Checksum mismatch: ".
3399 "$fb->{path} $fb->{blob}\n" .
3400 "expected: $exp\n" .
3401 " got: $got\n";
3402 if ($base_is_link) {
3403 warn $err,
3404 "Retrying... (possibly ",
3405 "a bad symlink from SVN)\n";
3406 $::_repository->temp_reset($base);
3407 $base_is_link = 0;
3408 goto retry;
3409 }
3410 die $err;
3411 }
27a1a801
EW
3412 }
3413 }
3414 seek $base, 0, 0 or croak $!;
0b19138b 3415 $fb->{fh} = $fh;
27a1a801 3416 $fb->{base} = $base;
0b19138b 3417 [ SVN::TxDelta::apply($base, $dup, undef, $fb->{path}, $fb->{pool}) ];
27a1a801
EW
3418}
3419
3420sub close_file {
3421 my ($self, $fb, $exp) = @_;
3422 my $hash;
706587fc 3423 my $path = $self->git_path($fb->{path});
27a1a801 3424 if (my $fh = $fb->{fh}) {
7faf0686
EW
3425 if (defined $exp) {
3426 seek($fh, 0, 0) or croak $!;
8d7c4fad 3427 my $got = ::md5sum($fh);
7faf0686
EW
3428 if ($got ne $exp) {
3429 die "Checksum mismatch: $path\n",
3430 "expected: $exp\n got: $got\n";
3431 }
3432 }
27a1a801 3433 if ($fb->{mode_b} == 120000) {
510b0945 3434 sysseek($fh, 0, 0) or croak $!;
dbc6c74d 3435 my $rd = sysread($fh, my $buf, 5);
ffe256f9 3436
dbc6c74d
EW
3437 if (!defined $rd) {
3438 croak "sysread: $!\n";
3439 } elsif ($rd == 0) {
3440 warn "$path has mode 120000",
3441 " but it points to nothing\n",
3442 "converting to an empty file with mode",
3443 " 100644\n";
3444 $fb->{mode_b} = '100644';
3445 } elsif ($buf ne 'link ') {
510b0945 3446 warn "$path has mode 120000",
dbc6c74d 3447 " but is not a link\n";
510b0945 3448 } else {
1b3069a7
MS
3449 my $tmp_fh = $::_repository->temp_acquire(
3450 'svn_hash');
510b0945
MG
3451 my $res;
3452 while ($res = sysread($fh, my $str, 1024)) {
3453 my $out = syswrite($tmp_fh, $str, $res);
3454 defined($out) && $out == $res
3455 or croak("write ",
836ff95d 3456 Git::temp_path($tmp_fh),
510b0945
MG
3457 ": $!\n");
3458 }
3459 defined $res or croak $!;
ffe256f9 3460
510b0945
MG
3461 ($fh, $tmp_fh) = ($tmp_fh, $fh);
3462 Git::temp_release($tmp_fh, 1);
3463 }
3464 }
0b19138b
MG
3465
3466 $hash = $::_repository->hash_and_insert_object(
836ff95d 3467 Git::temp_path($fh));
27a1a801 3468 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
0b19138b
MG
3469
3470 Git::temp_release($fb->{base}, 1);
510b0945 3471 Git::temp_release($fh, 1);
27a1a801
EW
3472 } else {
3473 $hash = $fb->{blob} or die "no blob information\n";
3474 }
3475 $fb->{pool}->clear;
ef3cfaad 3476 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
9e3cdbd4 3477 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
27a1a801
EW
3478 undef;
3479}
3480
3481sub abort_edit {
3482 my $self = shift;
ef3cfaad
EW
3483 $self->{nr} = $self->{gii}->{nr};
3484 delete $self->{gii};
27a1a801
EW
3485 $self->SUPER::abort_edit(@_);
3486}
3487
3488sub close_edit {
3489 my $self = shift;
dad73c0b 3490 $self->{git_commit_ok} = 1;
ef3cfaad
EW
3491 $self->{nr} = $self->{gii}->{nr};
3492 delete $self->{gii};
27a1a801
EW
3493 $self->SUPER::close_edit(@_);
3494}
1a82e793 3495
a5e0cedc 3496package SVN::Git::Editor;
24e22aa8 3497use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
a5e0cedc
EW
3498use strict;
3499use warnings;
3500use Carp qw/croak/;
3501use IO::File;
3502
3503sub new {
61395354
EW
3504 my ($class, $opts) = @_;
3505 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
3506 die "$_ required!\n" unless (defined $opts->{$_});
3507 }
3508
3509 my $pool = SVN::Pool->new;
3510 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
3511 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
3512 $opts->{r}, $mods);
3513
3514 # $opts->{ra} functions should not be used after this:
3515 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
3516 $opts->{editor_cb}, $pool);
3517 my $self = SVN::Delta::Editor->new(@ce, $pool);
a5e0cedc 3518 bless $self, $class;
61395354
EW
3519 foreach (qw/svn_path r tree_a tree_b/) {
3520 $self->{$_} = $opts->{$_};
a5e0cedc 3521 }
61395354
EW
3522 $self->{url} = $opts->{ra}->{url};
3523 $self->{mods} = $mods;
3524 $self->{types} = $types;
3525 $self->{pool} = $pool;
a5e0cedc
EW
3526 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
3527 $self->{rm} = { };
d3a840dc
EW
3528 $self->{path_prefix} = length $self->{svn_path} ?
3529 "$self->{svn_path}/" : '';
128de657 3530 $self->{config} = $opts->{config};
a5e0cedc
EW
3531 return $self;
3532}
3533
61395354
EW
3534sub generate_diff {
3535 my ($tree_a, $tree_b) = @_;
3536 my @diff_tree = qw(diff-tree -z -r);
24e22aa8
EW
3537 if ($_cp_similarity) {
3538 push @diff_tree, "-C$_cp_similarity";
61395354
EW
3539 } else {
3540 push @diff_tree, '-C';
3541 }
24e22aa8
EW
3542 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
3543 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
61395354
EW
3544 push @diff_tree, $tree_a, $tree_b;
3545 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
3546 local $/ = "\0";
3547 my $state = 'meta';
3548 my @mods;
3549 while (<$diff_fh>) {
3550 chomp $_; # this gets rid of the trailing "\0"
3551 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
2d0c8acc 3552 ($::sha1)\s($::sha1)\s
61395354
EW
3553 ([MTCRAD])\d*$/xo) {
3554 push @mods, { mode_a => $1, mode_b => $2,
2d0c8acc
FW
3555 sha1_a => $3, sha1_b => $4,
3556 chg => $5 };
3557 if ($5 =~ /^(?:C|R)$/) {
61395354
EW
3558 $state = 'file_a';
3559 } else {
3560 $state = 'file_b';
3561 }
3562 } elsif ($state eq 'file_a') {
3563 my $x = $mods[$#mods] or croak "Empty array\n";
3564 if ($x->{chg} !~ /^(?:C|R)$/) {
3565 croak "Error parsing $_, $x->{chg}\n";
3566 }
3567 $x->{file_a} = $_;
3568 $state = 'file_b';
3569 } elsif ($state eq 'file_b') {
3570 my $x = $mods[$#mods] or croak "Empty array\n";
3571 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
3572 croak "Error parsing $_, $x->{chg}\n";
3573 }
3574 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
3575 croak "Error parsing $_, $x->{chg}\n";
3576 }
3577 $x->{file_b} = $_;
3578 $state = 'meta';
3579 } else {
3580 croak "Error parsing $_\n";
3581 }
3582 }
3583 command_close_pipe($diff_fh, $ctx);
3584 \@mods;
3585}
3586
3587sub check_diff_paths {
3588 my ($ra, $pfx, $rev, $mods) = @_;
3589 my %types;
3590 $pfx .= '/' if length $pfx;
3591
3592 sub type_diff_paths {
3593 my ($ra, $types, $path, $rev) = @_;
3594 my @p = split m#/+#, $path;
3595 my $c = shift @p;
3596 unless (defined $types->{$c}) {
3597 $types->{$c} = $ra->check_path($c, $rev);
3598 }
3599 while (@p) {
3600 $c .= '/' . shift @p;
3601 next if defined $types->{$c};
3602 $types->{$c} = $ra->check_path($c, $rev);
3603 }
3604 }
3605
3606 foreach my $m (@$mods) {
3607 foreach my $f (qw/file_a file_b/) {
3608 next unless defined $m->{$f};
3609 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
3610 if (length $pfx.$dir && ! defined $types{$dir}) {
3611 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
3612 }
3613 }
3614 }
3615 \%types;
3616}
3617
a5e0cedc
EW
3618sub split_path {
3619 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
3620}
3621
3622sub repo_path {
d3a840dc
EW
3623 my ($self, $path) = @_;
3624 $self->{path_prefix}.(defined $path ? $path : '');
a5e0cedc
EW
3625}
3626
3627sub url_path {
3628 my ($self, $path) = @_;
29633bb9 3629 if ($self->{url} =~ m#^https?://#) {
6a004d3f 3630 $path =~ s/([^~a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg;
29633bb9 3631 }
6e8548cc 3632 $self->{url} . '/' . $self->repo_path($path);
a5e0cedc
EW
3633}
3634
3635sub rmdirs {
61395354 3636 my ($self) = @_;
a5e0cedc
EW
3637 my $rm = $self->{rm};
3638 delete $rm->{''}; # we never delete the url we're tracking
3639 return unless %$rm;
3640
3641 foreach (keys %$rm) {
3642 my @d = split m#/#, $_;
3643 my $c = shift @d;
3644 $rm->{$c} = 1;
3645 while (@d) {
3646 $c .= '/' . shift @d;
3647 $rm->{$c} = 1;
3648 }
3649 }
3650 delete $rm->{$self->{svn_path}};
3651 delete $rm->{''}; # we never delete the url we're tracking
3652 return unless %$rm;
3653
61395354
EW
3654 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
3655 $self->{tree_b});
a5e0cedc
EW
3656 local $/ = "\0";
3657 while (<$fh>) {
3658 chomp;
747fa12c 3659 my @dn = split m#/#, $_;
c07eee1f
EW
3660 while (pop @dn) {
3661 delete $rm->{join '/', @dn};
3662 }
3663 unless (%$rm) {
22600a25 3664 close $fh;
c07eee1f
EW
3665 return;
3666 }
a5e0cedc 3667 }
aef4e921 3668 command_close_pipe($fh, $ctx);
c07eee1f 3669
a5e0cedc
EW
3670 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
3671 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
3672 $self->close_directory($bat->{$d}, $p);
3673 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
44320b9e 3674 print "\tD+\t$d/\n" unless $::_q;
a5e0cedc
EW
3675 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
3676 delete $bat->{$d};
3677 }
3678}
3679
3680sub open_or_add_dir {
3681 my ($self, $full_path, $baton) = @_;
6e8548cc
EW
3682 my $t = $self->{types}->{$full_path};
3683 if (!defined $t) {
3684 die "$full_path not known in r$self->{r} or we have a bug!\n";
3685 }
fd499bcc
ER
3686 {
3687 no warnings 'once';
3688 # SVN::Node::none and SVN::Node::file are used only once,
3689 # so we're shutting up Perl's warnings about them.
3690 if ($t == $SVN::Node::none) {
3691 return $self->add_directory($full_path, $baton,
3692 undef, -1, $self->{pool});
3693 } elsif ($t == $SVN::Node::dir) {
3694 return $self->open_directory($full_path, $baton,
3695 $self->{r}, $self->{pool});
3696 } # no warnings 'once'
3697 print STDERR "$full_path already exists in repository at ",
3698 "r$self->{r} and it is not a directory (",
3699 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
3700 } # no warnings 'once'
a5e0cedc
EW
3701 exit 1;
3702}
3703
3704sub ensure_path {
3705 my ($self, $path) = @_;
3706 my $bat = $self->{bat};
6e8548cc
EW
3707 my $repo_path = $self->repo_path($path);
3708 return $bat->{''} unless (length $repo_path);
3709 my @p = split m#/+#, $repo_path;
a5e0cedc
EW
3710 my $c = shift @p;
3711 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
3712 while (@p) {
3713 my $c0 = $c;
3714 $c .= '/' . shift @p;
3715 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
3716 }
3717 return $bat->{$c};
3718}
3719
128de657
BK
3720# Subroutine to convert a globbing pattern to a regular expression.
3721# From perl cookbook.
3722sub glob2pat {
3723 my $globstr = shift;
3724 my %patmap = ('*' => '.*', '?' => '.', '[' => '[', ']' => ']');
3725 $globstr =~ s{(.)} { $patmap{$1} || "\Q$1" }ge;
3726 return '^' . $globstr . '$';
3727}
3728
3729sub check_autoprop {
3730 my ($self, $pattern, $properties, $file, $fbat) = @_;
3731 # Convert the globbing pattern to a regular expression.
3732 my $regex = glob2pat($pattern);
3733 # Check if the pattern matches the file name.
3734 if($file =~ m/($regex)/) {
3735 # Parse the list of properties to set.
3736 my @props = split(/;/, $properties);
3737 foreach my $prop (@props) {
3738 # Parse 'name=value' syntax and set the property.
3739 if ($prop =~ /([^=]+)=(.*)/) {
3740 my ($n,$v) = ($1,$2);
3741 for ($n, $v) {
3742 s/^\s+//; s/\s+$//;
3743 }
3744 $self->change_file_prop($fbat, $n, $v);
3745 }
3746 }
3747 }
3748}
3749
3750sub apply_autoprops {
3751 my ($self, $file, $fbat) = @_;
3752 my $conf_t = ${$self->{config}}{'config'};
3753 no warnings 'once';
3754 # Check [miscellany]/enable-auto-props in svn configuration.
3755 if (SVN::_Core::svn_config_get_bool(
3756 $conf_t,
3757 $SVN::_Core::SVN_CONFIG_SECTION_MISCELLANY,
3758 $SVN::_Core::SVN_CONFIG_OPTION_ENABLE_AUTO_PROPS,
3759 0)) {
3760 # Auto-props are enabled. Enumerate them to look for matches.
3761 my $callback = sub {
3762 $self->check_autoprop($_[0], $_[1], $file, $fbat);
3763 };
3764 SVN::_Core::svn_config_enumerate(
3765 $conf_t,
3766 $SVN::_Core::SVN_CONFIG_SECTION_AUTO_PROPS,
3767 $callback);
3768 }
3769}
3770
a5e0cedc 3771sub A {
44320b9e 3772 my ($self, $m) = @_;
a5e0cedc
EW
3773 my ($dir, $file) = split_path($m->{file_b});
3774 my $pbat = $self->ensure_path($dir);
3775 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3776 undef, -1);
44320b9e 3777 print "\tA\t$m->{file_b}\n" unless $::_q;
128de657 3778 $self->apply_autoprops($file, $fbat);
a5e0cedc
EW
3779 $self->chg_file($fbat, $m);
3780 $self->close_file($fbat,undef,$self->{pool});
3781}
3782
3783sub C {
44320b9e 3784 my ($self, $m) = @_;
a5e0cedc
EW
3785 my ($dir, $file) = split_path($m->{file_b});
3786 my $pbat = $self->ensure_path($dir);
3787 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3788 $self->url_path($m->{file_a}), $self->{r});
44320b9e 3789 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
a5e0cedc
EW
3790 $self->chg_file($fbat, $m);
3791 $self->close_file($fbat,undef,$self->{pool});
3792}
3793
3794sub delete_entry {
3795 my ($self, $path, $pbat) = @_;
3796 my $rpath = $self->repo_path($path);
3797 my ($dir, $file) = split_path($rpath);
3798 $self->{rm}->{$dir} = 1;
3799 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
3800}
3801
3802sub R {
44320b9e 3803 my ($self, $m) = @_;
a5e0cedc
EW
3804 my ($dir, $file) = split_path($m->{file_b});
3805 my $pbat = $self->ensure_path($dir);
3806 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3807 $self->url_path($m->{file_a}), $self->{r});
44320b9e 3808 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
7c4d0219 3809 $self->apply_autoprops($file, $fbat);
a5e0cedc
EW
3810 $self->chg_file($fbat, $m);
3811 $self->close_file($fbat,undef,$self->{pool});
3812
3813 ($dir, $file) = split_path($m->{file_a});
3814 $pbat = $self->ensure_path($dir);
3815 $self->delete_entry($m->{file_a}, $pbat);
3816}
3817
3818sub M {
44320b9e 3819 my ($self, $m) = @_;
a5e0cedc
EW
3820 my ($dir, $file) = split_path($m->{file_b});
3821 my $pbat = $self->ensure_path($dir);
3822 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
3823 $pbat,$self->{r},$self->{pool});
44320b9e 3824 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
a5e0cedc
EW
3825 $self->chg_file($fbat, $m);
3826 $self->close_file($fbat,undef,$self->{pool});
3827}
3828
3829sub T { shift->M(@_) }
3830
3831sub change_file_prop {
3832 my ($self, $fbat, $pname, $pval) = @_;
3833 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
3834}
3835
214a34d2
FW
3836sub _chg_file_get_blob ($$$$) {
3837 my ($self, $fbat, $m, $which) = @_;
1b3069a7 3838 my $fh = $::_repository->temp_acquire("git_blob_$which");
214a34d2 3839 if ($m->{"mode_$which"} =~ /^120/) {
a5e0cedc
EW
3840 print $fh 'link ' or croak $!;
3841 $self->change_file_prop($fbat,'svn:special','*');
214a34d2 3842 } elsif ($m->{mode_a} =~ /^120/ && $m->{"mode_$which"} !~ /^120/) {
a5e0cedc
EW
3843 $self->change_file_prop($fbat,'svn:special',undef);
3844 }
214a34d2
FW
3845 my $blob = $m->{"sha1_$which"};
3846 return ($fh,) if ($blob =~ /^0{40}$/);
3847 my $size = $::_repository->cat_blob($blob, $fh);
3848 croak "Failed to read object $blob" if ($size < 0);
a5e0cedc
EW
3849 $fh->flush == 0 or croak $!;
3850 seek $fh, 0, 0 or croak $!;
3851
8d7c4fad 3852 my $exp = ::md5sum($fh);
a5e0cedc 3853 seek $fh, 0, 0 or croak $!;
214a34d2
FW
3854 return ($fh, $exp);
3855}
a5e0cedc 3856
214a34d2
FW
3857sub chg_file {
3858 my ($self, $fbat, $m) = @_;
3859 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
3860 $self->change_file_prop($fbat,'svn:executable','*');
3861 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
3862 $self->change_file_prop($fbat,'svn:executable',undef);
3863 }
8598db93
FW
3864 my ($fh_a, $exp_a) = _chg_file_get_blob $self, $fbat, $m, 'a';
3865 my ($fh_b, $exp_b) = _chg_file_get_blob $self, $fbat, $m, 'b';
f7197dff 3866 my $pool = SVN::Pool->new;
8598db93
FW
3867 my $atd = $self->apply_textdelta($fbat, $exp_a, $pool);
3868 if (-s $fh_a) {
3869 my $txstream = SVN::TxDelta::new ($fh_a, $fh_b, $pool);
991255c6
EW
3870 my $res = SVN::TxDelta::send_txstream($txstream, @$atd, $pool);
3871 if (defined $res) {
3872 die "Unexpected result from send_txstream: $res\n",
3873 "(SVN::Core::VERSION: $SVN::Core::VERSION)\n";
3874 }
8598db93
FW
3875 } else {
3876 my $got = SVN::TxDelta::send_stream($fh_b, @$atd, $pool);
3877 die "Checksum mismatch\nexpected: $exp_b\ngot: $got\n"
3878 if ($got ne $exp_b);
3879 }
3880 Git::temp_release($fh_b, 1);
3881 Git::temp_release($fh_a, 1);
f7197dff 3882 $pool->clear;
a5e0cedc
EW
3883}
3884
3885sub D {
44320b9e 3886 my ($self, $m) = @_;
a5e0cedc
EW
3887 my ($dir, $file) = split_path($m->{file_b});
3888 my $pbat = $self->ensure_path($dir);
44320b9e 3889 print "\tD\t$m->{file_b}\n" unless $::_q;
a5e0cedc
EW
3890 $self->delete_entry($m->{file_b}, $pbat);
3891}
3892
3893sub close_edit {
3894 my ($self) = @_;
3895 my ($p,$bat) = ($self->{pool}, $self->{bat});
3896 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
6442754d 3897 next if $_ eq '';
a5e0cedc
EW
3898 $self->close_directory($bat->{$_}, $p);
3899 }
6442754d 3900 $self->close_directory($bat->{''}, $p);
a5e0cedc
EW
3901 $self->SUPER::close_edit($p);
3902 $p->clear;
3903}
3904
3905sub abort_edit {
3906 my ($self) = @_;
3907 $self->SUPER::abort_edit($self->{pool});
61395354
EW
3908}
3909
3910sub DESTROY {
3911 my $self = shift;
3912 $self->SUPER::DESTROY(@_);
a5e0cedc
EW
3913 $self->{pool}->clear;
3914}
3915
44320b9e
EW
3916# this drives the editor
3917sub apply_diff {
61395354
EW
3918 my ($self) = @_;
3919 my $mods = $self->{mods};
44320b9e 3920 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
6e8548cc 3921 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
44320b9e
EW
3922 my $f = $m->{chg};
3923 if (defined $o{$f}) {
3924 $self->$f($m);
3925 } else {
207f1a75 3926 fatal("Invalid change type: $f");
44320b9e
EW
3927 }
3928 }
24e22aa8 3929 $self->rmdirs if $_rmdir;
6e8548cc 3930 if (@$mods == 0) {
44320b9e
EW
3931 $self->abort_edit;
3932 } else {
3933 $self->close_edit;
3934 }
6e8548cc 3935 return scalar @$mods;
44320b9e
EW
3936}
3937
d81bf827 3938package Git::SVN::Ra;
6af1db44 3939use vars qw/@ISA $config_dir $_log_window_size/;
d81bf827
EW
3940use strict;
3941use warnings;
a51cdb0c 3942my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
d81bf827
EW
3943
3944BEGIN {
3945 # enforce temporary pool usage for some simple functions
c5f71ad0
SV
3946 no strict 'refs';
3947 for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root/) {
3948 my $SUPER = "SUPER::$f";
3949 *$f = sub {
3950 my $self = shift;
3951 my $pool = SVN::Pool->new;
3952 my @ret = $self->$SUPER(@_,$pool);
3953 $pool->clear;
3954 wantarray ? @ret : $ret[0];
3955 };
d81bf827 3956 }
d81bf827
EW
3957}
3958
9ff74e95
SW
3959sub _auth_providers () {
3960 [
3961 SVN::Client::get_simple_provider(),
3962 SVN::Client::get_ssl_server_trust_file_provider(),
3963 SVN::Client::get_simple_prompt_provider(
3964 \&Git::SVN::Prompt::simple, 2),
3965 SVN::Client::get_ssl_client_cert_file_provider(),
3966 SVN::Client::get_ssl_client_cert_prompt_provider(
3967 \&Git::SVN::Prompt::ssl_client_cert, 2),
77266e96 3968 SVN::Client::get_ssl_client_cert_pw_file_provider(),
9ff74e95
SW
3969 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
3970 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
3971 SVN::Client::get_username_provider(),
3972 SVN::Client::get_ssl_server_trust_prompt_provider(
3973 \&Git::SVN::Prompt::ssl_server_trust),
3974 SVN::Client::get_username_prompt_provider(
3975 \&Git::SVN::Prompt::username, 2)
3976 ]
3977}
3978
cfbe7ab3
EW
3979sub escape_uri_only {
3980 my ($uri) = @_;
3981 my @tmp;
3982 foreach (split m{/}, $uri) {
6a004d3f 3983 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
cfbe7ab3
EW
3984 push @tmp, $_;
3985 }
3986 join('/', @tmp);
3987}
3988
3989sub escape_url {
3990 my ($url) = @_;
3991 if ($url =~ m#^(https?)://([^/]+)(.*)$#) {
3992 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
3993 $url = "$scheme://$domain$uri";
3994 }
3995 $url;
3996}
3997
d81bf827
EW
3998sub new {
3999 my ($class, $url) = @_;
f6f09876 4000 $url =~ s!/+$!!;
5d3b7cd5 4001 return $RA if ($RA && $RA->{url} eq $url);
f6f09876 4002
d81bf827 4003 SVN::_Core::svn_config_ensure($config_dir, undef);
9ff74e95 4004 my ($baton, $callbacks) = SVN::Core::auth_open_helper(_auth_providers);
d81bf827 4005 my $config = SVN::Core::config_get_config($config_dir);
7730fbe6 4006 $RA = undef;
602015e0
ER
4007 my $dont_store_passwords = 1;
4008 my $conf_t = ${$config}{'config'};
4009 {
fd499bcc 4010 no warnings 'once';
602015e0
ER
4011 # The usage of $SVN::_Core::SVN_CONFIG_* variables
4012 # produces warnings that variables are used only once.
4013 # I had not found the better way to shut them up, so
fd499bcc 4014 # the warnings of type 'once' are disabled in this block.
602015e0
ER
4015 if (SVN::_Core::svn_config_get_bool($conf_t,
4016 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4017 $SVN::_Core::SVN_CONFIG_OPTION_STORE_PASSWORDS,
4018 1) == 0) {
4019 SVN::_Core::svn_auth_set_parameter($baton,
4020 $SVN::_Core::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS,
4021 bless (\$dont_store_passwords, "_p_void"));
4022 }
4023 if (SVN::_Core::svn_config_get_bool($conf_t,
4024 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4025 $SVN::_Core::SVN_CONFIG_OPTION_STORE_AUTH_CREDS,
4026 1) == 0) {
4027 $Git::SVN::Prompt::_no_auth_cache = 1;
4028 }
fd499bcc 4029 } # no warnings 'once'
cfbe7ab3 4030 my $self = SVN::Ra->new(url => escape_url($url), auth => $baton,
d81bf827
EW
4031 config => $config,
4032 pool => SVN::Pool->new,
4033 auth_provider_callbacks => $callbacks);
cfbe7ab3 4034 $self->{url} = $url;
d81bf827
EW
4035 $self->{svn_path} = $url;
4036 $self->{repos_root} = $self->get_repos_root;
4e9f6cc7 4037 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
0dc03d6a
EW
4038 $self->{cache} = { check_path => { r => 0, data => {} },
4039 get_dir => { r => 0, data => {} } };
5d3b7cd5 4040 $RA = bless $self, $class;
d81bf827
EW
4041}
4042
0dc03d6a
EW
4043sub check_path {
4044 my ($self, $path, $r) = @_;
4045 my $cache = $self->{cache}->{check_path};
4046 if ($r == $cache->{r} && exists $cache->{data}->{$path}) {
4047 return $cache->{data}->{$path};
4048 }
4049 my $pool = SVN::Pool->new;
4050 my $t = $self->SUPER::check_path($path, $r, $pool);
4051 $pool->clear;
4052 if ($r != $cache->{r}) {
4053 %{$cache->{data}} = ();
4054 $cache->{r} = $r;
4055 }
4056 $cache->{data}->{$path} = $t;
4057}
4058
4059sub get_dir {
4060 my ($self, $dir, $r) = @_;
4061 my $cache = $self->{cache}->{get_dir};
4062 if ($r == $cache->{r}) {
4063 if (my $x = $cache->{data}->{$dir}) {
4064 return wantarray ? @$x : $x->[0];
4065 }
4066 }
4067 my $pool = SVN::Pool->new;
4068 my ($d, undef, $props) = $self->SUPER::get_dir($dir, $r, $pool);
4069 my %dirents = map { $_ => { kind => $d->{$_}->kind } } keys %$d;
4070 $pool->clear;
4071 if ($r != $cache->{r}) {
4072 %{$cache->{data}} = ();
4073 $cache->{r} = $r;
4074 }
4075 $cache->{data}->{$dir} = [ \%dirents, $r, $props ];
4076 wantarray ? (\%dirents, $r, $props) : \%dirents;
4077}
4078
d81bf827 4079sub DESTROY {
5d3b7cd5 4080 # do not call the real DESTROY since we store ourselves in $RA
d81bf827
EW
4081}
4082
d81bf827
EW
4083sub get_log {
4084 my ($self, @args) = @_;
4085 my $pool = SVN::Pool->new;
d81bf827
EW
4086 splice(@args, 3, 1) if ($SVN::Core::VERSION le '1.2.0');
4087 my $ret = $self->SUPER::get_log(@args, $pool);
4088 $pool->clear;
4089 $ret;
4090}
4091
9ff74e95
SW
4092sub trees_match {
4093 my ($self, $url1, $rev1, $url2, $rev2) = @_;
4094 my $ctx = SVN::Client->new(auth => _auth_providers);
4095 my $out = IO::File->new_tmpfile;
4096
4097 # older SVN (1.1.x) doesn't take $pool as the last parameter for
4098 # $ctx->diff(), so we'll create a default one
4099 my $pool = SVN::Pool->new_default_sub;
4100
4101 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
4102 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
4103 $out->flush;
4104 my $ret = (($out->stat)[7] == 0);
4105 close $out or croak $!;
4106
4107 $ret;
4108}
4109
d81bf827 4110sub get_commit_editor {
44320b9e 4111 my ($self, $log, $cb, $pool) = @_;
d81bf827 4112 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
44320b9e 4113 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
d81bf827
EW
4114}
4115
d81bf827 4116sub gs_do_update {
8a603774
EW
4117 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
4118 my $new = ($rev_a == $rev_b);
4119 my $path = $gs->{path};
4120
2e5e2480
EW
4121 if ($new && -e $gs->{index}) {
4122 unlink $gs->{index} or die
4123 "Couldn't unlink index: $gs->{index}: $!\n";
4124 }
d81bf827 4125 my $pool = SVN::Pool->new;
8b8fc068 4126 $editor->set_path_strip($path);
2b27f6c8
EW
4127 my (@pc) = split m#/#, $path;
4128 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
8a603774 4129 1, $editor, $pool);
d81bf827 4130 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
2b27f6c8
EW
4131
4132 # Since we can't rely on svn_ra_reparent being available, we'll
4133 # just have to do some magic with set_path to make it so
4134 # we only want a partial path.
4135 my $sp = '';
4136 my $final = join('/', @pc);
4137 while (@pc) {
4138 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
4139 $sp .= '/' if length $sp;
4140 $sp .= shift @pc;
4141 }
4142 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
4143
2b27f6c8
EW
4144 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
4145
d81bf827
EW
4146 $reporter->finish_report($pool);
4147 $pool->clear;
4148 $editor->{git_commit_ok};
4149}
4150
2b27f6c8
EW
4151# this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
4152# svn_ra_reparent didn't work before 1.4)
d81bf827 4153sub gs_do_switch {
8a603774
EW
4154 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
4155 my $path = $gs->{path};
d81bf827 4156 my $pool = SVN::Pool->new;
2b27f6c8
EW
4157
4158 my $full_url = $self->{url};
4159 my $old_url = $full_url;
cfbe7ab3 4160 $full_url .= '/' . escape_uri_only($path) if length $path;
5d3b7cd5 4161 my ($ra, $reparented);
ad0a82ba
AB
4162
4163 if ($old_url =~ m#^svn(\+ssh)?://#) {
4164 $_[0] = undef;
4165 $self = undef;
4166 $RA = undef;
4167 $ra = Git::SVN::Ra->new($full_url);
4168 $ra_invalid = 1;
4169 } elsif ($old_url ne $full_url) {
4170 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url, $pool);
4171 $self->{url} = $full_url;
4172 $reparented = 1;
5d3b7cd5 4173 }
ad0a82ba 4174
5d3b7cd5 4175 $ra ||= $self;
f4392df4 4176 $url_b = escape_url($url_b);
8a603774 4177 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
d81bf827 4178 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
8b8fc068 4179 $reporter->set_path('', $rev_a, 0, @lock, $pool);
d81bf827 4180 $reporter->finish_report($pool);
2b27f6c8 4181
5d3b7cd5
EW
4182 if ($reparented) {
4183 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
4184 $self->{url} = $old_url;
4185 }
2b27f6c8 4186
d81bf827
EW
4187 $pool->clear;
4188 $editor->{git_commit_ok};
4189}
4190
b54a901e
EW
4191sub longest_common_path {
4192 my ($gsv, $globs) = @_;
d2ae1434 4193 my %common;
e518192f
EW
4194 my $common_max = scalar @$gsv;
4195
4196 foreach my $gs (@$gsv) {
d2ae1434
EW
4197 my @tmp = split m#/#, $gs->{path};
4198 my $p = '';
4199 foreach (@tmp) {
4200 $p .= length($p) ? "/$_" : $_;
4201 $common{$p} ||= 0;
4202 $common{$p}++;
4203 }
4204 }
e518192f
EW
4205 $globs ||= [];
4206 $common_max += scalar @$globs;
4207 foreach my $glob (@$globs) {
4208 my @tmp = split m#/#, $glob->{path}->{left};
4209 my $p = '';
4210 foreach (@tmp) {
4211 $p .= length($p) ? "/$_" : $_;
4212 $common{$p} ||= 0;
4213 $common{$p}++;
4214 }
4215 }
4216
d2ae1434
EW
4217 my $longest_path = '';
4218 foreach (sort {length $b <=> length $a} keys %common) {
e518192f 4219 if ($common{$_} == $common_max) {
d2ae1434
EW
4220 $longest_path = $_;
4221 last;
4222 }
0af9c9f9 4223 }
b54a901e
EW
4224 $longest_path;
4225}
4226
4227sub gs_fetch_loop_common {
4228 my ($self, $base, $head, $gsv, $globs) = @_;
4229 return if ($base > $head);
4230 my $inc = $_log_window_size;
4231 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
4232 my $longest_path = longest_common_path($gsv, $globs);
a51cdb0c 4233 my $ra_url = $self->{url};
0af9c9f9 4234 while (1) {
d4eff2bd 4235 my %revs;
d2ae1434 4236 my $err;
f7c3fc4a 4237 my $err_handler = $SVN::Error::handler;
d2ae1434
EW
4238 $SVN::Error::handler = sub {
4239 ($err) = @_;
4240 skip_unknown_revs($err);
4241 };
4242 sub _cb {
4243 my ($paths, $r, $author, $date, $log) = @_;
4244 [ dup_changed_paths($paths),
4245 { author => $author, date => $date, log => $log } ];
4246 }
4247 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
4248 sub { $revs{$_[1]} = _cb(@_) });
4249 if ($err && $max >= $head) {
4250 print STDERR "Path '$longest_path' ",
4251 "was probably deleted:\n",
4252 $err->expanded_message,
4253 "\nWill attempt to follow ",
4254 "revisions r$min .. r$max ",
4255 "committed before the deletion\n";
4256 my $hi = $max;
4257 while (--$hi >= $min) {
4258 my $ok;
4259 $self->get_log([$longest_path], $min, $hi,
4260 0, 1, 1, sub {
4261 $ok ||= $_[1];
4262 $revs{$_[1]} = _cb(@_) });
4263 if ($ok) {
4264 print STDERR "r$min .. r$ok OK\n";
4265 last;
4266 }
4267 }
4268 }
d4eff2bd 4269 $SVN::Error::handler = $err_handler;
fbcc1737 4270
e518192f 4271 my %exists = map { $_->{path} => $_ } @$gsv;
d4eff2bd 4272 foreach my $r (sort {$a <=> $b} keys %revs) {
fbcc1737 4273 my ($paths, $logged) = @{$revs{$r}};
e518192f
EW
4274
4275 foreach my $gs ($self->match_globs(\%exists, $paths,
4276 $globs, $r)) {
060610c5 4277 if ($gs->rev_map_max >= $r) {
fbcc1737
EW
4278 next;
4279 }
4280 next unless $gs->match_paths($paths, $r);
4281 $gs->{logged_rev_props} = $logged;
e8d120bd
EW
4282 if (my $last_commit = $gs->last_commit) {
4283 $gs->assert_index_clean($last_commit);
4284 }
fbcc1737
EW
4285 my $log_entry = $gs->do_fetch($paths, $r);
4286 if ($log_entry) {
0af9c9f9
EW
4287 $gs->do_git_commit($log_entry);
4288 }
321b1842 4289 $INDEX_FILES{$gs->{index}} = 1;
0af9c9f9 4290 }
e518192f 4291 foreach my $g (@$globs) {
93f2689c
EW
4292 my $k = "svn-remote.$g->{remote}." .
4293 "$g->{t}-maxRev";
4294 Git::SVN::tmp_config($k, $r);
e518192f 4295 }
a51cdb0c
EW
4296 if ($ra_invalid) {
4297 $_[0] = undef;
4298 $self = undef;
4299 $RA = undef;
4300 $self = Git::SVN::Ra->new($ra_url);
4301 $ra_invalid = undef;
4302 }
0af9c9f9 4303 }
9c93fee5
EW
4304 # pre-fill the .rev_db since it'll eventually get filled in
4305 # with '0' x40 if something new gets committed
e518192f 4306 foreach my $gs (@$gsv) {
66ab84b9
EW
4307 next if $gs->rev_map_max >= $max;
4308 next if defined $gs->rev_map_get($max);
4309 $gs->rev_map_set($max, 0 x40);
9c93fee5 4310 }
c3560e53
EW
4311 foreach my $g (@$globs) {
4312 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
4313 Git::SVN::tmp_config($k, $max);
4314 }
0af9c9f9
EW
4315 last if $max >= $head;
4316 $min = $max + 1;
4317 $max += $inc;
4318 $max = $head if ($max > $head);
4319 }
94bc914c 4320 Git::SVN::gc();
0af9c9f9
EW
4321}
4322
570d35c2
MG
4323sub get_dir_globbed {
4324 my ($self, $left, $depth, $r) = @_;
4325
4326 my @x = eval { $self->get_dir($left, $r) };
4327 return unless scalar @x == 3;
4328 my $dirents = $x[0];
4329 my @finalents;
4330 foreach my $de (keys %$dirents) {
4331 next if $dirents->{$de}->{kind} != $SVN::Node::dir;
4332 if ($depth > 1) {
4333 my @args = ("$left/$de", $depth - 1, $r);
4334 foreach my $dir ($self->get_dir_globbed(@args)) {
4335 push @finalents, "$de/$dir";
4336 }
4337 } else {
4338 push @finalents, $de;
4339 }
4340 }
4341 @finalents;
4342}
4343
e518192f
EW
4344sub match_globs {
4345 my ($self, $exists, $paths, $globs, $r) = @_;
74a81227
EW
4346
4347 sub get_dir_check {
4348 my ($self, $exists, $g, $r) = @_;
570d35c2
MG
4349
4350 my @dirs = $self->get_dir_globbed($g->{path}->{left},
4351 $g->{path}->{depth},
4352 $r);
4353
4354 foreach my $de (@dirs) {
74a81227
EW
4355 my $p = $g->{path}->full_path($de);
4356 next if $exists->{$p};
4357 next if (length $g->{path}->{right} &&
4358 ($self->check_path($p, $r) !=
4359 $SVN::Node::dir));
4360 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
4361 $g->{ref}->full_path($de), 1);
4362 }
4363 }
e518192f 4364 foreach my $g (@$globs) {
74a81227
EW
4365 if (my $path = $paths->{"/$g->{path}->{left}"}) {
4366 if ($path->{action} =~ /^[AR]$/) {
4367 get_dir_check($self, $exists, $g, $r);
4368 }
4369 }
e518192f 4370 foreach (keys %$paths) {
28710f74
EW
4371 if (/$g->{path}->{left_regex}/ &&
4372 !/$g->{path}->{regex}/) {
74a81227
EW
4373 next if $paths->{$_}->{action} !~ /^[AR]$/;
4374 get_dir_check($self, $exists, $g, $r);
4375 }
e518192f
EW
4376 next unless /$g->{path}->{regex}/;
4377 my $p = $1;
4378 my $pathname = $g->{path}->full_path($p);
4379 next if $exists->{$pathname};
0c1ec5a1
EW
4380 next if ($self->check_path($pathname, $r) !=
4381 $SVN::Node::dir);
e518192f
EW
4382 $exists->{$pathname} = Git::SVN->init(
4383 $self->{url}, $pathname, undef,
4384 $g->{ref}->full_path($p), 1);
4385 }
4386 my $c = '';
4387 foreach (split m#/#, $g->{path}->{left}) {
4388 $c .= "/$_";
4389 next unless ($paths->{$c} &&
74a81227
EW
4390 ($paths->{$c}->{action} =~ /^[AR]$/));
4391 get_dir_check($self, $exists, $g, $r);
e518192f
EW
4392 }
4393 }
4394 values %$exists;
4395}
4396
e6434f87
EW
4397sub minimize_url {
4398 my ($self) = @_;
4399 return $self->{url} if ($self->{url} eq $self->{repos_root});
4400 my $url = $self->{repos_root};
4401 my @components = split(m!/!, $self->{svn_path});
4402 my $c = '';
4403 do {
4404 $url .= "/$c" if length $c;
4405 eval { (ref $self)->new($url)->get_latest_revnum };
4406 } while ($@ && ($c = shift @components));
4407 $url;
4408}
4409
d81bf827
EW
4410sub can_do_switch {
4411 my $self = shift;
4412 unless (defined $can_do_switch) {
4413 my $pool = SVN::Pool->new;
4414 my $rep = eval {
4415 $self->do_switch(1, '', 0, $self->{url},
4416 SVN::Delta::Editor->new, $pool);
4417 };
4418 if ($@) {
4419 $can_do_switch = 0;
4420 } else {
4421 $rep->abort_report($pool);
4422 $can_do_switch = 1;
4423 }
4424 $pool->clear;
4425 }
4426 $can_do_switch;
4427}
4428
0af9c9f9
EW
4429sub skip_unknown_revs {
4430 my ($err) = @_;
4431 my $errno = $err->apr_err();
4432 # Maybe the branch we're tracking didn't
4433 # exist when the repo started, so it's
4434 # not an error if it doesn't, just continue
4435 #
4436 # Wonderfully consistent library, eh?
4437 # 160013 - svn:// and file://
4438 # 175002 - http(s)://
4439 # 175007 - http(s):// (this repo required authorization, too...)
4440 # More codes may be discovered later...
4441 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
a6a15a99
EW
4442 my $err_key = $err->expanded_message;
4443 # revision numbers change every time, filter them out
4444 $err_key =~ s/\d+/\0/g;
4445 $err_key = "$errno\0$err_key";
4446 unless ($ignored_err{$err_key}) {
4447 warn "W: Ignoring error from SVN, path probably ",
4448 "does not exist: ($errno): ",
4449 $err->expanded_message,"\n";
eee8a174
EW
4450 warn "W: Do not be alarmed at the above message ",
4451 "git-svn is just searching aggressively for ",
4452 "old history.\n",
4453 "This may take a while on large repositories\n";
a6a15a99
EW
4454 $ignored_err{$err_key} = 1;
4455 }
0af9c9f9
EW
4456 return;
4457 }
4458 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
4459}
4460
4461# svn_log_changed_path_t objects passed to get_log are likely to be
4462# overwritten even if only the refs are copied to an external variable,
4463# so we should dup the structures in their entirety. Using an externally
4464# passed pool (instead of our temporary and quickly cleared pool in
4465# Git::SVN::Ra) does not help matters at all...
4466sub dup_changed_paths {
4467 my ($paths) = @_;
4468 return undef unless $paths;
4469 my %ret;
4470 foreach my $p (keys %$paths) {
4471 my $i = $paths->{$p};
4472 my %s = map { $_ => $i->$_ }
4473 qw/copyfrom_path copyfrom_rev action/;
4474 $ret{$p} = \%s;
4475 }
4476 \%ret;
4477}
4478
f8c9d1d2
EW
4479package Git::SVN::Log;
4480use strict;
4481use warnings;
4482use POSIX qw/strftime/;
111947ef 4483use constant commit_log_separator => ('-' x 72) . "\n";
f8c9d1d2
EW
4484use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
4485 %rusers $show_commit $incremental/;
4486my $l_fmt;
4487
4488sub cmt_showable {
4489 my ($c) = @_;
4490 return 1 if defined $c->{r};
c16d0871
EW
4491
4492 # big commit message got truncated by the 16k pretty buffer in rev-list
f8c9d1d2
EW
4493 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
4494 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
c16d0871 4495 @{$c->{l}} = ();
44320b9e 4496 my @log = command(qw/cat-file commit/, $c->{c});
c16d0871
EW
4497
4498 # shift off the headers
4499 shift @log while ($log[0] ne '');
44320b9e 4500 shift @log;
c16d0871
EW
4501
4502 # TODO: make $c->{l} not have a trailing newline in the future
4503 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
f8c9d1d2
EW
4504
4505 (undef, $c->{r}, undef) = ::extract_metadata(
44320b9e 4506 (grep(/^git-svn-id: /, @log))[-1]);
f8c9d1d2
EW
4507 }
4508 return defined $c->{r};
4509}
4510
4511sub log_use_color {
cd459e3f 4512 return $color || Git->repository->get_colorbool('color.diff');
f8c9d1d2
EW
4513}
4514
4515sub git_svn_log_cmd {
3bc718ba
EW
4516 my ($r_min, $r_max, @args) = @_;
4517 my $head = 'HEAD';
6ed77266 4518 my (@files, @log_opts);
3bc718ba 4519 foreach my $x (@args) {
6ed77266
EW
4520 if ($x eq '--' || @files) {
4521 push @files, $x;
4522 } else {
4523 if (::verify_ref("$x^0")) {
4524 $head = $x;
4525 } else {
4526 push @log_opts, $x;
4527 }
4528 }
3bc718ba
EW
4529 }
4530
13c823fb
EW
4531 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
4532 $gs ||= Git::SVN->_new;
f8c9d1d2
EW
4533 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
4534 $gs->refname);
4535 push @cmd, '-r' unless $non_recursive;
4536 push @cmd, qw/--raw --name-status/ if $verbose;
4537 push @cmd, '--color' if log_use_color();
6ed77266
EW
4538 push @cmd, @log_opts;
4539 if (defined $r_max && $r_max == $r_min) {
f8c9d1d2 4540 push @cmd, '--max-count=1';
060610c5 4541 if (my $c = $gs->rev_map_get($r_max)) {
f8c9d1d2
EW
4542 push @cmd, $c;
4543 }
6ed77266 4544 } elsif (defined $r_max) {
111947ef
DK
4545 if ($r_max < $r_min) {
4546 ($r_min, $r_max) = ($r_max, $r_min);
4547 }
4548 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
4549 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
4550 # If there are no commits in the range, both $c_max and $c_min
4551 # will be undefined. If there is at least 1 commit in the
4552 # range, both will be defined.
4553 return () if !defined $c_min || !defined $c_max;
4554 if ($c_min eq $c_max) {
4555 push @cmd, '--max-count=1', $c_min;
f8c9d1d2 4556 } else {
111947ef 4557 push @cmd, '--boundary', "$c_min..$c_max";
f8c9d1d2
EW
4558 }
4559 }
6ed77266 4560 return (@cmd, @files);
f8c9d1d2
EW
4561}
4562
4563# adapted from pager.c
4564sub config_pager {
4565 $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
4566 if (!defined $pager) {
4567 $pager = 'less';
4568 } elsif (length $pager == 0 || $pager eq 'cat') {
4569 $pager = undef;
4570 }
cd459e3f 4571 $ENV{GIT_PAGER_IN_USE} = defined($pager);
f8c9d1d2
EW
4572}
4573
4574sub run_pager {
b0193048 4575 return unless -t *STDOUT && defined $pager;
971e6283 4576 pipe my ($rfd, $wfd) or return;
207f1a75 4577 defined(my $pid = fork) or ::fatal "Can't fork: $!";
f8c9d1d2
EW
4578 if (!$pid) {
4579 open STDOUT, '>&', $wfd or
207f1a75 4580 ::fatal "Can't redirect to stdout: $!";
f8c9d1d2
EW
4581 return;
4582 }
207f1a75 4583 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!";
f8c9d1d2 4584 $ENV{LESS} ||= 'FRSX';
207f1a75 4585 exec $pager or ::fatal "Can't run pager: $! ($pager)";
f8c9d1d2
EW
4586}
4587
b2b3ada7
DK
4588sub format_svn_date {
4589 return strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)", localtime(shift));
4590}
4591
4592sub parse_git_date {
4593 my ($t, $tz) = @_;
4594 # Date::Parse isn't in the standard Perl distro :(
4595 if ($tz =~ s/^\+//) {
4596 $t += tz_to_s_offset($tz);
4597 } elsif ($tz =~ s/^\-//) {
4598 $t -= tz_to_s_offset($tz);
4599 }
4600 return $t;
4601}
4602
4603sub set_local_timezone {
4604 if (defined $TZ) {
4605 $ENV{TZ} = $TZ;
4606 } else {
4607 delete $ENV{TZ};
4608 }
4609}
4610
21819a37
EW
4611sub tz_to_s_offset {
4612 my ($tz) = @_;
4613 $tz =~ s/(\d\d)$//;
4614 return ($1 * 60) + ($tz * 3600);
4615}
4616
f8c9d1d2
EW
4617sub get_author_info {
4618 my ($dest, $author, $t, $tz) = @_;
4619 $author =~ s/(?:^\s*|\s*$)//g;
4620 $dest->{a_raw} = $author;
4621 my $au;
1c8443b0 4622 if ($::_authors) {
f8c9d1d2
EW
4623 $au = $rusers{$author} || undef;
4624 }
4625 if (!$au) {
4626 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
4627 }
4628 $dest->{t} = $t;
4629 $dest->{tz} = $tz;
4630 $dest->{a} = $au;
b2b3ada7 4631 $dest->{t_utc} = parse_git_date($t, $tz);
f8c9d1d2
EW
4632}
4633
4634sub process_commit {
4635 my ($c, $r_min, $r_max, $defer) = @_;
4636 if (defined $r_min && defined $r_max) {
4637 if ($r_min == $c->{r} && $r_min == $r_max) {
4638 show_commit($c);
4639 return 0;
4640 }
4641 return 1 if $r_min == $r_max;
4642 if ($r_min < $r_max) {
4643 # we need to reverse the print order
4644 return 0 if (defined $limit && --$limit < 0);
4645 push @$defer, $c;
4646 return 1;
4647 }
4648 if ($r_min != $r_max) {
4649 return 1 if ($r_min < $c->{r});
4650 return 1 if ($r_max > $c->{r});
4651 }
4652 }
4653 return 0 if (defined $limit && --$limit < 0);
4654 show_commit($c);
4655 return 1;
4656}
4657
4658sub show_commit {
4659 my $c = shift;
4660 if ($oneline) {
4661 my $x = "\n";
4662 if (my $l = $c->{l}) {
4663 while ($l->[0] =~ /^\s*$/) { shift @$l }
4664 $x = $l->[0];
4665 }
4666 $l_fmt ||= 'A' . length($c->{r});
4667 print 'r',pack($l_fmt, $c->{r}),' | ';
4668 print "$c->{c} | " if $show_commit;
4669 print $x;
4670 } else {
4671 show_commit_normal($c);
4672 }
4673}
4674
4675sub show_commit_changed_paths {
4676 my ($c) = @_;
4677 return unless $c->{changed};
4678 print "Changed paths:\n", @{$c->{changed}};
4679}
4680
4681sub show_commit_normal {
4682 my ($c) = @_;
111947ef 4683 print commit_log_separator, "r$c->{r} | ";
f8c9d1d2 4684 print "$c->{c} | " if $show_commit;
b2b3ada7 4685 print "$c->{a} | ", format_svn_date($c->{t_utc}), ' | ';
f8c9d1d2
EW
4686 my $nr_line = 0;
4687
4688 if (my $l = $c->{l}) {
4689 while ($l->[$#$l] eq "\n" && $#$l > 0
4690 && $l->[($#$l - 1)] eq "\n") {
4691 pop @$l;
4692 }
4693 $nr_line = scalar @$l;
4694 if (!$nr_line) {
4695 print "1 line\n\n\n";
4696 } else {
4697 if ($nr_line == 1) {
4698 $nr_line = '1 line';
4699 } else {
4700 $nr_line .= ' lines';
4701 }
4702 print $nr_line, "\n";
4703 show_commit_changed_paths($c);
4704 print "\n";
4705 print $_ foreach @$l;
4706 }
4707 } else {
4708 print "1 line\n";
4709 show_commit_changed_paths($c);
4710 print "\n";
4711
4712 }
488a63ec 4713 foreach my $x (qw/raw stat diff/) {
f8c9d1d2
EW
4714 if ($c->{$x}) {
4715 print "\n";
4716 print $_ foreach @{$c->{$x}}
4717 }
4718 }
4719}
4720
4721sub cmd_show_log {
4722 my (@args) = @_;
4723 my ($r_min, $r_max);
4724 my $r_last = -1; # prevent dupes
b2b3ada7 4725 set_local_timezone();
f8c9d1d2
EW
4726 if (defined $::_revision) {
4727 if ($::_revision =~ /^(\d+):(\d+)$/) {
4728 ($r_min, $r_max) = ($1, $2);
4729 } elsif ($::_revision =~ /^\d+$/) {
4730 $r_min = $r_max = $::_revision;
4731 } else {
4732 ::fatal "-r$::_revision is not supported, use ",
207f1a75 4733 "standard 'git log' arguments instead";
f8c9d1d2
EW
4734 }
4735 }
4736
4737 config_pager();
6ed77266 4738 @args = git_svn_log_cmd($r_min, $r_max, @args);
111947ef
DK
4739 if (!@args) {
4740 print commit_log_separator unless $incremental || $oneline;
4741 return;
4742 }
f8c9d1d2
EW
4743 my $log = command_output_pipe(@args);
4744 run_pager();
488a63ec 4745 my (@k, $c, $d, $stat);
f8c9d1d2
EW
4746 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
4747 while (<$log>) {
60f3ff12 4748 if (/^${esc_color}commit -?($::sha1_short)/o) {
f8c9d1d2
EW
4749 my $cmt = $1;
4750 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
4751 $r_last = $c->{r};
4752 process_commit($c, $r_min, $r_max, \@k) or
4753 goto out;
4754 }
4755 $d = undef;
4756 $c = { c => $cmt };
4757 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
4758 get_author_info($c, $1, $2, $3);
4759 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
4760 # ignore
4761 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
4762 push @{$c->{raw}}, $_;
4763 } elsif (/^${esc_color}[ACRMDT]\t/) {
4764 # we could add $SVN->{svn_path} here, but that requires
4765 # remote access at the moment (repo_path_split)...
4766 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
4767 push @{$c->{changed}}, $_;
4768 } elsif (/^${esc_color}diff /o) {
4769 $d = 1;
4770 push @{$c->{diff}}, $_;
4771 } elsif ($d) {
4772 push @{$c->{diff}}, $_;
488a63ec
EW
4773 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
4774 $esc_color*[\+\-]*$esc_color$/x) {
4775 $stat = 1;
4776 push @{$c->{stat}}, $_;
4777 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
4778 push @{$c->{stat}}, $_;
4779 $stat = undef;
f8c9d1d2
EW
4780 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
4781 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
4782 } elsif (s/^${esc_color} //o) {
4783 push @{$c->{l}}, $_;
4784 }
4785 }
4786 if ($c && defined $c->{r} && $c->{r} != $r_last) {
4787 $r_last = $c->{r};
4788 process_commit($c, $r_min, $r_max, \@k);
4789 }
4790 if (@k) {
111947ef 4791 ($r_min, $r_max) = ($r_max, $r_min);
f8c9d1d2
EW
4792 process_commit($_, $r_min, $r_max) foreach reverse @k;
4793 }
4794out:
c843c464 4795 close $log;
111947ef 4796 print commit_log_separator unless $incremental || $oneline;
f8c9d1d2
EW
4797}
4798
6fb5375e 4799sub cmd_blame {
4be40381 4800 my $path = pop;
6fb5375e
TS
4801
4802 config_pager();
4803 run_pager();
4804
4be40381
SG
4805 my ($fh, $ctx, $rev);
4806
4807 if ($_git_format) {
4808 ($fh, $ctx) = command_output_pipe('blame', @_, $path);
4809 while (my $line = <$fh>) {
4810 if ($line =~ /^\^?([[:xdigit:]]+)\s/) {
4811 # Uncommitted edits show up as a rev ID of
4812 # all zeros, which we can't look up with
4813 # cmt_metadata
4814 if ($1 !~ /^0+$/) {
4815 (undef, $rev, undef) =
4816 ::cmt_metadata($1);
4817 $rev = '0' if (!$rev);
4818 } else {
4819 $rev = '0';
4820 }
4821 $rev = sprintf('%-10s', $rev);
4822 $line =~ s/^\^?[[:xdigit:]]+(\s)/$rev$1/;
4823 }
4824 print $line;
4825 }
4826 } else {
4827 ($fh, $ctx) = command_output_pipe('blame', '-p', @_, 'HEAD',
4828 '--', $path);
4829 my ($sha1);
4830 my %authors;
4831 while (my $line = <$fh>) {
4832 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
4833 $sha1 = $1;
4834 (undef, $rev, undef) = ::cmt_metadata($1);
4835 $rev = '0' if (!$rev);
4836 }
4837 elsif ($line =~ /^author (.*)/) {
4838 $authors{$rev} = $1;
4839 $authors{$rev} =~ s/\s/_/g;
4840 }
4841 elsif ($line =~ /^\t(.*)$/) {
4842 printf("%6s %10s %s\n", $rev, $authors{$rev}, $1);
4843 }
6fb5375e 4844 }
6fb5375e
TS
4845 }
4846 command_close_pipe($fh, $ctx);
4847}
4848
706587fc
EW
4849package Git::SVN::Migration;
4850# these version numbers do NOT correspond to actual version numbers
4851# of git nor git-svn. They are just relative.
4852#
4853# v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
4854#
4855# v1 layout: .git/$id/info/url, refs/remotes/$id
4856#
4857# v2 layout: .git/svn/$id/info/url, refs/remotes/$id
4858#
4859# v3 layout: .git/svn/$id, refs/remotes/$id
4860# - info/url may remain for backwards compatibility
4861# - this is what we migrate up to this layout automatically,
4862# - this will be used by git svn init on single branches
26a62d57
EW
4863# v3.1 layout (auto migrated):
4864# - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
4865# for backwards compatibility
706587fc
EW
4866#
4867# v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
4868# - this is only created for newly multi-init-ed
4869# repositories. Similar in spirit to the
4870# --use-separate-remotes option in git-clone (now default)
4871# - we do not automatically migrate to this (following
4872# the example set by core git)
060610c5
EW
4873#
4874# v5 layout: .rev_db.$UUID => .rev_map.$UUID
4875# - newer, more-efficient format that uses 24-bytes per record
4876# with no filler space.
4877# - use xxd -c24 < .rev_map.$UUID to view and debug
4878# - This is a one-way migration, repositories updated to the
4879# new format will not be able to use old git-svn without
4880# rebuilding the .rev_db. Rebuilding the rev_db is not
4881# possible if noMetadata or useSvmProps are set; but should
4882# be no problem for users that use the (sensible) defaults.
706587fc
EW
4883use strict;
4884use warnings;
4885use Carp qw/croak/;
4886use File::Path qw/mkpath/;
47e39c55
EW
4887use File::Basename qw/dirname basename/;
4888use vars qw/$_minimize/;
706587fc
EW
4889
4890sub migrate_from_v0 {
4891 my $git_dir = $ENV{GIT_DIR};
4892 return undef unless -d $git_dir;
4893 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
4894 my $migrated = 0;
4895 while (<$fh>) {
4896 chomp;
4897 my ($id, $orig_ref) = ($_, $_);
4898 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
4899 next unless -f "$git_dir/$id/info/url";
4900 my $new_ref = "refs/remotes/$id";
4901 if (::verify_ref("$new_ref^0")) {
4902 print STDERR "W: $orig_ref is probably an old ",
4903 "branch used by an ancient version of ",
4904 "git-svn.\n",
4905 "However, $new_ref also exists.\n",
4906 "We will not be able ",
4907 "to use this branch until this ",
4908 "ambiguity is resolved.\n";
4909 next;
4910 }
4911 print STDERR "Migrating from v0 layout...\n" if !$migrated;
4912 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
4913 command_noisy('update-ref', $new_ref, $orig_ref);
4914 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
4915 $migrated++;
4916 }
4917 command_close_pipe($fh, $ctx);
4918 print STDERR "Done migrating from v0 layout...\n" if $migrated;
4919 $migrated;
4920}
4921
4922sub migrate_from_v1 {
4923 my $git_dir = $ENV{GIT_DIR};
4924 my $migrated = 0;
4925 return $migrated unless -d $git_dir;
4926 my $svn_dir = "$git_dir/svn";
4927
4928 # just in case somebody used 'svn' as their $id at some point...
4929 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
4930
4931 print STDERR "Migrating from a git-svn v1 layout...\n";
4932 mkpath([$svn_dir]);
4933 print STDERR "Data from a previous version of git-svn exists, but\n\t",
4934 "$svn_dir\n\t(required for this version ",
8f510bef 4935 "($::VERSION) of git-svn) does not exist.\n";
706587fc
EW
4936 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
4937 while (<$fh>) {
4938 my $x = $_;
4939 next unless $x =~ s#^refs/remotes/##;
4940 chomp $x;
4941 next unless -f "$git_dir/$x/info/url";
4942 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
4943 next unless $u;
4944 my $dn = dirname("$git_dir/svn/$x");
4945 mkpath([$dn]) unless -d $dn;
4946 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
4947 mkpath(["$git_dir/svn/svn"]);
4948 print STDERR " - $git_dir/$x/info => ",
4949 "$git_dir/svn/$x/info\n";
4950 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
4951 croak "$!: $x";
4952 # don't worry too much about these, they probably
4953 # don't exist with repos this old (save for index,
4954 # and we can easily regenerate that)
4955 foreach my $f (qw/unhandled.log index .rev_db/) {
4956 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
4957 }
4958 } else {
4959 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
4960 rename "$git_dir/$x", "$git_dir/svn/$x" or
4961 croak "$!: $x";
4962 }
4963 $migrated++;
4964 }
4965 command_close_pipe($fh, $ctx);
4966 print STDERR "Done migrating from a git-svn v1 layout\n";
4967 $migrated;
4968}
4969
4970sub read_old_urls {
4971 my ($l_map, $pfx, $path) = @_;
4972 my @dir;
4973 foreach (<$path/*>) {
4974 if (-r "$_/info/url") {
4975 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
4976 my $ref_id = $pfx . basename $_;
4977 my $url = ::file_to_s("$_/info/url");
4978 $l_map->{$ref_id} = $url;
4979 } elsif (-d $_) {
4980 push @dir, $_;
4981 }
4982 }
4983 foreach (@dir) {
4984 my $x = $_;
4985 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
4986 read_old_urls($l_map, $x, $_);
4987 }
4988}
4989
4990sub migrate_from_v2 {
4991 my @cfg = command(qw/config -l/);
4992 return if grep /^svn-remote\..+\.url=/, @cfg;
4993 my %l_map;
4994 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
4995 my $migrated = 0;
4996
4997 foreach my $ref_id (sort keys %l_map) {
471bc000
EW
4998 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
4999 if ($@) {
5000 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
5001 }
706587fc
EW
5002 $migrated++;
5003 }
5004 $migrated;
5005}
5006
47e39c55
EW
5007sub minimize_connections {
5008 my $r = Git::SVN::read_all_remotes();
5009 my $new_urls = {};
5010 my $root_repos = {};
5011 foreach my $repo_id (keys %$r) {
5012 my $url = $r->{$repo_id}->{url} or next;
5013 my $fetch = $r->{$repo_id}->{fetch} or next;
5014 my $ra = Git::SVN::Ra->new($url);
5015
5016 # skip existing cases where we already connect to the root
5017 if (($ra->{url} eq $ra->{repos_root}) ||
7829f20f 5018 ($ra->{repos_root} eq $repo_id)) {
47e39c55
EW
5019 $root_repos->{$ra->{url}} = $repo_id;
5020 next;
5021 }
5022
5023 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
5024 my $root_path = $ra->{url};
4e9f6cc7 5025 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
47e39c55
EW
5026 foreach my $path (keys %$fetch) {
5027 my $ref_id = $fetch->{$path};
5028 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
5029
5030 # make sure we can read when connecting to
5031 # a higher level of a repository
5032 my ($last_rev, undef) = $gs->last_rev_commit;
5033 if (!defined $last_rev) {
5034 $last_rev = eval {
5035 $root_ra->get_latest_revnum;
5036 };
5037 next if $@;
5038 }
5039 my $new = $root_path;
5040 $new .= length $path ? "/$path" : '';
5041 eval {
5042 $root_ra->get_log([$new], $last_rev, $last_rev,
5043 0, 0, 1, sub { });
5044 };
5045 next if $@;
5046 $new_urls->{$ra->{repos_root}}->{$new} =
5047 { ref_id => $ref_id,
5048 old_repo_id => $repo_id,
5049 old_path => $path };
5050 }
5051 }
5052
5053 my @emptied;
5054 foreach my $url (keys %$new_urls) {
5055 # see if we can re-use an existing [svn-remote "repo_id"]
5056 # instead of creating a(n ugly) new section:
7829f20f 5057 my $repo_id = $root_repos->{$url} || $url;
47e39c55
EW
5058
5059 my $fetch = $new_urls->{$url};
5060 foreach my $path (keys %$fetch) {
5061 my $x = $fetch->{$path};
5062 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
5063 my $pfx = "svn-remote.$x->{old_repo_id}";
5064
5065 my $old_fetch = quotemeta("$x->{old_path}:".
5066 "refs/remotes/$x->{ref_id}");
8b8fc068 5067 command_noisy(qw/config --unset/,
47e39c55
EW
5068 "$pfx.fetch", '^'. $old_fetch . '$');
5069 delete $r->{$x->{old_repo_id}}->
5070 {fetch}->{$x->{old_path}};
5071 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
8b8fc068 5072 command_noisy(qw/config --unset/,
47e39c55
EW
5073 "$pfx.url");
5074 push @emptied, $x->{old_repo_id}
5075 }
5076 }
5077 }
5078 if (@emptied) {
8befc50c 5079 my $file = $ENV{GIT_CONFIG} || "$ENV{GIT_DIR}/config";
47e39c55
EW
5080 print STDERR <<EOF;
5081The following [svn-remote] sections in your config file ($file) are empty
5082and can be safely removed:
5083EOF
5084 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
5085 }
5086}
5087
706587fc
EW
5088sub migration_check {
5089 migrate_from_v0();
5090 migrate_from_v1();
5091 migrate_from_v2();
47e39c55 5092 minimize_connections() if $_minimize;
706587fc
EW
5093}
5094
ef3cfaad
EW
5095package Git::IndexInfo;
5096use strict;
5097use warnings;
5098use Git qw/command_input_pipe command_close_pipe/;
5099
5100sub new {
5101 my ($class) = @_;
5102 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
5103 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
5104}
5105
5106sub remove {
5107 my ($self, $path) = @_;
5108 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
5109 return ++$self->{nr};
5110 }
5111 undef;
5112}
5113
5114sub update {
5115 my ($self, $mode, $hash, $path) = @_;
5116 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
5117 return ++$self->{nr};
5118 }
5119 undef;
5120}
5121
5122sub DESTROY {
5123 my ($self) = @_;
5124 command_close_pipe($self->{gui}, $self->{ctx});
5125}
5126
4bb9ed04
EW
5127package Git::SVN::GlobSpec;
5128use strict;
5129use warnings;
5130
5131sub new {
5132 my ($class, $glob) = @_;
4bb9ed04
EW
5133 my $re = $glob;
5134 $re =~ s!/+$!!g; # no need for trailing slashes
570d35c2
MG
5135 $re =~ m!^([^*]*)(\*(?:/\*)*)([^*]*)$!;
5136 my $temp = $re;
5137 my ($left, $right) = ($1, $3);
5138 $re = $2;
5139 my $depth = $re =~ tr/*/*/;
5140 if ($depth != $temp =~ tr/*/*/) {
5141 die "Only one set of wildcard directories " .
5142 "(e.g. '*' or '*/*/*') is supported: '$glob'\n";
5143 }
5144 if ($depth == 0) {
e518192f 5145 die "One '*' is needed for glob: '$glob'\n";
4bb9ed04 5146 }
570d35c2
MG
5147 $re =~ s!\*!\[^/\]*!g;
5148 $re = quotemeta($left) . "($re)" . quotemeta($right);
4e9f6cc7
EW
5149 if (length $left && !($left =~ s!/+$!!g)) {
5150 die "Missing trailing '/' on left side of: '$glob' ($left)\n";
5151 }
5152 if (length $right && !($right =~ s!^/+!!g)) {
5153 die "Missing leading '/' on right side of: '$glob' ($right)\n";
5154 }
74a81227
EW
5155 my $left_re = qr/^\/\Q$left\E(\/|$)/;
5156 bless { left => $left, right => $right, left_regex => $left_re,
570d35c2 5157 regex => qr/$re/, glob => $glob, depth => $depth }, $class;
4bb9ed04
EW
5158}
5159
5160sub full_path {
5161 my ($self, $path) = @_;
5162 return (length $self->{left} ? "$self->{left}/" : '') .
5163 $path . (length $self->{right} ? "/$self->{right}" : '');
5164}
5165
3397f9df
EW
5166__END__
5167
5168Data structures:
5169
4bb9ed04
EW
5170
5171$remotes = { # returned by read_all_remotes()
5172 'svn' => {
5173 # svn-remote.svn.url=https://svn.musicpd.org
5174 url => 'https://svn.musicpd.org',
5175 # svn-remote.svn.fetch=mpd/trunk:trunk
5176 fetch => {
5177 'mpd/trunk' => 'trunk',
5178 },
5179 # svn-remote.svn.tags=mpd/tags/*:tags/*
5180 tags => {
5181 path => {
5182 left => 'mpd/tags',
5183 right => '',
5184 regex => qr!mpd/tags/([^/]+)$!,
5185 glob => 'tags/*',
5186 },
5187 ref => {
5188 left => 'tags',
5189 right => '',
5190 regex => qr!tags/([^/]+)$!,
5191 glob => 'tags/*',
5192 },
5193 }
5194 }
5195};
5196
44320b9e 5197$log_entry hashref as returned by libsvn_log_entry()
3397f9df 5198{
44320b9e 5199 log => 'whitespace-formatted log entry
3397f9df
EW
5200', # trailing newline is preserved
5201 revision => '8', # integer
5202 date => '2004-02-24T17:01:44.108345Z', # commit date
5203 author => 'committer name'
5204};
5205
6e8548cc
EW
5206
5207# this is generated by generate_diff();
3397f9df
EW
5208@mods = array of diff-index line hashes, each element represents one line
5209 of diff-index output
5210
5211diff-index line ($m hash)
5212{
5213 mode_a => first column of diff-index output, no leading ':',
5214 mode_b => second column of diff-index output,
5215 sha1_b => sha1sum of the final blob,
ac8e0b91 5216 chg => change type [MCRADT],
3397f9df
EW
5217 file_a => original file name of a file (iff chg is 'C' or 'R')
5218 file_b => new/current file name of a file (any chg)
5219}
5220;
a5e0cedc 5221
a00439ac
EW
5222# retval of read_url_paths{,_all}();
5223$l_map = {
5224 # repository root url
5225 'https://svn.musicpd.org' => {
5226 # repository path # GIT_SVN_ID
5227 'mpd/trunk' => 'trunk',
5228 'mpd/tags/0.11.5' => 'tags/0.11.5',
5229 },
5230}
5231
a5e0cedc
EW
5232Notes:
5233 I don't trust the each() function on unless I created %hash myself
5234 because the internal iterator may not have started at base.