git-svn.perlon commit git-svn: error checking for invalid [svn-remote "..."] sections (7447b4b)
   1#!/usr/bin/env perl
   2# Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
   3# License: GPL v2 or later
   4use warnings;
   5use strict;
   6use vars qw/    $AUTHOR $VERSION
   7                $sha1 $sha1_short $_revision
   8                $_q $_authors %users/;
   9$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
  10$VERSION = '@@GIT_VERSION@@';
  11
  12$ENV{GIT_DIR} ||= '.git';
  13$Git::SVN::default_repo_id = 'svn';
  14$Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn';
  15$Git::SVN::Ra::_log_window_size = 100;
  16
  17$Git::SVN::Log::TZ = $ENV{TZ};
  18$ENV{TZ} = 'UTC';
  19$| = 1; # unbuffer STDOUT
  20
  21sub fatal (@) { print STDERR @_; exit 1 }
  22require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
  23require SVN::Ra;
  24require SVN::Delta;
  25if ($SVN::Core::VERSION lt '1.1.0') {
  26        fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)\n";
  27}
  28push @Git::SVN::Ra::ISA, 'SVN::Ra';
  29push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
  30push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
  31use Carp qw/croak/;
  32use IO::File qw//;
  33use File::Basename qw/dirname basename/;
  34use File::Path qw/mkpath/;
  35use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev pass_through/;
  36use IPC::Open3;
  37use Git;
  38
  39BEGIN {
  40        my $s;
  41        foreach (qw/command command_oneline command_noisy command_output_pipe
  42                    command_input_pipe command_close_pipe/) {
  43                $s .= "*SVN::Git::Editor::$_ = *SVN::Git::Fetcher::$_ = ".
  44                      "*Git::SVN::Migration::$_ = ".
  45                      "*Git::SVN::Log::$_ = *Git::SVN::$_ = *$_ = *Git::$_; ";
  46        }
  47        eval $s;
  48}
  49
  50my ($SVN);
  51
  52$sha1 = qr/[a-f\d]{40}/;
  53$sha1_short = qr/[a-f\d]{4,40}/;
  54my ($_stdin, $_help, $_edit,
  55        $_message, $_file,
  56        $_template, $_shared,
  57        $_version, $_fetch_all,
  58        $_merge, $_strategy, $_dry_run,
  59        $_prefix);
  60$Git::SVN::_follow_parent = 1;
  61my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
  62                    'config-dir=s' => \$Git::SVN::Ra::config_dir,
  63                    'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache );
  64my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
  65                'authors-file|A=s' => \$_authors,
  66                'repack:i' => \$Git::SVN::_repack,
  67                'noMetadata' => \$Git::SVN::_no_metadata,
  68                'useSvmProps' => \$Git::SVN::_use_svm_props,
  69                'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
  70                'quiet|q' => \$_q,
  71                'repack-flags|repack-args|repack-opts=s' =>
  72                   \$Git::SVN::_repack_flags,
  73                %remote_opts );
  74
  75my ($_trunk, $_tags, $_branches);
  76my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
  77                  'trunk|T=s' => \$_trunk, 'tags|t=s' => \$_tags,
  78                  'branches|b=s' => \$_branches, 'prefix=s' => \$_prefix,
  79                  %remote_opts );
  80my %cmt_opts = ( 'edit|e' => \$_edit,
  81                'rmdir' => \$SVN::Git::Editor::_rmdir,
  82                'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
  83                'l=i' => \$SVN::Git::Editor::_rename_limit,
  84                'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
  85);
  86
  87my %cmd = (
  88        fetch => [ \&cmd_fetch, "Download new revisions from SVN",
  89                        { 'revision|r=s' => \$_revision,
  90                          'all|a' => \$_fetch_all,
  91                           %fc_opts } ],
  92        init => [ \&cmd_init, "Initialize a repo for tracking" .
  93                          " (requires URL argument)",
  94                          \%init_opts ],
  95        'multi-init' => [ \&cmd_multi_init,
  96                          "Deprecated alias for ".
  97                          "'$0 init -T<trunk> -b<branches> -t<tags>'",
  98                          \%init_opts ],
  99        dcommit => [ \&cmd_dcommit,
 100                     'Commit several diffs to merge with upstream',
 101                        { 'merge|m|M' => \$_merge,
 102                          'strategy|s=s' => \$_strategy,
 103                          'dry-run|n' => \$_dry_run,
 104                        %cmt_opts, %fc_opts } ],
 105        'set-tree' => [ \&cmd_set_tree,
 106                        "Set an SVN repository to a git tree-ish",
 107                        { 'stdin|' => \$_stdin, %cmt_opts, %fc_opts, } ],
 108        'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
 109                        { 'revision|r=i' => \$_revision } ],
 110        'multi-fetch' => [ \&cmd_multi_fetch,
 111                           "Deprecated alias for $0 fetch --all",
 112                           { 'revision|r=s' => \$_revision, %fc_opts } ],
 113        'migrate' => [ sub { },
 114                       # no-op, we automatically run this anyways,
 115                       'Migrate configuration/metadata/layout from
 116                        previous versions of git-svn',
 117                        \%remote_opts ],
 118        'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
 119                        { 'limit=i' => \$Git::SVN::Log::limit,
 120                          'revision|r=s' => \$_revision,
 121                          'verbose|v' => \$Git::SVN::Log::verbose,
 122                          'incremental' => \$Git::SVN::Log::incremental,
 123                          'oneline' => \$Git::SVN::Log::oneline,
 124                          'show-commit' => \$Git::SVN::Log::show_commit,
 125                          'non-recursive' => \$Git::SVN::Log::non_recursive,
 126                          'authors-file|A=s' => \$_authors,
 127                          'color' => \$Git::SVN::Log::color,
 128                          'pager=s' => \$Git::SVN::Log::pager,
 129                        } ],
 130        'commit-diff' => [ \&cmd_commit_diff,
 131                           'Commit a diff between two trees',
 132                        { 'message|m=s' => \$_message,
 133                          'file|F=s' => \$_file,
 134                          'revision|r=s' => \$_revision,
 135                        %cmt_opts } ],
 136);
 137
 138my $cmd;
 139for (my $i = 0; $i < @ARGV; $i++) {
 140        if (defined $cmd{$ARGV[$i]}) {
 141                $cmd = $ARGV[$i];
 142                splice @ARGV, $i, 1;
 143                last;
 144        }
 145};
 146
 147my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
 148
 149read_repo_config(\%opts);
 150my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
 151                    'minimize-connections' => \$Git::SVN::Migration::_minimize,
 152                    'id|i=s' => \$Git::SVN::default_ref_id,
 153                    'svn-remote|remote|R=s' => \$Git::SVN::default_repo_id);
 154exit 1 if (!$rv && $cmd ne 'log');
 155
 156usage(0) if $_help;
 157version() if $_version;
 158usage(1) unless defined $cmd;
 159load_authors() if $_authors;
 160unless ($cmd =~ /^(?:init|multi-init|commit-diff)$/) {
 161        Git::SVN::Migration::migration_check();
 162}
 163Git::SVN::init_vars();
 164eval {
 165        Git::SVN::verify_remotes_sanity();
 166        $cmd{$cmd}->[0]->(@ARGV);
 167};
 168fatal $@ if $@;
 169exit 0;
 170
 171####################### primary functions ######################
 172sub usage {
 173        my $exit = shift || 0;
 174        my $fd = $exit ? \*STDERR : \*STDOUT;
 175        print $fd <<"";
 176git-svn - bidirectional operations between a single Subversion tree and git
 177Usage: $0 <command> [options] [arguments]\n
 178
 179        print $fd "Available commands:\n" unless $cmd;
 180
 181        foreach (sort keys %cmd) {
 182                next if $cmd && $cmd ne $_;
 183                print $fd '  ',pack('A17',$_),$cmd{$_}->[1],"\n";
 184                foreach (keys %{$cmd{$_}->[2]}) {
 185                        next if /^multi-/; # don't show deprecated commands
 186                        # prints out arguments as they should be passed:
 187                        my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
 188                        print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
 189                                                        "--$_" : "-$_" }
 190                                                split /\|/,$_)," $x\n";
 191                }
 192        }
 193        print $fd <<"";
 194\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
 195arbitrary identifier if you're tracking multiple SVN branches/repositories in
 196one git repository and want to keep them separate.  See git-svn(1) for more
 197information.
 198
 199        exit $exit;
 200}
 201
 202sub version {
 203        print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
 204        exit 0;
 205}
 206
 207sub do_git_init_db {
 208        unless (-d $ENV{GIT_DIR}) {
 209                my @init_db = ('init');
 210                push @init_db, "--template=$_template" if defined $_template;
 211                if (defined $_shared) {
 212                        if ($_shared =~ /[a-z]/) {
 213                                push @init_db, "--shared=$_shared";
 214                        } else {
 215                                push @init_db, "--shared";
 216                        }
 217                }
 218                command_noisy(@init_db);
 219        }
 220}
 221
 222sub init_subdir {
 223        my $repo_path = shift or return;
 224        mkpath([$repo_path]) unless -d $repo_path;
 225        chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
 226        $ENV{GIT_DIR} = $repo_path . "/.git";
 227}
 228
 229sub cmd_init {
 230        if (defined $_trunk || defined $_branches || defined $_tags) {
 231                return cmd_multi_init(@_);
 232        }
 233        my $url = shift or die "SVN repository location required ",
 234                               "as a command-line argument\n";
 235        init_subdir(@_);
 236        do_git_init_db();
 237
 238        Git::SVN->init($url);
 239}
 240
 241sub cmd_fetch {
 242        if (grep /^\d+=./, @_) {
 243                die "'<rev>=<commit>' fetch arguments are ",
 244                    "no longer supported.\n";
 245        }
 246        my ($remote) = @_;
 247        if (@_ > 1) {
 248                die "Usage: $0 fetch [--all|-a] [svn-remote]\n";
 249        }
 250        $remote ||= $Git::SVN::default_repo_id;
 251        if ($_fetch_all) {
 252                cmd_multi_fetch();
 253        } else {
 254                Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
 255        }
 256}
 257
 258sub cmd_set_tree {
 259        my (@commits) = @_;
 260        if ($_stdin || !@commits) {
 261                print "Reading from stdin...\n";
 262                @commits = ();
 263                while (<STDIN>) {
 264                        if (/\b($sha1_short)\b/o) {
 265                                unshift @commits, $1;
 266                        }
 267                }
 268        }
 269        my @revs;
 270        foreach my $c (@commits) {
 271                my @tmp = command('rev-parse',$c);
 272                if (scalar @tmp == 1) {
 273                        push @revs, $tmp[0];
 274                } elsif (scalar @tmp > 1) {
 275                        push @revs, reverse(command('rev-list',@tmp));
 276                } else {
 277                        fatal "Failed to rev-parse $c\n";
 278                }
 279        }
 280        my $gs = Git::SVN->new;
 281        my ($r_last, $cmt_last) = $gs->last_rev_commit;
 282        $gs->fetch;
 283        if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
 284                fatal "There are new revisions that were fetched ",
 285                      "and need to be merged (or acknowledged) ",
 286                      "before committing.\nlast rev: $r_last\n",
 287                      " current: $gs->{last_rev}\n";
 288        }
 289        $gs->set_tree($_) foreach @revs;
 290        print "Done committing ",scalar @revs," revisions to SVN\n";
 291}
 292
 293sub cmd_dcommit {
 294        my $head = shift;
 295        $head ||= 'HEAD';
 296        my ($url, $rev, $uuid);
 297        my ($fh, $ctx) = command_output_pipe('rev-list', $head);
 298        my @refs;
 299        my $c;
 300        while (<$fh>) {
 301                $c = $_;
 302                chomp $c;
 303                ($url, $rev, $uuid) = cmt_metadata($c);
 304                last if (defined $url && defined $rev && defined $uuid);
 305                unshift @refs, $c;
 306        }
 307        close $fh; # most likely breaking the pipe
 308        unless (defined $url && defined $rev && defined $uuid) {
 309                die "Unable to determine upstream SVN information from ",
 310                    "$head history:\n  $ctx\n";
 311        }
 312        my $gs = Git::SVN->find_by_url($url) or
 313                           die "Can't determine fetch information for $url\n";
 314        my $last_rev;
 315        foreach my $d (@refs) {
 316                if (!verify_ref("$d~1")) {
 317                        fatal "Commit $d\n",
 318                              "has no parent commit, and therefore ",
 319                              "nothing to diff against.\n",
 320                              "You should be working from a repository ",
 321                              "originally created by git-svn\n";
 322                }
 323                unless (defined $last_rev) {
 324                        (undef, $last_rev, undef) = cmt_metadata("$d~1");
 325                        unless (defined $last_rev) {
 326                                fatal "Unable to extract revision information ",
 327                                      "from commit $d~1\n";
 328                        }
 329                }
 330                if ($_dry_run) {
 331                        print "diff-tree $d~1 $d\n";
 332                } else {
 333                        my %ed_opts = ( r => $last_rev,
 334                                        log => get_commit_entry($d)->{log},
 335                                        ra => Git::SVN::Ra->new($url),
 336                                        tree_a => "$d~1",
 337                                        tree_b => $d,
 338                                        editor_cb => sub {
 339                                               print "Committed r$_[0]\n";
 340                                               $last_rev = $_[0]; },
 341                                        svn_path => '');
 342                        if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
 343                                print "No changes\n$d~1 == $d\n";
 344                        }
 345                }
 346        }
 347        return if $_dry_run;
 348        $gs->fetch;
 349        # we always want to rebase against the current HEAD, not any
 350        # head that was passed to us
 351        my @diff = command('diff-tree', 'HEAD', $gs->refname, '--');
 352        my @finish;
 353        if (@diff) {
 354                @finish = qw/rebase/;
 355                push @finish, qw/--merge/ if $_merge;
 356                push @finish, "--strategy=$_strategy" if $_strategy;
 357                print STDERR "W: HEAD and ", $gs->refname, " differ, ",
 358                             "using @finish:\n", "@diff";
 359        } else {
 360                print "No changes between current HEAD and ",
 361                      $gs->refname, "\nResetting to the latest ",
 362                      $gs->refname, "\n";
 363                @finish = qw/reset --mixed/;
 364        }
 365        command_noisy(@finish, $gs->refname);
 366}
 367
 368sub cmd_show_ignore {
 369        my $gs = Git::SVN->new;
 370        my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
 371        $gs->traverse_ignore(\*STDOUT, '', $r);
 372}
 373
 374sub cmd_multi_init {
 375        my $url = shift;
 376        unless (defined $_trunk || defined $_branches || defined $_tags) {
 377                usage(1);
 378        }
 379        do_git_init_db();
 380        $_prefix = '' unless defined $_prefix;
 381        if (defined $url) {
 382                $url =~ s#/+$##;
 383                init_subdir(@_);
 384        }
 385        if (defined $_trunk) {
 386                my $trunk_ref = $_prefix . 'trunk';
 387                # try both old-style and new-style lookups:
 388                my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
 389                unless ($gs_trunk) {
 390                        my ($trunk_url, $trunk_path) =
 391                                              complete_svn_url($url, $_trunk);
 392                        $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
 393                                                   undef, $trunk_ref);
 394                }
 395        }
 396        return unless defined $_branches || defined $_tags;
 397        my $ra = $url ? Git::SVN::Ra->new($url) : undef;
 398        complete_url_ls_init($ra, $_branches, '--branches/-b', $_prefix);
 399        complete_url_ls_init($ra, $_tags, '--tags/-t', $_prefix . 'tags/');
 400}
 401
 402sub cmd_multi_fetch {
 403        my $remotes = Git::SVN::read_all_remotes();
 404        foreach my $repo_id (sort keys %$remotes) {
 405                if ($remotes->{$repo_id}->{url}) {
 406                        Git::SVN::fetch_all($repo_id, $remotes);
 407                }
 408        }
 409}
 410
 411# this command is special because it requires no metadata
 412sub cmd_commit_diff {
 413        my ($ta, $tb, $url) = @_;
 414        my $usage = "Usage: $0 commit-diff -r<revision> ".
 415                    "<tree-ish> <tree-ish> [<URL>]\n";
 416        fatal($usage) if (!defined $ta || !defined $tb);
 417        my $svn_path;
 418        if (!defined $url) {
 419                my $gs = eval { Git::SVN->new };
 420                if (!$gs) {
 421                        fatal("Needed URL or usable git-svn --id in ",
 422                              "the command-line\n", $usage);
 423                }
 424                $url = $gs->{url};
 425                $svn_path = $gs->{path};
 426        }
 427        unless (defined $_revision) {
 428                fatal("-r|--revision is a required argument\n", $usage);
 429        }
 430        if (defined $_message && defined $_file) {
 431                fatal("Both --message/-m and --file/-F specified ",
 432                      "for the commit message.\n",
 433                      "I have no idea what you mean\n");
 434        }
 435        if (defined $_file) {
 436                $_message = file_to_s($_file);
 437        } else {
 438                $_message ||= get_commit_entry($tb)->{log};
 439        }
 440        my $ra ||= Git::SVN::Ra->new($url);
 441        $svn_path ||= $ra->{svn_path};
 442        my $r = $_revision;
 443        if ($r eq 'HEAD') {
 444                $r = $ra->get_latest_revnum;
 445        } elsif ($r !~ /^\d+$/) {
 446                die "revision argument: $r not understood by git-svn\n";
 447        }
 448        my %ed_opts = ( r => $r,
 449                        log => $_message,
 450                        ra => $ra,
 451                        tree_a => $ta,
 452                        tree_b => $tb,
 453                        editor_cb => sub { print "Committed r$_[0]\n" },
 454                        svn_path => $svn_path );
 455        if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
 456                print "No changes\n$ta == $tb\n";
 457        }
 458}
 459
 460########################### utility functions #########################
 461
 462sub complete_svn_url {
 463        my ($url, $path) = @_;
 464        $path =~ s#/+$##;
 465        if ($path !~ m#^[a-z\+]+://#) {
 466                if (!defined $url || $url !~ m#^[a-z\+]+://#) {
 467                        fatal("E: '$path' is not a complete URL ",
 468                              "and a separate URL is not specified\n");
 469                }
 470                return ($url, $path);
 471        }
 472        return ($path, '');
 473}
 474
 475sub complete_url_ls_init {
 476        my ($ra, $repo_path, $switch, $pfx) = @_;
 477        unless ($repo_path) {
 478                print STDERR "W: $switch not specified\n";
 479                return;
 480        }
 481        $repo_path =~ s#/+$##;
 482        if ($repo_path =~ m#^[a-z\+]+://#) {
 483                $ra = Git::SVN::Ra->new($repo_path);
 484                $repo_path = '';
 485        } else {
 486                $repo_path =~ s#^/+##;
 487                unless ($ra) {
 488                        fatal("E: '$repo_path' is not a complete URL ",
 489                              "and a separate URL is not specified\n");
 490                }
 491        }
 492        my $url = $ra->{url};
 493        my $gs = Git::SVN->init($url, undef, undef, undef, 1);
 494        my $k = "svn-remote.$gs->{repo_id}.url";
 495        my $orig_url = eval { command_oneline(qw/config --get/, $k) };
 496        if ($orig_url && ($orig_url ne $gs->{url})) {
 497                die "$k already set: $orig_url\n",
 498                    "wanted to set to: $gs->{url}\n";
 499        }
 500        command_oneline('config', $k, $gs->{url}) unless $orig_url;
 501        my $remote_path = "$ra->{svn_path}/$repo_path/*";
 502        $remote_path =~ s#/+#/#g;
 503        $remote_path =~ s#^/##g;
 504        my ($n) = ($switch =~ /^--(\w+)/);
 505        if (length $pfx && $pfx !~ m#/$#) {
 506                die "--prefix='$pfx' must have a trailing slash '/'\n";
 507        }
 508        command_noisy('config', "svn-remote.$gs->{repo_id}.$n",
 509                                "$remote_path:refs/remotes/$pfx*");
 510}
 511
 512sub verify_ref {
 513        my ($ref) = @_;
 514        eval { command_oneline([ 'rev-parse', '--verify', $ref ],
 515                               { STDERR => 0 }); };
 516}
 517
 518sub get_tree_from_treeish {
 519        my ($treeish) = @_;
 520        # $treeish can be a symbolic ref, too:
 521        my $type = command_oneline(qw/cat-file -t/, $treeish);
 522        my $expected;
 523        while ($type eq 'tag') {
 524                ($treeish, $type) = command(qw/cat-file tag/, $treeish);
 525        }
 526        if ($type eq 'commit') {
 527                $expected = (grep /^tree /, command(qw/cat-file commit/,
 528                                                    $treeish))[0];
 529                ($expected) = ($expected =~ /^tree ($sha1)$/o);
 530                die "Unable to get tree from $treeish\n" unless $expected;
 531        } elsif ($type eq 'tree') {
 532                $expected = $treeish;
 533        } else {
 534                die "$treeish is a $type, expected tree, tag or commit\n";
 535        }
 536        return $expected;
 537}
 538
 539sub get_commit_entry {
 540        my ($treeish) = shift;
 541        my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
 542        my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
 543        my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
 544        open my $log_fh, '>', $commit_editmsg or croak $!;
 545
 546        my $type = command_oneline(qw/cat-file -t/, $treeish);
 547        if ($type eq 'commit' || $type eq 'tag') {
 548                my ($msg_fh, $ctx) = command_output_pipe('cat-file',
 549                                                         $type, $treeish);
 550                my $in_msg = 0;
 551                while (<$msg_fh>) {
 552                        if (!$in_msg) {
 553                                $in_msg = 1 if (/^\s*$/);
 554                        } elsif (/^git-svn-id: /) {
 555                                # skip this for now, we regenerate the
 556                                # correct one on re-fetch anyways
 557                                # TODO: set *:merge properties or like...
 558                        } else {
 559                                print $log_fh $_ or croak $!;
 560                        }
 561                }
 562                command_close_pipe($msg_fh, $ctx);
 563        }
 564        close $log_fh or croak $!;
 565
 566        if ($_edit || ($type eq 'tree')) {
 567                my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
 568                # TODO: strip out spaces, comments, like git-commit.sh
 569                system($editor, $commit_editmsg);
 570        }
 571        rename $commit_editmsg, $commit_msg or croak $!;
 572        open $log_fh, '<', $commit_msg or croak $!;
 573        { local $/; chomp($log_entry{log} = <$log_fh>); }
 574        close $log_fh or croak $!;
 575        unlink $commit_msg;
 576        \%log_entry;
 577}
 578
 579sub s_to_file {
 580        my ($str, $file, $mode) = @_;
 581        open my $fd,'>',$file or croak $!;
 582        print $fd $str,"\n" or croak $!;
 583        close $fd or croak $!;
 584        chmod ($mode &~ umask, $file) if (defined $mode);
 585}
 586
 587sub file_to_s {
 588        my $file = shift;
 589        open my $fd,'<',$file or croak "$!: file: $file\n";
 590        local $/;
 591        my $ret = <$fd>;
 592        close $fd or croak $!;
 593        $ret =~ s/\s*$//s;
 594        return $ret;
 595}
 596
 597# '<svn username> = real-name <email address>' mapping based on git-svnimport:
 598sub load_authors {
 599        open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
 600        my $log = $cmd eq 'log';
 601        while (<$authors>) {
 602                chomp;
 603                next unless /^(\S+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
 604                my ($user, $name, $email) = ($1, $2, $3);
 605                if ($log) {
 606                        $Git::SVN::Log::rusers{"$name <$email>"} = $user;
 607                } else {
 608                        $users{$user} = [$name, $email];
 609                }
 610        }
 611        close $authors or croak $!;
 612}
 613
 614# convert GetOpt::Long specs for use by git-config
 615sub read_repo_config {
 616        return unless -d $ENV{GIT_DIR};
 617        my $opts = shift;
 618        my @config_only;
 619        foreach my $o (keys %$opts) {
 620                # if we have mixedCase and a long option-only, then
 621                # it's a config-only variable that we don't need for
 622                # the command-line.
 623                push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
 624                my $v = $opts->{$o};
 625                my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
 626                $key =~ s/-//g;
 627                my $arg = 'git-config';
 628                $arg .= ' --int' if ($o =~ /[:=]i$/);
 629                $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
 630                if (ref $v eq 'ARRAY') {
 631                        chomp(my @tmp = `$arg --get-all svn.$key`);
 632                        @$v = @tmp if @tmp;
 633                } else {
 634                        chomp(my $tmp = `$arg --get svn.$key`);
 635                        if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
 636                                $$v = $tmp;
 637                        }
 638                }
 639        }
 640        delete @$opts{@config_only} if @config_only;
 641}
 642
 643sub extract_metadata {
 644        my $id = shift or return (undef, undef, undef);
 645        my ($url, $rev, $uuid) = ($id =~ /^git-svn-id:\s(\S+?)\@(\d+)
 646                                                        \s([a-f\d\-]+)$/x);
 647        if (!defined $rev || !$uuid || !$url) {
 648                # some of the original repositories I made had
 649                # identifiers like this:
 650                ($rev, $uuid) = ($id =~/^git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
 651        }
 652        return ($url, $rev, $uuid);
 653}
 654
 655sub cmt_metadata {
 656        return extract_metadata((grep(/^git-svn-id: /,
 657                command(qw/cat-file commit/, shift)))[-1]);
 658}
 659
 660package Git::SVN;
 661use strict;
 662use warnings;
 663use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
 664            $_repack $_repack_flags $_use_svm_props/;
 665use Carp qw/croak/;
 666use File::Path qw/mkpath/;
 667use File::Copy qw/copy/;
 668use IPC::Open3;
 669
 670my $_repack_nr;
 671# properties that we do not log:
 672my %SKIP_PROP;
 673BEGIN {
 674        %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
 675                                        svn:special svn:executable
 676                                        svn:entry:committed-rev
 677                                        svn:entry:last-author
 678                                        svn:entry:uuid
 679                                        svn:entry:committed-date/;
 680
 681        # some options are read globally, but can be overridden locally
 682        # per [svn-remote "..."] section.  Command-line options will *NOT*
 683        # override options set in an [svn-remote "..."] section
 684        my $e;
 685        foreach (qw/follow_parent no_metadata use_svm_props/) {
 686                my $key = $_;
 687                $key =~ tr/_//d;
 688                $e .= "sub $_ {
 689                        my (\$self) = \@_;
 690                        return \$self->{-$_} if exists \$self->{-$_};
 691                        my \$k = \"svn-remote.\$self->{repo_id}\.$key\";
 692                        eval { command_oneline(qw/config --get/, \$k) };
 693                        if (\$@) {
 694                                \$self->{-$_} = \$Git::SVN::_$_;
 695                        } else {
 696                                my \$v = command_oneline(qw/config --bool/,\$k);
 697                                \$self->{-$_} = \$v eq 'false' ? 0 : 1;
 698                        }
 699                        return \$self->{-$_} }\n";
 700        }
 701        $e .= "1;\n";
 702        eval $e or die $@;
 703}
 704
 705my %LOCKFILES;
 706END { unlink keys %LOCKFILES if %LOCKFILES }
 707
 708sub resolve_local_globs {
 709        my ($url, $fetch, $glob_spec) = @_;
 710        return unless defined $glob_spec;
 711        my $ref = $glob_spec->{ref};
 712        my $path = $glob_spec->{path};
 713        foreach (command(qw#for-each-ref --format=%(refname) refs/remotes#)) {
 714                next unless m#^refs/remotes/$ref->{regex}$#;
 715                my $p = $1;
 716                my $pathname = $path->full_path($p);
 717                my $refname = $ref->full_path($p);
 718                if (my $existing = $fetch->{$pathname}) {
 719                        if ($existing ne $refname) {
 720                                die "Refspec conflict:\n",
 721                                    "existing: refs/remotes/$existing\n",
 722                                    " globbed: refs/remotes/$refname\n";
 723                        }
 724                        my $u = (::cmt_metadata("refs/remotes/$refname"))[0];
 725                        $u =~ s!^\Q$url\E(/|$)!! or die
 726                          "refs/remotes/$refname: '$url' not found in '$u'\n";
 727                        if ($pathname ne $u) {
 728                                warn "W: Refspec glob conflict ",
 729                                     "(ref: refs/remotes/$refname):\n",
 730                                     "expected path: $pathname\n",
 731                                     "    real path: $u\n",
 732                                     "Continuing ahead with $u\n";
 733                                next;
 734                        }
 735                } else {
 736                        $fetch->{$pathname} = $refname;
 737                }
 738        }
 739}
 740
 741sub parse_revision_argument {
 742        my ($base, $head) = @_;
 743        if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
 744                return ($base, $head);
 745        }
 746        return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
 747        return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
 748        return ($head, $head) if ($::_revision eq 'HEAD');
 749        return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
 750        return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
 751        die "revision argument: $::_revision not understood by git-svn\n";
 752}
 753
 754sub fetch_all {
 755        my ($repo_id, $remotes) = @_;
 756        my $remote = $remotes->{$repo_id} or
 757                     die "[svn-remote \"$repo_id\"] unknown\n";
 758        my $fetch = $remote->{fetch};
 759        my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
 760        my (@gs, @globs);
 761        my $ra = Git::SVN::Ra->new($url);
 762        my $uuid = $ra->get_uuid;
 763        my $head = $ra->get_latest_revnum;
 764        my $base = defined $fetch ? $head : 0;
 765
 766        # read the max revs for wildcard expansion (branches/*, tags/*)
 767        foreach my $t (qw/branches tags/) {
 768                defined $remote->{$t} or next;
 769                push @globs, $remote->{$t};
 770                my $max_rev = eval { tmp_config(qw/--int --get/,
 771                                         "svn-remote.$repo_id.${t}-maxRev") };
 772                if (defined $max_rev && ($max_rev < $base)) {
 773                        $base = $max_rev;
 774                }
 775        }
 776
 777        if ($fetch) {
 778                foreach my $p (sort keys %$fetch) {
 779                        my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
 780                        my $lr = $gs->rev_db_max;
 781                        if (defined $lr) {
 782                                $base = $lr if ($lr < $base);
 783                        }
 784                        push @gs, $gs;
 785                }
 786        }
 787
 788        ($base, $head) = parse_revision_argument($base, $head);
 789        $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
 790}
 791
 792sub read_all_remotes {
 793        my $r = {};
 794        foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
 795                if (m!^(.+)\.fetch=\s*(.*)\s*:\s*refs/remotes/(.+)\s*$!) {
 796                        $r->{$1}->{fetch}->{$2} = $3;
 797                } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
 798                        $r->{$1}->{url} = $2;
 799                } elsif (m!^(.+)\.(branches|tags)=
 800                           (.*):refs/remotes/(.+)\s*$/!x) {
 801                        my ($p, $g) = ($3, $4);
 802                        my $rs = $r->{$1}->{$2} = {
 803                                          t => $2,
 804                                          remote => $1,
 805                                          path => Git::SVN::GlobSpec->new($p),
 806                                          ref => Git::SVN::GlobSpec->new($g) };
 807                        if (length($rs->{ref}->{right}) != 0) {
 808                                die "The '*' glob character must be the last ",
 809                                    "character of '$g'\n";
 810                        }
 811                }
 812        }
 813        $r;
 814}
 815
 816sub init_vars {
 817        if (defined $_repack) {
 818                $_repack = 1000 if ($_repack <= 0);
 819                $_repack_nr = $_repack;
 820                $_repack_flags ||= '-d';
 821        }
 822}
 823
 824sub verify_remotes_sanity {
 825        return unless -d $ENV{GIT_DIR};
 826        my %seen;
 827        foreach (command(qw/config -l/)) {
 828                if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
 829                        if ($seen{$1}) {
 830                                die "Remote ref refs/remote/$1 is tracked by",
 831                                    "\n  \"$_\"\nand\n  \"$seen{$1}\"\n",
 832                                    "Please resolve this ambiguity in ",
 833                                    "your git configuration file before ",
 834                                    "continuing\n";
 835                        }
 836                        $seen{$1} = $_;
 837                }
 838        }
 839}
 840
 841# we allow more chars than remotes2config.sh...
 842sub sanitize_remote_name {
 843        my ($name) = @_;
 844        $name =~ tr{A-Za-z0-9:,/+-}{.}c;
 845        $name;
 846}
 847
 848sub find_existing_remote {
 849        my ($url, $remotes) = @_;
 850        my $existing;
 851        foreach my $repo_id (keys %$remotes) {
 852                my $u = $remotes->{$repo_id}->{url} or next;
 853                next if $u ne $url;
 854                $existing = $repo_id;
 855                last;
 856        }
 857        $existing;
 858}
 859
 860sub init_remote_config {
 861        my ($self, $url, $no_write) = @_;
 862        $url =~ s!/+$!!; # strip trailing slash
 863        my $r = read_all_remotes();
 864        my $existing = find_existing_remote($url, $r);
 865        if ($existing) {
 866                unless ($no_write) {
 867                        print STDERR "Using existing ",
 868                                     "[svn-remote \"$existing\"]\n";
 869                }
 870                $self->{repo_id} = $existing;
 871        } else {
 872                my $min_url = Git::SVN::Ra->new($url)->minimize_url;
 873                $existing = find_existing_remote($min_url, $r);
 874                if ($existing) {
 875                        unless ($no_write) {
 876                                print STDERR "Using existing ",
 877                                             "[svn-remote \"$existing\"]\n";
 878                        }
 879                        $self->{repo_id} = $existing;
 880                }
 881                if ($min_url ne $url) {
 882                        unless ($no_write) {
 883                                print STDERR "Using higher level of URL: ",
 884                                             "$url => $min_url\n";
 885                        }
 886                        my $old_path = $self->{path};
 887                        $self->{path} = $url;
 888                        $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
 889                        if (length $old_path) {
 890                                $self->{path} .= "/$old_path";
 891                        }
 892                        $url = $min_url;
 893                }
 894        }
 895        my $orig_url;
 896        if (!$existing) {
 897                # verify that we aren't overwriting anything:
 898                $orig_url = eval {
 899                        command_oneline('config', '--get',
 900                                        "svn-remote.$self->{repo_id}.url")
 901                };
 902                if ($orig_url && ($orig_url ne $url)) {
 903                        die "svn-remote.$self->{repo_id}.url already set: ",
 904                            "$orig_url\nwanted to set to: $url\n";
 905                }
 906        }
 907        my ($xrepo_id, $xpath) = find_ref($self->refname);
 908        if (defined $xpath) {
 909                die "svn-remote.$xrepo_id.fetch already set to track ",
 910                    "$xpath:refs/remotes/", $self->refname, "\n";
 911        }
 912        unless ($no_write) {
 913                command_noisy('config',
 914                              "svn-remote.$self->{repo_id}.url", $url);
 915                command_noisy('config', '--add',
 916                              "svn-remote.$self->{repo_id}.fetch",
 917                              "$self->{path}:".$self->refname);
 918        }
 919        $self->{url} = $url;
 920}
 921
 922sub find_by_url { # repos_root and, path are optional
 923        my ($class, $full_url, $repos_root, $path) = @_;
 924        my $remotes = read_all_remotes();
 925        if (defined $full_url && defined $repos_root && !defined $path) {
 926                $path = $full_url;
 927                $path =~ s#^\Q$repos_root\E(?:/|$)##;
 928        }
 929        foreach my $repo_id (keys %$remotes) {
 930                my $u = $remotes->{$repo_id}->{url} or next;
 931                next if defined $repos_root && $repos_root ne $u;
 932
 933                my $fetch = $remotes->{$repo_id}->{fetch} || {};
 934                foreach (qw/branches tags/) {
 935                        resolve_local_globs($u, $fetch,
 936                                            $remotes->{$repo_id}->{$_});
 937                }
 938                my $p = $path;
 939                unless (defined $p) {
 940                        $p = $full_url;
 941                        $p =~ s#^\Q$u\E(?:/|$)## or next;
 942                }
 943                foreach my $f (keys %$fetch) {
 944                        next if $f ne $p;
 945                        return Git::SVN->new($fetch->{$f}, $repo_id, $f);
 946                }
 947        }
 948        undef;
 949}
 950
 951sub init {
 952        my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
 953        my $self = _new($class, $repo_id, $ref_id, $path);
 954        if (defined $url) {
 955                $self->init_remote_config($url, $no_write);
 956        }
 957        $self;
 958}
 959
 960sub find_ref {
 961        my ($ref_id) = @_;
 962        foreach (command(qw/config -l/)) {
 963                next unless m!^svn-remote\.(.+)\.fetch=
 964                              \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
 965                my ($repo_id, $path, $ref) = ($1, $2, $3);
 966                if ($ref eq $ref_id) {
 967                        $path = '' if ($path =~ m#^\./?#);
 968                        return ($repo_id, $path);
 969                }
 970        }
 971        (undef, undef, undef);
 972}
 973
 974sub new {
 975        my ($class, $ref_id, $repo_id, $path) = @_;
 976        if (defined $ref_id && !defined $repo_id && !defined $path) {
 977                ($repo_id, $path) = find_ref($ref_id);
 978                if (!defined $repo_id) {
 979                        die "Could not find a \"svn-remote.*.fetch\" key ",
 980                            "in the repository configuration matching: ",
 981                            "refs/remotes/$ref_id\n";
 982                }
 983        }
 984        my $self = _new($class, $repo_id, $ref_id, $path);
 985        if (!defined $self->{path} || !length $self->{path}) {
 986                my $fetch = command_oneline('config', '--get',
 987                                            "svn-remote.$repo_id.fetch",
 988                                            ":refs/remotes/$ref_id\$") or
 989                     die "Failed to read \"svn-remote.$repo_id.fetch\" ",
 990                         "\":refs/remotes/$ref_id\$\" in config\n";
 991                ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
 992        }
 993        $self->{url} = command_oneline('config', '--get',
 994                                       "svn-remote.$repo_id.url") or
 995                  die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
 996        if ((-z $self->db_path || ! -e $self->db_path) &&
 997            ::verify_ref($self->refname.'^0')) {
 998                $self->rebuild;
 999        }
1000        $self;
1001}
1002
1003sub refname { "refs/remotes/$_[0]->{ref_id}" }
1004
1005sub svm_uuid {
1006        my ($self) = @_;
1007        return $self->{svm}->{uuid} if $self->svm;
1008        $self->ra;
1009        unless ($self->{svm}) {
1010                die "SVM UUID not cached, and reading remotely failed\n";
1011        }
1012        $self->{svm}->{uuid};
1013}
1014
1015sub svm {
1016        my ($self) = @_;
1017        return $self->{svm} if $self->{svm};
1018        my $svm;
1019        # see if we have it in our config, first:
1020        eval {
1021                my $section = "svn-remote.$self->{repo_id}";
1022                $svm = {
1023                  source => tmp_config('--get', "$section.svm-source"),
1024                  uuid => tmp_config('--get', "$section.svm-uuid"),
1025                }
1026        };
1027        $self->{svm} = $svm if ($svm && $svm->{source} && $svm->{uuid});
1028        $self->{svm};
1029}
1030
1031sub _set_svm_vars {
1032        my ($self, $ra) = @_;
1033        return $ra if $self->svm;
1034
1035        my @err = ( "useSvmProps set, but failed to read SVM properties\n",
1036                    "(svm:source, svm:mirror, svm:mirror) ",
1037                    "from the following URLs:\n" );
1038        sub read_svm_props {
1039                my ($self, $props) = @_;
1040                my $src = $props->{'svm:source'};
1041                my $mirror = $props->{'svm:mirror'};
1042                my $uuid = $props->{'svm:uuid'};
1043                return undef if (!$src || !$mirror || !$uuid);
1044
1045                chomp($src, $mirror, $uuid);
1046
1047                $uuid =~ m{^[0-9a-f\-]{30,}$}
1048                    or die "doesn't look right - svm:uuid is '$uuid'\n";
1049                # don't know what a '!' is there for, also the
1050                # username is of no interest
1051                $src =~ s{/?!$}{$mirror};
1052                $src =~ s{/+$}{}; # no trailing slashes please
1053                $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
1054
1055                my $section = "svn-remote.$self->{repo_id}";
1056                tmp_config('--add', "$section.svm-source", $src);
1057                tmp_config('--add', "$section.svm-uuid", $uuid);
1058                $self->{svm} = { source => $src , uuid => $uuid };
1059                return 1;
1060        }
1061
1062        my $r = $ra->get_latest_revnum;
1063        my $path = $self->{path};
1064        my @tried_a = ($path);
1065        while (length $path) {
1066                if ($self->read_svm_props(($ra->get_dir($path, $r))[2])) {
1067                        return $ra;
1068                }
1069                $path =~ s#/?[^/]+$## && push @tried_a, $path;
1070        }
1071        if ($self->read_svm_props(($ra->get_dir('', $r))[2])) {
1072                return $ra;
1073        }
1074
1075        if ($ra->{repos_root} eq $self->{url}) {
1076                die @err, map { "  $self->{url}/$_\n" } @tried_a, "\n";
1077        }
1078
1079        # nope, make sure we're connected to the repository root:
1080        my $ok;
1081        my @tried_b;
1082        $path = $ra->{svn_path};
1083        $path =~ s#/?[^/]+$##; # we already tried this one above
1084        $ra = Git::SVN::Ra->new($ra->{repos_root});
1085        while (length $path) {
1086                $ok = $self->read_svm_props(($ra->get_dir($path, $r))[2]);
1087                last if $ok;
1088                $path =~ s#/?[^/]+$## && push @tried_b, $path;
1089        }
1090        $ok = $self->read_svm_props(($ra->get_dir('', $r))[2]) unless $ok;
1091        if (!$ok) {
1092                die @err, map { "  $self->{url}/$_\n" } @tried_a, "\n",
1093                          map { "  $ra->{url}/$_\n" } @tried_b, "\n"
1094        }
1095        Git::SVN::Ra->new($self->{url});
1096}
1097
1098# this allows us to memoize our SVN::Ra UUID locally and avoid a
1099# remote lookup (useful for 'git svn log').
1100sub ra_uuid {
1101        my ($self) = @_;
1102        unless ($self->{ra_uuid}) {
1103                my $key = "svn-remote.$self->{repo_id}.uuid";
1104                my $uuid = eval { tmp_config('--get', $key) };
1105                if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/) {
1106                        $self->{ra_uuid} = $uuid;
1107                } else {
1108                        die "ra_uuid called without URL\n" unless $self->{url};
1109                        $self->{ra_uuid} = $self->ra->get_uuid;
1110                        tmp_config('--add', $key, $self->{ra_uuid});
1111                }
1112        }
1113        $self->{ra_uuid};
1114}
1115
1116sub ra {
1117        my ($self) = shift;
1118        my $ra = Git::SVN::Ra->new($self->{url});
1119        if ($self->use_svm_props && !$self->{svm}) {
1120                if ($self->no_metadata) {
1121                        die "Can't have both 'noMetadata' and ",
1122                            "'useSvmProps' options set!\n";
1123                }
1124                $ra = $self->_set_svm_vars($ra);
1125                $self->{-want_revprops} = 1;
1126        }
1127        $ra;
1128}
1129
1130sub rel_path {
1131        my ($self) = @_;
1132        my $repos_root = $self->ra->{repos_root};
1133        return $self->{path} if ($self->{url} eq $repos_root);
1134        die "BUG: rel_path failed! repos_root: $repos_root, Ra URL: ",
1135            $self->ra->{url}, " path: $self->{path},  URL: $self->{url}\n";
1136}
1137
1138sub traverse_ignore {
1139        my ($self, $fh, $path, $r) = @_;
1140        $path =~ s#^/+##g;
1141        my $ra = $self->ra;
1142        my ($dirent, undef, $props) = $ra->get_dir($path, $r);
1143        my $p = $path;
1144        $p =~ s#^\Q$ra->{svn_path}\E/##;
1145        print $fh length $p ? "\n# $p\n" : "\n# /\n";
1146        if (my $s = $props->{'svn:ignore'}) {
1147                $s =~ s/[\r\n]+/\n/g;
1148                chomp $s;
1149                if (length $p == 0) {
1150                        $s =~ s#\n#\n/$p#g;
1151                        print $fh "/$s\n";
1152                } else {
1153                        $s =~ s#\n#\n/$p/#g;
1154                        print $fh "/$p/$s\n";
1155                }
1156        }
1157        foreach (sort keys %$dirent) {
1158                next if $dirent->{$_}->kind != $SVN::Node::dir;
1159                $self->traverse_ignore($fh, "$path/$_", $r);
1160        }
1161}
1162
1163sub last_rev { ($_[0]->last_rev_commit)[0] }
1164sub last_commit { ($_[0]->last_rev_commit)[1] }
1165
1166# returns the newest SVN revision number and newest commit SHA1
1167sub last_rev_commit {
1168        my ($self) = @_;
1169        if (defined $self->{last_rev} && defined $self->{last_commit}) {
1170                return ($self->{last_rev}, $self->{last_commit});
1171        }
1172        my $c = ::verify_ref($self->refname.'^0');
1173        if ($c && !$self->use_svm_props && !$self->no_metadata) {
1174                my $rev = (::cmt_metadata($c))[1];
1175                if (defined $rev) {
1176                        ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
1177                        return ($rev, $c);
1178                }
1179        }
1180        my $db_path = $self->db_path;
1181        unless (-e $db_path) {
1182                ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
1183                return (undef, undef);
1184        }
1185        my $offset = -41; # from tail
1186        my $rl;
1187        open my $fh, '<', $db_path or croak "$db_path not readable: $!\n";
1188        sysseek($fh, $offset, 2); # don't care for errors
1189        sysread($fh, $rl, 41) == 41 or return (undef, undef);
1190        chomp $rl;
1191        while (('0' x40) eq $rl && sysseek($fh, 0, 1) != 0) {
1192                $offset -= 41;
1193                sysseek($fh, $offset, 2); # don't care for errors
1194                sysread($fh, $rl, 41) == 41 or return (undef, undef);
1195                chomp $rl;
1196        }
1197        if ($c && $c ne $rl) {
1198                die "$db_path and ", $self->refname,
1199                    " inconsistent!:\n$c != $rl\n";
1200        }
1201        my $rev = sysseek($fh, 0, 1) or croak $!;
1202        $rev =  ($rev - 41) / 41;
1203        close $fh or croak $!;
1204        ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
1205        return ($rev, $c);
1206}
1207
1208sub get_fetch_range {
1209        my ($self, $min, $max) = @_;
1210        $max ||= $self->ra->get_latest_revnum;
1211        $min ||= $self->rev_db_max;
1212        (++$min, $max);
1213}
1214
1215sub tmp_config {
1216        my (@args) = @_;
1217        my $config = "$ENV{GIT_DIR}/svn/config";
1218        my $old_config = $ENV{GIT_CONFIG};
1219        $ENV{GIT_CONFIG} = $config;
1220        $@ = undef;
1221        my @ret = eval {
1222                unless (-f $config) {
1223                        mkfile($config);
1224                        open my $fh, '>', $config or
1225                            die "Can't open $config: $!\n";
1226                        print $fh "; This file is used internally by ",
1227                                  "git-svn\n" or die
1228                                  "Couldn't write to $config: $!\n";
1229                        print $fh "; You should not have to edit it\n" or
1230                              die "Couldn't write to $config: $!\n";
1231                        close $fh or die "Couldn't close $config: $!\n";
1232                }
1233                command('config', @args);
1234        };
1235        my $err = $@;
1236        if (defined $old_config) {
1237                $ENV{GIT_CONFIG} = $old_config;
1238        } else {
1239                delete $ENV{GIT_CONFIG};
1240        }
1241        die $err if $err;
1242        wantarray ? @ret : $ret[0];
1243}
1244
1245sub tmp_index_do {
1246        my ($self, $sub) = @_;
1247        my $old_index = $ENV{GIT_INDEX_FILE};
1248        $ENV{GIT_INDEX_FILE} = $self->{index};
1249        $@ = undef;
1250        my @ret = eval {
1251                my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
1252                mkpath([$dir]) unless -d $dir;
1253                &$sub;
1254        };
1255        my $err = $@;
1256        if (defined $old_index) {
1257                $ENV{GIT_INDEX_FILE} = $old_index;
1258        } else {
1259                delete $ENV{GIT_INDEX_FILE};
1260        }
1261        die $err if $err;
1262        wantarray ? @ret : $ret[0];
1263}
1264
1265sub assert_index_clean {
1266        my ($self, $treeish) = @_;
1267
1268        $self->tmp_index_do(sub {
1269                command_noisy('read-tree', $treeish) unless -e $self->{index};
1270                my $x = command_oneline('write-tree');
1271                my ($y) = (command(qw/cat-file commit/, $treeish) =~
1272                           /^tree ($::sha1)/mo);
1273                return if $y eq $x;
1274
1275                warn "Index mismatch: $y != $x\nrereading $treeish\n";
1276                unlink $self->{index} or die "unlink $self->{index}: $!\n";
1277                command_noisy('read-tree', $treeish);
1278                $x = command_oneline('write-tree');
1279                if ($y ne $x) {
1280                        ::fatal "trees ($treeish) $y != $x\n",
1281                                "Something is seriously wrong...\n";
1282                }
1283        });
1284}
1285
1286sub get_commit_parents {
1287        my ($self, $log_entry) = @_;
1288        my (%seen, @ret, @tmp);
1289        # legacy support for 'set-tree'; this is only used by set_tree_cb:
1290        if (my $ip = $self->{inject_parents}) {
1291                if (my $commit = delete $ip->{$log_entry->{revision}}) {
1292                        push @tmp, $commit;
1293                }
1294        }
1295        if (my $cur = ::verify_ref($self->refname.'^0')) {
1296                push @tmp, $cur;
1297        }
1298        push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
1299        while (my $p = shift @tmp) {
1300                next if $seen{$p};
1301                $seen{$p} = 1;
1302                push @ret, $p;
1303                # MAXPARENT is defined to 16 in commit-tree.c:
1304                last if @ret >= 16;
1305        }
1306        if (@tmp) {
1307                die "r$log_entry->{revision}: No room for parents:\n\t",
1308                    join("\n\t", @tmp), "\n";
1309        }
1310        @ret;
1311}
1312
1313sub full_url {
1314        my ($self) = @_;
1315        $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
1316}
1317
1318sub do_git_commit {
1319        my ($self, $log_entry) = @_;
1320        my $lr = $self->last_rev;
1321        if (defined $lr && $lr >= $log_entry->{revision}) {
1322                die "Last fetched revision of ", $self->refname,
1323                    " was r$lr, but we are about to fetch: ",
1324                    "r$log_entry->{revision}!\n";
1325        }
1326        if (my $c = $self->rev_db_get($log_entry->{revision})) {
1327                croak "$log_entry->{revision} = $c already exists! ",
1328                      "Why are we refetching it?\n";
1329        }
1330        $ENV{GIT_AUTHOR_NAME} = $ENV{GIT_COMMITTER_NAME} = $log_entry->{name};
1331        $ENV{GIT_AUTHOR_EMAIL} = $ENV{GIT_COMMITTER_EMAIL} =
1332                                                          $log_entry->{email};
1333        $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
1334
1335        my $tree = $log_entry->{tree};
1336        if (!defined $tree) {
1337                $tree = $self->tmp_index_do(sub {
1338                                            command_oneline('write-tree') });
1339        }
1340        die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
1341
1342        my @exec = ('git-commit-tree', $tree);
1343        foreach ($self->get_commit_parents($log_entry)) {
1344                push @exec, '-p', $_;
1345        }
1346        defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
1347                                                                   or croak $!;
1348        print $msg_fh $log_entry->{log} or croak $!;
1349        unless ($self->no_metadata) {
1350                print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
1351                              or croak $!;
1352        }
1353        $msg_fh->flush == 0 or croak $!;
1354        close $msg_fh or croak $!;
1355        chomp(my $commit = do { local $/; <$out_fh> });
1356        close $out_fh or croak $!;
1357        waitpid $pid, 0;
1358        croak $? if $?;
1359        if ($commit !~ /^$::sha1$/o) {
1360                die "Failed to commit, invalid sha1: $commit\n";
1361        }
1362
1363        $self->rev_db_set($log_entry->{revision}, $commit, 1);
1364
1365        $self->{last_rev} = $log_entry->{revision};
1366        $self->{last_commit} = $commit;
1367        print "r$log_entry->{revision}";
1368        if (defined $log_entry->{svm_revision}) {
1369                 print " (\@$log_entry->{svm_revision})";
1370                 $self->rev_db_set($log_entry->{svm_revision}, $commit,
1371                                   0, $self->svm_uuid);
1372        }
1373        print " = $commit ($self->{ref_id})\n";
1374        if (defined $_repack && (--$_repack_nr == 0)) {
1375                $_repack_nr = $_repack;
1376                # repack doesn't use any arguments with spaces in them, does it?
1377                print "Running git repack $_repack_flags ...\n";
1378                command_noisy('repack', split(/\s+/, $_repack_flags));
1379                print "Done repacking\n";
1380        }
1381        return $commit;
1382}
1383
1384sub match_paths {
1385        my ($self, $paths, $r) = @_;
1386        return 1 if $self->{path} eq '';
1387        if (my $path = $paths->{"/$self->{path}"}) {
1388                return ($path->{action} eq 'D') ? 0 : 1;
1389        }
1390        $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
1391        if (grep /$self->{path_regex}/, keys %$paths) {
1392                return 1;
1393        }
1394        my $c = '';
1395        foreach (split m#/#, $self->{path}) {
1396                $c .= "/$_";
1397                next unless ($paths->{$c} &&
1398                             ($paths->{$c}->{action} =~ /^[AR]$/));
1399                if ($self->ra->check_path($self->{path}, $r) ==
1400                    $SVN::Node::dir) {
1401                        return 1;
1402                }
1403        }
1404        return 0;
1405}
1406
1407sub find_parent_branch {
1408        my ($self, $paths, $rev) = @_;
1409        return undef unless $self->follow_parent;
1410        unless (defined $paths) {
1411                my $err_handler = $SVN::Error::handler;
1412                $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
1413                $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1, sub {
1414                                   $paths =
1415                                      Git::SVN::Ra::dup_changed_paths($_[0]) });
1416                $SVN::Error::handler = $err_handler;
1417        }
1418        return undef unless defined $paths;
1419
1420        # look for a parent from another branch:
1421        my @b_path_components = split m#/#, $self->rel_path;
1422        my @a_path_components;
1423        my $i;
1424        while (@b_path_components) {
1425                $i = $paths->{'/'.join('/', @b_path_components)};
1426                last if $i && defined $i->{copyfrom_path};
1427                unshift(@a_path_components, pop(@b_path_components));
1428        }
1429        return undef unless defined $i && defined $i->{copyfrom_path};
1430        my $branch_from = $i->{copyfrom_path};
1431        if (@a_path_components) {
1432                print STDERR "branch_from: $branch_from => ";
1433                $branch_from .= '/'.join('/', @a_path_components);
1434                print STDERR $branch_from, "\n";
1435        }
1436        my $r = $i->{copyfrom_rev};
1437        my $repos_root = $self->ra->{repos_root};
1438        my $url = $self->ra->{url};
1439        my $new_url = $repos_root . $branch_from;
1440        print STDERR  "Found possible branch point: ",
1441                      "$new_url => ", $self->full_url, ", $r\n";
1442        $branch_from =~ s#^/##;
1443        my $gs = Git::SVN->find_by_url($new_url, $repos_root, $branch_from);
1444        unless ($gs) {
1445                my $ref_id = $self->{ref_id};
1446                $ref_id =~ s/\@\d+$//;
1447                $ref_id .= "\@$r";
1448                # just grow a tail if we're not unique enough :x
1449                $ref_id .= '-' while find_ref($ref_id);
1450                print STDERR "Initializing parent: $ref_id\n";
1451                $gs = Git::SVN->init($new_url, '', $ref_id, $ref_id, 1);
1452        }
1453        my ($r0, $parent) = $gs->find_rev_before($r, 1);
1454        if (!defined $r0 || !defined $parent) {
1455                $gs->fetch(0, $r);
1456                ($r0, $parent) = $gs->last_rev_commit;
1457        }
1458        if (defined $r0 && defined $parent) {
1459                print STDERR "Found branch parent: ($self->{ref_id}) $parent\n";
1460                $self->assert_index_clean($parent);
1461                my $ed;
1462                if ($self->ra->can_do_switch) {
1463                        print STDERR "Following parent with do_switch\n";
1464                        # do_switch works with svn/trunk >= r22312, but that
1465                        # is not included with SVN 1.4.3 (the latest version
1466                        # at the moment), so we can't rely on it
1467                        $self->{last_commit} = $parent;
1468                        $ed = SVN::Git::Fetcher->new($self);
1469                        $gs->ra->gs_do_switch($r0, $rev, $gs,
1470                                              $self->full_url, $ed)
1471                          or die "SVN connection failed somewhere...\n";
1472                } else {
1473                        print STDERR "Following parent with do_update\n";
1474                        $ed = SVN::Git::Fetcher->new($self);
1475                        $self->ra->gs_do_update($rev, $rev, $self, $ed)
1476                          or die "SVN connection failed somewhere...\n";
1477                }
1478                print STDERR "Successfully followed parent\n";
1479                return $self->make_log_entry($rev, [$parent], $ed);
1480        }
1481        return undef;
1482}
1483
1484sub do_fetch {
1485        my ($self, $paths, $rev) = @_;
1486        my $ed;
1487        my ($last_rev, @parents);
1488        if (my $lc = $self->last_commit) {
1489                # we can have a branch that was deleted, then re-added
1490                # under the same name but copied from another path, in
1491                # which case we'll have multiple parents (we don't
1492                # want to break the original ref, nor lose copypath info):
1493                if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
1494                        push @{$log_entry->{parents}}, $lc;
1495                        return $log_entry;
1496                }
1497                $ed = SVN::Git::Fetcher->new($self);
1498                $last_rev = $self->{last_rev};
1499                $ed->{c} = $lc;
1500                @parents = ($lc);
1501        } else {
1502                $last_rev = $rev;
1503                if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
1504                        return $log_entry;
1505                }
1506                $ed = SVN::Git::Fetcher->new($self);
1507        }
1508        unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
1509                die "SVN connection failed somewhere...\n";
1510        }
1511        $self->make_log_entry($rev, \@parents, $ed);
1512}
1513
1514sub get_untracked {
1515        my ($self, $ed) = @_;
1516        my @out;
1517        my $h = $ed->{empty};
1518        foreach (sort keys %$h) {
1519                my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
1520                push @out, "  $act: " . uri_encode($_);
1521                warn "W: $act: $_\n";
1522        }
1523        foreach my $t (qw/dir_prop file_prop/) {
1524                $h = $ed->{$t} or next;
1525                foreach my $path (sort keys %$h) {
1526                        my $ppath = $path eq '' ? '.' : $path;
1527                        foreach my $prop (sort keys %{$h->{$path}}) {
1528                                next if $SKIP_PROP{$prop};
1529                                my $v = $h->{$path}->{$prop};
1530                                my $t_ppath_prop = "$t: " .
1531                                                    uri_encode($ppath) . ' ' .
1532                                                    uri_encode($prop);
1533                                if (defined $v) {
1534                                        push @out, "  +$t_ppath_prop " .
1535                                                   uri_encode($v);
1536                                } else {
1537                                        push @out, "  -$t_ppath_prop";
1538                                }
1539                        }
1540                }
1541        }
1542        foreach my $t (qw/absent_file absent_directory/) {
1543                $h = $ed->{$t} or next;
1544                foreach my $parent (sort keys %$h) {
1545                        foreach my $path (sort @{$h->{$parent}}) {
1546                                push @out, "  $t: " .
1547                                           uri_encode("$parent/$path");
1548                                warn "W: $t: $parent/$path ",
1549                                     "Insufficient permissions?\n";
1550                        }
1551                }
1552        }
1553        \@out;
1554}
1555
1556sub parse_svn_date {
1557        my $date = shift || return '+0000 1970-01-01 00:00:00';
1558        my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
1559                                            (\d\d)\:(\d\d)\:(\d\d).\d+Z$/x) or
1560                                         croak "Unable to parse date: $date\n";
1561        "+0000 $Y-$m-$d $H:$M:$S";
1562}
1563
1564sub check_author {
1565        my ($author) = @_;
1566        if (!defined $author || length $author == 0) {
1567                $author = '(no author)';
1568        }
1569        if (defined $::_authors && ! defined $::users{$author}) {
1570                die "Author: $author not defined in $::_authors file\n";
1571        }
1572        $author;
1573}
1574
1575sub make_log_entry {
1576        my ($self, $rev, $parents, $ed) = @_;
1577        my $untracked = $self->get_untracked($ed);
1578
1579        open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
1580        print $un "r$rev\n" or croak $!;
1581        print $un $_, "\n" foreach @$untracked;
1582        my %log_entry = ( parents => $parents || [], revision => $rev,
1583                          log => '');
1584
1585        my $headrev;
1586        my $logged = delete $self->{logged_rev_props};
1587        if (!$logged || $self->{-want_revprops}) {
1588                my $rp = $self->ra->rev_proplist($rev);
1589                foreach (sort keys %$rp) {
1590                        my $v = $rp->{$_};
1591                        if (/^svn:(author|date|log)$/) {
1592                                $log_entry{$1} = $v;
1593                        } elsif ($_ eq 'svm:headrev') {
1594                                $headrev = $v;
1595                        } else {
1596                                print $un "  rev_prop: ", uri_encode($_), ' ',
1597                                          uri_encode($v), "\n";
1598                        }
1599                }
1600        } else {
1601                map { $log_entry{$_} = $logged->{$_} } keys %$logged;
1602        }
1603        close $un or croak $!;
1604
1605        $log_entry{date} = parse_svn_date($log_entry{date});
1606        $log_entry{log} .= "\n";
1607        my $author = $log_entry{author} = check_author($log_entry{author});
1608        my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
1609                                                       : ($author, undef);
1610        if (defined $headrev && $self->use_svm_props) {
1611                my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$};
1612                if ($uuid ne $self->{svm}->{uuid}) {
1613                        die "UUID mismatch on SVM path:\n",
1614                            "expected: $self->{svm}->{uuid}\n",
1615                            "     got: $uuid\n";
1616                }
1617                my $full_url = $self->{svm}->{source};
1618                $full_url .= "/$self->{path}" if length $self->{path};
1619                $log_entry{metadata} = "$full_url\@$r $uuid";
1620                $log_entry{svm_revision} = $r;
1621                $email ||= "$author\@$uuid"
1622        } else {
1623                $log_entry{metadata} = $self->full_url . "\@$rev " .
1624                                       $self->ra->get_uuid;
1625                $email ||= "$author\@" . $self->ra->get_uuid;
1626        }
1627        $log_entry{name} = $name;
1628        $log_entry{email} = $email;
1629        \%log_entry;
1630}
1631
1632sub fetch {
1633        my ($self, $min_rev, $max_rev, @parents) = @_;
1634        my ($last_rev, $last_commit) = $self->last_rev_commit;
1635        my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
1636        $self->ra->gs_fetch_loop_common($base, $head, [$self]);
1637}
1638
1639sub set_tree_cb {
1640        my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
1641        $self->{inject_parents} = { $rev => $tree };
1642        $self->fetch(undef, undef);
1643}
1644
1645sub set_tree {
1646        my ($self, $tree) = (shift, shift);
1647        my $log_entry = ::get_commit_entry($tree);
1648        unless ($self->{last_rev}) {
1649                fatal("Must have an existing revision to commit\n");
1650        }
1651        my %ed_opts = ( r => $self->{last_rev},
1652                        log => $log_entry->{log},
1653                        ra => $self->ra,
1654                        tree_a => $self->{last_commit},
1655                        tree_b => $tree,
1656                        editor_cb => sub {
1657                               $self->set_tree_cb($log_entry, $tree, @_) },
1658                        svn_path => $self->{path} );
1659        if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
1660                print "No changes\nr$self->{last_rev} = $tree\n";
1661        }
1662}
1663
1664sub rebuild {
1665        my ($self) = @_;
1666        my $db_path = $self->db_path;
1667        if (-f $self->{db_root}) {
1668                rename $self->{db_root}, $db_path or die
1669                     "rename $self->{db_root} => $db_path failed: $!\n";
1670                my ($dir, $base) = ($db_path =~ m#^(.*?)/?([^/]+)$#);
1671                symlink $base, $self->{db_root} or die
1672                     "symlink $base => $self->{db_root} failed: $!\n";
1673                return;
1674        }
1675        print "Rebuilding $db_path ...\n";
1676        my ($rev_list, $ctx) = command_output_pipe("rev-list", $self->refname);
1677        my $latest;
1678        my $full_url = $self->full_url;
1679        my $svn_uuid;
1680        while (<$rev_list>) {
1681                chomp;
1682                my $c = $_;
1683                die "Non-SHA1: $c\n" unless $c =~ /^$::sha1$/o;
1684                my ($url, $rev, $uuid) = ::cmt_metadata($c);
1685
1686                # ignore merges (from set-tree)
1687                next if (!defined $rev || !$uuid);
1688
1689                # if we merged or otherwise started elsewhere, this is
1690                # how we break out of it
1691                if ((defined $svn_uuid && ($uuid ne $svn_uuid)) ||
1692                    ($full_url && $url && ($url ne $full_url))) {
1693                        next;
1694                }
1695                $latest ||= $rev;
1696                $svn_uuid ||= $uuid;
1697
1698                $self->rev_db_set($rev, $c);
1699                print "r$rev = $c\n";
1700        }
1701        command_close_pipe($rev_list, $ctx);
1702        print "Done rebuilding $db_path\n";
1703}
1704
1705# rev_db:
1706# Tie::File seems to be prone to offset errors if revisions get sparse,
1707# it's not that fast, either.  Tie::File is also not in Perl 5.6.  So
1708# one of my favorite modules is out :<  Next up would be one of the DBM
1709# modules, but I'm not sure which is most portable...  So I'll just
1710# go with something that's plain-text, but still capable of
1711# being randomly accessed.  So here's my ultra-simple fixed-width
1712# database.  All records are 40 characters + "\n", so it's easy to seek
1713# to a revision: (41 * rev) is the byte offset.
1714# A record of 40 0s denotes an empty revision.
1715# And yes, it's still pretty fast (faster than Tie::File).
1716# These files are disposable unless noMetadata or useSvmProps is set
1717
1718sub _rev_db_set {
1719        my ($fh, $rev, $commit) = @_;
1720        my $offset = $rev * 41;
1721        # assume that append is the common case:
1722        seek $fh, 0, 2 or croak $!;
1723        my $pos = tell $fh;
1724        if ($pos < $offset) {
1725                for (1 .. (($offset - $pos) / 41)) {
1726                        print $fh (('0' x 40),"\n") or croak $!;
1727                }
1728        }
1729        seek $fh, $offset, 0 or croak $!;
1730        print $fh $commit,"\n" or croak $!;
1731}
1732
1733sub mkfile {
1734        my ($path) = @_;
1735        unless (-e $path) {
1736                my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
1737                mkpath([$dir]) unless -d $dir;
1738                open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
1739                close $fh or die "Couldn't close (create) $path: $!\n";
1740        }
1741}
1742
1743sub rev_db_set {
1744        my ($self, $rev, $commit, $update_ref, $uuid) = @_;
1745        length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
1746        my $db = $self->db_path($uuid);
1747        my $db_lock = "$db.lock";
1748        my $sig;
1749        if ($update_ref) {
1750                $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
1751                            $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
1752        }
1753        mkfile($db);
1754
1755        $LOCKFILES{$db_lock} = 1;
1756        my $sync;
1757        # both of these options make our .rev_db file very, very important
1758        # and we can't afford to lose it because rebuild() won't work
1759        if ($self->use_svm_props || $self->no_metadata) {
1760                $sync = 1;
1761                copy($db, $db_lock) or die "rev_db_set(@_): ",
1762                                           "Failed to copy: ",
1763                                           "$db => $db_lock ($!)\n";
1764        } else {
1765                rename $db, $db_lock or die "rev_db_set(@_): ",
1766                                            "Failed to rename: ",
1767                                            "$db => $db_lock ($!)\n";
1768        }
1769        open my $fh, '+<', $db_lock or die "Couldn't open $db_lock: $!\n";
1770        _rev_db_set($fh, $rev, $commit);
1771        if ($sync) {
1772                $fh->flush or die "Couldn't flush $db_lock: $!\n";
1773                $fh->sync or die "Couldn't sync $db_lock: $!\n";
1774        }
1775        close $fh or croak $!;
1776        if ($update_ref) {
1777                command_noisy('update-ref', '-m', "r$rev",
1778                              $self->refname, $commit);
1779        }
1780        rename $db_lock, $db or die "rev_db_set(@_): ", "Failed to rename: ",
1781                                    "$db_lock => $db ($!)\n";
1782        delete $LOCKFILES{$db_lock};
1783        if ($update_ref) {
1784                $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
1785                            $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
1786                kill $sig, $$ if defined $sig;
1787        }
1788}
1789
1790sub rev_db_max {
1791        my ($self) = @_;
1792        my $db_path = $self->db_path;
1793        my @stat = stat $db_path or return 0;
1794        ($stat[7] % 41) == 0 or die "$db_path inconsistent size: $stat[7]\n";
1795        my $max = $stat[7] / 41;
1796        (($max > 0) ? $max - 1 : 0);
1797}
1798
1799sub rev_db_get {
1800        my ($self, $rev, $uuid) = @_;
1801        my $ret;
1802        my $offset = $rev * 41;
1803        my $db_path = $self->db_path($uuid);
1804        return undef unless -e $db_path;
1805        open my $fh, '<', $db_path or croak $!;
1806        if (sysseek($fh, $offset, 0) == $offset) {
1807                my $read = sysread($fh, $ret, 40);
1808                $ret = undef if ($read != 40 || $ret eq ('0'x40));
1809        }
1810        close $fh or croak $!;
1811        $ret;
1812}
1813
1814sub find_rev_before {
1815        my ($self, $rev, $eq_ok) = @_;
1816        --$rev unless $eq_ok;
1817        while ($rev > 0) {
1818                if (my $c = $self->rev_db_get($rev)) {
1819                        return ($rev, $c);
1820                }
1821                --$rev;
1822        }
1823        return (undef, undef);
1824}
1825
1826sub _new {
1827        my ($class, $repo_id, $ref_id, $path) = @_;
1828        unless (defined $repo_id && length $repo_id) {
1829                $repo_id = $Git::SVN::default_repo_id;
1830        }
1831        unless (defined $ref_id && length $ref_id) {
1832                $_[2] = $ref_id = $Git::SVN::default_ref_id;
1833        }
1834        $_[1] = $repo_id = sanitize_remote_name($repo_id);
1835        my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
1836        $_[3] = $path = '' unless (defined $path);
1837        mkpath(["$ENV{GIT_DIR}/svn"]);
1838        bless {
1839                ref_id => $ref_id, dir => $dir, index => "$dir/index",
1840                path => $path, config => "$ENV{GIT_DIR}/svn/config",
1841                db_root => "$dir/.rev_db", repo_id => $repo_id }, $class;
1842}
1843
1844sub db_path {
1845        my ($self, $uuid) = @_;
1846        $uuid ||= $self->ra_uuid;
1847        "$self->{db_root}.$uuid";
1848}
1849
1850sub uri_encode {
1851        my ($f) = @_;
1852        $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
1853        $f
1854}
1855
1856package Git::SVN::Prompt;
1857use strict;
1858use warnings;
1859require SVN::Core;
1860use vars qw/$_no_auth_cache $_username/;
1861
1862sub simple {
1863        my ($cred, $realm, $default_username, $may_save, $pool) = @_;
1864        $may_save = undef if $_no_auth_cache;
1865        $default_username = $_username if defined $_username;
1866        if (defined $default_username && length $default_username) {
1867                if (defined $realm && length $realm) {
1868                        print STDERR "Authentication realm: $realm\n";
1869                        STDERR->flush;
1870                }
1871                $cred->username($default_username);
1872        } else {
1873                username($cred, $realm, $may_save, $pool);
1874        }
1875        $cred->password(_read_password("Password for '" .
1876                                       $cred->username . "': ", $realm));
1877        $cred->may_save($may_save);
1878        $SVN::_Core::SVN_NO_ERROR;
1879}
1880
1881sub ssl_server_trust {
1882        my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
1883        $may_save = undef if $_no_auth_cache;
1884        print STDERR "Error validating server certificate for '$realm':\n";
1885        if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
1886                print STDERR " - The certificate is not issued by a trusted ",
1887                      "authority. Use the\n",
1888                      "   fingerprint to validate the certificate manually!\n";
1889        }
1890        if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
1891                print STDERR " - The certificate hostname does not match.\n";
1892        }
1893        if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
1894                print STDERR " - The certificate is not yet valid.\n";
1895        }
1896        if ($failures & $SVN::Auth::SSL::EXPIRED) {
1897                print STDERR " - The certificate has expired.\n";
1898        }
1899        if ($failures & $SVN::Auth::SSL::OTHER) {
1900                print STDERR " - The certificate has an unknown error.\n";
1901        }
1902        printf STDERR
1903                "Certificate information:\n".
1904                " - Hostname: %s\n".
1905                " - Valid: from %s until %s\n".
1906                " - Issuer: %s\n".
1907                " - Fingerprint: %s\n",
1908                map $cert_info->$_, qw(hostname valid_from valid_until
1909                                       issuer_dname fingerprint);
1910        my $choice;
1911prompt:
1912        print STDERR $may_save ?
1913              "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
1914              "(R)eject or accept (t)emporarily? ";
1915        STDERR->flush;
1916        $choice = lc(substr(<STDIN> || 'R', 0, 1));
1917        if ($choice =~ /^t$/i) {
1918                $cred->may_save(undef);
1919        } elsif ($choice =~ /^r$/i) {
1920                return -1;
1921        } elsif ($may_save && $choice =~ /^p$/i) {
1922                $cred->may_save($may_save);
1923        } else {
1924                goto prompt;
1925        }
1926        $cred->accepted_failures($failures);
1927        $SVN::_Core::SVN_NO_ERROR;
1928}
1929
1930sub ssl_client_cert {
1931        my ($cred, $realm, $may_save, $pool) = @_;
1932        $may_save = undef if $_no_auth_cache;
1933        print STDERR "Client certificate filename: ";
1934        STDERR->flush;
1935        chomp(my $filename = <STDIN>);
1936        $cred->cert_file($filename);
1937        $cred->may_save($may_save);
1938        $SVN::_Core::SVN_NO_ERROR;
1939}
1940
1941sub ssl_client_cert_pw {
1942        my ($cred, $realm, $may_save, $pool) = @_;
1943        $may_save = undef if $_no_auth_cache;
1944        $cred->password(_read_password("Password: ", $realm));
1945        $cred->may_save($may_save);
1946        $SVN::_Core::SVN_NO_ERROR;
1947}
1948
1949sub username {
1950        my ($cred, $realm, $may_save, $pool) = @_;
1951        $may_save = undef if $_no_auth_cache;
1952        if (defined $realm && length $realm) {
1953                print STDERR "Authentication realm: $realm\n";
1954        }
1955        my $username;
1956        if (defined $_username) {
1957                $username = $_username;
1958        } else {
1959                print STDERR "Username: ";
1960                STDERR->flush;
1961                chomp($username = <STDIN>);
1962        }
1963        $cred->username($username);
1964        $cred->may_save($may_save);
1965        $SVN::_Core::SVN_NO_ERROR;
1966}
1967
1968sub _read_password {
1969        my ($prompt, $realm) = @_;
1970        print STDERR $prompt;
1971        STDERR->flush;
1972        require Term::ReadKey;
1973        Term::ReadKey::ReadMode('noecho');
1974        my $password = '';
1975        while (defined(my $key = Term::ReadKey::ReadKey(0))) {
1976                last if $key =~ /[\012\015]/; # \n\r
1977                $password .= $key;
1978        }
1979        Term::ReadKey::ReadMode('restore');
1980        print STDERR "\n";
1981        STDERR->flush;
1982        $password;
1983}
1984
1985package main;
1986
1987{
1988        my $kill_stupid_warnings = $SVN::Node::none.$SVN::Node::file.
1989                                $SVN::Node::dir.$SVN::Node::unknown.
1990                                $SVN::Node::none.$SVN::Node::file.
1991                                $SVN::Node::dir.$SVN::Node::unknown.
1992                                $SVN::Auth::SSL::CNMISMATCH.
1993                                $SVN::Auth::SSL::NOTYETVALID.
1994                                $SVN::Auth::SSL::EXPIRED.
1995                                $SVN::Auth::SSL::UNKNOWNCA.
1996                                $SVN::Auth::SSL::OTHER;
1997}
1998
1999package SVN::Git::Fetcher;
2000use vars qw/@ISA/;
2001use strict;
2002use warnings;
2003use Carp qw/croak/;
2004use IO::File qw//;
2005use Digest::MD5;
2006
2007# file baton members: path, mode_a, mode_b, pool, fh, blob, base
2008sub new {
2009        my ($class, $git_svn) = @_;
2010        my $self = SVN::Delta::Editor->new;
2011        bless $self, $class;
2012        $self->{c} = $git_svn->{last_commit} if exists $git_svn->{last_commit};
2013        $self->{empty} = {};
2014        $self->{dir_prop} = {};
2015        $self->{file_prop} = {};
2016        $self->{absent_dir} = {};
2017        $self->{absent_file} = {};
2018        $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
2019        $self;
2020}
2021
2022sub set_path_strip {
2023        my ($self, $path) = @_;
2024        $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
2025}
2026
2027sub open_root {
2028        { path => '' };
2029}
2030
2031sub open_directory {
2032        my ($self, $path, $pb, $rev) = @_;
2033        { path => $path };
2034}
2035
2036sub git_path {
2037        my ($self, $path) = @_;
2038        if ($self->{path_strip}) {
2039                $path =~ s!$self->{path_strip}!! or
2040                  die "Failed to strip path '$path' ($self->{path_strip})\n";
2041        }
2042        $path;
2043}
2044
2045sub delete_entry {
2046        my ($self, $path, $rev, $pb) = @_;
2047
2048        my $gpath = $self->git_path($path);
2049        return undef if ($gpath eq '');
2050
2051        # remove entire directories.
2052        if (command('ls-tree', $self->{c}, '--', $gpath) =~ /^040000 tree/) {
2053                my ($ls, $ctx) = command_output_pipe(qw/ls-tree
2054                                                     -r --name-only -z/,
2055                                                     $self->{c}, '--', $gpath);
2056                local $/ = "\0";
2057                while (<$ls>) {
2058                        chomp;
2059                        $self->{gii}->remove($_);
2060                        print "\tD\t$_\n" unless $::_q;
2061                }
2062                print "\tD\t$gpath/\n" unless $::_q;
2063                command_close_pipe($ls, $ctx);
2064                $self->{empty}->{$path} = 0
2065        } else {
2066                $self->{gii}->remove($gpath);
2067                print "\tD\t$gpath\n" unless $::_q;
2068        }
2069        undef;
2070}
2071
2072sub open_file {
2073        my ($self, $path, $pb, $rev) = @_;
2074        my $gpath = $self->git_path($path);
2075        my ($mode, $blob) = (command('ls-tree', $self->{c}, '--', $gpath)
2076                             =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
2077        unless (defined $mode && defined $blob) {
2078                die "$path was not found in commit $self->{c} (r$rev)\n";
2079        }
2080        { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
2081          pool => SVN::Pool->new, action => 'M' };
2082}
2083
2084sub add_file {
2085        my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
2086        my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
2087        delete $self->{empty}->{$dir};
2088        { path => $path, mode_a => 100644, mode_b => 100644,
2089          pool => SVN::Pool->new, action => 'A' };
2090}
2091
2092sub add_directory {
2093        my ($self, $path, $cp_path, $cp_rev) = @_;
2094        my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
2095        delete $self->{empty}->{$dir};
2096        $self->{empty}->{$path} = 1;
2097        { path => $path };
2098}
2099
2100sub change_dir_prop {
2101        my ($self, $db, $prop, $value) = @_;
2102        $self->{dir_prop}->{$db->{path}} ||= {};
2103        $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
2104        undef;
2105}
2106
2107sub absent_directory {
2108        my ($self, $path, $pb) = @_;
2109        $self->{absent_dir}->{$pb->{path}} ||= [];
2110        push @{$self->{absent_dir}->{$pb->{path}}}, $path;
2111        undef;
2112}
2113
2114sub absent_file {
2115        my ($self, $path, $pb) = @_;
2116        $self->{absent_file}->{$pb->{path}} ||= [];
2117        push @{$self->{absent_file}->{$pb->{path}}}, $path;
2118        undef;
2119}
2120
2121sub change_file_prop {
2122        my ($self, $fb, $prop, $value) = @_;
2123        if ($prop eq 'svn:executable') {
2124                if ($fb->{mode_b} != 120000) {
2125                        $fb->{mode_b} = defined $value ? 100755 : 100644;
2126                }
2127        } elsif ($prop eq 'svn:special') {
2128                $fb->{mode_b} = defined $value ? 120000 : 100644;
2129        } else {
2130                $self->{file_prop}->{$fb->{path}} ||= {};
2131                $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
2132        }
2133        undef;
2134}
2135
2136sub apply_textdelta {
2137        my ($self, $fb, $exp) = @_;
2138        my $fh = IO::File->new_tmpfile;
2139        $fh->autoflush(1);
2140        # $fh gets auto-closed() by SVN::TxDelta::apply(),
2141        # (but $base does not,) so dup() it for reading in close_file
2142        open my $dup, '<&', $fh or croak $!;
2143        my $base = IO::File->new_tmpfile;
2144        $base->autoflush(1);
2145        if ($fb->{blob}) {
2146                defined (my $pid = fork) or croak $!;
2147                if (!$pid) {
2148                        open STDOUT, '>&', $base or croak $!;
2149                        print STDOUT 'link ' if ($fb->{mode_a} == 120000);
2150                        exec qw/git-cat-file blob/, $fb->{blob} or croak $!;
2151                }
2152                waitpid $pid, 0;
2153                croak $? if $?;
2154
2155                if (defined $exp) {
2156                        seek $base, 0, 0 or croak $!;
2157                        my $md5 = Digest::MD5->new;
2158                        $md5->addfile($base);
2159                        my $got = $md5->hexdigest;
2160                        die "Checksum mismatch: $fb->{path} $fb->{blob}\n",
2161                            "expected: $exp\n",
2162                            "     got: $got\n" if ($got ne $exp);
2163                }
2164        }
2165        seek $base, 0, 0 or croak $!;
2166        $fb->{fh} = $dup;
2167        $fb->{base} = $base;
2168        [ SVN::TxDelta::apply($base, $fh, undef, $fb->{path}, $fb->{pool}) ];
2169}
2170
2171sub close_file {
2172        my ($self, $fb, $exp) = @_;
2173        my $hash;
2174        my $path = $self->git_path($fb->{path});
2175        if (my $fh = $fb->{fh}) {
2176                seek($fh, 0, 0) or croak $!;
2177                my $md5 = Digest::MD5->new;
2178                $md5->addfile($fh);
2179                my $got = $md5->hexdigest;
2180                die "Checksum mismatch: $path\n",
2181                    "expected: $exp\n    got: $got\n" if ($got ne $exp);
2182                seek($fh, 0, 0) or croak $!;
2183                if ($fb->{mode_b} == 120000) {
2184                        read($fh, my $buf, 5) == 5 or croak $!;
2185                        $buf eq 'link ' or die "$path has mode 120000",
2186                                               "but is not a link\n";
2187                }
2188                defined(my $pid = open my $out,'-|') or die "Can't fork: $!\n";
2189                if (!$pid) {
2190                        open STDIN, '<&', $fh or croak $!;
2191                        exec qw/git-hash-object -w --stdin/ or croak $!;
2192                }
2193                chomp($hash = do { local $/; <$out> });
2194                close $out or croak $!;
2195                close $fh or croak $!;
2196                $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
2197                close $fb->{base} or croak $!;
2198        } else {
2199                $hash = $fb->{blob} or die "no blob information\n";
2200        }
2201        $fb->{pool}->clear;
2202        $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
2203        print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
2204        undef;
2205}
2206
2207sub abort_edit {
2208        my $self = shift;
2209        $self->{nr} = $self->{gii}->{nr};
2210        delete $self->{gii};
2211        $self->SUPER::abort_edit(@_);
2212}
2213
2214sub close_edit {
2215        my $self = shift;
2216        $self->{git_commit_ok} = 1;
2217        $self->{nr} = $self->{gii}->{nr};
2218        delete $self->{gii};
2219        $self->SUPER::close_edit(@_);
2220}
2221
2222package SVN::Git::Editor;
2223use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
2224use strict;
2225use warnings;
2226use Carp qw/croak/;
2227use IO::File;
2228use Digest::MD5;
2229
2230sub new {
2231        my ($class, $opts) = @_;
2232        foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
2233                die "$_ required!\n" unless (defined $opts->{$_});
2234        }
2235
2236        my $pool = SVN::Pool->new;
2237        my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
2238        my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
2239                                     $opts->{r}, $mods);
2240
2241        # $opts->{ra} functions should not be used after this:
2242        my @ce  = $opts->{ra}->get_commit_editor($opts->{log},
2243                                                $opts->{editor_cb}, $pool);
2244        my $self = SVN::Delta::Editor->new(@ce, $pool);
2245        bless $self, $class;
2246        foreach (qw/svn_path r tree_a tree_b/) {
2247                $self->{$_} = $opts->{$_};
2248        }
2249        $self->{url} = $opts->{ra}->{url};
2250        $self->{mods} = $mods;
2251        $self->{types} = $types;
2252        $self->{pool} = $pool;
2253        $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
2254        $self->{rm} = { };
2255        $self->{path_prefix} = length $self->{svn_path} ?
2256                               "$self->{svn_path}/" : '';
2257        return $self;
2258}
2259
2260sub generate_diff {
2261        my ($tree_a, $tree_b) = @_;
2262        my @diff_tree = qw(diff-tree -z -r);
2263        if ($_cp_similarity) {
2264                push @diff_tree, "-C$_cp_similarity";
2265        } else {
2266                push @diff_tree, '-C';
2267        }
2268        push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
2269        push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
2270        push @diff_tree, $tree_a, $tree_b;
2271        my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
2272        local $/ = "\0";
2273        my $state = 'meta';
2274        my @mods;
2275        while (<$diff_fh>) {
2276                chomp $_; # this gets rid of the trailing "\0"
2277                if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
2278                                        $::sha1\s($::sha1)\s
2279                                        ([MTCRAD])\d*$/xo) {
2280                        push @mods, {   mode_a => $1, mode_b => $2,
2281                                        sha1_b => $3, chg => $4 };
2282                        if ($4 =~ /^(?:C|R)$/) {
2283                                $state = 'file_a';
2284                        } else {
2285                                $state = 'file_b';
2286                        }
2287                } elsif ($state eq 'file_a') {
2288                        my $x = $mods[$#mods] or croak "Empty array\n";
2289                        if ($x->{chg} !~ /^(?:C|R)$/) {
2290                                croak "Error parsing $_, $x->{chg}\n";
2291                        }
2292                        $x->{file_a} = $_;
2293                        $state = 'file_b';
2294                } elsif ($state eq 'file_b') {
2295                        my $x = $mods[$#mods] or croak "Empty array\n";
2296                        if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
2297                                croak "Error parsing $_, $x->{chg}\n";
2298                        }
2299                        if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
2300                                croak "Error parsing $_, $x->{chg}\n";
2301                        }
2302                        $x->{file_b} = $_;
2303                        $state = 'meta';
2304                } else {
2305                        croak "Error parsing $_\n";
2306                }
2307        }
2308        command_close_pipe($diff_fh, $ctx);
2309        \@mods;
2310}
2311
2312sub check_diff_paths {
2313        my ($ra, $pfx, $rev, $mods) = @_;
2314        my %types;
2315        $pfx .= '/' if length $pfx;
2316
2317        sub type_diff_paths {
2318                my ($ra, $types, $path, $rev) = @_;
2319                my @p = split m#/+#, $path;
2320                my $c = shift @p;
2321                unless (defined $types->{$c}) {
2322                        $types->{$c} = $ra->check_path($c, $rev);
2323                }
2324                while (@p) {
2325                        $c .= '/' . shift @p;
2326                        next if defined $types->{$c};
2327                        $types->{$c} = $ra->check_path($c, $rev);
2328                }
2329        }
2330
2331        foreach my $m (@$mods) {
2332                foreach my $f (qw/file_a file_b/) {
2333                        next unless defined $m->{$f};
2334                        my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
2335                        if (length $pfx.$dir && ! defined $types{$dir}) {
2336                                type_diff_paths($ra, \%types, $pfx.$dir, $rev);
2337                        }
2338                }
2339        }
2340        \%types;
2341}
2342
2343sub split_path {
2344        return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
2345}
2346
2347sub repo_path {
2348        my ($self, $path) = @_;
2349        $self->{path_prefix}.(defined $path ? $path : '');
2350}
2351
2352sub url_path {
2353        my ($self, $path) = @_;
2354        $self->{url} . '/' . $self->repo_path($path);
2355}
2356
2357sub rmdirs {
2358        my ($self) = @_;
2359        my $rm = $self->{rm};
2360        delete $rm->{''}; # we never delete the url we're tracking
2361        return unless %$rm;
2362
2363        foreach (keys %$rm) {
2364                my @d = split m#/#, $_;
2365                my $c = shift @d;
2366                $rm->{$c} = 1;
2367                while (@d) {
2368                        $c .= '/' . shift @d;
2369                        $rm->{$c} = 1;
2370                }
2371        }
2372        delete $rm->{$self->{svn_path}};
2373        delete $rm->{''}; # we never delete the url we're tracking
2374        return unless %$rm;
2375
2376        my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
2377                                             $self->{tree_b});
2378        local $/ = "\0";
2379        while (<$fh>) {
2380                chomp;
2381                my @dn = split m#/#, $_;
2382                while (pop @dn) {
2383                        delete $rm->{join '/', @dn};
2384                }
2385                unless (%$rm) {
2386                        close $fh;
2387                        return;
2388                }
2389        }
2390        command_close_pipe($fh, $ctx);
2391
2392        my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
2393        foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
2394                $self->close_directory($bat->{$d}, $p);
2395                my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
2396                print "\tD+\t$d/\n" unless $::_q;
2397                $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
2398                delete $bat->{$d};
2399        }
2400}
2401
2402sub open_or_add_dir {
2403        my ($self, $full_path, $baton) = @_;
2404        my $t = $self->{types}->{$full_path};
2405        if (!defined $t) {
2406                die "$full_path not known in r$self->{r} or we have a bug!\n";
2407        }
2408        if ($t == $SVN::Node::none) {
2409                return $self->add_directory($full_path, $baton,
2410                                                undef, -1, $self->{pool});
2411        } elsif ($t == $SVN::Node::dir) {
2412                return $self->open_directory($full_path, $baton,
2413                                                $self->{r}, $self->{pool});
2414        }
2415        print STDERR "$full_path already exists in repository at ",
2416                "r$self->{r} and it is not a directory (",
2417                ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
2418        exit 1;
2419}
2420
2421sub ensure_path {
2422        my ($self, $path) = @_;
2423        my $bat = $self->{bat};
2424        my $repo_path = $self->repo_path($path);
2425        return $bat->{''} unless (length $repo_path);
2426        my @p = split m#/+#, $repo_path;
2427        my $c = shift @p;
2428        $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
2429        while (@p) {
2430                my $c0 = $c;
2431                $c .= '/' . shift @p;
2432                $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
2433        }
2434        return $bat->{$c};
2435}
2436
2437sub A {
2438        my ($self, $m) = @_;
2439        my ($dir, $file) = split_path($m->{file_b});
2440        my $pbat = $self->ensure_path($dir);
2441        my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2442                                        undef, -1);
2443        print "\tA\t$m->{file_b}\n" unless $::_q;
2444        $self->chg_file($fbat, $m);
2445        $self->close_file($fbat,undef,$self->{pool});
2446}
2447
2448sub C {
2449        my ($self, $m) = @_;
2450        my ($dir, $file) = split_path($m->{file_b});
2451        my $pbat = $self->ensure_path($dir);
2452        my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2453                                $self->url_path($m->{file_a}), $self->{r});
2454        print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
2455        $self->chg_file($fbat, $m);
2456        $self->close_file($fbat,undef,$self->{pool});
2457}
2458
2459sub delete_entry {
2460        my ($self, $path, $pbat) = @_;
2461        my $rpath = $self->repo_path($path);
2462        my ($dir, $file) = split_path($rpath);
2463        $self->{rm}->{$dir} = 1;
2464        $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
2465}
2466
2467sub R {
2468        my ($self, $m) = @_;
2469        my ($dir, $file) = split_path($m->{file_b});
2470        my $pbat = $self->ensure_path($dir);
2471        my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2472                                $self->url_path($m->{file_a}), $self->{r});
2473        print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
2474        $self->chg_file($fbat, $m);
2475        $self->close_file($fbat,undef,$self->{pool});
2476
2477        ($dir, $file) = split_path($m->{file_a});
2478        $pbat = $self->ensure_path($dir);
2479        $self->delete_entry($m->{file_a}, $pbat);
2480}
2481
2482sub M {
2483        my ($self, $m) = @_;
2484        my ($dir, $file) = split_path($m->{file_b});
2485        my $pbat = $self->ensure_path($dir);
2486        my $fbat = $self->open_file($self->repo_path($m->{file_b}),
2487                                $pbat,$self->{r},$self->{pool});
2488        print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
2489        $self->chg_file($fbat, $m);
2490        $self->close_file($fbat,undef,$self->{pool});
2491}
2492
2493sub T { shift->M(@_) }
2494
2495sub change_file_prop {
2496        my ($self, $fbat, $pname, $pval) = @_;
2497        $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
2498}
2499
2500sub chg_file {
2501        my ($self, $fbat, $m) = @_;
2502        if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
2503                $self->change_file_prop($fbat,'svn:executable','*');
2504        } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
2505                $self->change_file_prop($fbat,'svn:executable',undef);
2506        }
2507        my $fh = IO::File->new_tmpfile or croak $!;
2508        if ($m->{mode_b} =~ /^120/) {
2509                print $fh 'link ' or croak $!;
2510                $self->change_file_prop($fbat,'svn:special','*');
2511        } elsif ($m->{mode_a} =~ /^120/ && $m->{mode_b} !~ /^120/) {
2512                $self->change_file_prop($fbat,'svn:special',undef);
2513        }
2514        defined(my $pid = fork) or croak $!;
2515        if (!$pid) {
2516                open STDOUT, '>&', $fh or croak $!;
2517                exec qw/git-cat-file blob/, $m->{sha1_b} or croak $!;
2518        }
2519        waitpid $pid, 0;
2520        croak $? if $?;
2521        $fh->flush == 0 or croak $!;
2522        seek $fh, 0, 0 or croak $!;
2523
2524        my $md5 = Digest::MD5->new;
2525        $md5->addfile($fh) or croak $!;
2526        seek $fh, 0, 0 or croak $!;
2527
2528        my $exp = $md5->hexdigest;
2529        my $pool = SVN::Pool->new;
2530        my $atd = $self->apply_textdelta($fbat, undef, $pool);
2531        my $got = SVN::TxDelta::send_stream($fh, @$atd, $pool);
2532        die "Checksum mismatch\nexpected: $exp\ngot: $got\n" if ($got ne $exp);
2533        $pool->clear;
2534
2535        close $fh or croak $!;
2536}
2537
2538sub D {
2539        my ($self, $m) = @_;
2540        my ($dir, $file) = split_path($m->{file_b});
2541        my $pbat = $self->ensure_path($dir);
2542        print "\tD\t$m->{file_b}\n" unless $::_q;
2543        $self->delete_entry($m->{file_b}, $pbat);
2544}
2545
2546sub close_edit {
2547        my ($self) = @_;
2548        my ($p,$bat) = ($self->{pool}, $self->{bat});
2549        foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
2550                $self->close_directory($bat->{$_}, $p);
2551        }
2552        $self->SUPER::close_edit($p);
2553        $p->clear;
2554}
2555
2556sub abort_edit {
2557        my ($self) = @_;
2558        $self->SUPER::abort_edit($self->{pool});
2559}
2560
2561sub DESTROY {
2562        my $self = shift;
2563        $self->SUPER::DESTROY(@_);
2564        $self->{pool}->clear;
2565}
2566
2567# this drives the editor
2568sub apply_diff {
2569        my ($self) = @_;
2570        my $mods = $self->{mods};
2571        my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
2572        foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
2573                my $f = $m->{chg};
2574                if (defined $o{$f}) {
2575                        $self->$f($m);
2576                } else {
2577                        fatal("Invalid change type: $f\n");
2578                }
2579        }
2580        $self->rmdirs if $_rmdir;
2581        if (@$mods == 0) {
2582                $self->abort_edit;
2583        } else {
2584                $self->close_edit;
2585        }
2586        return scalar @$mods;
2587}
2588
2589package Git::SVN::Ra;
2590use vars qw/@ISA $config_dir $_log_window_size/;
2591use strict;
2592use warnings;
2593my ($can_do_switch);
2594my $RA;
2595
2596BEGIN {
2597        # enforce temporary pool usage for some simple functions
2598        my $e;
2599        foreach (qw/get_latest_revnum get_uuid get_repos_root/) {
2600                $e .= "sub $_ {
2601                        my \$self = shift;
2602                        my \$pool = SVN::Pool->new;
2603                        my \@ret = \$self->SUPER::$_(\@_,\$pool);
2604                        \$pool->clear;
2605                        wantarray ? \@ret : \$ret[0]; }\n";
2606        }
2607
2608        # get_dir needs $pool held in cache for dirents to work,
2609        # check_path is cacheable and rev_proplist is close enough
2610        # for our purposes.
2611        foreach (qw/check_path get_dir rev_proplist/) {
2612                $e .= "my \%${_}_cache; my \$${_}_rev = 0; sub $_ {
2613                        my \$self = shift;
2614                        my \$r = pop;
2615                        my \$k = join(\"\\0\", \@_);
2616                        if (my \$x = \$${_}_cache{\$r}->{\$k}) {
2617                                return wantarray ? \@\$x : \$x->[0];
2618                        }
2619                        my \$pool = SVN::Pool->new;
2620                        my \@ret = \$self->SUPER::$_(\@_, \$r, \$pool);
2621                        if (\$r != \$${_}_rev) {
2622                                \%${_}_cache = ( pool => [] );
2623                                \$${_}_rev = \$r;
2624                        }
2625                        \$${_}_cache{\$r}->{\$k} = \\\@ret;
2626                        push \@{\$${_}_cache{pool}}, \$pool;
2627                        wantarray ? \@ret : \$ret[0]; }\n";
2628        }
2629        $e .= "\n1;";
2630        eval $e or die $@;
2631}
2632
2633sub new {
2634        my ($class, $url) = @_;
2635        $url =~ s!/+$!!;
2636        return $RA if ($RA && $RA->{url} eq $url);
2637
2638        SVN::_Core::svn_config_ensure($config_dir, undef);
2639        my ($baton, $callbacks) = SVN::Core::auth_open_helper([
2640            SVN::Client::get_simple_provider(),
2641            SVN::Client::get_ssl_server_trust_file_provider(),
2642            SVN::Client::get_simple_prompt_provider(
2643              \&Git::SVN::Prompt::simple, 2),
2644            SVN::Client::get_ssl_client_cert_prompt_provider(
2645              \&Git::SVN::Prompt::ssl_client_cert, 2),
2646            SVN::Client::get_ssl_client_cert_pw_prompt_provider(
2647              \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
2648            SVN::Client::get_username_provider(),
2649            SVN::Client::get_ssl_server_trust_prompt_provider(
2650              \&Git::SVN::Prompt::ssl_server_trust),
2651            SVN::Client::get_username_prompt_provider(
2652              \&Git::SVN::Prompt::username, 2),
2653          ]);
2654        my $config = SVN::Core::config_get_config($config_dir);
2655        my $self = SVN::Ra->new(url => $url, auth => $baton,
2656                              config => $config,
2657                              pool => SVN::Pool->new,
2658                              auth_provider_callbacks => $callbacks);
2659        $self->{svn_path} = $url;
2660        $self->{repos_root} = $self->get_repos_root;
2661        $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
2662        $RA = bless $self, $class;
2663}
2664
2665sub DESTROY {
2666        # do not call the real DESTROY since we store ourselves in $RA
2667}
2668
2669sub get_log {
2670        my ($self, @args) = @_;
2671        my $pool = SVN::Pool->new;
2672        splice(@args, 3, 1) if ($SVN::Core::VERSION le '1.2.0');
2673        my $ret = $self->SUPER::get_log(@args, $pool);
2674        $pool->clear;
2675        $ret;
2676}
2677
2678sub get_commit_editor {
2679        my ($self, $log, $cb, $pool) = @_;
2680        my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
2681        $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
2682}
2683
2684sub gs_do_update {
2685        my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
2686        my $new = ($rev_a == $rev_b);
2687        my $path = $gs->{path};
2688
2689        my $pool = SVN::Pool->new;
2690        $editor->set_path_strip($path);
2691        my (@pc) = split m#/#, $path;
2692        my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
2693                                        1, $editor, $pool);
2694        my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
2695
2696        # Since we can't rely on svn_ra_reparent being available, we'll
2697        # just have to do some magic with set_path to make it so
2698        # we only want a partial path.
2699        my $sp = '';
2700        my $final = join('/', @pc);
2701        while (@pc) {
2702                $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
2703                $sp .= '/' if length $sp;
2704                $sp .= shift @pc;
2705        }
2706        die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
2707
2708        $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
2709
2710        $reporter->finish_report($pool);
2711        $pool->clear;
2712        $editor->{git_commit_ok};
2713}
2714
2715# this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
2716# svn_ra_reparent didn't work before 1.4)
2717sub gs_do_switch {
2718        my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
2719        my $path = $gs->{path};
2720        my $pool = SVN::Pool->new;
2721
2722        my $full_url = $self->{url};
2723        my $old_url = $full_url;
2724        $full_url .= "/$path" if length $path;
2725        my ($ra, $reparented);
2726        if ($old_url ne $full_url) {
2727                if ($old_url !~ m#^svn(\+ssh)?://#) {
2728                        SVN::_Ra::svn_ra_reparent($self->{session}, $full_url,
2729                                                  $pool);
2730                        $self->{url} = $full_url;
2731                        $reparented = 1;
2732                } else {
2733                        $ra = Git::SVN::Ra->new($full_url);
2734                }
2735        }
2736        $ra ||= $self;
2737        my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
2738        my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
2739        $reporter->set_path('', $rev_a, 0, @lock, $pool);
2740        $reporter->finish_report($pool);
2741
2742        if ($reparented) {
2743                SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
2744                $self->{url} = $old_url;
2745        }
2746
2747        $pool->clear;
2748        $editor->{git_commit_ok};
2749}
2750
2751sub gs_fetch_loop_common {
2752        my ($self, $base, $head, $gsv, $globs) = @_;
2753        return if ($base > $head);
2754        my $inc = $_log_window_size;
2755        my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
2756        my %common;
2757        my $common_max = scalar @$gsv;
2758
2759        foreach my $gs (@$gsv) {
2760                my @tmp = split m#/#, $gs->{path};
2761                my $p = '';
2762                foreach (@tmp) {
2763                        $p .= length($p) ? "/$_" : $_;
2764                        $common{$p} ||= 0;
2765                        $common{$p}++;
2766                }
2767        }
2768        $globs ||= [];
2769        $common_max += scalar @$globs;
2770        foreach my $glob (@$globs) {
2771                my @tmp = split m#/#, $glob->{path}->{left};
2772                my $p = '';
2773                foreach (@tmp) {
2774                        $p .= length($p) ? "/$_" : $_;
2775                        $common{$p} ||= 0;
2776                        $common{$p}++;
2777                }
2778        }
2779
2780        my $longest_path = '';
2781        foreach (sort {length $b <=> length $a} keys %common) {
2782                if ($common{$_} == $common_max) {
2783                        $longest_path = $_;
2784                        last;
2785                }
2786        }
2787        while (1) {
2788                my %revs;
2789                my $err;
2790                my $err_handler = $SVN::Error::handler;
2791                $SVN::Error::handler = sub {
2792                        ($err) = @_;
2793                        skip_unknown_revs($err);
2794                };
2795                sub _cb {
2796                        my ($paths, $r, $author, $date, $log) = @_;
2797                        [ dup_changed_paths($paths),
2798                          { author => $author, date => $date, log => $log } ];
2799                }
2800                $self->get_log([$longest_path], $min, $max, 0, 1, 1,
2801                               sub { $revs{$_[1]} = _cb(@_) });
2802                if ($err && $max >= $head) {
2803                        print STDERR "Path '$longest_path' ",
2804                                     "was probably deleted:\n",
2805                                     $err->expanded_message,
2806                                     "\nWill attempt to follow ",
2807                                     "revisions r$min .. r$max ",
2808                                     "committed before the deletion\n";
2809                        my $hi = $max;
2810                        while (--$hi >= $min) {
2811                                my $ok;
2812                                $self->get_log([$longest_path], $min, $hi,
2813                                               0, 1, 1, sub {
2814                                               $ok ||= $_[1];
2815                                               $revs{$_[1]} = _cb(@_) });
2816                                if ($ok) {
2817                                        print STDERR "r$min .. r$ok OK\n";
2818                                        last;
2819                                }
2820                        }
2821                }
2822                $SVN::Error::handler = $err_handler;
2823
2824                my %exists = map { $_->{path} => $_ } @$gsv;
2825                foreach my $r (sort {$a <=> $b} keys %revs) {
2826                        my ($paths, $logged) = @{$revs{$r}};
2827
2828                        foreach my $gs ($self->match_globs(\%exists, $paths,
2829                                                           $globs, $r)) {
2830                                if ($gs->rev_db_max >= $r) {
2831                                        next;
2832                                }
2833                                next unless $gs->match_paths($paths, $r);
2834                                $gs->{logged_rev_props} = $logged;
2835                                if (my $last_commit = $gs->last_commit) {
2836                                        $gs->assert_index_clean($last_commit);
2837                                }
2838                                my $log_entry = $gs->do_fetch($paths, $r);
2839                                if ($log_entry) {
2840                                        $gs->do_git_commit($log_entry);
2841                                }
2842                        }
2843                        foreach my $g (@$globs) {
2844                                my $k = "svn-remote.$g->{remote}." .
2845                                        "$g->{t}-maxRev";
2846                                Git::SVN::tmp_config($k, $r);
2847                        }
2848                }
2849                # pre-fill the .rev_db since it'll eventually get filled in
2850                # with '0' x40 if something new gets committed
2851                foreach my $gs (@$gsv) {
2852                        next if defined $gs->rev_db_get($max);
2853                        $gs->rev_db_set($max, 0 x40);
2854                }
2855                foreach my $g (@$globs) {
2856                        my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
2857                        Git::SVN::tmp_config($k, $max);
2858                }
2859                last if $max >= $head;
2860                $min = $max + 1;
2861                $max += $inc;
2862                $max = $head if ($max > $head);
2863        }
2864}
2865
2866sub match_globs {
2867        my ($self, $exists, $paths, $globs, $r) = @_;
2868
2869        sub get_dir_check {
2870                my ($self, $exists, $g, $r) = @_;
2871                my @x = eval { $self->get_dir($g->{path}->{left}, $r) };
2872                return unless scalar @x == 3;
2873                my $dirents = $x[0];
2874                foreach my $de (keys %$dirents) {
2875                        next if $dirents->{$de}->kind != $SVN::Node::dir;
2876                        my $p = $g->{path}->full_path($de);
2877                        next if $exists->{$p};
2878                        next if (length $g->{path}->{right} &&
2879                                 ($self->check_path($p, $r) !=
2880                                  $SVN::Node::dir));
2881                        $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
2882                                         $g->{ref}->full_path($de), 1);
2883                }
2884        }
2885        foreach my $g (@$globs) {
2886                if (my $path = $paths->{"/$g->{path}->{left}"}) {
2887                        if ($path->{action} =~ /^[AR]$/) {
2888                                get_dir_check($self, $exists, $g, $r);
2889                        }
2890                }
2891                foreach (keys %$paths) {
2892                        if (/$g->{path}->{left_regex}/ &&
2893                            !/$g->{path}->{regex}/) {
2894                                next if $paths->{$_}->{action} !~ /^[AR]$/;
2895                                get_dir_check($self, $exists, $g, $r);
2896                        }
2897                        next unless /$g->{path}->{regex}/;
2898                        my $p = $1;
2899                        my $pathname = $g->{path}->full_path($p);
2900                        next if $exists->{$pathname};
2901                        $exists->{$pathname} = Git::SVN->init(
2902                                              $self->{url}, $pathname, undef,
2903                                              $g->{ref}->full_path($p), 1);
2904                }
2905                my $c = '';
2906                foreach (split m#/#, $g->{path}->{left}) {
2907                        $c .= "/$_";
2908                        next unless ($paths->{$c} &&
2909                                     ($paths->{$c}->{action} =~ /^[AR]$/));
2910                        get_dir_check($self, $exists, $g, $r);
2911                }
2912        }
2913        values %$exists;
2914}
2915
2916sub minimize_url {
2917        my ($self) = @_;
2918        return $self->{url} if ($self->{url} eq $self->{repos_root});
2919        my $url = $self->{repos_root};
2920        my @components = split(m!/!, $self->{svn_path});
2921        my $c = '';
2922        do {
2923                $url .= "/$c" if length $c;
2924                eval { (ref $self)->new($url)->get_latest_revnum };
2925        } while ($@ && ($c = shift @components));
2926        $url;
2927}
2928
2929sub can_do_switch {
2930        my $self = shift;
2931        unless (defined $can_do_switch) {
2932                my $pool = SVN::Pool->new;
2933                my $rep = eval {
2934                        $self->do_switch(1, '', 0, $self->{url},
2935                                         SVN::Delta::Editor->new, $pool);
2936                };
2937                if ($@) {
2938                        $can_do_switch = 0;
2939                } else {
2940                        $rep->abort_report($pool);
2941                        $can_do_switch = 1;
2942                }
2943                $pool->clear;
2944        }
2945        $can_do_switch;
2946}
2947
2948sub skip_unknown_revs {
2949        my ($err) = @_;
2950        my $errno = $err->apr_err();
2951        # Maybe the branch we're tracking didn't
2952        # exist when the repo started, so it's
2953        # not an error if it doesn't, just continue
2954        #
2955        # Wonderfully consistent library, eh?
2956        # 160013 - svn:// and file://
2957        # 175002 - http(s)://
2958        # 175007 - http(s):// (this repo required authorization, too...)
2959        #   More codes may be discovered later...
2960        if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
2961                warn "W: Ignoring error from SVN, path probably ",
2962                     "does not exist: ($errno): ",
2963                     $err->expanded_message,"\n";
2964                return;
2965        }
2966        die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
2967}
2968
2969# svn_log_changed_path_t objects passed to get_log are likely to be
2970# overwritten even if only the refs are copied to an external variable,
2971# so we should dup the structures in their entirety.  Using an externally
2972# passed pool (instead of our temporary and quickly cleared pool in
2973# Git::SVN::Ra) does not help matters at all...
2974sub dup_changed_paths {
2975        my ($paths) = @_;
2976        return undef unless $paths;
2977        my %ret;
2978        foreach my $p (keys %$paths) {
2979                my $i = $paths->{$p};
2980                my %s = map { $_ => $i->$_ }
2981                              qw/copyfrom_path copyfrom_rev action/;
2982                $ret{$p} = \%s;
2983        }
2984        \%ret;
2985}
2986
2987package Git::SVN::Log;
2988use strict;
2989use warnings;
2990use POSIX qw/strftime/;
2991use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
2992            %rusers $show_commit $incremental/;
2993my $l_fmt;
2994
2995sub cmt_showable {
2996        my ($c) = @_;
2997        return 1 if defined $c->{r};
2998        if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
2999                                $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
3000                my @log = command(qw/cat-file commit/, $c->{c});
3001                shift @log while ($log[0] ne "\n");
3002                shift @log;
3003                @{$c->{l}} = grep !/^git-svn-id: /, @log;
3004
3005                (undef, $c->{r}, undef) = ::extract_metadata(
3006                                (grep(/^git-svn-id: /, @log))[-1]);
3007        }
3008        return defined $c->{r};
3009}
3010
3011sub log_use_color {
3012        return 1 if $color;
3013        my ($dc, $dcvar);
3014        $dcvar = 'color.diff';
3015        $dc = `git-config --get $dcvar`;
3016        if ($dc eq '') {
3017                # nothing at all; fallback to "diff.color"
3018                $dcvar = 'diff.color';
3019                $dc = `git-config --get $dcvar`;
3020        }
3021        chomp($dc);
3022        if ($dc eq 'auto') {
3023                my $pc;
3024                $pc = `git-config --get color.pager`;
3025                if ($pc eq '') {
3026                        # does not have it -- fallback to pager.color
3027                        $pc = `git-config --bool --get pager.color`;
3028                }
3029                else {
3030                        $pc = `git-config --bool --get color.pager`;
3031                        if ($?) {
3032                                $pc = 'false';
3033                        }
3034                }
3035                chomp($pc);
3036                if (-t *STDOUT || (defined $pager && $pc eq 'true')) {
3037                        return ($ENV{TERM} && $ENV{TERM} ne 'dumb');
3038                }
3039                return 0;
3040        }
3041        return 0 if $dc eq 'never';
3042        return 1 if $dc eq 'always';
3043        chomp($dc = `git-config --bool --get $dcvar`);
3044        return ($dc eq 'true');
3045}
3046
3047sub git_svn_log_cmd {
3048        my ($r_min, $r_max, @args) = @_;
3049        my $head = 'HEAD';
3050        foreach my $x (@args) {
3051                last if $x eq '--';
3052                next unless ::verify_ref("$x^0");
3053                $head = $x;
3054                last;
3055        }
3056
3057        my $url;
3058        my ($fh, $ctx) = command_output_pipe('rev-list', $head);
3059        while (<$fh>) {
3060                chomp;
3061                $url = (::cmt_metadata($_))[0];
3062                last if defined $url;
3063        }
3064        close $fh; # break the pipe
3065
3066        my $gs = Git::SVN->find_by_url($url) || Git::SVN->_new;
3067        my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
3068                   $gs->refname);
3069        push @cmd, '-r' unless $non_recursive;
3070        push @cmd, qw/--raw --name-status/ if $verbose;
3071        push @cmd, '--color' if log_use_color();
3072        return @cmd unless defined $r_max;
3073        if ($r_max == $r_min) {
3074                push @cmd, '--max-count=1';
3075                if (my $c = $gs->rev_db_get($r_max)) {
3076                        push @cmd, $c;
3077                }
3078        } else {
3079                my ($c_min, $c_max);
3080                $c_max = $gs->rev_db_get($r_max);
3081                $c_min = $gs->rev_db_get($r_min);
3082                if (defined $c_min && defined $c_max) {
3083                        if ($r_max > $r_max) {
3084                                push @cmd, "$c_min..$c_max";
3085                        } else {
3086                                push @cmd, "$c_max..$c_min";
3087                        }
3088                } elsif ($r_max > $r_min) {
3089                        push @cmd, $c_max;
3090                } else {
3091                        push @cmd, $c_min;
3092                }
3093        }
3094        return @cmd;
3095}
3096
3097# adapted from pager.c
3098sub config_pager {
3099        $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
3100        if (!defined $pager) {
3101                $pager = 'less';
3102        } elsif (length $pager == 0 || $pager eq 'cat') {
3103                $pager = undef;
3104        }
3105}
3106
3107sub run_pager {
3108        return unless -t *STDOUT;
3109        pipe my $rfd, my $wfd or return;
3110        defined(my $pid = fork) or ::fatal "Can't fork: $!\n";
3111        if (!$pid) {
3112                open STDOUT, '>&', $wfd or
3113                                     ::fatal "Can't redirect to stdout: $!\n";
3114                return;
3115        }
3116        open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!\n";
3117        $ENV{LESS} ||= 'FRSX';
3118        exec $pager or ::fatal "Can't run pager: $! ($pager)\n";
3119}
3120
3121sub tz_to_s_offset {
3122        my ($tz) = @_;
3123        $tz =~ s/(\d\d)$//;
3124        return ($1 * 60) + ($tz * 3600);
3125}
3126
3127sub get_author_info {
3128        my ($dest, $author, $t, $tz) = @_;
3129        $author =~ s/(?:^\s*|\s*$)//g;
3130        $dest->{a_raw} = $author;
3131        my $au;
3132        if ($::_authors) {
3133                $au = $rusers{$author} || undef;
3134        }
3135        if (!$au) {
3136                ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
3137        }
3138        $dest->{t} = $t;
3139        $dest->{tz} = $tz;
3140        $dest->{a} = $au;
3141        # Date::Parse isn't in the standard Perl distro :(
3142        if ($tz =~ s/^\+//) {
3143                $t += tz_to_s_offset($tz);
3144        } elsif ($tz =~ s/^\-//) {
3145                $t -= tz_to_s_offset($tz);
3146        }
3147        $dest->{t_utc} = $t;
3148}
3149
3150sub process_commit {
3151        my ($c, $r_min, $r_max, $defer) = @_;
3152        if (defined $r_min && defined $r_max) {
3153                if ($r_min == $c->{r} && $r_min == $r_max) {
3154                        show_commit($c);
3155                        return 0;
3156                }
3157                return 1 if $r_min == $r_max;
3158                if ($r_min < $r_max) {
3159                        # we need to reverse the print order
3160                        return 0 if (defined $limit && --$limit < 0);
3161                        push @$defer, $c;
3162                        return 1;
3163                }
3164                if ($r_min != $r_max) {
3165                        return 1 if ($r_min < $c->{r});
3166                        return 1 if ($r_max > $c->{r});
3167                }
3168        }
3169        return 0 if (defined $limit && --$limit < 0);
3170        show_commit($c);
3171        return 1;
3172}
3173
3174sub show_commit {
3175        my $c = shift;
3176        if ($oneline) {
3177                my $x = "\n";
3178                if (my $l = $c->{l}) {
3179                        while ($l->[0] =~ /^\s*$/) { shift @$l }
3180                        $x = $l->[0];
3181                }
3182                $l_fmt ||= 'A' . length($c->{r});
3183                print 'r',pack($l_fmt, $c->{r}),' | ';
3184                print "$c->{c} | " if $show_commit;
3185                print $x;
3186        } else {
3187                show_commit_normal($c);
3188        }
3189}
3190
3191sub show_commit_changed_paths {
3192        my ($c) = @_;
3193        return unless $c->{changed};
3194        print "Changed paths:\n", @{$c->{changed}};
3195}
3196
3197sub show_commit_normal {
3198        my ($c) = @_;
3199        print '-' x72, "\nr$c->{r} | ";
3200        print "$c->{c} | " if $show_commit;
3201        print "$c->{a} | ", strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)",
3202                                 localtime($c->{t_utc})), ' | ';
3203        my $nr_line = 0;
3204
3205        if (my $l = $c->{l}) {
3206                while ($l->[$#$l] eq "\n" && $#$l > 0
3207                                          && $l->[($#$l - 1)] eq "\n") {
3208                        pop @$l;
3209                }
3210                $nr_line = scalar @$l;
3211                if (!$nr_line) {
3212                        print "1 line\n\n\n";
3213                } else {
3214                        if ($nr_line == 1) {
3215                                $nr_line = '1 line';
3216                        } else {
3217                                $nr_line .= ' lines';
3218                        }
3219                        print $nr_line, "\n";
3220                        show_commit_changed_paths($c);
3221                        print "\n";
3222                        print $_ foreach @$l;
3223                }
3224        } else {
3225                print "1 line\n";
3226                show_commit_changed_paths($c);
3227                print "\n";
3228
3229        }
3230        foreach my $x (qw/raw diff/) {
3231                if ($c->{$x}) {
3232                        print "\n";
3233                        print $_ foreach @{$c->{$x}}
3234                }
3235        }
3236}
3237
3238sub cmd_show_log {
3239        my (@args) = @_;
3240        my ($r_min, $r_max);
3241        my $r_last = -1; # prevent dupes
3242        if (defined $TZ) {
3243                $ENV{TZ} = $TZ;
3244        } else {
3245                delete $ENV{TZ};
3246        }
3247        if (defined $::_revision) {
3248                if ($::_revision =~ /^(\d+):(\d+)$/) {
3249                        ($r_min, $r_max) = ($1, $2);
3250                } elsif ($::_revision =~ /^\d+$/) {
3251                        $r_min = $r_max = $::_revision;
3252                } else {
3253                        ::fatal "-r$::_revision is not supported, use ",
3254                                "standard \'git log\' arguments instead\n";
3255                }
3256        }
3257
3258        config_pager();
3259        @args = (git_svn_log_cmd($r_min, $r_max, @args), @args);
3260        my $log = command_output_pipe(@args);
3261        run_pager();
3262        my (@k, $c, $d);
3263        my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
3264        while (<$log>) {
3265                if (/^${esc_color}commit ($::sha1_short)/o) {
3266                        my $cmt = $1;
3267                        if ($c && cmt_showable($c) && $c->{r} != $r_last) {
3268                                $r_last = $c->{r};
3269                                process_commit($c, $r_min, $r_max, \@k) or
3270                                                                goto out;
3271                        }
3272                        $d = undef;
3273                        $c = { c => $cmt };
3274                } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
3275                        get_author_info($c, $1, $2, $3);
3276                } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
3277                        # ignore
3278                } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
3279                        push @{$c->{raw}}, $_;
3280                } elsif (/^${esc_color}[ACRMDT]\t/) {
3281                        # we could add $SVN->{svn_path} here, but that requires
3282                        # remote access at the moment (repo_path_split)...
3283                        s#^(${esc_color})([ACRMDT])\t#$1   $2 #o;
3284                        push @{$c->{changed}}, $_;
3285                } elsif (/^${esc_color}diff /o) {
3286                        $d = 1;
3287                        push @{$c->{diff}}, $_;
3288                } elsif ($d) {
3289                        push @{$c->{diff}}, $_;
3290                } elsif (/^${esc_color}    (git-svn-id:.+)$/o) {
3291                        ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
3292                } elsif (s/^${esc_color}    //o) {
3293                        push @{$c->{l}}, $_;
3294                }
3295        }
3296        if ($c && defined $c->{r} && $c->{r} != $r_last) {
3297                $r_last = $c->{r};
3298                process_commit($c, $r_min, $r_max, \@k);
3299        }
3300        if (@k) {
3301                my $swap = $r_max;
3302                $r_max = $r_min;
3303                $r_min = $swap;
3304                process_commit($_, $r_min, $r_max) foreach reverse @k;
3305        }
3306out:
3307        close $log;
3308        print '-' x72,"\n" unless $incremental || $oneline;
3309}
3310
3311package Git::SVN::Migration;
3312# these version numbers do NOT correspond to actual version numbers
3313# of git nor git-svn.  They are just relative.
3314#
3315# v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
3316#
3317# v1 layout: .git/$id/info/url, refs/remotes/$id
3318#
3319# v2 layout: .git/svn/$id/info/url, refs/remotes/$id
3320#
3321# v3 layout: .git/svn/$id, refs/remotes/$id
3322#            - info/url may remain for backwards compatibility
3323#            - this is what we migrate up to this layout automatically,
3324#            - this will be used by git svn init on single branches
3325# v3.1 layout (auto migrated):
3326#            - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
3327#              for backwards compatibility
3328#
3329# v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
3330#            - this is only created for newly multi-init-ed
3331#              repositories.  Similar in spirit to the
3332#              --use-separate-remotes option in git-clone (now default)
3333#            - we do not automatically migrate to this (following
3334#              the example set by core git)
3335use strict;
3336use warnings;
3337use Carp qw/croak/;
3338use File::Path qw/mkpath/;
3339use File::Basename qw/dirname basename/;
3340use vars qw/$_minimize/;
3341
3342sub migrate_from_v0 {
3343        my $git_dir = $ENV{GIT_DIR};
3344        return undef unless -d $git_dir;
3345        my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
3346        my $migrated = 0;
3347        while (<$fh>) {
3348                chomp;
3349                my ($id, $orig_ref) = ($_, $_);
3350                next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
3351                next unless -f "$git_dir/$id/info/url";
3352                my $new_ref = "refs/remotes/$id";
3353                if (::verify_ref("$new_ref^0")) {
3354                        print STDERR "W: $orig_ref is probably an old ",
3355                                     "branch used by an ancient version of ",
3356                                     "git-svn.\n",
3357                                     "However, $new_ref also exists.\n",
3358                                     "We will not be able ",
3359                                     "to use this branch until this ",
3360                                     "ambiguity is resolved.\n";
3361                        next;
3362                }
3363                print STDERR "Migrating from v0 layout...\n" if !$migrated;
3364                print STDERR "Renaming ref: $orig_ref => $new_ref\n";
3365                command_noisy('update-ref', $new_ref, $orig_ref);
3366                command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
3367                $migrated++;
3368        }
3369        command_close_pipe($fh, $ctx);
3370        print STDERR "Done migrating from v0 layout...\n" if $migrated;
3371        $migrated;
3372}
3373
3374sub migrate_from_v1 {
3375        my $git_dir = $ENV{GIT_DIR};
3376        my $migrated = 0;
3377        return $migrated unless -d $git_dir;
3378        my $svn_dir = "$git_dir/svn";
3379
3380        # just in case somebody used 'svn' as their $id at some point...
3381        return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
3382
3383        print STDERR "Migrating from a git-svn v1 layout...\n";
3384        mkpath([$svn_dir]);
3385        print STDERR "Data from a previous version of git-svn exists, but\n\t",
3386                     "$svn_dir\n\t(required for this version ",
3387                     "($::VERSION) of git-svn) does not. exist\n";
3388        my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
3389        while (<$fh>) {
3390                my $x = $_;
3391                next unless $x =~ s#^refs/remotes/##;
3392                chomp $x;
3393                next unless -f "$git_dir/$x/info/url";
3394                my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
3395                next unless $u;
3396                my $dn = dirname("$git_dir/svn/$x");
3397                mkpath([$dn]) unless -d $dn;
3398                if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
3399                        mkpath(["$git_dir/svn/svn"]);
3400                        print STDERR " - $git_dir/$x/info => ",
3401                                        "$git_dir/svn/$x/info\n";
3402                        rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
3403                               croak "$!: $x";
3404                        # don't worry too much about these, they probably
3405                        # don't exist with repos this old (save for index,
3406                        # and we can easily regenerate that)
3407                        foreach my $f (qw/unhandled.log index .rev_db/) {
3408                                rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
3409                        }
3410                } else {
3411                        print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
3412                        rename "$git_dir/$x", "$git_dir/svn/$x" or
3413                               croak "$!: $x";
3414                }
3415                $migrated++;
3416        }
3417        command_close_pipe($fh, $ctx);
3418        print STDERR "Done migrating from a git-svn v1 layout\n";
3419        $migrated;
3420}
3421
3422sub read_old_urls {
3423        my ($l_map, $pfx, $path) = @_;
3424        my @dir;
3425        foreach (<$path/*>) {
3426                if (-r "$_/info/url") {
3427                        $pfx .= '/' if $pfx && $pfx !~ m!/$!;
3428                        my $ref_id = $pfx . basename $_;
3429                        my $url = ::file_to_s("$_/info/url");
3430                        $l_map->{$ref_id} = $url;
3431                } elsif (-d $_) {
3432                        push @dir, $_;
3433                }
3434        }
3435        foreach (@dir) {
3436                my $x = $_;
3437                $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
3438                read_old_urls($l_map, $x, $_);
3439        }
3440}
3441
3442sub migrate_from_v2 {
3443        my @cfg = command(qw/config -l/);
3444        return if grep /^svn-remote\..+\.url=/, @cfg;
3445        my %l_map;
3446        read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
3447        my $migrated = 0;
3448
3449        foreach my $ref_id (sort keys %l_map) {
3450                eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
3451                if ($@) {
3452                        Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
3453                }
3454                $migrated++;
3455        }
3456        $migrated;
3457}
3458
3459sub minimize_connections {
3460        my $r = Git::SVN::read_all_remotes();
3461        my $new_urls = {};
3462        my $root_repos = {};
3463        foreach my $repo_id (keys %$r) {
3464                my $url = $r->{$repo_id}->{url} or next;
3465                my $fetch = $r->{$repo_id}->{fetch} or next;
3466                my $ra = Git::SVN::Ra->new($url);
3467
3468                # skip existing cases where we already connect to the root
3469                if (($ra->{url} eq $ra->{repos_root}) ||
3470                    (Git::SVN::sanitize_remote_name($ra->{repos_root}) eq
3471                     $repo_id)) {
3472                        $root_repos->{$ra->{url}} = $repo_id;
3473                        next;
3474                }
3475
3476                my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
3477                my $root_path = $ra->{url};
3478                $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
3479                foreach my $path (keys %$fetch) {
3480                        my $ref_id = $fetch->{$path};
3481                        my $gs = Git::SVN->new($ref_id, $repo_id, $path);
3482
3483                        # make sure we can read when connecting to
3484                        # a higher level of a repository
3485                        my ($last_rev, undef) = $gs->last_rev_commit;
3486                        if (!defined $last_rev) {
3487                                $last_rev = eval {
3488                                        $root_ra->get_latest_revnum;
3489                                };
3490                                next if $@;
3491                        }
3492                        my $new = $root_path;
3493                        $new .= length $path ? "/$path" : '';
3494                        eval {
3495                                $root_ra->get_log([$new], $last_rev, $last_rev,
3496                                                  0, 0, 1, sub { });
3497                        };
3498                        next if $@;
3499                        $new_urls->{$ra->{repos_root}}->{$new} =
3500                                { ref_id => $ref_id,
3501                                  old_repo_id => $repo_id,
3502                                  old_path => $path };
3503                }
3504        }
3505
3506        my @emptied;
3507        foreach my $url (keys %$new_urls) {
3508                # see if we can re-use an existing [svn-remote "repo_id"]
3509                # instead of creating a(n ugly) new section:
3510                my $repo_id = $root_repos->{$url} ||
3511                              Git::SVN::sanitize_remote_name($url);
3512
3513                my $fetch = $new_urls->{$url};
3514                foreach my $path (keys %$fetch) {
3515                        my $x = $fetch->{$path};
3516                        Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
3517                        my $pfx = "svn-remote.$x->{old_repo_id}";
3518
3519                        my $old_fetch = quotemeta("$x->{old_path}:".
3520                                                  "refs/remotes/$x->{ref_id}");
3521                        command_noisy(qw/config --unset/,
3522                                      "$pfx.fetch", '^'. $old_fetch . '$');
3523                        delete $r->{$x->{old_repo_id}}->
3524                               {fetch}->{$x->{old_path}};
3525                        if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
3526                                command_noisy(qw/config --unset/,
3527                                              "$pfx.url");
3528                                push @emptied, $x->{old_repo_id}
3529                        }
3530                }
3531        }
3532        if (@emptied) {
3533                my $file = $ENV{GIT_CONFIG} || $ENV{GIT_CONFIG_LOCAL} ||
3534                           "$ENV{GIT_DIR}/config";
3535                print STDERR <<EOF;
3536The following [svn-remote] sections in your config file ($file) are empty
3537and can be safely removed:
3538EOF
3539                print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
3540        }
3541}
3542
3543sub migration_check {
3544        migrate_from_v0();
3545        migrate_from_v1();
3546        migrate_from_v2();
3547        minimize_connections() if $_minimize;
3548}
3549
3550package Git::IndexInfo;
3551use strict;
3552use warnings;
3553use Git qw/command_input_pipe command_close_pipe/;
3554
3555sub new {
3556        my ($class) = @_;
3557        my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
3558        bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
3559}
3560
3561sub remove {
3562        my ($self, $path) = @_;
3563        if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
3564                return ++$self->{nr};
3565        }
3566        undef;
3567}
3568
3569sub update {
3570        my ($self, $mode, $hash, $path) = @_;
3571        if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
3572                return ++$self->{nr};
3573        }
3574        undef;
3575}
3576
3577sub DESTROY {
3578        my ($self) = @_;
3579        command_close_pipe($self->{gui}, $self->{ctx});
3580}
3581
3582package Git::SVN::GlobSpec;
3583use strict;
3584use warnings;
3585
3586sub new {
3587        my ($class, $glob) = @_;
3588        my $re = $glob;
3589        $re =~ s!/+$!!g; # no need for trailing slashes
3590        my $nr = ($re =~ s!^(.*)\*(.*)$!\(\[^/\]+\)!g);
3591        my ($left, $right) = ($1, $2);
3592        if ($nr > 1) {
3593                die "Only one '*' wildcard expansion ",
3594                    "is supported (got $nr): '$glob'\n";
3595        } elsif ($nr == 0) {
3596                die "One '*' is needed for glob: '$glob'\n";
3597        }
3598        $re = quotemeta($left) . $re . quotemeta($right);
3599        if (length $left && !($left =~ s!/+$!!g)) {
3600                die "Missing trailing '/' on left side of: '$glob' ($left)\n";
3601        }
3602        if (length $right && !($right =~ s!^/+!!g)) {
3603                die "Missing leading '/' on right side of: '$glob' ($right)\n";
3604        }
3605        my $left_re = qr/^\/\Q$left\E(\/|$)/;
3606        bless { left => $left, right => $right, left_regex => $left_re,
3607                regex => qr/$re/, glob => $glob }, $class;
3608}
3609
3610sub full_path {
3611        my ($self, $path) = @_;
3612        return (length $self->{left} ? "$self->{left}/" : '') .
3613               $path . (length $self->{right} ? "/$self->{right}" : '');
3614}
3615
3616__END__
3617
3618Data structures:
3619
3620
3621$remotes = { # returned by read_all_remotes()
3622        'svn' => {
3623                # svn-remote.svn.url=https://svn.musicpd.org
3624                url => 'https://svn.musicpd.org',
3625                # svn-remote.svn.fetch=mpd/trunk:trunk
3626                fetch => {
3627                        'mpd/trunk' => 'trunk',
3628                },
3629                # svn-remote.svn.tags=mpd/tags/*:tags/*
3630                tags => {
3631                        path => {
3632                                left => 'mpd/tags',
3633                                right => '',
3634                                regex => qr!mpd/tags/([^/]+)$!,
3635                                glob => 'tags/*',
3636                        },
3637                        ref => {
3638                                left => 'tags',
3639                                right => '',
3640                                regex => qr!tags/([^/]+)$!,
3641                                glob => 'tags/*',
3642                        },
3643                }
3644        }
3645};
3646
3647$log_entry hashref as returned by libsvn_log_entry()
3648{
3649        log => 'whitespace-formatted log entry
3650',                                              # trailing newline is preserved
3651        revision => '8',                        # integer
3652        date => '2004-02-24T17:01:44.108345Z',  # commit date
3653        author => 'committer name'
3654};
3655
3656
3657# this is generated by generate_diff();
3658@mods = array of diff-index line hashes, each element represents one line
3659        of diff-index output
3660
3661diff-index line ($m hash)
3662{
3663        mode_a => first column of diff-index output, no leading ':',
3664        mode_b => second column of diff-index output,
3665        sha1_b => sha1sum of the final blob,
3666        chg => change type [MCRADT],
3667        file_a => original file name of a file (iff chg is 'C' or 'R')
3668        file_b => new/current file name of a file (any chg)
3669}
3670;
3671
3672# retval of read_url_paths{,_all}();
3673$l_map = {
3674        # repository root url
3675        'https://svn.musicpd.org' => {
3676                # repository path               # GIT_SVN_ID
3677                'mpd/trunk'             =>      'trunk',
3678                'mpd/tags/0.11.5'       =>      'tags/0.11.5',
3679        },
3680}
3681
3682Notes:
3683        I don't trust the each() function on unless I created %hash myself
3684        because the internal iterator may not have started at base.