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