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