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