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