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