git-svn: allow --log-window-size to be specified, default to 100
[git.git] / git-svn.perl
blob8a80f81add22d6d10be6f59e6f0520be0e2306cf
1 #!/usr/bin/env perl
2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
4 use warnings;
5 use strict;
6 use vars qw/ $AUTHOR $VERSION
7 $sha1 $sha1_short $_revision
8 $_q $_authors %users/;
9 $AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
10 $VERSION = '@@GIT_VERSION@@';
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;
17 $Git::SVN::Log::TZ = $ENV{TZ};
18 $ENV{TZ} = 'UTC';
19 $| = 1; # unbuffer STDOUT
21 sub fatal (@) { print STDERR @_; exit 1 }
22 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
23 require SVN::Ra;
24 require SVN::Delta;
25 if ($SVN::Core::VERSION lt '1.1.0') {
26 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)\n";
28 push @Git::SVN::Ra::ISA, 'SVN::Ra';
29 push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
30 push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
31 use Carp qw/croak/;
32 use IO::File qw//;
33 use File::Basename qw/dirname basename/;
34 use File::Path qw/mkpath/;
35 use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev pass_through/;
36 use IPC::Open3;
37 use Git;
39 BEGIN {
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::$_; ";
47 eval $s;
50 my ($SVN);
52 $sha1 = qr/[a-f\d]{40}/;
53 $sha1_short = qr/[a-f\d]{4,40}/;
54 my ($_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;
61 my %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 );
64 my %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 );
75 my ($_trunk, $_tags, $_branches);
76 my %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 );
80 my %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
87 my %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 } ],
138 my $cmd;
139 for (my $i = 0; $i < @ARGV; $i++) {
140 if (defined $cmd{$ARGV[$i]}) {
141 $cmd = $ARGV[$i];
142 splice @ARGV, $i, 1;
143 last;
147 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
149 read_repo_config(\%opts);
150 my $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);
154 exit 1 if (!$rv && $cmd ne 'log');
156 usage(0) if $_help;
157 version() if $_version;
158 usage(1) unless defined $cmd;
159 load_authors() if $_authors;
160 unless ($cmd =~ /^(?:init|multi-init|commit-diff)$/) {
161 Git::SVN::Migration::migration_check();
163 Git::SVN::init_vars();
164 eval {
165 Git::SVN::verify_remotes_sanity();
166 $cmd{$cmd}->[0]->(@ARGV);
168 fatal $@ if $@;
169 exit 0;
171 ####################### primary functions ######################
172 sub usage {
173 my $exit = shift || 0;
174 my $fd = $exit ? \*STDERR : \*STDOUT;
175 print $fd <<"";
176 git-svn - bidirectional operations between a single Subversion tree and git
177 Usage: $0 <command> [options] [arguments]\n
179 print $fd "Available commands:\n" unless $cmd;
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";
193 print $fd <<"";
194 \nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
195 arbitrary identifier if you're tracking multiple SVN branches/repositories in
196 one git repository and want to keep them separate. See git-svn(1) for more
197 information.
199 exit $exit;
202 sub version {
203 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
204 exit 0;
207 sub 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";
218 command_noisy(@init_db);
222 sub 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";
229 sub cmd_init {
230 if (defined $_trunk || defined $_branches || defined $_tags) {
231 return cmd_multi_init(@_);
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();
238 Git::SVN->init($url);
241 sub cmd_fetch {
242 if (grep /^\d+=./, @_) {
243 die "'<rev>=<commit>' fetch arguments are ",
244 "no longer supported.\n";
246 my ($remote) = @_;
247 if (@_ > 1) {
248 die "Usage: $0 fetch [--all|-a] [svn-remote]\n";
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());
258 sub 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;
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";
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";
289 $gs->set_tree($_) foreach @revs;
290 print "Done committing ",scalar @revs," revisions to SVN\n";
293 sub 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;
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";
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";
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";
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";
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/;
365 command_noisy(@finish, $gs->refname);
368 sub 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);
374 sub cmd_multi_init {
375 my $url = shift;
376 unless (defined $_trunk || defined $_branches || defined $_tags) {
377 usage(1);
379 do_git_init_db();
380 $_prefix = '' unless defined $_prefix;
381 if (defined $url) {
382 $url =~ s#/+$##;
383 init_subdir(@_);
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);
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/');
402 sub 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);
411 # this command is special because it requires no metadata
412 sub 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);
424 $url = $gs->{url};
425 $svn_path = $gs->{path};
427 unless (defined $_revision) {
428 fatal("-r|--revision is a required argument\n", $usage);
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");
435 if (defined $_file) {
436 $_message = file_to_s($_file);
437 } else {
438 $_message ||= get_commit_entry($tb)->{log};
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";
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";
460 ########################### utility functions #########################
462 sub 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");
470 return ($url, $path);
472 return ($path, '');
475 sub 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;
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");
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";
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";
508 command_noisy('config', "svn-remote.$gs->{repo_id}.$n",
509 "$remote_path:refs/remotes/$pfx*");
512 sub verify_ref {
513 my ($ref) = @_;
514 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
515 { STDERR => 0 }); };
518 sub 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);
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";
536 return $expected;
539 sub 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 $!;
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 $!;
562 command_close_pipe($msg_fh, $ctx);
564 close $log_fh or croak $!;
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);
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;
579 sub 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);
587 sub 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;
597 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
598 sub 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];
611 close $authors or croak $!;
614 # convert GetOpt::Long specs for use by git-config
615 sub 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;
640 delete @$opts{@config_only} if @config_only;
643 sub 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\-]+)/);
652 return ($url, $rev, $uuid);
655 sub cmt_metadata {
656 return extract_metadata((grep(/^git-svn-id: /,
657 command(qw/cat-file commit/, shift)))[-1]);
660 package Git::SVN;
661 use strict;
662 use warnings;
663 use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
664 $_repack $_repack_flags $_use_svm_props/;
665 use Carp qw/croak/;
666 use File::Path qw/mkpath/;
667 use File::Copy qw/copy/;
668 use IPC::Open3;
670 my $_repack_nr;
671 # properties that we do not log:
672 my %SKIP_PROP;
673 BEGIN {
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/;
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;
699 return \$self->{-$_} }\n";
701 $e .= "1;\n";
702 eval $e or die $@;
705 my %LOCKFILES;
706 END { unlink keys %LOCKFILES if %LOCKFILES }
708 sub 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";
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;
735 } else {
736 $fetch->{$pathname} = $refname;
741 sub parse_revision_argument {
742 my ($base, $head) = @_;
743 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
744 return ($base, $head);
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";
754 sub fetch_all {
755 my ($repo_id, $remotes) = @_;
756 my $remote = $remotes->{$repo_id};
757 my $fetch = $remote->{fetch};
758 my $url = $remote->{url};
759 my (@gs, @globs);
760 my $ra = Git::SVN::Ra->new($url);
761 my $uuid = $ra->get_uuid;
762 my $head = $ra->get_latest_revnum;
763 my $base = defined $fetch ? $head : 0;
765 # read the max revs for wildcard expansion (branches/*, tags/*)
766 foreach my $t (qw/branches tags/) {
767 defined $remote->{$t} or next;
768 push @globs, $remote->{$t};
769 my $max_rev = eval { tmp_config(qw/--int --get/,
770 "svn-remote.$repo_id.${t}-maxRev") };
771 if (defined $max_rev && ($max_rev < $base)) {
772 $base = $max_rev;
776 if ($fetch) {
777 foreach my $p (sort keys %$fetch) {
778 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
779 my $lr = $gs->rev_db_max;
780 if (defined $lr) {
781 $base = $lr if ($lr < $base);
783 push @gs, $gs;
787 ($base, $head) = parse_revision_argument($base, $head);
788 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
791 sub read_all_remotes {
792 my $r = {};
793 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
794 if (m!^(.+)\.fetch=\s*(.*)\s*:\s*refs/remotes/(.+)\s*$!) {
795 $r->{$1}->{fetch}->{$2} = $3;
796 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
797 $r->{$1}->{url} = $2;
798 } elsif (m!^(.+)\.(branches|tags)=
799 (.*):refs/remotes/(.+)\s*$/!x) {
800 my ($p, $g) = ($3, $4);
801 my $rs = $r->{$1}->{$2} = {
802 t => $2,
803 remote => $1,
804 path => Git::SVN::GlobSpec->new($p),
805 ref => Git::SVN::GlobSpec->new($g) };
806 if (length($rs->{ref}->{right}) != 0) {
807 die "The '*' glob character must be the last ",
808 "character of '$g'\n";
815 sub init_vars {
816 if (defined $_repack) {
817 $_repack = 1000 if ($_repack <= 0);
818 $_repack_nr = $_repack;
819 $_repack_flags ||= '-d';
823 sub verify_remotes_sanity {
824 return unless -d $ENV{GIT_DIR};
825 my %seen;
826 foreach (command(qw/config -l/)) {
827 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
828 if ($seen{$1}) {
829 die "Remote ref refs/remote/$1 is tracked by",
830 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
831 "Please resolve this ambiguity in ",
832 "your git configuration file before ",
833 "continuing\n";
835 $seen{$1} = $_;
840 # we allow more chars than remotes2config.sh...
841 sub sanitize_remote_name {
842 my ($name) = @_;
843 $name =~ tr{A-Za-z0-9:,/+-}{.}c;
844 $name;
847 sub find_existing_remote {
848 my ($url, $remotes) = @_;
849 my $existing;
850 foreach my $repo_id (keys %$remotes) {
851 my $u = $remotes->{$repo_id}->{url} or next;
852 next if $u ne $url;
853 $existing = $repo_id;
854 last;
856 $existing;
859 sub init_remote_config {
860 my ($self, $url, $no_write) = @_;
861 $url =~ s!/+$!!; # strip trailing slash
862 my $r = read_all_remotes();
863 my $existing = find_existing_remote($url, $r);
864 if ($existing) {
865 unless ($no_write) {
866 print STDERR "Using existing ",
867 "[svn-remote \"$existing\"]\n";
869 $self->{repo_id} = $existing;
870 } else {
871 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
872 $existing = find_existing_remote($min_url, $r);
873 if ($existing) {
874 unless ($no_write) {
875 print STDERR "Using existing ",
876 "[svn-remote \"$existing\"]\n";
878 $self->{repo_id} = $existing;
880 if ($min_url ne $url) {
881 unless ($no_write) {
882 print STDERR "Using higher level of URL: ",
883 "$url => $min_url\n";
885 my $old_path = $self->{path};
886 $self->{path} = $url;
887 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
888 if (length $old_path) {
889 $self->{path} .= "/$old_path";
891 $url = $min_url;
894 my $orig_url;
895 if (!$existing) {
896 # verify that we aren't overwriting anything:
897 $orig_url = eval {
898 command_oneline('config', '--get',
899 "svn-remote.$self->{repo_id}.url")
901 if ($orig_url && ($orig_url ne $url)) {
902 die "svn-remote.$self->{repo_id}.url already set: ",
903 "$orig_url\nwanted to set to: $url\n";
906 my ($xrepo_id, $xpath) = find_ref($self->refname);
907 if (defined $xpath) {
908 die "svn-remote.$xrepo_id.fetch already set to track ",
909 "$xpath:refs/remotes/", $self->refname, "\n";
911 unless ($no_write) {
912 command_noisy('config',
913 "svn-remote.$self->{repo_id}.url", $url);
914 command_noisy('config', '--add',
915 "svn-remote.$self->{repo_id}.fetch",
916 "$self->{path}:".$self->refname);
918 $self->{url} = $url;
921 sub find_by_url { # repos_root and, path are optional
922 my ($class, $full_url, $repos_root, $path) = @_;
923 my $remotes = read_all_remotes();
924 if (defined $full_url && defined $repos_root && !defined $path) {
925 $path = $full_url;
926 $path =~ s#^\Q$repos_root\E(?:/|$)##;
928 foreach my $repo_id (keys %$remotes) {
929 my $u = $remotes->{$repo_id}->{url} or next;
930 next if defined $repos_root && $repos_root ne $u;
932 my $fetch = $remotes->{$repo_id}->{fetch} || {};
933 foreach (qw/branches tags/) {
934 resolve_local_globs($u, $fetch,
935 $remotes->{$repo_id}->{$_});
937 my $p = $path;
938 unless (defined $p) {
939 $p = $full_url;
940 $p =~ s#^\Q$u\E(?:/|$)## or next;
942 foreach my $f (keys %$fetch) {
943 next if $f ne $p;
944 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
947 undef;
950 sub init {
951 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
952 my $self = _new($class, $repo_id, $ref_id, $path);
953 if (defined $url) {
954 $self->init_remote_config($url, $no_write);
956 $self;
959 sub find_ref {
960 my ($ref_id) = @_;
961 foreach (command(qw/config -l/)) {
962 next unless m!^svn-remote\.(.+)\.fetch=
963 \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
964 my ($repo_id, $path, $ref) = ($1, $2, $3);
965 if ($ref eq $ref_id) {
966 $path = '' if ($path =~ m#^\./?#);
967 return ($repo_id, $path);
970 (undef, undef, undef);
973 sub new {
974 my ($class, $ref_id, $repo_id, $path) = @_;
975 if (defined $ref_id && !defined $repo_id && !defined $path) {
976 ($repo_id, $path) = find_ref($ref_id);
977 if (!defined $repo_id) {
978 die "Could not find a \"svn-remote.*.fetch\" key ",
979 "in the repository configuration matching: ",
980 "refs/remotes/$ref_id\n";
983 my $self = _new($class, $repo_id, $ref_id, $path);
984 if (!defined $self->{path} || !length $self->{path}) {
985 my $fetch = command_oneline('config', '--get',
986 "svn-remote.$repo_id.fetch",
987 ":refs/remotes/$ref_id\$") or
988 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
989 "\":refs/remotes/$ref_id\$\" in config\n";
990 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
992 $self->{url} = command_oneline('config', '--get',
993 "svn-remote.$repo_id.url") or
994 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
995 if ((-z $self->db_path || ! -e $self->db_path) &&
996 ::verify_ref($self->refname.'^0')) {
997 $self->rebuild;
999 $self;
1002 sub refname { "refs/remotes/$_[0]->{ref_id}" }
1004 sub svm_uuid {
1005 my ($self) = @_;
1006 return $self->{svm}->{uuid} if $self->svm;
1007 $self->ra;
1008 unless ($self->{svm}) {
1009 die "SVM UUID not cached, and reading remotely failed\n";
1011 $self->{svm}->{uuid};
1014 sub svm {
1015 my ($self) = @_;
1016 return $self->{svm} if $self->{svm};
1017 my $svm;
1018 # see if we have it in our config, first:
1019 eval {
1020 my $section = "svn-remote.$self->{repo_id}";
1021 $svm = {
1022 source => tmp_config('--get', "$section.svm-source"),
1023 uuid => tmp_config('--get', "$section.svm-uuid"),
1026 $self->{svm} = $svm if ($svm && $svm->{source} && $svm->{uuid});
1027 $self->{svm};
1030 sub _set_svm_vars {
1031 my ($self, $ra) = @_;
1032 return $ra if $self->svm;
1034 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
1035 "(svm:source, svm:mirror, svm:mirror) ",
1036 "from the following URLs:\n" );
1037 sub read_svm_props {
1038 my ($self, $props) = @_;
1039 my $src = $props->{'svm:source'};
1040 my $mirror = $props->{'svm:mirror'};
1041 my $uuid = $props->{'svm:uuid'};
1042 return undef if (!$src || !$mirror || !$uuid);
1044 chomp($src, $mirror, $uuid);
1046 $uuid =~ m{^[0-9a-f\-]{30,}$}
1047 or die "doesn't look right - svm:uuid is '$uuid'\n";
1048 # don't know what a '!' is there for, also the
1049 # username is of no interest
1050 $src =~ s{/?!$}{$mirror};
1051 $src =~ s{/+$}{}; # no trailing slashes please
1052 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
1054 my $section = "svn-remote.$self->{repo_id}";
1055 tmp_config('--add', "$section.svm-source", $src);
1056 tmp_config('--add', "$section.svm-uuid", $uuid);
1057 $self->{svm} = { source => $src , uuid => $uuid };
1058 return 1;
1061 my $r = $ra->get_latest_revnum;
1062 my $path = $self->{path};
1063 my @tried_a = ($path);
1064 while (length $path) {
1065 if ($self->read_svm_props(($ra->get_dir($path, $r))[2])) {
1066 return $ra;
1068 $path =~ s#/?[^/]+$## && push @tried_a, $path;
1070 if ($self->read_svm_props(($ra->get_dir('', $r))[2])) {
1071 return $ra;
1074 if ($ra->{repos_root} eq $self->{url}) {
1075 die @err, map { " $self->{url}/$_\n" } @tried_a, "\n";
1078 # nope, make sure we're connected to the repository root:
1079 my $ok;
1080 my @tried_b;
1081 $path = $ra->{svn_path};
1082 $path =~ s#/?[^/]+$##; # we already tried this one above
1083 $ra = Git::SVN::Ra->new($ra->{repos_root});
1084 while (length $path) {
1085 $ok = $self->read_svm_props(($ra->get_dir($path, $r))[2]);
1086 last if $ok;
1087 $path =~ s#/?[^/]+$## && push @tried_b, $path;
1089 $ok = $self->read_svm_props(($ra->get_dir('', $r))[2]) unless $ok;
1090 if (!$ok) {
1091 die @err, map { " $self->{url}/$_\n" } @tried_a, "\n",
1092 map { " $ra->{url}/$_\n" } @tried_b, "\n"
1094 Git::SVN::Ra->new($self->{url});
1097 # this allows us to memoize our SVN::Ra UUID locally and avoid a
1098 # remote lookup (useful for 'git svn log').
1099 sub ra_uuid {
1100 my ($self) = @_;
1101 unless ($self->{ra_uuid}) {
1102 my $key = "svn-remote.$self->{repo_id}.uuid";
1103 my $uuid = eval { tmp_config('--get', $key) };
1104 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/) {
1105 $self->{ra_uuid} = $uuid;
1106 } else {
1107 die "ra_uuid called without URL\n" unless $self->{url};
1108 $self->{ra_uuid} = $self->ra->get_uuid;
1109 tmp_config('--add', $key, $self->{ra_uuid});
1112 $self->{ra_uuid};
1115 sub ra {
1116 my ($self) = shift;
1117 my $ra = Git::SVN::Ra->new($self->{url});
1118 if ($self->use_svm_props && !$self->{svm}) {
1119 if ($self->no_metadata) {
1120 die "Can't have both 'noMetadata' and ",
1121 "'useSvmProps' options set!\n";
1123 $ra = $self->_set_svm_vars($ra);
1124 $self->{-want_revprops} = 1;
1126 $ra;
1129 sub rel_path {
1130 my ($self) = @_;
1131 my $repos_root = $self->ra->{repos_root};
1132 return $self->{path} if ($self->{url} eq $repos_root);
1133 die "BUG: rel_path failed! repos_root: $repos_root, Ra URL: ",
1134 $self->ra->{url}, " path: $self->{path}, URL: $self->{url}\n";
1137 sub traverse_ignore {
1138 my ($self, $fh, $path, $r) = @_;
1139 $path =~ s#^/+##g;
1140 my $ra = $self->ra;
1141 my ($dirent, undef, $props) = $ra->get_dir($path, $r);
1142 my $p = $path;
1143 $p =~ s#^\Q$ra->{svn_path}\E/##;
1144 print $fh length $p ? "\n# $p\n" : "\n# /\n";
1145 if (my $s = $props->{'svn:ignore'}) {
1146 $s =~ s/[\r\n]+/\n/g;
1147 chomp $s;
1148 if (length $p == 0) {
1149 $s =~ s#\n#\n/$p#g;
1150 print $fh "/$s\n";
1151 } else {
1152 $s =~ s#\n#\n/$p/#g;
1153 print $fh "/$p/$s\n";
1156 foreach (sort keys %$dirent) {
1157 next if $dirent->{$_}->kind != $SVN::Node::dir;
1158 $self->traverse_ignore($fh, "$path/$_", $r);
1162 sub last_rev { ($_[0]->last_rev_commit)[0] }
1163 sub last_commit { ($_[0]->last_rev_commit)[1] }
1165 # returns the newest SVN revision number and newest commit SHA1
1166 sub last_rev_commit {
1167 my ($self) = @_;
1168 if (defined $self->{last_rev} && defined $self->{last_commit}) {
1169 return ($self->{last_rev}, $self->{last_commit});
1171 my $c = ::verify_ref($self->refname.'^0');
1172 if ($c && !$self->use_svm_props && !$self->no_metadata) {
1173 my $rev = (::cmt_metadata($c))[1];
1174 if (defined $rev) {
1175 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
1176 return ($rev, $c);
1179 my $db_path = $self->db_path;
1180 unless (-e $db_path) {
1181 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
1182 return (undef, undef);
1184 my $offset = -41; # from tail
1185 my $rl;
1186 open my $fh, '<', $db_path or croak "$db_path not readable: $!\n";
1187 sysseek($fh, $offset, 2); # don't care for errors
1188 sysread($fh, $rl, 41) == 41 or return (undef, undef);
1189 chomp $rl;
1190 while (('0' x40) eq $rl && sysseek($fh, 0, 1) != 0) {
1191 $offset -= 41;
1192 sysseek($fh, $offset, 2); # don't care for errors
1193 sysread($fh, $rl, 41) == 41 or return (undef, undef);
1194 chomp $rl;
1196 if ($c && $c ne $rl) {
1197 die "$db_path and ", $self->refname,
1198 " inconsistent!:\n$c != $rl\n";
1200 my $rev = sysseek($fh, 0, 1) or croak $!;
1201 $rev = ($rev - 41) / 41;
1202 close $fh or croak $!;
1203 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
1204 return ($rev, $c);
1207 sub get_fetch_range {
1208 my ($self, $min, $max) = @_;
1209 $max ||= $self->ra->get_latest_revnum;
1210 $min ||= $self->rev_db_max;
1211 (++$min, $max);
1214 sub tmp_config {
1215 my (@args) = @_;
1216 my $config = "$ENV{GIT_DIR}/svn/config";
1217 my $old_config = $ENV{GIT_CONFIG};
1218 $ENV{GIT_CONFIG} = $config;
1219 $@ = undef;
1220 my @ret = eval {
1221 unless (-f $config) {
1222 mkfile($config);
1223 open my $fh, '>', $config or
1224 die "Can't open $config: $!\n";
1225 print $fh "; This file is used internally by ",
1226 "git-svn\n" or die
1227 "Couldn't write to $config: $!\n";
1228 print $fh "; You should not have to edit it\n" or
1229 die "Couldn't write to $config: $!\n";
1230 close $fh or die "Couldn't close $config: $!\n";
1232 command('config', @args);
1234 my $err = $@;
1235 if (defined $old_config) {
1236 $ENV{GIT_CONFIG} = $old_config;
1237 } else {
1238 delete $ENV{GIT_CONFIG};
1240 die $err if $err;
1241 wantarray ? @ret : $ret[0];
1244 sub tmp_index_do {
1245 my ($self, $sub) = @_;
1246 my $old_index = $ENV{GIT_INDEX_FILE};
1247 $ENV{GIT_INDEX_FILE} = $self->{index};
1248 $@ = undef;
1249 my @ret = eval {
1250 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
1251 mkpath([$dir]) unless -d $dir;
1252 &$sub;
1254 my $err = $@;
1255 if (defined $old_index) {
1256 $ENV{GIT_INDEX_FILE} = $old_index;
1257 } else {
1258 delete $ENV{GIT_INDEX_FILE};
1260 die $err if $err;
1261 wantarray ? @ret : $ret[0];
1264 sub assert_index_clean {
1265 my ($self, $treeish) = @_;
1267 $self->tmp_index_do(sub {
1268 command_noisy('read-tree', $treeish) unless -e $self->{index};
1269 my $x = command_oneline('write-tree');
1270 my ($y) = (command(qw/cat-file commit/, $treeish) =~
1271 /^tree ($::sha1)/mo);
1272 if ($y ne $x) {
1273 unlink $self->{index} or croak $!;
1274 command_noisy('read-tree', $treeish);
1276 $x = command_oneline('write-tree');
1277 if ($y ne $x) {
1278 ::fatal "trees ($treeish) $y != $x\n",
1279 "Something is seriously wrong...\n";
1284 sub get_commit_parents {
1285 my ($self, $log_entry) = @_;
1286 my (%seen, @ret, @tmp);
1287 # legacy support for 'set-tree'; this is only used by set_tree_cb:
1288 if (my $ip = $self->{inject_parents}) {
1289 if (my $commit = delete $ip->{$log_entry->{revision}}) {
1290 push @tmp, $commit;
1293 if (my $cur = ::verify_ref($self->refname.'^0')) {
1294 push @tmp, $cur;
1296 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
1297 while (my $p = shift @tmp) {
1298 next if $seen{$p};
1299 $seen{$p} = 1;
1300 push @ret, $p;
1301 # MAXPARENT is defined to 16 in commit-tree.c:
1302 last if @ret >= 16;
1304 if (@tmp) {
1305 die "r$log_entry->{revision}: No room for parents:\n\t",
1306 join("\n\t", @tmp), "\n";
1308 @ret;
1311 sub full_url {
1312 my ($self) = @_;
1313 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
1316 sub do_git_commit {
1317 my ($self, $log_entry) = @_;
1318 my $lr = $self->last_rev;
1319 if (defined $lr && $lr >= $log_entry->{revision}) {
1320 die "Last fetched revision of ", $self->refname,
1321 " was r$lr, but we are about to fetch: ",
1322 "r$log_entry->{revision}!\n";
1324 if (my $c = $self->rev_db_get($log_entry->{revision})) {
1325 croak "$log_entry->{revision} = $c already exists! ",
1326 "Why are we refetching it?\n";
1328 $ENV{GIT_AUTHOR_NAME} = $ENV{GIT_COMMITTER_NAME} = $log_entry->{name};
1329 $ENV{GIT_AUTHOR_EMAIL} = $ENV{GIT_COMMITTER_EMAIL} =
1330 $log_entry->{email};
1331 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
1333 my $tree = $log_entry->{tree};
1334 if (!defined $tree) {
1335 $tree = $self->tmp_index_do(sub {
1336 command_oneline('write-tree') });
1338 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
1340 my @exec = ('git-commit-tree', $tree);
1341 foreach ($self->get_commit_parents($log_entry)) {
1342 push @exec, '-p', $_;
1344 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
1345 or croak $!;
1346 print $msg_fh $log_entry->{log} or croak $!;
1347 unless ($self->no_metadata) {
1348 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
1349 or croak $!;
1351 $msg_fh->flush == 0 or croak $!;
1352 close $msg_fh or croak $!;
1353 chomp(my $commit = do { local $/; <$out_fh> });
1354 close $out_fh or croak $!;
1355 waitpid $pid, 0;
1356 croak $? if $?;
1357 if ($commit !~ /^$::sha1$/o) {
1358 die "Failed to commit, invalid sha1: $commit\n";
1361 $self->rev_db_set($log_entry->{revision}, $commit, 1);
1363 $self->{last_rev} = $log_entry->{revision};
1364 $self->{last_commit} = $commit;
1365 print "r$log_entry->{revision}";
1366 if (defined $log_entry->{svm_revision}) {
1367 print " (\@$log_entry->{svm_revision})";
1368 $self->rev_db_set($log_entry->{svm_revision}, $commit,
1369 0, $self->svm_uuid);
1371 print " = $commit ($self->{ref_id})\n";
1372 if (defined $_repack && (--$_repack_nr == 0)) {
1373 $_repack_nr = $_repack;
1374 # repack doesn't use any arguments with spaces in them, does it?
1375 print "Running git repack $_repack_flags ...\n";
1376 command_noisy('repack', split(/\s+/, $_repack_flags));
1377 print "Done repacking\n";
1379 return $commit;
1382 sub match_paths {
1383 my ($self, $paths, $r) = @_;
1384 return 1 if $self->{path} eq '';
1385 if (my $path = $paths->{"/$self->{path}"}) {
1386 return ($path->{action} eq 'D') ? 0 : 1;
1388 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
1389 if (grep /$self->{path_regex}/, keys %$paths) {
1390 return 1;
1392 my $c = '';
1393 foreach (split m#/#, $self->{path}) {
1394 $c .= "/$_";
1395 next unless ($paths->{$c} &&
1396 ($paths->{$c}->{action} =~ /^[AR]$/));
1397 if ($self->ra->check_path($self->{path}, $r) ==
1398 $SVN::Node::dir) {
1399 return 1;
1402 return 0;
1405 sub find_parent_branch {
1406 my ($self, $paths, $rev) = @_;
1407 return undef unless $self->follow_parent;
1408 unless (defined $paths) {
1409 my $err_handler = $SVN::Error::handler;
1410 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
1411 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1, sub {
1412 $paths =
1413 Git::SVN::Ra::dup_changed_paths($_[0]) });
1414 $SVN::Error::handler = $err_handler;
1416 return undef unless defined $paths;
1418 # look for a parent from another branch:
1419 my @b_path_components = split m#/#, $self->rel_path;
1420 my @a_path_components;
1421 my $i;
1422 while (@b_path_components) {
1423 $i = $paths->{'/'.join('/', @b_path_components)};
1424 last if $i && defined $i->{copyfrom_path};
1425 unshift(@a_path_components, pop(@b_path_components));
1427 return undef unless defined $i && defined $i->{copyfrom_path};
1428 my $branch_from = $i->{copyfrom_path};
1429 if (@a_path_components) {
1430 print STDERR "branch_from: $branch_from => ";
1431 $branch_from .= '/'.join('/', @a_path_components);
1432 print STDERR $branch_from, "\n";
1434 my $r = $i->{copyfrom_rev};
1435 my $repos_root = $self->ra->{repos_root};
1436 my $url = $self->ra->{url};
1437 my $new_url = $repos_root . $branch_from;
1438 print STDERR "Found possible branch point: ",
1439 "$new_url => ", $self->full_url, ", $r\n";
1440 $branch_from =~ s#^/##;
1441 my $gs = Git::SVN->find_by_url($new_url, $repos_root, $branch_from);
1442 unless ($gs) {
1443 my $ref_id = $self->{ref_id};
1444 $ref_id =~ s/\@\d+$//;
1445 $ref_id .= "\@$r";
1446 # just grow a tail if we're not unique enough :x
1447 $ref_id .= '-' while find_ref($ref_id);
1448 print STDERR "Initializing parent: $ref_id\n";
1449 $gs = Git::SVN->init($new_url, '', $ref_id, $ref_id, 1);
1451 my ($r0, $parent) = $gs->find_rev_before($r, 1);
1452 if (!defined $r0 || !defined $parent) {
1453 $gs->fetch(0, $r);
1454 ($r0, $parent) = $gs->last_rev_commit;
1456 if (defined $r0 && defined $parent) {
1457 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n";
1458 $self->assert_index_clean($parent);
1459 my $ed;
1460 if ($self->ra->can_do_switch) {
1461 print STDERR "Following parent with do_switch\n";
1462 # do_switch works with svn/trunk >= r22312, but that
1463 # is not included with SVN 1.4.3 (the latest version
1464 # at the moment), so we can't rely on it
1465 $self->{last_commit} = $parent;
1466 $ed = SVN::Git::Fetcher->new($self);
1467 $gs->ra->gs_do_switch($r0, $rev, $gs,
1468 $self->full_url, $ed)
1469 or die "SVN connection failed somewhere...\n";
1470 } else {
1471 print STDERR "Following parent with do_update\n";
1472 $ed = SVN::Git::Fetcher->new($self);
1473 $self->ra->gs_do_update($rev, $rev, $self, $ed)
1474 or die "SVN connection failed somewhere...\n";
1476 print STDERR "Successfully followed parent\n";
1477 return $self->make_log_entry($rev, [$parent], $ed);
1479 return undef;
1482 sub do_fetch {
1483 my ($self, $paths, $rev) = @_;
1484 my $ed;
1485 my ($last_rev, @parents);
1486 if (my $lc = $self->last_commit) {
1487 # we can have a branch that was deleted, then re-added
1488 # under the same name but copied from another path, in
1489 # which case we'll have multiple parents (we don't
1490 # want to break the original ref, nor lose copypath info):
1491 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
1492 push @{$log_entry->{parents}}, $lc;
1493 return $log_entry;
1495 $ed = SVN::Git::Fetcher->new($self);
1496 $last_rev = $self->{last_rev};
1497 $ed->{c} = $lc;
1498 @parents = ($lc);
1499 } else {
1500 $last_rev = $rev;
1501 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
1502 return $log_entry;
1504 $ed = SVN::Git::Fetcher->new($self);
1506 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
1507 die "SVN connection failed somewhere...\n";
1509 $self->make_log_entry($rev, \@parents, $ed);
1512 sub get_untracked {
1513 my ($self, $ed) = @_;
1514 my @out;
1515 my $h = $ed->{empty};
1516 foreach (sort keys %$h) {
1517 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
1518 push @out, " $act: " . uri_encode($_);
1519 warn "W: $act: $_\n";
1521 foreach my $t (qw/dir_prop file_prop/) {
1522 $h = $ed->{$t} or next;
1523 foreach my $path (sort keys %$h) {
1524 my $ppath = $path eq '' ? '.' : $path;
1525 foreach my $prop (sort keys %{$h->{$path}}) {
1526 next if $SKIP_PROP{$prop};
1527 my $v = $h->{$path}->{$prop};
1528 my $t_ppath_prop = "$t: " .
1529 uri_encode($ppath) . ' ' .
1530 uri_encode($prop);
1531 if (defined $v) {
1532 push @out, " +$t_ppath_prop " .
1533 uri_encode($v);
1534 } else {
1535 push @out, " -$t_ppath_prop";
1540 foreach my $t (qw/absent_file absent_directory/) {
1541 $h = $ed->{$t} or next;
1542 foreach my $parent (sort keys %$h) {
1543 foreach my $path (sort @{$h->{$parent}}) {
1544 push @out, " $t: " .
1545 uri_encode("$parent/$path");
1546 warn "W: $t: $parent/$path ",
1547 "Insufficient permissions?\n";
1551 \@out;
1554 sub parse_svn_date {
1555 my $date = shift || return '+0000 1970-01-01 00:00:00';
1556 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
1557 (\d\d)\:(\d\d)\:(\d\d).\d+Z$/x) or
1558 croak "Unable to parse date: $date\n";
1559 "+0000 $Y-$m-$d $H:$M:$S";
1562 sub check_author {
1563 my ($author) = @_;
1564 if (!defined $author || length $author == 0) {
1565 $author = '(no author)';
1567 if (defined $::_authors && ! defined $::users{$author}) {
1568 die "Author: $author not defined in $::_authors file\n";
1570 $author;
1573 sub make_log_entry {
1574 my ($self, $rev, $parents, $ed) = @_;
1575 my $untracked = $self->get_untracked($ed);
1577 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
1578 print $un "r$rev\n" or croak $!;
1579 print $un $_, "\n" foreach @$untracked;
1580 my %log_entry = ( parents => $parents || [], revision => $rev,
1581 log => '');
1583 my $headrev;
1584 my $logged = delete $self->{logged_rev_props};
1585 if (!$logged || $self->{-want_revprops}) {
1586 my $rp = $self->ra->rev_proplist($rev);
1587 foreach (sort keys %$rp) {
1588 my $v = $rp->{$_};
1589 if (/^svn:(author|date|log)$/) {
1590 $log_entry{$1} = $v;
1591 } elsif ($_ eq 'svm:headrev') {
1592 $headrev = $v;
1593 } else {
1594 print $un " rev_prop: ", uri_encode($_), ' ',
1595 uri_encode($v), "\n";
1598 } else {
1599 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
1601 close $un or croak $!;
1603 $log_entry{date} = parse_svn_date($log_entry{date});
1604 $log_entry{log} .= "\n";
1605 my $author = $log_entry{author} = check_author($log_entry{author});
1606 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
1607 : ($author, undef);
1608 if (defined $headrev && $self->use_svm_props) {
1609 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$};
1610 if ($uuid ne $self->{svm}->{uuid}) {
1611 die "UUID mismatch on SVM path:\n",
1612 "expected: $self->{svm}->{uuid}\n",
1613 " got: $uuid\n";
1615 my $full_url = $self->{svm}->{source};
1616 $full_url .= "/$self->{path}" if length $self->{path};
1617 $log_entry{metadata} = "$full_url\@$r $uuid";
1618 $log_entry{svm_revision} = $r;
1619 $email ||= "$author\@$uuid"
1620 } else {
1621 $log_entry{metadata} = $self->full_url . "\@$rev " .
1622 $self->ra->get_uuid;
1623 $email ||= "$author\@" . $self->ra->get_uuid;
1625 $log_entry{name} = $name;
1626 $log_entry{email} = $email;
1627 \%log_entry;
1630 sub fetch {
1631 my ($self, $min_rev, $max_rev, @parents) = @_;
1632 my ($last_rev, $last_commit) = $self->last_rev_commit;
1633 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
1634 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
1637 sub set_tree_cb {
1638 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
1639 $self->{inject_parents} = { $rev => $tree };
1640 $self->fetch(undef, undef);
1643 sub set_tree {
1644 my ($self, $tree) = (shift, shift);
1645 my $log_entry = ::get_commit_entry($tree);
1646 unless ($self->{last_rev}) {
1647 fatal("Must have an existing revision to commit\n");
1649 my %ed_opts = ( r => $self->{last_rev},
1650 log => $log_entry->{log},
1651 ra => $self->ra,
1652 tree_a => $self->{last_commit},
1653 tree_b => $tree,
1654 editor_cb => sub {
1655 $self->set_tree_cb($log_entry, $tree, @_) },
1656 svn_path => $self->{path} );
1657 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
1658 print "No changes\nr$self->{last_rev} = $tree\n";
1662 sub rebuild {
1663 my ($self) = @_;
1664 my $db_path = $self->db_path;
1665 if (-f $self->{db_root}) {
1666 rename $self->{db_root}, $db_path or die
1667 "rename $self->{db_root} => $db_path failed: $!\n";
1668 my ($dir, $base) = ($db_path =~ m#^(.*?)/?([^/]+)$#);
1669 symlink $base, $self->{db_root} or die
1670 "symlink $base => $self->{db_root} failed: $!\n";
1671 return;
1673 print "Rebuilding $db_path ...\n";
1674 my ($rev_list, $ctx) = command_output_pipe("rev-list", $self->refname);
1675 my $latest;
1676 my $full_url = $self->full_url;
1677 my $svn_uuid;
1678 while (<$rev_list>) {
1679 chomp;
1680 my $c = $_;
1681 die "Non-SHA1: $c\n" unless $c =~ /^$::sha1$/o;
1682 my ($url, $rev, $uuid) = ::cmt_metadata($c);
1684 # ignore merges (from set-tree)
1685 next if (!defined $rev || !$uuid);
1687 # if we merged or otherwise started elsewhere, this is
1688 # how we break out of it
1689 if ((defined $svn_uuid && ($uuid ne $svn_uuid)) ||
1690 ($full_url && $url && ($url ne $full_url))) {
1691 next;
1693 $latest ||= $rev;
1694 $svn_uuid ||= $uuid;
1696 $self->rev_db_set($rev, $c);
1697 print "r$rev = $c\n";
1699 command_close_pipe($rev_list, $ctx);
1700 print "Done rebuilding $db_path\n";
1703 # rev_db:
1704 # Tie::File seems to be prone to offset errors if revisions get sparse,
1705 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
1706 # one of my favorite modules is out :< Next up would be one of the DBM
1707 # modules, but I'm not sure which is most portable... So I'll just
1708 # go with something that's plain-text, but still capable of
1709 # being randomly accessed. So here's my ultra-simple fixed-width
1710 # database. All records are 40 characters + "\n", so it's easy to seek
1711 # to a revision: (41 * rev) is the byte offset.
1712 # A record of 40 0s denotes an empty revision.
1713 # And yes, it's still pretty fast (faster than Tie::File).
1714 # These files are disposable unless noMetadata or useSvmProps is set
1716 sub _rev_db_set {
1717 my ($fh, $rev, $commit) = @_;
1718 my $offset = $rev * 41;
1719 # assume that append is the common case:
1720 seek $fh, 0, 2 or croak $!;
1721 my $pos = tell $fh;
1722 if ($pos < $offset) {
1723 for (1 .. (($offset - $pos) / 41)) {
1724 print $fh (('0' x 40),"\n") or croak $!;
1727 seek $fh, $offset, 0 or croak $!;
1728 print $fh $commit,"\n" or croak $!;
1731 sub mkfile {
1732 my ($path) = @_;
1733 unless (-e $path) {
1734 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
1735 mkpath([$dir]) unless -d $dir;
1736 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
1737 close $fh or die "Couldn't close (create) $path: $!\n";
1741 sub rev_db_set {
1742 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
1743 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
1744 my $db = $self->db_path($uuid);
1745 my $db_lock = "$db.lock";
1746 my $sig;
1747 if ($update_ref) {
1748 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
1749 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
1751 mkfile($db);
1753 $LOCKFILES{$db_lock} = 1;
1754 my $sync;
1755 # both of these options make our .rev_db file very, very important
1756 # and we can't afford to lose it because rebuild() won't work
1757 if ($self->use_svm_props || $self->no_metadata) {
1758 $sync = 1;
1759 copy($db, $db_lock) or die "rev_db_set(@_): ",
1760 "Failed to copy: ",
1761 "$db => $db_lock ($!)\n";
1762 } else {
1763 rename $db, $db_lock or die "rev_db_set(@_): ",
1764 "Failed to rename: ",
1765 "$db => $db_lock ($!)\n";
1767 open my $fh, '+<', $db_lock or die "Couldn't open $db_lock: $!\n";
1768 _rev_db_set($fh, $rev, $commit);
1769 if ($sync) {
1770 $fh->flush or die "Couldn't flush $db_lock: $!\n";
1771 $fh->sync or die "Couldn't sync $db_lock: $!\n";
1773 close $fh or croak $!;
1774 if ($update_ref) {
1775 command_noisy('update-ref', '-m', "r$rev",
1776 $self->refname, $commit);
1778 rename $db_lock, $db or die "rev_db_set(@_): ", "Failed to rename: ",
1779 "$db_lock => $db ($!)\n";
1780 delete $LOCKFILES{$db_lock};
1781 if ($update_ref) {
1782 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
1783 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
1784 kill $sig, $$ if defined $sig;
1788 sub rev_db_max {
1789 my ($self) = @_;
1790 my $db_path = $self->db_path;
1791 my @stat = stat $db_path or return 0;
1792 ($stat[7] % 41) == 0 or die "$db_path inconsistent size: $stat[7]\n";
1793 my $max = $stat[7] / 41;
1794 (($max > 0) ? $max - 1 : 0);
1797 sub rev_db_get {
1798 my ($self, $rev, $uuid) = @_;
1799 my $ret;
1800 my $offset = $rev * 41;
1801 my $db_path = $self->db_path($uuid);
1802 return undef unless -e $db_path;
1803 open my $fh, '<', $db_path or croak $!;
1804 if (sysseek($fh, $offset, 0) == $offset) {
1805 my $read = sysread($fh, $ret, 40);
1806 $ret = undef if ($read != 40 || $ret eq ('0'x40));
1808 close $fh or croak $!;
1809 $ret;
1812 sub find_rev_before {
1813 my ($self, $rev, $eq_ok) = @_;
1814 --$rev unless $eq_ok;
1815 while ($rev > 0) {
1816 if (my $c = $self->rev_db_get($rev)) {
1817 return ($rev, $c);
1819 --$rev;
1821 return (undef, undef);
1824 sub _new {
1825 my ($class, $repo_id, $ref_id, $path) = @_;
1826 unless (defined $repo_id && length $repo_id) {
1827 $repo_id = $Git::SVN::default_repo_id;
1829 unless (defined $ref_id && length $ref_id) {
1830 $_[2] = $ref_id = $Git::SVN::default_ref_id;
1832 $_[1] = $repo_id = sanitize_remote_name($repo_id);
1833 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
1834 $_[3] = $path = '' unless (defined $path);
1835 mkpath(["$ENV{GIT_DIR}/svn"]);
1836 bless {
1837 ref_id => $ref_id, dir => $dir, index => "$dir/index",
1838 path => $path, config => "$ENV{GIT_DIR}/svn/config",
1839 db_root => "$dir/.rev_db", repo_id => $repo_id }, $class;
1842 sub db_path {
1843 my ($self, $uuid) = @_;
1844 $uuid ||= $self->ra_uuid;
1845 "$self->{db_root}.$uuid";
1848 sub uri_encode {
1849 my ($f) = @_;
1850 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
1854 package Git::SVN::Prompt;
1855 use strict;
1856 use warnings;
1857 require SVN::Core;
1858 use vars qw/$_no_auth_cache $_username/;
1860 sub simple {
1861 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
1862 $may_save = undef if $_no_auth_cache;
1863 $default_username = $_username if defined $_username;
1864 if (defined $default_username && length $default_username) {
1865 if (defined $realm && length $realm) {
1866 print STDERR "Authentication realm: $realm\n";
1867 STDERR->flush;
1869 $cred->username($default_username);
1870 } else {
1871 username($cred, $realm, $may_save, $pool);
1873 $cred->password(_read_password("Password for '" .
1874 $cred->username . "': ", $realm));
1875 $cred->may_save($may_save);
1876 $SVN::_Core::SVN_NO_ERROR;
1879 sub ssl_server_trust {
1880 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
1881 $may_save = undef if $_no_auth_cache;
1882 print STDERR "Error validating server certificate for '$realm':\n";
1883 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
1884 print STDERR " - The certificate is not issued by a trusted ",
1885 "authority. Use the\n",
1886 " fingerprint to validate the certificate manually!\n";
1888 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
1889 print STDERR " - The certificate hostname does not match.\n";
1891 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
1892 print STDERR " - The certificate is not yet valid.\n";
1894 if ($failures & $SVN::Auth::SSL::EXPIRED) {
1895 print STDERR " - The certificate has expired.\n";
1897 if ($failures & $SVN::Auth::SSL::OTHER) {
1898 print STDERR " - The certificate has an unknown error.\n";
1900 printf STDERR
1901 "Certificate information:\n".
1902 " - Hostname: %s\n".
1903 " - Valid: from %s until %s\n".
1904 " - Issuer: %s\n".
1905 " - Fingerprint: %s\n",
1906 map $cert_info->$_, qw(hostname valid_from valid_until
1907 issuer_dname fingerprint);
1908 my $choice;
1909 prompt:
1910 print STDERR $may_save ?
1911 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
1912 "(R)eject or accept (t)emporarily? ";
1913 STDERR->flush;
1914 $choice = lc(substr(<STDIN> || 'R', 0, 1));
1915 if ($choice =~ /^t$/i) {
1916 $cred->may_save(undef);
1917 } elsif ($choice =~ /^r$/i) {
1918 return -1;
1919 } elsif ($may_save && $choice =~ /^p$/i) {
1920 $cred->may_save($may_save);
1921 } else {
1922 goto prompt;
1924 $cred->accepted_failures($failures);
1925 $SVN::_Core::SVN_NO_ERROR;
1928 sub ssl_client_cert {
1929 my ($cred, $realm, $may_save, $pool) = @_;
1930 $may_save = undef if $_no_auth_cache;
1931 print STDERR "Client certificate filename: ";
1932 STDERR->flush;
1933 chomp(my $filename = <STDIN>);
1934 $cred->cert_file($filename);
1935 $cred->may_save($may_save);
1936 $SVN::_Core::SVN_NO_ERROR;
1939 sub ssl_client_cert_pw {
1940 my ($cred, $realm, $may_save, $pool) = @_;
1941 $may_save = undef if $_no_auth_cache;
1942 $cred->password(_read_password("Password: ", $realm));
1943 $cred->may_save($may_save);
1944 $SVN::_Core::SVN_NO_ERROR;
1947 sub username {
1948 my ($cred, $realm, $may_save, $pool) = @_;
1949 $may_save = undef if $_no_auth_cache;
1950 if (defined $realm && length $realm) {
1951 print STDERR "Authentication realm: $realm\n";
1953 my $username;
1954 if (defined $_username) {
1955 $username = $_username;
1956 } else {
1957 print STDERR "Username: ";
1958 STDERR->flush;
1959 chomp($username = <STDIN>);
1961 $cred->username($username);
1962 $cred->may_save($may_save);
1963 $SVN::_Core::SVN_NO_ERROR;
1966 sub _read_password {
1967 my ($prompt, $realm) = @_;
1968 print STDERR $prompt;
1969 STDERR->flush;
1970 require Term::ReadKey;
1971 Term::ReadKey::ReadMode('noecho');
1972 my $password = '';
1973 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
1974 last if $key =~ /[\012\015]/; # \n\r
1975 $password .= $key;
1977 Term::ReadKey::ReadMode('restore');
1978 print STDERR "\n";
1979 STDERR->flush;
1980 $password;
1983 package main;
1986 my $kill_stupid_warnings = $SVN::Node::none.$SVN::Node::file.
1987 $SVN::Node::dir.$SVN::Node::unknown.
1988 $SVN::Node::none.$SVN::Node::file.
1989 $SVN::Node::dir.$SVN::Node::unknown.
1990 $SVN::Auth::SSL::CNMISMATCH.
1991 $SVN::Auth::SSL::NOTYETVALID.
1992 $SVN::Auth::SSL::EXPIRED.
1993 $SVN::Auth::SSL::UNKNOWNCA.
1994 $SVN::Auth::SSL::OTHER;
1997 package SVN::Git::Fetcher;
1998 use vars qw/@ISA/;
1999 use strict;
2000 use warnings;
2001 use Carp qw/croak/;
2002 use IO::File qw//;
2003 use Digest::MD5;
2005 # file baton members: path, mode_a, mode_b, pool, fh, blob, base
2006 sub new {
2007 my ($class, $git_svn) = @_;
2008 my $self = SVN::Delta::Editor->new;
2009 bless $self, $class;
2010 $self->{c} = $git_svn->{last_commit} if exists $git_svn->{last_commit};
2011 $self->{empty} = {};
2012 $self->{dir_prop} = {};
2013 $self->{file_prop} = {};
2014 $self->{absent_dir} = {};
2015 $self->{absent_file} = {};
2016 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
2017 $self;
2020 sub set_path_strip {
2021 my ($self, $path) = @_;
2022 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
2025 sub open_root {
2026 { path => '' };
2029 sub open_directory {
2030 my ($self, $path, $pb, $rev) = @_;
2031 { path => $path };
2034 sub git_path {
2035 my ($self, $path) = @_;
2036 if ($self->{path_strip}) {
2037 $path =~ s!$self->{path_strip}!! or
2038 die "Failed to strip path '$path' ($self->{path_strip})\n";
2040 $path;
2043 sub delete_entry {
2044 my ($self, $path, $rev, $pb) = @_;
2046 my $gpath = $self->git_path($path);
2047 return undef if ($gpath eq '');
2049 # remove entire directories.
2050 if (command('ls-tree', $self->{c}, '--', $gpath) =~ /^040000 tree/) {
2051 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
2052 -r --name-only -z/,
2053 $self->{c}, '--', $gpath);
2054 local $/ = "\0";
2055 while (<$ls>) {
2056 chomp;
2057 $self->{gii}->remove($_);
2058 print "\tD\t$_\n" unless $::_q;
2060 print "\tD\t$gpath/\n" unless $::_q;
2061 command_close_pipe($ls, $ctx);
2062 $self->{empty}->{$path} = 0
2063 } else {
2064 $self->{gii}->remove($gpath);
2065 print "\tD\t$gpath\n" unless $::_q;
2067 undef;
2070 sub open_file {
2071 my ($self, $path, $pb, $rev) = @_;
2072 my $gpath = $self->git_path($path);
2073 my ($mode, $blob) = (command('ls-tree', $self->{c}, '--', $gpath)
2074 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
2075 unless (defined $mode && defined $blob) {
2076 die "$path was not found in commit $self->{c} (r$rev)\n";
2078 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
2079 pool => SVN::Pool->new, action => 'M' };
2082 sub add_file {
2083 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
2084 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
2085 delete $self->{empty}->{$dir};
2086 { path => $path, mode_a => 100644, mode_b => 100644,
2087 pool => SVN::Pool->new, action => 'A' };
2090 sub add_directory {
2091 my ($self, $path, $cp_path, $cp_rev) = @_;
2092 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
2093 delete $self->{empty}->{$dir};
2094 $self->{empty}->{$path} = 1;
2095 { path => $path };
2098 sub change_dir_prop {
2099 my ($self, $db, $prop, $value) = @_;
2100 $self->{dir_prop}->{$db->{path}} ||= {};
2101 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
2102 undef;
2105 sub absent_directory {
2106 my ($self, $path, $pb) = @_;
2107 $self->{absent_dir}->{$pb->{path}} ||= [];
2108 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
2109 undef;
2112 sub absent_file {
2113 my ($self, $path, $pb) = @_;
2114 $self->{absent_file}->{$pb->{path}} ||= [];
2115 push @{$self->{absent_file}->{$pb->{path}}}, $path;
2116 undef;
2119 sub change_file_prop {
2120 my ($self, $fb, $prop, $value) = @_;
2121 if ($prop eq 'svn:executable') {
2122 if ($fb->{mode_b} != 120000) {
2123 $fb->{mode_b} = defined $value ? 100755 : 100644;
2125 } elsif ($prop eq 'svn:special') {
2126 $fb->{mode_b} = defined $value ? 120000 : 100644;
2127 } else {
2128 $self->{file_prop}->{$fb->{path}} ||= {};
2129 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
2131 undef;
2134 sub apply_textdelta {
2135 my ($self, $fb, $exp) = @_;
2136 my $fh = IO::File->new_tmpfile;
2137 $fh->autoflush(1);
2138 # $fh gets auto-closed() by SVN::TxDelta::apply(),
2139 # (but $base does not,) so dup() it for reading in close_file
2140 open my $dup, '<&', $fh or croak $!;
2141 my $base = IO::File->new_tmpfile;
2142 $base->autoflush(1);
2143 if ($fb->{blob}) {
2144 defined (my $pid = fork) or croak $!;
2145 if (!$pid) {
2146 open STDOUT, '>&', $base or croak $!;
2147 print STDOUT 'link ' if ($fb->{mode_a} == 120000);
2148 exec qw/git-cat-file blob/, $fb->{blob} or croak $!;
2150 waitpid $pid, 0;
2151 croak $? if $?;
2153 if (defined $exp) {
2154 seek $base, 0, 0 or croak $!;
2155 my $md5 = Digest::MD5->new;
2156 $md5->addfile($base);
2157 my $got = $md5->hexdigest;
2158 die "Checksum mismatch: $fb->{path} $fb->{blob}\n",
2159 "expected: $exp\n",
2160 " got: $got\n" if ($got ne $exp);
2163 seek $base, 0, 0 or croak $!;
2164 $fb->{fh} = $dup;
2165 $fb->{base} = $base;
2166 [ SVN::TxDelta::apply($base, $fh, undef, $fb->{path}, $fb->{pool}) ];
2169 sub close_file {
2170 my ($self, $fb, $exp) = @_;
2171 my $hash;
2172 my $path = $self->git_path($fb->{path});
2173 if (my $fh = $fb->{fh}) {
2174 seek($fh, 0, 0) or croak $!;
2175 my $md5 = Digest::MD5->new;
2176 $md5->addfile($fh);
2177 my $got = $md5->hexdigest;
2178 die "Checksum mismatch: $path\n",
2179 "expected: $exp\n got: $got\n" if ($got ne $exp);
2180 seek($fh, 0, 0) or croak $!;
2181 if ($fb->{mode_b} == 120000) {
2182 read($fh, my $buf, 5) == 5 or croak $!;
2183 $buf eq 'link ' or die "$path has mode 120000",
2184 "but is not a link\n";
2186 defined(my $pid = open my $out,'-|') or die "Can't fork: $!\n";
2187 if (!$pid) {
2188 open STDIN, '<&', $fh or croak $!;
2189 exec qw/git-hash-object -w --stdin/ or croak $!;
2191 chomp($hash = do { local $/; <$out> });
2192 close $out or croak $!;
2193 close $fh or croak $!;
2194 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
2195 close $fb->{base} or croak $!;
2196 } else {
2197 $hash = $fb->{blob} or die "no blob information\n";
2199 $fb->{pool}->clear;
2200 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
2201 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
2202 undef;
2205 sub abort_edit {
2206 my $self = shift;
2207 $self->{nr} = $self->{gii}->{nr};
2208 delete $self->{gii};
2209 $self->SUPER::abort_edit(@_);
2212 sub close_edit {
2213 my $self = shift;
2214 $self->{git_commit_ok} = 1;
2215 $self->{nr} = $self->{gii}->{nr};
2216 delete $self->{gii};
2217 $self->SUPER::close_edit(@_);
2220 package SVN::Git::Editor;
2221 use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
2222 use strict;
2223 use warnings;
2224 use Carp qw/croak/;
2225 use IO::File;
2226 use Digest::MD5;
2228 sub new {
2229 my ($class, $opts) = @_;
2230 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
2231 die "$_ required!\n" unless (defined $opts->{$_});
2234 my $pool = SVN::Pool->new;
2235 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
2236 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
2237 $opts->{r}, $mods);
2239 # $opts->{ra} functions should not be used after this:
2240 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
2241 $opts->{editor_cb}, $pool);
2242 my $self = SVN::Delta::Editor->new(@ce, $pool);
2243 bless $self, $class;
2244 foreach (qw/svn_path r tree_a tree_b/) {
2245 $self->{$_} = $opts->{$_};
2247 $self->{url} = $opts->{ra}->{url};
2248 $self->{mods} = $mods;
2249 $self->{types} = $types;
2250 $self->{pool} = $pool;
2251 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
2252 $self->{rm} = { };
2253 $self->{path_prefix} = length $self->{svn_path} ?
2254 "$self->{svn_path}/" : '';
2255 return $self;
2258 sub generate_diff {
2259 my ($tree_a, $tree_b) = @_;
2260 my @diff_tree = qw(diff-tree -z -r);
2261 if ($_cp_similarity) {
2262 push @diff_tree, "-C$_cp_similarity";
2263 } else {
2264 push @diff_tree, '-C';
2266 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
2267 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
2268 push @diff_tree, $tree_a, $tree_b;
2269 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
2270 local $/ = "\0";
2271 my $state = 'meta';
2272 my @mods;
2273 while (<$diff_fh>) {
2274 chomp $_; # this gets rid of the trailing "\0"
2275 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
2276 $::sha1\s($::sha1)\s
2277 ([MTCRAD])\d*$/xo) {
2278 push @mods, { mode_a => $1, mode_b => $2,
2279 sha1_b => $3, chg => $4 };
2280 if ($4 =~ /^(?:C|R)$/) {
2281 $state = 'file_a';
2282 } else {
2283 $state = 'file_b';
2285 } elsif ($state eq 'file_a') {
2286 my $x = $mods[$#mods] or croak "Empty array\n";
2287 if ($x->{chg} !~ /^(?:C|R)$/) {
2288 croak "Error parsing $_, $x->{chg}\n";
2290 $x->{file_a} = $_;
2291 $state = 'file_b';
2292 } elsif ($state eq 'file_b') {
2293 my $x = $mods[$#mods] or croak "Empty array\n";
2294 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
2295 croak "Error parsing $_, $x->{chg}\n";
2297 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
2298 croak "Error parsing $_, $x->{chg}\n";
2300 $x->{file_b} = $_;
2301 $state = 'meta';
2302 } else {
2303 croak "Error parsing $_\n";
2306 command_close_pipe($diff_fh, $ctx);
2307 \@mods;
2310 sub check_diff_paths {
2311 my ($ra, $pfx, $rev, $mods) = @_;
2312 my %types;
2313 $pfx .= '/' if length $pfx;
2315 sub type_diff_paths {
2316 my ($ra, $types, $path, $rev) = @_;
2317 my @p = split m#/+#, $path;
2318 my $c = shift @p;
2319 unless (defined $types->{$c}) {
2320 $types->{$c} = $ra->check_path($c, $rev);
2322 while (@p) {
2323 $c .= '/' . shift @p;
2324 next if defined $types->{$c};
2325 $types->{$c} = $ra->check_path($c, $rev);
2329 foreach my $m (@$mods) {
2330 foreach my $f (qw/file_a file_b/) {
2331 next unless defined $m->{$f};
2332 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
2333 if (length $pfx.$dir && ! defined $types{$dir}) {
2334 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
2338 \%types;
2341 sub split_path {
2342 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
2345 sub repo_path {
2346 my ($self, $path) = @_;
2347 $self->{path_prefix}.(defined $path ? $path : '');
2350 sub url_path {
2351 my ($self, $path) = @_;
2352 $self->{url} . '/' . $self->repo_path($path);
2355 sub rmdirs {
2356 my ($self) = @_;
2357 my $rm = $self->{rm};
2358 delete $rm->{''}; # we never delete the url we're tracking
2359 return unless %$rm;
2361 foreach (keys %$rm) {
2362 my @d = split m#/#, $_;
2363 my $c = shift @d;
2364 $rm->{$c} = 1;
2365 while (@d) {
2366 $c .= '/' . shift @d;
2367 $rm->{$c} = 1;
2370 delete $rm->{$self->{svn_path}};
2371 delete $rm->{''}; # we never delete the url we're tracking
2372 return unless %$rm;
2374 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
2375 $self->{tree_b});
2376 local $/ = "\0";
2377 while (<$fh>) {
2378 chomp;
2379 my @dn = split m#/#, $_;
2380 while (pop @dn) {
2381 delete $rm->{join '/', @dn};
2383 unless (%$rm) {
2384 close $fh;
2385 return;
2388 command_close_pipe($fh, $ctx);
2390 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
2391 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
2392 $self->close_directory($bat->{$d}, $p);
2393 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
2394 print "\tD+\t$d/\n" unless $::_q;
2395 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
2396 delete $bat->{$d};
2400 sub open_or_add_dir {
2401 my ($self, $full_path, $baton) = @_;
2402 my $t = $self->{types}->{$full_path};
2403 if (!defined $t) {
2404 die "$full_path not known in r$self->{r} or we have a bug!\n";
2406 if ($t == $SVN::Node::none) {
2407 return $self->add_directory($full_path, $baton,
2408 undef, -1, $self->{pool});
2409 } elsif ($t == $SVN::Node::dir) {
2410 return $self->open_directory($full_path, $baton,
2411 $self->{r}, $self->{pool});
2413 print STDERR "$full_path already exists in repository at ",
2414 "r$self->{r} and it is not a directory (",
2415 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
2416 exit 1;
2419 sub ensure_path {
2420 my ($self, $path) = @_;
2421 my $bat = $self->{bat};
2422 my $repo_path = $self->repo_path($path);
2423 return $bat->{''} unless (length $repo_path);
2424 my @p = split m#/+#, $repo_path;
2425 my $c = shift @p;
2426 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
2427 while (@p) {
2428 my $c0 = $c;
2429 $c .= '/' . shift @p;
2430 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
2432 return $bat->{$c};
2435 sub A {
2436 my ($self, $m) = @_;
2437 my ($dir, $file) = split_path($m->{file_b});
2438 my $pbat = $self->ensure_path($dir);
2439 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2440 undef, -1);
2441 print "\tA\t$m->{file_b}\n" unless $::_q;
2442 $self->chg_file($fbat, $m);
2443 $self->close_file($fbat,undef,$self->{pool});
2446 sub C {
2447 my ($self, $m) = @_;
2448 my ($dir, $file) = split_path($m->{file_b});
2449 my $pbat = $self->ensure_path($dir);
2450 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2451 $self->url_path($m->{file_a}), $self->{r});
2452 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
2453 $self->chg_file($fbat, $m);
2454 $self->close_file($fbat,undef,$self->{pool});
2457 sub delete_entry {
2458 my ($self, $path, $pbat) = @_;
2459 my $rpath = $self->repo_path($path);
2460 my ($dir, $file) = split_path($rpath);
2461 $self->{rm}->{$dir} = 1;
2462 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
2465 sub R {
2466 my ($self, $m) = @_;
2467 my ($dir, $file) = split_path($m->{file_b});
2468 my $pbat = $self->ensure_path($dir);
2469 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
2470 $self->url_path($m->{file_a}), $self->{r});
2471 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
2472 $self->chg_file($fbat, $m);
2473 $self->close_file($fbat,undef,$self->{pool});
2475 ($dir, $file) = split_path($m->{file_a});
2476 $pbat = $self->ensure_path($dir);
2477 $self->delete_entry($m->{file_a}, $pbat);
2480 sub M {
2481 my ($self, $m) = @_;
2482 my ($dir, $file) = split_path($m->{file_b});
2483 my $pbat = $self->ensure_path($dir);
2484 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
2485 $pbat,$self->{r},$self->{pool});
2486 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
2487 $self->chg_file($fbat, $m);
2488 $self->close_file($fbat,undef,$self->{pool});
2491 sub T { shift->M(@_) }
2493 sub change_file_prop {
2494 my ($self, $fbat, $pname, $pval) = @_;
2495 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
2498 sub chg_file {
2499 my ($self, $fbat, $m) = @_;
2500 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
2501 $self->change_file_prop($fbat,'svn:executable','*');
2502 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
2503 $self->change_file_prop($fbat,'svn:executable',undef);
2505 my $fh = IO::File->new_tmpfile or croak $!;
2506 if ($m->{mode_b} =~ /^120/) {
2507 print $fh 'link ' or croak $!;
2508 $self->change_file_prop($fbat,'svn:special','*');
2509 } elsif ($m->{mode_a} =~ /^120/ && $m->{mode_b} !~ /^120/) {
2510 $self->change_file_prop($fbat,'svn:special',undef);
2512 defined(my $pid = fork) or croak $!;
2513 if (!$pid) {
2514 open STDOUT, '>&', $fh or croak $!;
2515 exec qw/git-cat-file blob/, $m->{sha1_b} or croak $!;
2517 waitpid $pid, 0;
2518 croak $? if $?;
2519 $fh->flush == 0 or croak $!;
2520 seek $fh, 0, 0 or croak $!;
2522 my $md5 = Digest::MD5->new;
2523 $md5->addfile($fh) or croak $!;
2524 seek $fh, 0, 0 or croak $!;
2526 my $exp = $md5->hexdigest;
2527 my $pool = SVN::Pool->new;
2528 my $atd = $self->apply_textdelta($fbat, undef, $pool);
2529 my $got = SVN::TxDelta::send_stream($fh, @$atd, $pool);
2530 die "Checksum mismatch\nexpected: $exp\ngot: $got\n" if ($got ne $exp);
2531 $pool->clear;
2533 close $fh or croak $!;
2536 sub D {
2537 my ($self, $m) = @_;
2538 my ($dir, $file) = split_path($m->{file_b});
2539 my $pbat = $self->ensure_path($dir);
2540 print "\tD\t$m->{file_b}\n" unless $::_q;
2541 $self->delete_entry($m->{file_b}, $pbat);
2544 sub close_edit {
2545 my ($self) = @_;
2546 my ($p,$bat) = ($self->{pool}, $self->{bat});
2547 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
2548 $self->close_directory($bat->{$_}, $p);
2550 $self->SUPER::close_edit($p);
2551 $p->clear;
2554 sub abort_edit {
2555 my ($self) = @_;
2556 $self->SUPER::abort_edit($self->{pool});
2559 sub DESTROY {
2560 my $self = shift;
2561 $self->SUPER::DESTROY(@_);
2562 $self->{pool}->clear;
2565 # this drives the editor
2566 sub apply_diff {
2567 my ($self) = @_;
2568 my $mods = $self->{mods};
2569 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
2570 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
2571 my $f = $m->{chg};
2572 if (defined $o{$f}) {
2573 $self->$f($m);
2574 } else {
2575 fatal("Invalid change type: $f\n");
2578 $self->rmdirs if $_rmdir;
2579 if (@$mods == 0) {
2580 $self->abort_edit;
2581 } else {
2582 $self->close_edit;
2584 return scalar @$mods;
2587 package Git::SVN::Ra;
2588 use vars qw/@ISA $config_dir $_log_window_size/;
2589 use strict;
2590 use warnings;
2591 my ($can_do_switch);
2592 my $RA;
2594 BEGIN {
2595 # enforce temporary pool usage for some simple functions
2596 my $e;
2597 foreach (qw/get_latest_revnum get_uuid get_repos_root/) {
2598 $e .= "sub $_ {
2599 my \$self = shift;
2600 my \$pool = SVN::Pool->new;
2601 my \@ret = \$self->SUPER::$_(\@_,\$pool);
2602 \$pool->clear;
2603 wantarray ? \@ret : \$ret[0]; }\n";
2606 # get_dir needs $pool held in cache for dirents to work,
2607 # check_path is cacheable and rev_proplist is close enough
2608 # for our purposes.
2609 foreach (qw/check_path get_dir rev_proplist/) {
2610 $e .= "my \%${_}_cache; my \$${_}_rev = 0; sub $_ {
2611 my \$self = shift;
2612 my \$r = pop;
2613 my \$k = join(\"\\0\", \@_);
2614 if (my \$x = \$${_}_cache{\$r}->{\$k}) {
2615 return wantarray ? \@\$x : \$x->[0];
2617 my \$pool = SVN::Pool->new;
2618 my \@ret = \$self->SUPER::$_(\@_, \$r, \$pool);
2619 if (\$r != \$${_}_rev) {
2620 \%${_}_cache = ( pool => [] );
2621 \$${_}_rev = \$r;
2623 \$${_}_cache{\$r}->{\$k} = \\\@ret;
2624 push \@{\$${_}_cache{pool}}, \$pool;
2625 wantarray ? \@ret : \$ret[0]; }\n";
2627 $e .= "\n1;";
2628 eval $e or die $@;
2631 sub new {
2632 my ($class, $url) = @_;
2633 $url =~ s!/+$!!;
2634 return $RA if ($RA && $RA->{url} eq $url);
2636 SVN::_Core::svn_config_ensure($config_dir, undef);
2637 my ($baton, $callbacks) = SVN::Core::auth_open_helper([
2638 SVN::Client::get_simple_provider(),
2639 SVN::Client::get_ssl_server_trust_file_provider(),
2640 SVN::Client::get_simple_prompt_provider(
2641 \&Git::SVN::Prompt::simple, 2),
2642 SVN::Client::get_ssl_client_cert_prompt_provider(
2643 \&Git::SVN::Prompt::ssl_client_cert, 2),
2644 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
2645 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
2646 SVN::Client::get_username_provider(),
2647 SVN::Client::get_ssl_server_trust_prompt_provider(
2648 \&Git::SVN::Prompt::ssl_server_trust),
2649 SVN::Client::get_username_prompt_provider(
2650 \&Git::SVN::Prompt::username, 2),
2652 my $config = SVN::Core::config_get_config($config_dir);
2653 my $self = SVN::Ra->new(url => $url, auth => $baton,
2654 config => $config,
2655 pool => SVN::Pool->new,
2656 auth_provider_callbacks => $callbacks);
2657 $self->{svn_path} = $url;
2658 $self->{repos_root} = $self->get_repos_root;
2659 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
2660 $RA = bless $self, $class;
2663 sub DESTROY {
2664 # do not call the real DESTROY since we store ourselves in $RA
2667 sub get_log {
2668 my ($self, @args) = @_;
2669 my $pool = SVN::Pool->new;
2670 splice(@args, 3, 1) if ($SVN::Core::VERSION le '1.2.0');
2671 my $ret = $self->SUPER::get_log(@args, $pool);
2672 $pool->clear;
2673 $ret;
2676 sub get_commit_editor {
2677 my ($self, $log, $cb, $pool) = @_;
2678 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
2679 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
2682 sub gs_do_update {
2683 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
2684 my $new = ($rev_a == $rev_b);
2685 my $path = $gs->{path};
2687 my $pool = SVN::Pool->new;
2688 $editor->set_path_strip($path);
2689 my (@pc) = split m#/#, $path;
2690 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
2691 1, $editor, $pool);
2692 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
2694 # Since we can't rely on svn_ra_reparent being available, we'll
2695 # just have to do some magic with set_path to make it so
2696 # we only want a partial path.
2697 my $sp = '';
2698 my $final = join('/', @pc);
2699 while (@pc) {
2700 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
2701 $sp .= '/' if length $sp;
2702 $sp .= shift @pc;
2704 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
2706 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
2708 $reporter->finish_report($pool);
2709 $pool->clear;
2710 $editor->{git_commit_ok};
2713 # this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
2714 # svn_ra_reparent didn't work before 1.4)
2715 sub gs_do_switch {
2716 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
2717 my $path = $gs->{path};
2718 my $pool = SVN::Pool->new;
2720 my $full_url = $self->{url};
2721 my $old_url = $full_url;
2722 $full_url .= "/$path" if length $path;
2723 my ($ra, $reparented);
2724 if ($old_url ne $full_url) {
2725 if ($old_url !~ m#^svn(\+ssh)?://#) {
2726 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url,
2727 $pool);
2728 $self->{url} = $full_url;
2729 $reparented = 1;
2730 } else {
2731 $ra = Git::SVN::Ra->new($full_url);
2734 $ra ||= $self;
2735 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
2736 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
2737 $reporter->set_path('', $rev_a, 0, @lock, $pool);
2738 $reporter->finish_report($pool);
2740 if ($reparented) {
2741 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
2742 $self->{url} = $old_url;
2745 $pool->clear;
2746 $editor->{git_commit_ok};
2749 sub gs_fetch_loop_common {
2750 my ($self, $base, $head, $gsv, $globs) = @_;
2751 return if ($base > $head);
2752 my $inc = $_log_window_size;
2753 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
2754 my %common;
2755 my $common_max = scalar @$gsv;
2757 foreach my $gs (@$gsv) {
2758 if (my $last_commit = $gs->last_commit) {
2759 $gs->assert_index_clean($last_commit);
2761 my @tmp = split m#/#, $gs->{path};
2762 my $p = '';
2763 foreach (@tmp) {
2764 $p .= length($p) ? "/$_" : $_;
2765 $common{$p} ||= 0;
2766 $common{$p}++;
2769 $globs ||= [];
2770 $common_max += scalar @$globs;
2771 foreach my $glob (@$globs) {
2772 my @tmp = split m#/#, $glob->{path}->{left};
2773 my $p = '';
2774 foreach (@tmp) {
2775 $p .= length($p) ? "/$_" : $_;
2776 $common{$p} ||= 0;
2777 $common{$p}++;
2781 my $longest_path = '';
2782 foreach (sort {length $b <=> length $a} keys %common) {
2783 if ($common{$_} == $common_max) {
2784 $longest_path = $_;
2785 last;
2788 while (1) {
2789 my %revs;
2790 my $err;
2791 my $err_handler = $SVN::Error::handler;
2792 $SVN::Error::handler = sub {
2793 ($err) = @_;
2794 skip_unknown_revs($err);
2796 sub _cb {
2797 my ($paths, $r, $author, $date, $log) = @_;
2798 [ dup_changed_paths($paths),
2799 { author => $author, date => $date, log => $log } ];
2801 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
2802 sub { $revs{$_[1]} = _cb(@_) });
2803 if ($err && $max >= $head) {
2804 print STDERR "Path '$longest_path' ",
2805 "was probably deleted:\n",
2806 $err->expanded_message,
2807 "\nWill attempt to follow ",
2808 "revisions r$min .. r$max ",
2809 "committed before the deletion\n";
2810 my $hi = $max;
2811 while (--$hi >= $min) {
2812 my $ok;
2813 $self->get_log([$longest_path], $min, $hi,
2814 0, 1, 1, sub {
2815 $ok ||= $_[1];
2816 $revs{$_[1]} = _cb(@_) });
2817 if ($ok) {
2818 print STDERR "r$min .. r$ok OK\n";
2819 last;
2823 $SVN::Error::handler = $err_handler;
2825 my %exists = map { $_->{path} => $_ } @$gsv;
2826 foreach my $r (sort {$a <=> $b} keys %revs) {
2827 my ($paths, $logged) = @{$revs{$r}};
2829 foreach my $gs ($self->match_globs(\%exists, $paths,
2830 $globs, $r)) {
2831 if ($gs->rev_db_max >= $r) {
2832 next;
2834 next unless $gs->match_paths($paths, $r);
2835 $gs->{logged_rev_props} = $logged;
2836 my $log_entry = $gs->do_fetch($paths, $r);
2837 if ($log_entry) {
2838 $gs->do_git_commit($log_entry);
2841 foreach my $g (@$globs) {
2842 my $k = "svn-remote.$g->{remote}." .
2843 "$g->{t}-maxRev";
2844 Git::SVN::tmp_config($k, $r);
2847 # pre-fill the .rev_db since it'll eventually get filled in
2848 # with '0' x40 if something new gets committed
2849 foreach my $gs (@$gsv) {
2850 next if defined $gs->rev_db_get($max);
2851 $gs->rev_db_set($max, 0 x40);
2853 foreach my $g (@$globs) {
2854 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
2855 Git::SVN::tmp_config($k, $max);
2857 last if $max >= $head;
2858 $min = $max + 1;
2859 $max += $inc;
2860 $max = $head if ($max > $head);
2864 sub match_globs {
2865 my ($self, $exists, $paths, $globs, $r) = @_;
2867 sub get_dir_check {
2868 my ($self, $exists, $g, $r) = @_;
2869 my @x = eval { $self->get_dir($g->{path}->{left}, $r) };
2870 return unless scalar @x == 3;
2871 my $dirents = $x[0];
2872 foreach my $de (keys %$dirents) {
2873 next if $dirents->{$de}->kind != $SVN::Node::dir;
2874 my $p = $g->{path}->full_path($de);
2875 next if $exists->{$p};
2876 next if (length $g->{path}->{right} &&
2877 ($self->check_path($p, $r) !=
2878 $SVN::Node::dir));
2879 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
2880 $g->{ref}->full_path($de), 1);
2883 foreach my $g (@$globs) {
2884 if (my $path = $paths->{"/$g->{path}->{left}"}) {
2885 if ($path->{action} =~ /^[AR]$/) {
2886 get_dir_check($self, $exists, $g, $r);
2889 foreach (keys %$paths) {
2890 if (/$g->{path}->{left_regex}/ &&
2891 !/$g->{path}->{regex}/) {
2892 next if $paths->{$_}->{action} !~ /^[AR]$/;
2893 get_dir_check($self, $exists, $g, $r);
2895 next unless /$g->{path}->{regex}/;
2896 my $p = $1;
2897 my $pathname = $g->{path}->full_path($p);
2898 next if $exists->{$pathname};
2899 $exists->{$pathname} = Git::SVN->init(
2900 $self->{url}, $pathname, undef,
2901 $g->{ref}->full_path($p), 1);
2903 my $c = '';
2904 foreach (split m#/#, $g->{path}->{left}) {
2905 $c .= "/$_";
2906 next unless ($paths->{$c} &&
2907 ($paths->{$c}->{action} =~ /^[AR]$/));
2908 get_dir_check($self, $exists, $g, $r);
2911 values %$exists;
2914 sub minimize_url {
2915 my ($self) = @_;
2916 return $self->{url} if ($self->{url} eq $self->{repos_root});
2917 my $url = $self->{repos_root};
2918 my @components = split(m!/!, $self->{svn_path});
2919 my $c = '';
2920 do {
2921 $url .= "/$c" if length $c;
2922 eval { (ref $self)->new($url)->get_latest_revnum };
2923 } while ($@ && ($c = shift @components));
2924 $url;
2927 sub can_do_switch {
2928 my $self = shift;
2929 unless (defined $can_do_switch) {
2930 my $pool = SVN::Pool->new;
2931 my $rep = eval {
2932 $self->do_switch(1, '', 0, $self->{url},
2933 SVN::Delta::Editor->new, $pool);
2935 if ($@) {
2936 $can_do_switch = 0;
2937 } else {
2938 $rep->abort_report($pool);
2939 $can_do_switch = 1;
2941 $pool->clear;
2943 $can_do_switch;
2946 sub skip_unknown_revs {
2947 my ($err) = @_;
2948 my $errno = $err->apr_err();
2949 # Maybe the branch we're tracking didn't
2950 # exist when the repo started, so it's
2951 # not an error if it doesn't, just continue
2953 # Wonderfully consistent library, eh?
2954 # 160013 - svn:// and file://
2955 # 175002 - http(s)://
2956 # 175007 - http(s):// (this repo required authorization, too...)
2957 # More codes may be discovered later...
2958 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
2959 warn "W: Ignoring error from SVN, path probably ",
2960 "does not exist: ($errno): ",
2961 $err->expanded_message,"\n";
2962 return;
2964 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
2967 # svn_log_changed_path_t objects passed to get_log are likely to be
2968 # overwritten even if only the refs are copied to an external variable,
2969 # so we should dup the structures in their entirety. Using an externally
2970 # passed pool (instead of our temporary and quickly cleared pool in
2971 # Git::SVN::Ra) does not help matters at all...
2972 sub dup_changed_paths {
2973 my ($paths) = @_;
2974 return undef unless $paths;
2975 my %ret;
2976 foreach my $p (keys %$paths) {
2977 my $i = $paths->{$p};
2978 my %s = map { $_ => $i->$_ }
2979 qw/copyfrom_path copyfrom_rev action/;
2980 $ret{$p} = \%s;
2982 \%ret;
2985 package Git::SVN::Log;
2986 use strict;
2987 use warnings;
2988 use POSIX qw/strftime/;
2989 use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
2990 %rusers $show_commit $incremental/;
2991 my $l_fmt;
2993 sub cmt_showable {
2994 my ($c) = @_;
2995 return 1 if defined $c->{r};
2996 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
2997 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
2998 my @log = command(qw/cat-file commit/, $c->{c});
2999 shift @log while ($log[0] ne "\n");
3000 shift @log;
3001 @{$c->{l}} = grep !/^git-svn-id: /, @log;
3003 (undef, $c->{r}, undef) = ::extract_metadata(
3004 (grep(/^git-svn-id: /, @log))[-1]);
3006 return defined $c->{r};
3009 sub log_use_color {
3010 return 1 if $color;
3011 my ($dc, $dcvar);
3012 $dcvar = 'color.diff';
3013 $dc = `git-config --get $dcvar`;
3014 if ($dc eq '') {
3015 # nothing at all; fallback to "diff.color"
3016 $dcvar = 'diff.color';
3017 $dc = `git-config --get $dcvar`;
3019 chomp($dc);
3020 if ($dc eq 'auto') {
3021 my $pc;
3022 $pc = `git-config --get color.pager`;
3023 if ($pc eq '') {
3024 # does not have it -- fallback to pager.color
3025 $pc = `git-config --bool --get pager.color`;
3027 else {
3028 $pc = `git-config --bool --get color.pager`;
3029 if ($?) {
3030 $pc = 'false';
3033 chomp($pc);
3034 if (-t *STDOUT || (defined $pager && $pc eq 'true')) {
3035 return ($ENV{TERM} && $ENV{TERM} ne 'dumb');
3037 return 0;
3039 return 0 if $dc eq 'never';
3040 return 1 if $dc eq 'always';
3041 chomp($dc = `git-config --bool --get $dcvar`);
3042 return ($dc eq 'true');
3045 sub git_svn_log_cmd {
3046 my ($r_min, $r_max, @args) = @_;
3047 my $head = 'HEAD';
3048 foreach my $x (@args) {
3049 last if $x eq '--';
3050 next unless ::verify_ref("$x^0");
3051 $head = $x;
3052 last;
3055 my $url;
3056 my ($fh, $ctx) = command_output_pipe('rev-list', $head);
3057 while (<$fh>) {
3058 chomp;
3059 $url = (::cmt_metadata($_))[0];
3060 last if defined $url;
3062 close $fh; # break the pipe
3064 my $gs = Git::SVN->find_by_url($url) || Git::SVN->_new;
3065 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
3066 $gs->refname);
3067 push @cmd, '-r' unless $non_recursive;
3068 push @cmd, qw/--raw --name-status/ if $verbose;
3069 push @cmd, '--color' if log_use_color();
3070 return @cmd unless defined $r_max;
3071 if ($r_max == $r_min) {
3072 push @cmd, '--max-count=1';
3073 if (my $c = $gs->rev_db_get($r_max)) {
3074 push @cmd, $c;
3076 } else {
3077 my ($c_min, $c_max);
3078 $c_max = $gs->rev_db_get($r_max);
3079 $c_min = $gs->rev_db_get($r_min);
3080 if (defined $c_min && defined $c_max) {
3081 if ($r_max > $r_max) {
3082 push @cmd, "$c_min..$c_max";
3083 } else {
3084 push @cmd, "$c_max..$c_min";
3086 } elsif ($r_max > $r_min) {
3087 push @cmd, $c_max;
3088 } else {
3089 push @cmd, $c_min;
3092 return @cmd;
3095 # adapted from pager.c
3096 sub config_pager {
3097 $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
3098 if (!defined $pager) {
3099 $pager = 'less';
3100 } elsif (length $pager == 0 || $pager eq 'cat') {
3101 $pager = undef;
3105 sub run_pager {
3106 return unless -t *STDOUT;
3107 pipe my $rfd, my $wfd or return;
3108 defined(my $pid = fork) or ::fatal "Can't fork: $!\n";
3109 if (!$pid) {
3110 open STDOUT, '>&', $wfd or
3111 ::fatal "Can't redirect to stdout: $!\n";
3112 return;
3114 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!\n";
3115 $ENV{LESS} ||= 'FRSX';
3116 exec $pager or ::fatal "Can't run pager: $! ($pager)\n";
3119 sub tz_to_s_offset {
3120 my ($tz) = @_;
3121 $tz =~ s/(\d\d)$//;
3122 return ($1 * 60) + ($tz * 3600);
3125 sub get_author_info {
3126 my ($dest, $author, $t, $tz) = @_;
3127 $author =~ s/(?:^\s*|\s*$)//g;
3128 $dest->{a_raw} = $author;
3129 my $au;
3130 if ($::_authors) {
3131 $au = $rusers{$author} || undef;
3133 if (!$au) {
3134 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
3136 $dest->{t} = $t;
3137 $dest->{tz} = $tz;
3138 $dest->{a} = $au;
3139 # Date::Parse isn't in the standard Perl distro :(
3140 if ($tz =~ s/^\+//) {
3141 $t += tz_to_s_offset($tz);
3142 } elsif ($tz =~ s/^\-//) {
3143 $t -= tz_to_s_offset($tz);
3145 $dest->{t_utc} = $t;
3148 sub process_commit {
3149 my ($c, $r_min, $r_max, $defer) = @_;
3150 if (defined $r_min && defined $r_max) {
3151 if ($r_min == $c->{r} && $r_min == $r_max) {
3152 show_commit($c);
3153 return 0;
3155 return 1 if $r_min == $r_max;
3156 if ($r_min < $r_max) {
3157 # we need to reverse the print order
3158 return 0 if (defined $limit && --$limit < 0);
3159 push @$defer, $c;
3160 return 1;
3162 if ($r_min != $r_max) {
3163 return 1 if ($r_min < $c->{r});
3164 return 1 if ($r_max > $c->{r});
3167 return 0 if (defined $limit && --$limit < 0);
3168 show_commit($c);
3169 return 1;
3172 sub show_commit {
3173 my $c = shift;
3174 if ($oneline) {
3175 my $x = "\n";
3176 if (my $l = $c->{l}) {
3177 while ($l->[0] =~ /^\s*$/) { shift @$l }
3178 $x = $l->[0];
3180 $l_fmt ||= 'A' . length($c->{r});
3181 print 'r',pack($l_fmt, $c->{r}),' | ';
3182 print "$c->{c} | " if $show_commit;
3183 print $x;
3184 } else {
3185 show_commit_normal($c);
3189 sub show_commit_changed_paths {
3190 my ($c) = @_;
3191 return unless $c->{changed};
3192 print "Changed paths:\n", @{$c->{changed}};
3195 sub show_commit_normal {
3196 my ($c) = @_;
3197 print '-' x72, "\nr$c->{r} | ";
3198 print "$c->{c} | " if $show_commit;
3199 print "$c->{a} | ", strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)",
3200 localtime($c->{t_utc})), ' | ';
3201 my $nr_line = 0;
3203 if (my $l = $c->{l}) {
3204 while ($l->[$#$l] eq "\n" && $#$l > 0
3205 && $l->[($#$l - 1)] eq "\n") {
3206 pop @$l;
3208 $nr_line = scalar @$l;
3209 if (!$nr_line) {
3210 print "1 line\n\n\n";
3211 } else {
3212 if ($nr_line == 1) {
3213 $nr_line = '1 line';
3214 } else {
3215 $nr_line .= ' lines';
3217 print $nr_line, "\n";
3218 show_commit_changed_paths($c);
3219 print "\n";
3220 print $_ foreach @$l;
3222 } else {
3223 print "1 line\n";
3224 show_commit_changed_paths($c);
3225 print "\n";
3228 foreach my $x (qw/raw diff/) {
3229 if ($c->{$x}) {
3230 print "\n";
3231 print $_ foreach @{$c->{$x}}
3236 sub cmd_show_log {
3237 my (@args) = @_;
3238 my ($r_min, $r_max);
3239 my $r_last = -1; # prevent dupes
3240 if (defined $TZ) {
3241 $ENV{TZ} = $TZ;
3242 } else {
3243 delete $ENV{TZ};
3245 if (defined $::_revision) {
3246 if ($::_revision =~ /^(\d+):(\d+)$/) {
3247 ($r_min, $r_max) = ($1, $2);
3248 } elsif ($::_revision =~ /^\d+$/) {
3249 $r_min = $r_max = $::_revision;
3250 } else {
3251 ::fatal "-r$::_revision is not supported, use ",
3252 "standard \'git log\' arguments instead\n";
3256 config_pager();
3257 @args = (git_svn_log_cmd($r_min, $r_max, @args), @args);
3258 my $log = command_output_pipe(@args);
3259 run_pager();
3260 my (@k, $c, $d);
3261 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
3262 while (<$log>) {
3263 if (/^${esc_color}commit ($::sha1_short)/o) {
3264 my $cmt = $1;
3265 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
3266 $r_last = $c->{r};
3267 process_commit($c, $r_min, $r_max, \@k) or
3268 goto out;
3270 $d = undef;
3271 $c = { c => $cmt };
3272 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
3273 get_author_info($c, $1, $2, $3);
3274 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
3275 # ignore
3276 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
3277 push @{$c->{raw}}, $_;
3278 } elsif (/^${esc_color}[ACRMDT]\t/) {
3279 # we could add $SVN->{svn_path} here, but that requires
3280 # remote access at the moment (repo_path_split)...
3281 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
3282 push @{$c->{changed}}, $_;
3283 } elsif (/^${esc_color}diff /o) {
3284 $d = 1;
3285 push @{$c->{diff}}, $_;
3286 } elsif ($d) {
3287 push @{$c->{diff}}, $_;
3288 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
3289 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
3290 } elsif (s/^${esc_color} //o) {
3291 push @{$c->{l}}, $_;
3294 if ($c && defined $c->{r} && $c->{r} != $r_last) {
3295 $r_last = $c->{r};
3296 process_commit($c, $r_min, $r_max, \@k);
3298 if (@k) {
3299 my $swap = $r_max;
3300 $r_max = $r_min;
3301 $r_min = $swap;
3302 process_commit($_, $r_min, $r_max) foreach reverse @k;
3304 out:
3305 close $log;
3306 print '-' x72,"\n" unless $incremental || $oneline;
3309 package Git::SVN::Migration;
3310 # these version numbers do NOT correspond to actual version numbers
3311 # of git nor git-svn. They are just relative.
3313 # v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
3315 # v1 layout: .git/$id/info/url, refs/remotes/$id
3317 # v2 layout: .git/svn/$id/info/url, refs/remotes/$id
3319 # v3 layout: .git/svn/$id, refs/remotes/$id
3320 # - info/url may remain for backwards compatibility
3321 # - this is what we migrate up to this layout automatically,
3322 # - this will be used by git svn init on single branches
3323 # v3.1 layout (auto migrated):
3324 # - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
3325 # for backwards compatibility
3327 # v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
3328 # - this is only created for newly multi-init-ed
3329 # repositories. Similar in spirit to the
3330 # --use-separate-remotes option in git-clone (now default)
3331 # - we do not automatically migrate to this (following
3332 # the example set by core git)
3333 use strict;
3334 use warnings;
3335 use Carp qw/croak/;
3336 use File::Path qw/mkpath/;
3337 use File::Basename qw/dirname basename/;
3338 use vars qw/$_minimize/;
3340 sub migrate_from_v0 {
3341 my $git_dir = $ENV{GIT_DIR};
3342 return undef unless -d $git_dir;
3343 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
3344 my $migrated = 0;
3345 while (<$fh>) {
3346 chomp;
3347 my ($id, $orig_ref) = ($_, $_);
3348 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
3349 next unless -f "$git_dir/$id/info/url";
3350 my $new_ref = "refs/remotes/$id";
3351 if (::verify_ref("$new_ref^0")) {
3352 print STDERR "W: $orig_ref is probably an old ",
3353 "branch used by an ancient version of ",
3354 "git-svn.\n",
3355 "However, $new_ref also exists.\n",
3356 "We will not be able ",
3357 "to use this branch until this ",
3358 "ambiguity is resolved.\n";
3359 next;
3361 print STDERR "Migrating from v0 layout...\n" if !$migrated;
3362 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
3363 command_noisy('update-ref', $new_ref, $orig_ref);
3364 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
3365 $migrated++;
3367 command_close_pipe($fh, $ctx);
3368 print STDERR "Done migrating from v0 layout...\n" if $migrated;
3369 $migrated;
3372 sub migrate_from_v1 {
3373 my $git_dir = $ENV{GIT_DIR};
3374 my $migrated = 0;
3375 return $migrated unless -d $git_dir;
3376 my $svn_dir = "$git_dir/svn";
3378 # just in case somebody used 'svn' as their $id at some point...
3379 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
3381 print STDERR "Migrating from a git-svn v1 layout...\n";
3382 mkpath([$svn_dir]);
3383 print STDERR "Data from a previous version of git-svn exists, but\n\t",
3384 "$svn_dir\n\t(required for this version ",
3385 "($::VERSION) of git-svn) does not. exist\n";
3386 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
3387 while (<$fh>) {
3388 my $x = $_;
3389 next unless $x =~ s#^refs/remotes/##;
3390 chomp $x;
3391 next unless -f "$git_dir/$x/info/url";
3392 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
3393 next unless $u;
3394 my $dn = dirname("$git_dir/svn/$x");
3395 mkpath([$dn]) unless -d $dn;
3396 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
3397 mkpath(["$git_dir/svn/svn"]);
3398 print STDERR " - $git_dir/$x/info => ",
3399 "$git_dir/svn/$x/info\n";
3400 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
3401 croak "$!: $x";
3402 # don't worry too much about these, they probably
3403 # don't exist with repos this old (save for index,
3404 # and we can easily regenerate that)
3405 foreach my $f (qw/unhandled.log index .rev_db/) {
3406 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
3408 } else {
3409 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
3410 rename "$git_dir/$x", "$git_dir/svn/$x" or
3411 croak "$!: $x";
3413 $migrated++;
3415 command_close_pipe($fh, $ctx);
3416 print STDERR "Done migrating from a git-svn v1 layout\n";
3417 $migrated;
3420 sub read_old_urls {
3421 my ($l_map, $pfx, $path) = @_;
3422 my @dir;
3423 foreach (<$path/*>) {
3424 if (-r "$_/info/url") {
3425 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
3426 my $ref_id = $pfx . basename $_;
3427 my $url = ::file_to_s("$_/info/url");
3428 $l_map->{$ref_id} = $url;
3429 } elsif (-d $_) {
3430 push @dir, $_;
3433 foreach (@dir) {
3434 my $x = $_;
3435 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
3436 read_old_urls($l_map, $x, $_);
3440 sub migrate_from_v2 {
3441 my @cfg = command(qw/config -l/);
3442 return if grep /^svn-remote\..+\.url=/, @cfg;
3443 my %l_map;
3444 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
3445 my $migrated = 0;
3447 foreach my $ref_id (sort keys %l_map) {
3448 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
3449 if ($@) {
3450 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
3452 $migrated++;
3454 $migrated;
3457 sub minimize_connections {
3458 my $r = Git::SVN::read_all_remotes();
3459 my $new_urls = {};
3460 my $root_repos = {};
3461 foreach my $repo_id (keys %$r) {
3462 my $url = $r->{$repo_id}->{url} or next;
3463 my $fetch = $r->{$repo_id}->{fetch} or next;
3464 my $ra = Git::SVN::Ra->new($url);
3466 # skip existing cases where we already connect to the root
3467 if (($ra->{url} eq $ra->{repos_root}) ||
3468 (Git::SVN::sanitize_remote_name($ra->{repos_root}) eq
3469 $repo_id)) {
3470 $root_repos->{$ra->{url}} = $repo_id;
3471 next;
3474 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
3475 my $root_path = $ra->{url};
3476 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
3477 foreach my $path (keys %$fetch) {
3478 my $ref_id = $fetch->{$path};
3479 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
3481 # make sure we can read when connecting to
3482 # a higher level of a repository
3483 my ($last_rev, undef) = $gs->last_rev_commit;
3484 if (!defined $last_rev) {
3485 $last_rev = eval {
3486 $root_ra->get_latest_revnum;
3488 next if $@;
3490 my $new = $root_path;
3491 $new .= length $path ? "/$path" : '';
3492 eval {
3493 $root_ra->get_log([$new], $last_rev, $last_rev,
3494 0, 0, 1, sub { });
3496 next if $@;
3497 $new_urls->{$ra->{repos_root}}->{$new} =
3498 { ref_id => $ref_id,
3499 old_repo_id => $repo_id,
3500 old_path => $path };
3504 my @emptied;
3505 foreach my $url (keys %$new_urls) {
3506 # see if we can re-use an existing [svn-remote "repo_id"]
3507 # instead of creating a(n ugly) new section:
3508 my $repo_id = $root_repos->{$url} ||
3509 Git::SVN::sanitize_remote_name($url);
3511 my $fetch = $new_urls->{$url};
3512 foreach my $path (keys %$fetch) {
3513 my $x = $fetch->{$path};
3514 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
3515 my $pfx = "svn-remote.$x->{old_repo_id}";
3517 my $old_fetch = quotemeta("$x->{old_path}:".
3518 "refs/remotes/$x->{ref_id}");
3519 command_noisy(qw/config --unset/,
3520 "$pfx.fetch", '^'. $old_fetch . '$');
3521 delete $r->{$x->{old_repo_id}}->
3522 {fetch}->{$x->{old_path}};
3523 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
3524 command_noisy(qw/config --unset/,
3525 "$pfx.url");
3526 push @emptied, $x->{old_repo_id}
3530 if (@emptied) {
3531 my $file = $ENV{GIT_CONFIG} || $ENV{GIT_CONFIG_LOCAL} ||
3532 "$ENV{GIT_DIR}/config";
3533 print STDERR <<EOF;
3534 The following [svn-remote] sections in your config file ($file) are empty
3535 and can be safely removed:
3537 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
3541 sub migration_check {
3542 migrate_from_v0();
3543 migrate_from_v1();
3544 migrate_from_v2();
3545 minimize_connections() if $_minimize;
3548 package Git::IndexInfo;
3549 use strict;
3550 use warnings;
3551 use Git qw/command_input_pipe command_close_pipe/;
3553 sub new {
3554 my ($class) = @_;
3555 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
3556 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
3559 sub remove {
3560 my ($self, $path) = @_;
3561 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
3562 return ++$self->{nr};
3564 undef;
3567 sub update {
3568 my ($self, $mode, $hash, $path) = @_;
3569 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
3570 return ++$self->{nr};
3572 undef;
3575 sub DESTROY {
3576 my ($self) = @_;
3577 command_close_pipe($self->{gui}, $self->{ctx});
3580 package Git::SVN::GlobSpec;
3581 use strict;
3582 use warnings;
3584 sub new {
3585 my ($class, $glob) = @_;
3586 my $re = $glob;
3587 $re =~ s!/+$!!g; # no need for trailing slashes
3588 my $nr = ($re =~ s!^(.*)\*(.*)$!\(\[^/\]+\)!g);
3589 my ($left, $right) = ($1, $2);
3590 if ($nr > 1) {
3591 die "Only one '*' wildcard expansion ",
3592 "is supported (got $nr): '$glob'\n";
3593 } elsif ($nr == 0) {
3594 die "One '*' is needed for glob: '$glob'\n";
3596 $re = quotemeta($left) . $re . quotemeta($right);
3597 if (length $left && !($left =~ s!/+$!!g)) {
3598 die "Missing trailing '/' on left side of: '$glob' ($left)\n";
3600 if (length $right && !($right =~ s!^/+!!g)) {
3601 die "Missing leading '/' on right side of: '$glob' ($right)\n";
3603 my $left_re = qr/^\/\Q$left\E(\/|$)/;
3604 bless { left => $left, right => $right, left_regex => $left_re,
3605 regex => qr/$re/, glob => $glob }, $class;
3608 sub full_path {
3609 my ($self, $path) = @_;
3610 return (length $self->{left} ? "$self->{left}/" : '') .
3611 $path . (length $self->{right} ? "/$self->{right}" : '');
3614 __END__
3616 Data structures:
3619 $remotes = { # returned by read_all_remotes()
3620 'svn' => {
3621 # svn-remote.svn.url=https://svn.musicpd.org
3622 url => 'https://svn.musicpd.org',
3623 # svn-remote.svn.fetch=mpd/trunk:trunk
3624 fetch => {
3625 'mpd/trunk' => 'trunk',
3627 # svn-remote.svn.tags=mpd/tags/*:tags/*
3628 tags => {
3629 path => {
3630 left => 'mpd/tags',
3631 right => '',
3632 regex => qr!mpd/tags/([^/]+)$!,
3633 glob => 'tags/*',
3635 ref => {
3636 left => 'tags',
3637 right => '',
3638 regex => qr!tags/([^/]+)$!,
3639 glob => 'tags/*',
3645 $log_entry hashref as returned by libsvn_log_entry()
3647 log => 'whitespace-formatted log entry
3648 ', # trailing newline is preserved
3649 revision => '8', # integer
3650 date => '2004-02-24T17:01:44.108345Z', # commit date
3651 author => 'committer name'
3655 # this is generated by generate_diff();
3656 @mods = array of diff-index line hashes, each element represents one line
3657 of diff-index output
3659 diff-index line ($m hash)
3661 mode_a => first column of diff-index output, no leading ':',
3662 mode_b => second column of diff-index output,
3663 sha1_b => sha1sum of the final blob,
3664 chg => change type [MCRADT],
3665 file_a => original file name of a file (iff chg is 'C' or 'R')
3666 file_b => new/current file name of a file (any chg)
3670 # retval of read_url_paths{,_all}();
3671 $l_map = {
3672 # repository root url
3673 'https://svn.musicpd.org' => {
3674 # repository path # GIT_SVN_ID
3675 'mpd/trunk' => 'trunk',
3676 'mpd/tags/0.11.5' => 'tags/0.11.5',
3680 Notes:
3681 I don't trust the each() function on unless I created %hash myself
3682 because the internal iterator may not have started at base.