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