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