Code

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