Code

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