diff options documentation: refer to --diff-filter in --name-status
[git/raj.git] / git-svn.perl
blobfcfe4eeaa0ed7ba9a7220e40f8e549c91db33f2e
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 # From which subdir have we been invoked?
13 my $cmd_dir_prefix = eval {
14 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
15 } || '';
17 my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
18 $ENV{GIT_DIR} ||= '.git';
19 $Git::SVN::default_repo_id = 'svn';
20 $Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn';
21 $Git::SVN::Ra::_log_window_size = 100;
23 $Git::SVN::Log::TZ = $ENV{TZ};
24 $ENV{TZ} = 'UTC';
25 $| = 1; # unbuffer STDOUT
27 sub fatal (@) { print STDERR "@_\n"; exit 1 }
28 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
29 require SVN::Ra;
30 require SVN::Delta;
31 if ($SVN::Core::VERSION lt '1.1.0') {
32 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
34 push @Git::SVN::Ra::ISA, 'SVN::Ra';
35 push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
36 push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
37 use Carp qw/croak/;
38 use Digest::MD5;
39 use IO::File qw//;
40 use File::Basename qw/dirname basename/;
41 use File::Path qw/mkpath/;
42 use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
43 use IPC::Open3;
44 use Git;
46 BEGIN {
47 # import functions from Git into our packages, en masse
48 no strict 'refs';
49 foreach (qw/command command_oneline command_noisy command_output_pipe
50 command_input_pipe command_close_pipe/) {
51 for my $package ( qw(SVN::Git::Editor SVN::Git::Fetcher
52 Git::SVN::Migration Git::SVN::Log Git::SVN),
53 __PACKAGE__) {
54 *{"${package}::$_"} = \&{"Git::$_"};
59 my ($SVN);
61 $sha1 = qr/[a-f\d]{40}/;
62 $sha1_short = qr/[a-f\d]{4,40}/;
63 my ($_stdin, $_help, $_edit,
64 $_message, $_file,
65 $_template, $_shared,
66 $_version, $_fetch_all, $_no_rebase,
67 $_merge, $_strategy, $_dry_run, $_local,
68 $_prefix, $_no_checkout, $_url, $_verbose);
69 $Git::SVN::_follow_parent = 1;
70 my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
71 'config-dir=s' => \$Git::SVN::Ra::config_dir,
72 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache );
73 my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
74 'authors-file|A=s' => \$_authors,
75 'repack:i' => \$Git::SVN::_repack,
76 'noMetadata' => \$Git::SVN::_no_metadata,
77 'useSvmProps' => \$Git::SVN::_use_svm_props,
78 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
79 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
80 'no-checkout' => \$_no_checkout,
81 'quiet|q' => \$_q,
82 'repack-flags|repack-args|repack-opts=s' =>
83 \$Git::SVN::_repack_flags,
84 'use-log-author' => \$Git::SVN::_use_log_author,
85 %remote_opts );
87 my ($_trunk, $_tags, $_branches, $_stdlayout);
88 my %icv;
89 my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
90 'trunk|T=s' => \$_trunk, 'tags|t=s' => \$_tags,
91 'branches|b=s' => \$_branches, 'prefix=s' => \$_prefix,
92 'stdlayout|s' => \$_stdlayout,
93 'minimize-url|m' => \$Git::SVN::_minimize_url,
94 'no-metadata' => sub { $icv{noMetadata} = 1 },
95 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
96 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
97 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
98 %remote_opts );
99 my %cmt_opts = ( 'edit|e' => \$_edit,
100 'rmdir' => \$SVN::Git::Editor::_rmdir,
101 'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
102 'l=i' => \$SVN::Git::Editor::_rename_limit,
103 'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
106 my %cmd = (
107 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
108 { 'revision|r=s' => \$_revision,
109 'fetch-all|all' => \$_fetch_all,
110 %fc_opts } ],
111 clone => [ \&cmd_clone, "Initialize and fetch revisions",
112 { 'revision|r=s' => \$_revision,
113 %fc_opts, %init_opts } ],
114 init => [ \&cmd_init, "Initialize a repo for tracking" .
115 " (requires URL argument)",
116 \%init_opts ],
117 'multi-init' => [ \&cmd_multi_init,
118 "Deprecated alias for ".
119 "'$0 init -T<trunk> -b<branches> -t<tags>'",
120 \%init_opts ],
121 dcommit => [ \&cmd_dcommit,
122 'Commit several diffs to merge with upstream',
123 { 'merge|m|M' => \$_merge,
124 'strategy|s=s' => \$_strategy,
125 'verbose|v' => \$_verbose,
126 'dry-run|n' => \$_dry_run,
127 'fetch-all|all' => \$_fetch_all,
128 'no-rebase' => \$_no_rebase,
129 %cmt_opts, %fc_opts } ],
130 'set-tree' => [ \&cmd_set_tree,
131 "Set an SVN repository to a git tree-ish",
132 { 'stdin|' => \$_stdin, %cmt_opts, %fc_opts, } ],
133 'create-ignore' => [ \&cmd_create_ignore,
134 'Create a .gitignore per svn:ignore',
135 { 'revision|r=i' => \$_revision
136 } ],
137 'propget' => [ \&cmd_propget,
138 'Print the value of a property on a file or directory',
139 { 'revision|r=i' => \$_revision } ],
140 'proplist' => [ \&cmd_proplist,
141 'List all properties of a file or directory',
142 { 'revision|r=i' => \$_revision } ],
143 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
144 { 'revision|r=i' => \$_revision
145 } ],
146 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
147 { 'revision|r=i' => \$_revision
148 } ],
149 'multi-fetch' => [ \&cmd_multi_fetch,
150 "Deprecated alias for $0 fetch --all",
151 { 'revision|r=s' => \$_revision, %fc_opts } ],
152 'migrate' => [ sub { },
153 # no-op, we automatically run this anyways,
154 'Migrate configuration/metadata/layout from
155 previous versions of git-svn',
156 { 'minimize' => \$Git::SVN::Migration::_minimize,
157 %remote_opts } ],
158 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
159 { 'limit=i' => \$Git::SVN::Log::limit,
160 'revision|r=s' => \$_revision,
161 'verbose|v' => \$Git::SVN::Log::verbose,
162 'incremental' => \$Git::SVN::Log::incremental,
163 'oneline' => \$Git::SVN::Log::oneline,
164 'show-commit' => \$Git::SVN::Log::show_commit,
165 'non-recursive' => \$Git::SVN::Log::non_recursive,
166 'authors-file|A=s' => \$_authors,
167 'color' => \$Git::SVN::Log::color,
168 'pager=s' => \$Git::SVN::Log::pager
169 } ],
170 'find-rev' => [ \&cmd_find_rev, "Translate between SVN revision numbers and tree-ish",
171 {} ],
172 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
173 { 'merge|m|M' => \$_merge,
174 'verbose|v' => \$_verbose,
175 'strategy|s=s' => \$_strategy,
176 'local|l' => \$_local,
177 'fetch-all|all' => \$_fetch_all,
178 %fc_opts } ],
179 'commit-diff' => [ \&cmd_commit_diff,
180 'Commit a diff between two trees',
181 { 'message|m=s' => \$_message,
182 'file|F=s' => \$_file,
183 'revision|r=s' => \$_revision,
184 %cmt_opts } ],
185 'info' => [ \&cmd_info,
186 "Show info about the latest SVN revision
187 on the current branch",
188 { 'url' => \$_url, } ],
191 my $cmd;
192 for (my $i = 0; $i < @ARGV; $i++) {
193 if (defined $cmd{$ARGV[$i]}) {
194 $cmd = $ARGV[$i];
195 splice @ARGV, $i, 1;
196 last;
200 # make sure we're always running at the top-level working directory
201 unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
202 unless (-d $ENV{GIT_DIR}) {
203 if ($git_dir_user_set) {
204 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
205 "but it is not a directory\n";
207 my $git_dir = delete $ENV{GIT_DIR};
208 chomp(my $cdup = command_oneline(qw/rev-parse --show-cdup/));
209 unless (length $cdup) {
210 die "Already at toplevel, but $git_dir ",
211 "not found '$cdup'\n";
213 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
214 unless (-d $git_dir) {
215 die "$git_dir still not found after going to ",
216 "'$cdup'\n";
218 $ENV{GIT_DIR} = $git_dir;
222 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
224 read_repo_config(\%opts);
225 Getopt::Long::Configure('pass_through') if ($cmd && $cmd eq 'log');
226 my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
227 'minimize-connections' => \$Git::SVN::Migration::_minimize,
228 'id|i=s' => \$Git::SVN::default_ref_id,
229 'svn-remote|remote|R=s' => sub {
230 $Git::SVN::no_reuse_existing = 1;
231 $Git::SVN::default_repo_id = $_[1] });
232 exit 1 if (!$rv && $cmd && $cmd ne 'log');
234 usage(0) if $_help;
235 version() if $_version;
236 usage(1) unless defined $cmd;
237 load_authors() if $_authors;
239 unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
240 Git::SVN::Migration::migration_check();
242 Git::SVN::init_vars();
243 eval {
244 Git::SVN::verify_remotes_sanity();
245 $cmd{$cmd}->[0]->(@ARGV);
247 fatal $@ if $@;
248 post_fetch_checkout();
249 exit 0;
251 ####################### primary functions ######################
252 sub usage {
253 my $exit = shift || 0;
254 my $fd = $exit ? \*STDERR : \*STDOUT;
255 print $fd <<"";
256 git-svn - bidirectional operations between a single Subversion tree and git
257 Usage: $0 <command> [options] [arguments]\n
259 print $fd "Available commands:\n" unless $cmd;
261 foreach (sort keys %cmd) {
262 next if $cmd && $cmd ne $_;
263 next if /^multi-/; # don't show deprecated commands
264 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
265 foreach (sort keys %{$cmd{$_}->[2]}) {
266 # mixed-case options are for .git/config only
267 next if /[A-Z]/ && /^[a-z]+$/i;
268 # prints out arguments as they should be passed:
269 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
270 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
271 "--$_" : "-$_" }
272 split /\|/,$_)," $x\n";
275 print $fd <<"";
276 \nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
277 arbitrary identifier if you're tracking multiple SVN branches/repositories in
278 one git repository and want to keep them separate. See git-svn(1) for more
279 information.
281 exit $exit;
284 sub version {
285 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
286 exit 0;
289 sub do_git_init_db {
290 unless (-d $ENV{GIT_DIR}) {
291 my @init_db = ('init');
292 push @init_db, "--template=$_template" if defined $_template;
293 if (defined $_shared) {
294 if ($_shared =~ /[a-z]/) {
295 push @init_db, "--shared=$_shared";
296 } else {
297 push @init_db, "--shared";
300 command_noisy(@init_db);
302 my $set;
303 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
304 foreach my $i (keys %icv) {
305 die "'$set' and '$i' cannot both be set\n" if $set;
306 next unless defined $icv{$i};
307 command_noisy('config', "$pfx.$i", $icv{$i});
308 $set = $i;
312 sub init_subdir {
313 my $repo_path = shift or return;
314 mkpath([$repo_path]) unless -d $repo_path;
315 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
316 $ENV{GIT_DIR} = '.git';
319 sub cmd_clone {
320 my ($url, $path) = @_;
321 if (!defined $path &&
322 (defined $_trunk || defined $_branches || defined $_tags ||
323 defined $_stdlayout) &&
324 $url !~ m#^[a-z\+]+://#) {
325 $path = $url;
327 $path = basename($url) if !defined $path || !length $path;
328 cmd_init($url, $path);
329 Git::SVN::fetch_all($Git::SVN::default_repo_id);
332 sub cmd_init {
333 if (defined $_stdlayout) {
334 $_trunk = 'trunk' if (!defined $_trunk);
335 $_tags = 'tags' if (!defined $_tags);
336 $_branches = 'branches' if (!defined $_branches);
338 if (defined $_trunk || defined $_branches || defined $_tags) {
339 return cmd_multi_init(@_);
341 my $url = shift or die "SVN repository location required ",
342 "as a command-line argument\n";
343 init_subdir(@_);
344 do_git_init_db();
346 Git::SVN->init($url);
349 sub cmd_fetch {
350 if (grep /^\d+=./, @_) {
351 die "'<rev>=<commit>' fetch arguments are ",
352 "no longer supported.\n";
354 my ($remote) = @_;
355 if (@_ > 1) {
356 die "Usage: $0 fetch [--all] [svn-remote]\n";
358 $remote ||= $Git::SVN::default_repo_id;
359 if ($_fetch_all) {
360 cmd_multi_fetch();
361 } else {
362 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
366 sub cmd_set_tree {
367 my (@commits) = @_;
368 if ($_stdin || !@commits) {
369 print "Reading from stdin...\n";
370 @commits = ();
371 while (<STDIN>) {
372 if (/\b($sha1_short)\b/o) {
373 unshift @commits, $1;
377 my @revs;
378 foreach my $c (@commits) {
379 my @tmp = command('rev-parse',$c);
380 if (scalar @tmp == 1) {
381 push @revs, $tmp[0];
382 } elsif (scalar @tmp > 1) {
383 push @revs, reverse(command('rev-list',@tmp));
384 } else {
385 fatal "Failed to rev-parse $c";
388 my $gs = Git::SVN->new;
389 my ($r_last, $cmt_last) = $gs->last_rev_commit;
390 $gs->fetch;
391 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
392 fatal "There are new revisions that were fetched ",
393 "and need to be merged (or acknowledged) ",
394 "before committing.\nlast rev: $r_last\n",
395 " current: $gs->{last_rev}";
397 $gs->set_tree($_) foreach @revs;
398 print "Done committing ",scalar @revs," revisions to SVN\n";
399 unlink $gs->{index};
402 sub cmd_dcommit {
403 my $head = shift;
404 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
405 'Cannot dcommit with a dirty index. Commit your changes first, '
406 . "or stash them with `git stash'.\n";
407 $head ||= 'HEAD';
408 my @refs;
409 my ($url, $rev, $uuid, $gs) = working_head_info($head, \@refs);
410 print "Committing to $url ...\n";
411 unless ($gs) {
412 die "Unable to determine upstream SVN information from ",
413 "$head history\n";
415 my $last_rev;
416 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
417 if ($_no_rebase && scalar(@$linear_refs) > 1) {
418 warn "Attempting to commit more than one change while ",
419 "--no-rebase is enabled.\n",
420 "If these changes depend on each other, re-running ",
421 "without --no-rebase may be required."
423 while (1) {
424 my $d = shift @$linear_refs or last;
425 unless (defined $last_rev) {
426 (undef, $last_rev, undef) = cmt_metadata("$d~1");
427 unless (defined $last_rev) {
428 fatal "Unable to extract revision information ",
429 "from commit $d~1";
432 if ($_dry_run) {
433 print "diff-tree $d~1 $d\n";
434 } else {
435 my $cmt_rev;
436 my %ed_opts = ( r => $last_rev,
437 log => get_commit_entry($d)->{log},
438 ra => Git::SVN::Ra->new($gs->full_url),
439 config => SVN::Core::config_get_config(
440 $Git::SVN::Ra::config_dir
442 tree_a => "$d~1",
443 tree_b => $d,
444 editor_cb => sub {
445 print "Committed r$_[0]\n";
446 $cmt_rev = $_[0];
448 svn_path => '');
449 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
450 print "No changes\n$d~1 == $d\n";
451 } elsif ($parents->{$d} && @{$parents->{$d}}) {
452 $gs->{inject_parents_dcommit}->{$cmt_rev} =
453 $parents->{$d};
455 $_fetch_all ? $gs->fetch_all : $gs->fetch;
456 $last_rev = $cmt_rev;
457 next if $_no_rebase;
459 # we always want to rebase against the current HEAD,
460 # not any head that was passed to us
461 my @diff = command('diff-tree', $d,
462 $gs->refname, '--');
463 my @finish;
464 if (@diff) {
465 @finish = rebase_cmd();
466 print STDERR "W: $d and ", $gs->refname,
467 " differ, using @finish:\n",
468 join("\n", @diff), "\n";
469 } else {
470 print "No changes between current HEAD and ",
471 $gs->refname,
472 "\nResetting to the latest ",
473 $gs->refname, "\n";
474 @finish = qw/reset --mixed/;
476 command_noisy(@finish, $gs->refname);
477 if (@diff) {
478 @refs = ();
479 my ($url_, $rev_, $uuid_, $gs_) =
480 working_head_info($head, \@refs);
481 my ($linear_refs_, $parents_) =
482 linearize_history($gs_, \@refs);
483 if (scalar(@$linear_refs) !=
484 scalar(@$linear_refs_)) {
485 fatal "# of revisions changed ",
486 "\nbefore:\n",
487 join("\n", @$linear_refs),
488 "\n\nafter:\n",
489 join("\n", @$linear_refs_), "\n",
490 'If you are attempting to commit ',
491 "merges, try running:\n\t",
492 'git rebase --interactive',
493 '--preserve-merges ',
494 $gs->refname,
495 "\nBefore dcommitting";
497 if ($url_ ne $url) {
498 fatal "URL mismatch after rebase: ",
499 "$url_ != $url";
501 if ($uuid_ ne $uuid) {
502 fatal "uuid mismatch after rebase: ",
503 "$uuid_ != $uuid";
505 # remap parents
506 my (%p, @l, $i);
507 for ($i = 0; $i < scalar @$linear_refs; $i++) {
508 my $new = $linear_refs_->[$i] or next;
509 $p{$new} =
510 $parents->{$linear_refs->[$i]};
511 push @l, $new;
513 $parents = \%p;
514 $linear_refs = \@l;
518 unlink $gs->{index};
521 sub cmd_find_rev {
522 my $revision_or_hash = shift or die "SVN or git revision required ",
523 "as a command-line argument\n";
524 my $result;
525 if ($revision_or_hash =~ /^r\d+$/) {
526 my $head = shift;
527 $head ||= 'HEAD';
528 my @refs;
529 my (undef, undef, undef, $gs) = working_head_info($head, \@refs);
530 unless ($gs) {
531 die "Unable to determine upstream SVN information from ",
532 "$head history\n";
534 my $desired_revision = substr($revision_or_hash, 1);
535 $result = $gs->rev_map_get($desired_revision);
536 } else {
537 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
538 $result = $rev;
540 print "$result\n" if $result;
543 sub cmd_rebase {
544 command_noisy(qw/update-index --refresh/);
545 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
546 unless ($gs) {
547 die "Unable to determine upstream SVN information from ",
548 "working tree history\n";
550 if (command(qw/diff-index HEAD --/)) {
551 print STDERR "Cannot rebase with uncommited changes:\n";
552 command_noisy('status');
553 exit 1;
555 unless ($_local) {
556 # rebase will checkout for us, so no need to do it explicitly
557 $_no_checkout = 'true';
558 $_fetch_all ? $gs->fetch_all : $gs->fetch;
560 command_noisy(rebase_cmd(), $gs->refname);
563 sub cmd_show_ignore {
564 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
565 $gs ||= Git::SVN->new;
566 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
567 $gs->prop_walk($gs->{path}, $r, sub {
568 my ($gs, $path, $props) = @_;
569 print STDOUT "\n# $path\n";
570 my $s = $props->{'svn:ignore'} or return;
571 $s =~ s/[\r\n]+/\n/g;
572 chomp $s;
573 $s =~ s#^#$path#gm;
574 print STDOUT "$s\n";
578 sub cmd_show_externals {
579 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
580 $gs ||= Git::SVN->new;
581 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
582 $gs->prop_walk($gs->{path}, $r, sub {
583 my ($gs, $path, $props) = @_;
584 print STDOUT "\n# $path\n";
585 my $s = $props->{'svn:externals'} or return;
586 $s =~ s/[\r\n]+/\n/g;
587 chomp $s;
588 $s =~ s#^#$path#gm;
589 print STDOUT "$s\n";
593 sub cmd_create_ignore {
594 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
595 $gs ||= Git::SVN->new;
596 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
597 $gs->prop_walk($gs->{path}, $r, sub {
598 my ($gs, $path, $props) = @_;
599 # $path is of the form /path/to/dir/
600 my $ignore = '.' . $path . '.gitignore';
601 my $s = $props->{'svn:ignore'} or return;
602 open(GITIGNORE, '>', $ignore)
603 or fatal("Failed to open `$ignore' for writing: $!");
604 $s =~ s/[\r\n]+/\n/g;
605 chomp $s;
606 # Prefix all patterns so that the ignore doesn't apply
607 # to sub-directories.
608 $s =~ s#^#/#gm;
609 print GITIGNORE "$s\n";
610 close(GITIGNORE)
611 or fatal("Failed to close `$ignore': $!");
612 command_noisy('add', $ignore);
616 sub canonicalize_path {
617 my ($path) = @_;
618 my $dot_slash_added = 0;
619 if (substr($path, 0, 1) ne "/") {
620 $path = "./" . $path;
621 $dot_slash_added = 1;
623 # File::Spec->canonpath doesn't collapse x/../y into y (for a
624 # good reason), so let's do this manually.
625 $path =~ s#/+#/#g;
626 $path =~ s#/\.(?:/|$)#/#g;
627 $path =~ s#/[^/]+/\.\.##g;
628 $path =~ s#/$##g;
629 $path =~ s#^\./## if $dot_slash_added;
630 return $path;
633 # get_svnprops(PATH)
634 # ------------------
635 # Helper for cmd_propget and cmd_proplist below.
636 sub get_svnprops {
637 my $path = shift;
638 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
639 $gs ||= Git::SVN->new;
641 # prefix THE PATH by the sub-directory from which the user
642 # invoked us.
643 $path = $cmd_dir_prefix . $path;
644 fatal("No such file or directory: $path") unless -e $path;
645 my $is_dir = -d $path ? 1 : 0;
646 $path = $gs->{path} . '/' . $path;
648 # canonicalize the path (otherwise libsvn will abort or fail to
649 # find the file)
650 $path = canonicalize_path($path);
652 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
653 my $props;
654 if ($is_dir) {
655 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
657 else {
658 (undef, $props) = $gs->ra->get_file($path, $r, undef);
660 return $props;
663 # cmd_propget (PROP, PATH)
664 # ------------------------
665 # Print the SVN property PROP for PATH.
666 sub cmd_propget {
667 my ($prop, $path) = @_;
668 $path = '.' if not defined $path;
669 usage(1) if not defined $prop;
670 my $props = get_svnprops($path);
671 if (not defined $props->{$prop}) {
672 fatal("`$path' does not have a `$prop' SVN property.");
674 print $props->{$prop} . "\n";
677 # cmd_proplist (PATH)
678 # -------------------
679 # Print the list of SVN properties for PATH.
680 sub cmd_proplist {
681 my $path = shift;
682 $path = '.' if not defined $path;
683 my $props = get_svnprops($path);
684 print "Properties on '$path':\n";
685 foreach (sort keys %{$props}) {
686 print " $_\n";
690 sub cmd_multi_init {
691 my $url = shift;
692 unless (defined $_trunk || defined $_branches || defined $_tags) {
693 usage(1);
696 # there are currently some bugs that prevent multi-init/multi-fetch
697 # setups from working well without this.
698 $Git::SVN::_minimize_url = 1;
700 $_prefix = '' unless defined $_prefix;
701 if (defined $url) {
702 $url =~ s#/+$##;
703 init_subdir(@_);
705 do_git_init_db();
706 if (defined $_trunk) {
707 my $trunk_ref = $_prefix . 'trunk';
708 # try both old-style and new-style lookups:
709 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
710 unless ($gs_trunk) {
711 my ($trunk_url, $trunk_path) =
712 complete_svn_url($url, $_trunk);
713 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
714 undef, $trunk_ref);
717 return unless defined $_branches || defined $_tags;
718 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
719 complete_url_ls_init($ra, $_branches, '--branches/-b', $_prefix);
720 complete_url_ls_init($ra, $_tags, '--tags/-t', $_prefix . 'tags/');
723 sub cmd_multi_fetch {
724 my $remotes = Git::SVN::read_all_remotes();
725 foreach my $repo_id (sort keys %$remotes) {
726 if ($remotes->{$repo_id}->{url}) {
727 Git::SVN::fetch_all($repo_id, $remotes);
732 # this command is special because it requires no metadata
733 sub cmd_commit_diff {
734 my ($ta, $tb, $url) = @_;
735 my $usage = "Usage: $0 commit-diff -r<revision> ".
736 "<tree-ish> <tree-ish> [<URL>]";
737 fatal($usage) if (!defined $ta || !defined $tb);
738 my $svn_path;
739 if (!defined $url) {
740 my $gs = eval { Git::SVN->new };
741 if (!$gs) {
742 fatal("Needed URL or usable git-svn --id in ",
743 "the command-line\n", $usage);
745 $url = $gs->{url};
746 $svn_path = $gs->{path};
748 unless (defined $_revision) {
749 fatal("-r|--revision is a required argument\n", $usage);
751 if (defined $_message && defined $_file) {
752 fatal("Both --message/-m and --file/-F specified ",
753 "for the commit message.\n",
754 "I have no idea what you mean");
756 if (defined $_file) {
757 $_message = file_to_s($_file);
758 } else {
759 $_message ||= get_commit_entry($tb)->{log};
761 my $ra ||= Git::SVN::Ra->new($url);
762 $svn_path ||= $ra->{svn_path};
763 my $r = $_revision;
764 if ($r eq 'HEAD') {
765 $r = $ra->get_latest_revnum;
766 } elsif ($r !~ /^\d+$/) {
767 die "revision argument: $r not understood by git-svn\n";
769 my %ed_opts = ( r => $r,
770 log => $_message,
771 ra => $ra,
772 tree_a => $ta,
773 tree_b => $tb,
774 editor_cb => sub { print "Committed r$_[0]\n" },
775 svn_path => $svn_path );
776 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
777 print "No changes\n$ta == $tb\n";
781 sub cmd_info {
782 my $path = canonicalize_path(shift or ".");
783 unless (scalar(@_) == 0) {
784 die "Too many arguments specified\n";
787 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
789 if (!$file_type && !$diff_status) {
790 print STDERR "$path: (Not a versioned resource)\n\n";
791 return;
794 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
795 unless ($gs) {
796 die "Unable to determine upstream SVN information from ",
797 "working tree history\n";
799 my $full_url = $url . ($path eq "." ? "" : "/$path");
801 if ($_url) {
802 print $full_url, "\n";
803 return;
806 my $result = "Path: $path\n";
807 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
808 $result .= "URL: " . $full_url . "\n";
810 eval {
811 my $repos_root = $gs->repos_root;
812 Git::SVN::remove_username($repos_root);
813 $result .= "Repository Root: $repos_root\n";
815 if ($@) {
816 $result .= "Repository Root: (offline)\n";
818 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A";
819 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
821 $result .= "Node Kind: " .
822 ($file_type eq "dir" ? "directory" : "file") . "\n";
824 my $schedule = $diff_status eq "A"
825 ? "add"
826 : ($diff_status eq "D" ? "delete" : "normal");
827 $result .= "Schedule: $schedule\n";
829 if ($diff_status eq "A") {
830 print $result, "\n";
831 return;
834 my ($lc_author, $lc_rev, $lc_date_utc);
835 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $path);
836 my $log = command_output_pipe(@args);
837 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
838 while (<$log>) {
839 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
840 $lc_author = $1;
841 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
842 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
843 (undef, $lc_rev, undef) = ::extract_metadata($1);
846 close $log;
848 Git::SVN::Log::set_local_timezone();
850 $result .= "Last Changed Author: $lc_author\n";
851 $result .= "Last Changed Rev: $lc_rev\n";
852 $result .= "Last Changed Date: " .
853 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
855 if ($file_type ne "dir") {
856 my $text_last_updated_date =
857 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
858 $result .=
859 "Text Last Updated: " .
860 Git::SVN::Log::format_svn_date($text_last_updated_date) .
861 "\n";
862 my $checksum;
863 if ($diff_status eq "D") {
864 my ($fh, $ctx) =
865 command_output_pipe(qw(cat-file blob), "HEAD:$path");
866 if ($file_type eq "link") {
867 my $file_name = <$fh>;
868 $checksum = md5sum("link $file_name");
869 } else {
870 $checksum = md5sum($fh);
872 command_close_pipe($fh, $ctx);
873 } elsif ($file_type eq "link") {
874 my $file_name =
875 command(qw(cat-file blob), "HEAD:$path");
876 $checksum =
877 md5sum("link " . $file_name);
878 } else {
879 open FILE, "<", $path or die $!;
880 $checksum = md5sum(\*FILE);
881 close FILE or die $!;
883 $result .= "Checksum: " . $checksum . "\n";
886 print $result, "\n";
889 ########################### utility functions #########################
891 sub rebase_cmd {
892 my @cmd = qw/rebase/;
893 push @cmd, '-v' if $_verbose;
894 push @cmd, qw/--merge/ if $_merge;
895 push @cmd, "--strategy=$_strategy" if $_strategy;
896 @cmd;
899 sub post_fetch_checkout {
900 return if $_no_checkout;
901 my $gs = $Git::SVN::_head or return;
902 return if verify_ref('refs/heads/master^0');
904 my $valid_head = verify_ref('HEAD^0');
905 command_noisy(qw(update-ref refs/heads/master), $gs->refname);
906 return if ($valid_head || !verify_ref('HEAD^0'));
908 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
909 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
910 return if -f $index;
912 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
913 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
914 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
915 print STDERR "Checked out HEAD:\n ",
916 $gs->full_url, " r", $gs->last_rev, "\n";
919 sub complete_svn_url {
920 my ($url, $path) = @_;
921 $path =~ s#/+$##;
922 if ($path !~ m#^[a-z\+]+://#) {
923 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
924 fatal("E: '$path' is not a complete URL ",
925 "and a separate URL is not specified");
927 return ($url, $path);
929 return ($path, '');
932 sub complete_url_ls_init {
933 my ($ra, $repo_path, $switch, $pfx) = @_;
934 unless ($repo_path) {
935 print STDERR "W: $switch not specified\n";
936 return;
938 $repo_path =~ s#/+$##;
939 if ($repo_path =~ m#^[a-z\+]+://#) {
940 $ra = Git::SVN::Ra->new($repo_path);
941 $repo_path = '';
942 } else {
943 $repo_path =~ s#^/+##;
944 unless ($ra) {
945 fatal("E: '$repo_path' is not a complete URL ",
946 "and a separate URL is not specified");
949 my $url = $ra->{url};
950 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
951 my $k = "svn-remote.$gs->{repo_id}.url";
952 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
953 if ($orig_url && ($orig_url ne $gs->{url})) {
954 die "$k already set: $orig_url\n",
955 "wanted to set to: $gs->{url}\n";
957 command_oneline('config', $k, $gs->{url}) unless $orig_url;
958 my $remote_path = "$ra->{svn_path}/$repo_path";
959 $remote_path =~ s#/+#/#g;
960 $remote_path =~ s#^/##g;
961 $remote_path .= "/*" if $remote_path !~ /\*/;
962 my ($n) = ($switch =~ /^--(\w+)/);
963 if (length $pfx && $pfx !~ m#/$#) {
964 die "--prefix='$pfx' must have a trailing slash '/'\n";
966 command_noisy('config', "svn-remote.$gs->{repo_id}.$n",
967 "$remote_path:refs/remotes/$pfx*");
970 sub verify_ref {
971 my ($ref) = @_;
972 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
973 { STDERR => 0 }); };
976 sub get_tree_from_treeish {
977 my ($treeish) = @_;
978 # $treeish can be a symbolic ref, too:
979 my $type = command_oneline(qw/cat-file -t/, $treeish);
980 my $expected;
981 while ($type eq 'tag') {
982 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
984 if ($type eq 'commit') {
985 $expected = (grep /^tree /, command(qw/cat-file commit/,
986 $treeish))[0];
987 ($expected) = ($expected =~ /^tree ($sha1)$/o);
988 die "Unable to get tree from $treeish\n" unless $expected;
989 } elsif ($type eq 'tree') {
990 $expected = $treeish;
991 } else {
992 die "$treeish is a $type, expected tree, tag or commit\n";
994 return $expected;
997 sub get_commit_entry {
998 my ($treeish) = shift;
999 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1000 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1001 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1002 open my $log_fh, '>', $commit_editmsg or croak $!;
1004 my $type = command_oneline(qw/cat-file -t/, $treeish);
1005 if ($type eq 'commit' || $type eq 'tag') {
1006 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
1007 $type, $treeish);
1008 my $in_msg = 0;
1009 while (<$msg_fh>) {
1010 if (!$in_msg) {
1011 $in_msg = 1 if (/^\s*$/);
1012 } elsif (/^git-svn-id: /) {
1013 # skip this for now, we regenerate the
1014 # correct one on re-fetch anyways
1015 # TODO: set *:merge properties or like...
1016 } else {
1017 print $log_fh $_ or croak $!;
1020 command_close_pipe($msg_fh, $ctx);
1022 close $log_fh or croak $!;
1024 if ($_edit || ($type eq 'tree')) {
1025 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
1026 # TODO: strip out spaces, comments, like git-commit.sh
1027 system($editor, $commit_editmsg);
1029 rename $commit_editmsg, $commit_msg or croak $!;
1030 open $log_fh, '<', $commit_msg or croak $!;
1031 { local $/; chomp($log_entry{log} = <$log_fh>); }
1032 close $log_fh or croak $!;
1033 unlink $commit_msg;
1034 \%log_entry;
1037 sub s_to_file {
1038 my ($str, $file, $mode) = @_;
1039 open my $fd,'>',$file or croak $!;
1040 print $fd $str,"\n" or croak $!;
1041 close $fd or croak $!;
1042 chmod ($mode &~ umask, $file) if (defined $mode);
1045 sub file_to_s {
1046 my $file = shift;
1047 open my $fd,'<',$file or croak "$!: file: $file\n";
1048 local $/;
1049 my $ret = <$fd>;
1050 close $fd or croak $!;
1051 $ret =~ s/\s*$//s;
1052 return $ret;
1055 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1056 sub load_authors {
1057 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
1058 my $log = $cmd eq 'log';
1059 while (<$authors>) {
1060 chomp;
1061 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
1062 my ($user, $name, $email) = ($1, $2, $3);
1063 if ($log) {
1064 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1065 } else {
1066 $users{$user} = [$name, $email];
1069 close $authors or croak $!;
1072 # convert GetOpt::Long specs for use by git-config
1073 sub read_repo_config {
1074 return unless -d $ENV{GIT_DIR};
1075 my $opts = shift;
1076 my @config_only;
1077 foreach my $o (keys %$opts) {
1078 # if we have mixedCase and a long option-only, then
1079 # it's a config-only variable that we don't need for
1080 # the command-line.
1081 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
1082 my $v = $opts->{$o};
1083 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
1084 $key =~ s/-//g;
1085 my $arg = 'git-config';
1086 $arg .= ' --int' if ($o =~ /[:=]i$/);
1087 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1088 if (ref $v eq 'ARRAY') {
1089 chomp(my @tmp = `$arg --get-all svn.$key`);
1090 @$v = @tmp if @tmp;
1091 } else {
1092 chomp(my $tmp = `$arg --get svn.$key`);
1093 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
1094 $$v = $tmp;
1098 delete @$opts{@config_only} if @config_only;
1101 sub extract_metadata {
1102 my $id = shift or return (undef, undef, undef);
1103 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
1104 \s([a-f\d\-]+)$/x);
1105 if (!defined $rev || !$uuid || !$url) {
1106 # some of the original repositories I made had
1107 # identifiers like this:
1108 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
1110 return ($url, $rev, $uuid);
1113 sub cmt_metadata {
1114 return extract_metadata((grep(/^git-svn-id: /,
1115 command(qw/cat-file commit/, shift)))[-1]);
1118 sub working_head_info {
1119 my ($head, $refs) = @_;
1120 my @args = ('log', '--no-color', '--first-parent');
1121 my ($fh, $ctx) = command_output_pipe(@args, $head);
1122 my $hash;
1123 my %max;
1124 while (<$fh>) {
1125 if ( m{^commit ($::sha1)$} ) {
1126 unshift @$refs, $hash if $hash and $refs;
1127 $hash = $1;
1128 next;
1130 next unless s{^\s*(git-svn-id:)}{$1};
1131 my ($url, $rev, $uuid) = extract_metadata($_);
1132 if (defined $url && defined $rev) {
1133 next if $max{$url} and $max{$url} < $rev;
1134 if (my $gs = Git::SVN->find_by_url($url)) {
1135 my $c = $gs->rev_map_get($rev);
1136 if ($c && $c eq $hash) {
1137 close $fh; # break the pipe
1138 return ($url, $rev, $uuid, $gs);
1139 } else {
1140 $max{$url} ||= $gs->rev_map_max;
1145 command_close_pipe($fh, $ctx);
1146 (undef, undef, undef, undef);
1149 sub read_commit_parents {
1150 my ($parents, $c) = @_;
1151 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1152 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1153 @{$parents->{$c}} = split(/ /, $p);
1156 sub linearize_history {
1157 my ($gs, $refs) = @_;
1158 my %parents;
1159 foreach my $c (@$refs) {
1160 read_commit_parents(\%parents, $c);
1163 my @linear_refs;
1164 my %skip = ();
1165 my $last_svn_commit = $gs->last_commit;
1166 foreach my $c (reverse @$refs) {
1167 next if $c eq $last_svn_commit;
1168 last if $skip{$c};
1170 unshift @linear_refs, $c;
1171 $skip{$c} = 1;
1173 # we only want the first parent to diff against for linear
1174 # history, we save the rest to inject when we finalize the
1175 # svn commit
1176 my $fp_a = verify_ref("$c~1");
1177 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1178 if (!$fp_a || !$fp_b) {
1179 die "Commit $c\n",
1180 "has no parent commit, and therefore ",
1181 "nothing to diff against.\n",
1182 "You should be working from a repository ",
1183 "originally created by git-svn\n";
1185 if ($fp_a ne $fp_b) {
1186 die "$c~1 = $fp_a, however parsing commit $c ",
1187 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1190 foreach my $p (@{$parents{$c}}) {
1191 $skip{$p} = 1;
1194 (\@linear_refs, \%parents);
1197 sub find_file_type_and_diff_status {
1198 my ($path) = @_;
1199 return ('dir', '') if $path eq '.';
1201 my $diff_output =
1202 command_oneline(qw(diff --cached --name-status --), $path) || "";
1203 my $diff_status = (split(' ', $diff_output))[0] || "";
1205 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1207 return (undef, undef) if !$diff_status && !$ls_tree;
1209 if ($diff_status eq "A") {
1210 return ("link", $diff_status) if -l $path;
1211 return ("dir", $diff_status) if -d $path;
1212 return ("file", $diff_status);
1215 my $mode = (split(' ', $ls_tree))[0] || "";
1217 return ("link", $diff_status) if $mode eq "120000";
1218 return ("dir", $diff_status) if $mode eq "040000";
1219 return ("file", $diff_status);
1222 sub md5sum {
1223 my $arg = shift;
1224 my $ref = ref $arg;
1225 my $md5 = Digest::MD5->new();
1226 if ($ref eq 'GLOB' || $ref eq 'IO::File') {
1227 $md5->addfile($arg) or croak $!;
1228 } elsif ($ref eq 'SCALAR') {
1229 $md5->add($$arg) or croak $!;
1230 } elsif (!$ref) {
1231 $md5->add($arg) or croak $!;
1232 } else {
1233 ::fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1235 return $md5->hexdigest();
1238 package Git::SVN;
1239 use strict;
1240 use warnings;
1241 use Fcntl qw/:DEFAULT :seek/;
1242 use constant rev_map_fmt => 'NH40';
1243 use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
1244 $_repack $_repack_flags $_use_svm_props $_head
1245 $_use_svnsync_props $no_reuse_existing $_minimize_url
1246 $_use_log_author/;
1247 use Carp qw/croak/;
1248 use File::Path qw/mkpath/;
1249 use File::Copy qw/copy/;
1250 use IPC::Open3;
1252 my $_repack_nr;
1253 # properties that we do not log:
1254 my %SKIP_PROP;
1255 BEGIN {
1256 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
1257 svn:special svn:executable
1258 svn:entry:committed-rev
1259 svn:entry:last-author
1260 svn:entry:uuid
1261 svn:entry:committed-date/;
1263 # some options are read globally, but can be overridden locally
1264 # per [svn-remote "..."] section. Command-line options will *NOT*
1265 # override options set in an [svn-remote "..."] section
1266 no strict 'refs';
1267 for my $option (qw/follow_parent no_metadata use_svm_props
1268 use_svnsync_props/) {
1269 my $key = $option;
1270 $key =~ tr/_//d;
1271 my $prop = "-$option";
1272 *$option = sub {
1273 my ($self) = @_;
1274 return $self->{$prop} if exists $self->{$prop};
1275 my $k = "svn-remote.$self->{repo_id}.$key";
1276 eval { command_oneline(qw/config --get/, $k) };
1277 if ($@) {
1278 $self->{$prop} = ${"Git::SVN::_$option"};
1279 } else {
1280 my $v = command_oneline(qw/config --bool/,$k);
1281 $self->{$prop} = $v eq 'false' ? 0 : 1;
1283 return $self->{$prop};
1288 my (%LOCKFILES, %INDEX_FILES);
1289 END {
1290 unlink keys %LOCKFILES if %LOCKFILES;
1291 unlink keys %INDEX_FILES if %INDEX_FILES;
1294 sub resolve_local_globs {
1295 my ($url, $fetch, $glob_spec) = @_;
1296 return unless defined $glob_spec;
1297 my $ref = $glob_spec->{ref};
1298 my $path = $glob_spec->{path};
1299 foreach (command(qw#for-each-ref --format=%(refname) refs/remotes#)) {
1300 next unless m#^refs/remotes/$ref->{regex}$#;
1301 my $p = $1;
1302 my $pathname = desanitize_refname($path->full_path($p));
1303 my $refname = desanitize_refname($ref->full_path($p));
1304 if (my $existing = $fetch->{$pathname}) {
1305 if ($existing ne $refname) {
1306 die "Refspec conflict:\n",
1307 "existing: refs/remotes/$existing\n",
1308 " globbed: refs/remotes/$refname\n";
1310 my $u = (::cmt_metadata("refs/remotes/$refname"))[0];
1311 $u =~ s!^\Q$url\E(/|$)!! or die
1312 "refs/remotes/$refname: '$url' not found in '$u'\n";
1313 if ($pathname ne $u) {
1314 warn "W: Refspec glob conflict ",
1315 "(ref: refs/remotes/$refname):\n",
1316 "expected path: $pathname\n",
1317 " real path: $u\n",
1318 "Continuing ahead with $u\n";
1319 next;
1321 } else {
1322 $fetch->{$pathname} = $refname;
1327 sub parse_revision_argument {
1328 my ($base, $head) = @_;
1329 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
1330 return ($base, $head);
1332 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
1333 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
1334 return ($head, $head) if ($::_revision eq 'HEAD');
1335 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
1336 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
1337 die "revision argument: $::_revision not understood by git-svn\n";
1340 sub fetch_all {
1341 my ($repo_id, $remotes) = @_;
1342 if (ref $repo_id) {
1343 my $gs = $repo_id;
1344 $repo_id = undef;
1345 $repo_id = $gs->{repo_id};
1347 $remotes ||= read_all_remotes();
1348 my $remote = $remotes->{$repo_id} or
1349 die "[svn-remote \"$repo_id\"] unknown\n";
1350 my $fetch = $remote->{fetch};
1351 my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
1352 my (@gs, @globs);
1353 my $ra = Git::SVN::Ra->new($url);
1354 my $uuid = $ra->get_uuid;
1355 my $head = $ra->get_latest_revnum;
1356 my $base = defined $fetch ? $head : 0;
1358 # read the max revs for wildcard expansion (branches/*, tags/*)
1359 foreach my $t (qw/branches tags/) {
1360 defined $remote->{$t} or next;
1361 push @globs, $remote->{$t};
1362 my $max_rev = eval { tmp_config(qw/--int --get/,
1363 "svn-remote.$repo_id.${t}-maxRev") };
1364 if (defined $max_rev && ($max_rev < $base)) {
1365 $base = $max_rev;
1366 } elsif (!defined $max_rev) {
1367 $base = 0;
1371 if ($fetch) {
1372 foreach my $p (sort keys %$fetch) {
1373 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
1374 my $lr = $gs->rev_map_max;
1375 if (defined $lr) {
1376 $base = $lr if ($lr < $base);
1378 push @gs, $gs;
1382 ($base, $head) = parse_revision_argument($base, $head);
1383 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
1386 sub read_all_remotes {
1387 my $r = {};
1388 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
1389 if (m!^(.+)\.fetch=\s*(.*)\s*:\s*refs/remotes/(.+)\s*$!) {
1390 my ($remote, $local_ref, $remote_ref) = ($1, $2, $3);
1391 $local_ref =~ s{^/}{};
1392 $r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
1393 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
1394 $r->{$1}->{url} = $2;
1395 } elsif (m!^(.+)\.(branches|tags)=
1396 (.*):refs/remotes/(.+)\s*$/!x) {
1397 my ($p, $g) = ($3, $4);
1398 my $rs = $r->{$1}->{$2} = {
1399 t => $2,
1400 remote => $1,
1401 path => Git::SVN::GlobSpec->new($p),
1402 ref => Git::SVN::GlobSpec->new($g) };
1403 if (length($rs->{ref}->{right}) != 0) {
1404 die "The '*' glob character must be the last ",
1405 "character of '$g'\n";
1412 sub init_vars {
1413 $_repack = 1000 unless (defined $_repack && $_repack > 0);
1414 $_repack_nr = $_repack;
1415 $_repack_flags ||= '-d';
1418 sub verify_remotes_sanity {
1419 return unless -d $ENV{GIT_DIR};
1420 my %seen;
1421 foreach (command(qw/config -l/)) {
1422 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
1423 if ($seen{$1}) {
1424 die "Remote ref refs/remote/$1 is tracked by",
1425 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
1426 "Please resolve this ambiguity in ",
1427 "your git configuration file before ",
1428 "continuing\n";
1430 $seen{$1} = $_;
1435 # we allow more chars than remotes2config.sh...
1436 sub sanitize_remote_name {
1437 my ($name) = @_;
1438 $name =~ tr{A-Za-z0-9:,/+-}{.}c;
1439 $name;
1442 sub find_existing_remote {
1443 my ($url, $remotes) = @_;
1444 return undef if $no_reuse_existing;
1445 my $existing;
1446 foreach my $repo_id (keys %$remotes) {
1447 my $u = $remotes->{$repo_id}->{url} or next;
1448 next if $u ne $url;
1449 $existing = $repo_id;
1450 last;
1452 $existing;
1455 sub init_remote_config {
1456 my ($self, $url, $no_write) = @_;
1457 $url =~ s!/+$!!; # strip trailing slash
1458 my $r = read_all_remotes();
1459 my $existing = find_existing_remote($url, $r);
1460 if ($existing) {
1461 unless ($no_write) {
1462 print STDERR "Using existing ",
1463 "[svn-remote \"$existing\"]\n";
1465 $self->{repo_id} = $existing;
1466 } elsif ($_minimize_url) {
1467 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1468 $existing = find_existing_remote($min_url, $r);
1469 if ($existing) {
1470 unless ($no_write) {
1471 print STDERR "Using existing ",
1472 "[svn-remote \"$existing\"]\n";
1474 $self->{repo_id} = $existing;
1476 if ($min_url ne $url) {
1477 unless ($no_write) {
1478 print STDERR "Using higher level of URL: ",
1479 "$url => $min_url\n";
1481 my $old_path = $self->{path};
1482 $self->{path} = $url;
1483 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
1484 if (length $old_path) {
1485 $self->{path} .= "/$old_path";
1487 $url = $min_url;
1490 my $orig_url;
1491 if (!$existing) {
1492 # verify that we aren't overwriting anything:
1493 $orig_url = eval {
1494 command_oneline('config', '--get',
1495 "svn-remote.$self->{repo_id}.url")
1497 if ($orig_url && ($orig_url ne $url)) {
1498 die "svn-remote.$self->{repo_id}.url already set: ",
1499 "$orig_url\nwanted to set to: $url\n";
1502 my ($xrepo_id, $xpath) = find_ref($self->refname);
1503 if (defined $xpath) {
1504 die "svn-remote.$xrepo_id.fetch already set to track ",
1505 "$xpath:refs/remotes/", $self->refname, "\n";
1507 unless ($no_write) {
1508 command_noisy('config',
1509 "svn-remote.$self->{repo_id}.url", $url);
1510 $self->{path} =~ s{^/}{};
1511 command_noisy('config', '--add',
1512 "svn-remote.$self->{repo_id}.fetch",
1513 "$self->{path}:".$self->refname);
1515 $self->{url} = $url;
1518 sub find_by_url { # repos_root and, path are optional
1519 my ($class, $full_url, $repos_root, $path) = @_;
1521 return undef unless defined $full_url;
1522 remove_username($full_url);
1523 remove_username($repos_root) if defined $repos_root;
1524 my $remotes = read_all_remotes();
1525 if (defined $full_url && defined $repos_root && !defined $path) {
1526 $path = $full_url;
1527 $path =~ s#^\Q$repos_root\E(?:/|$)##;
1529 foreach my $repo_id (keys %$remotes) {
1530 my $u = $remotes->{$repo_id}->{url} or next;
1531 remove_username($u);
1532 next if defined $repos_root && $repos_root ne $u;
1534 my $fetch = $remotes->{$repo_id}->{fetch} || {};
1535 foreach (qw/branches tags/) {
1536 resolve_local_globs($u, $fetch,
1537 $remotes->{$repo_id}->{$_});
1539 my $p = $path;
1540 my $rwr = rewrite_root({repo_id => $repo_id});
1541 unless (defined $p) {
1542 $p = $full_url;
1543 my $z = $u;
1544 if ($rwr) {
1545 $z = $rwr;
1547 $p =~ s#^\Q$z\E(?:/|$)## or next;
1549 foreach my $f (keys %$fetch) {
1550 next if $f ne $p;
1551 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
1554 undef;
1557 sub init {
1558 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
1559 my $self = _new($class, $repo_id, $ref_id, $path);
1560 if (defined $url) {
1561 $self->init_remote_config($url, $no_write);
1563 $self;
1566 sub find_ref {
1567 my ($ref_id) = @_;
1568 foreach (command(qw/config -l/)) {
1569 next unless m!^svn-remote\.(.+)\.fetch=
1570 \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
1571 my ($repo_id, $path, $ref) = ($1, $2, $3);
1572 if ($ref eq $ref_id) {
1573 $path = '' if ($path =~ m#^\./?#);
1574 return ($repo_id, $path);
1577 (undef, undef, undef);
1580 sub new {
1581 my ($class, $ref_id, $repo_id, $path) = @_;
1582 if (defined $ref_id && !defined $repo_id && !defined $path) {
1583 ($repo_id, $path) = find_ref($ref_id);
1584 if (!defined $repo_id) {
1585 die "Could not find a \"svn-remote.*.fetch\" key ",
1586 "in the repository configuration matching: ",
1587 "refs/remotes/$ref_id\n";
1590 my $self = _new($class, $repo_id, $ref_id, $path);
1591 if (!defined $self->{path} || !length $self->{path}) {
1592 my $fetch = command_oneline('config', '--get',
1593 "svn-remote.$repo_id.fetch",
1594 ":refs/remotes/$ref_id\$") or
1595 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
1596 "\":refs/remotes/$ref_id\$\" in config\n";
1597 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
1599 $self->{url} = command_oneline('config', '--get',
1600 "svn-remote.$repo_id.url") or
1601 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
1602 $self->rebuild;
1603 $self;
1606 sub refname {
1607 my ($refname) = "refs/remotes/$_[0]->{ref_id}" ;
1609 # It cannot end with a slash /, we'll throw up on this because
1610 # SVN can't have directories with a slash in their name, either:
1611 if ($refname =~ m{/$}) {
1612 die "ref: '$refname' ends with a trailing slash, this is ",
1613 "not permitted by git nor Subversion\n";
1616 # It cannot have ASCII control character space, tilde ~, caret ^,
1617 # colon :, question-mark ?, asterisk *, space, or open bracket [
1618 # anywhere.
1620 # Additionally, % must be escaped because it is used for escaping
1621 # and we want our escaped refname to be reversible
1622 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
1624 # no slash-separated component can begin with a dot .
1625 # /.* becomes /%2E*
1626 $refname =~ s{/\.}{/%2E}g;
1628 # It cannot have two consecutive dots .. anywhere
1629 # .. becomes %2E%2E
1630 $refname =~ s{\.\.}{%2E%2E}g;
1632 return $refname;
1635 sub desanitize_refname {
1636 my ($refname) = @_;
1637 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
1638 return $refname;
1641 sub svm_uuid {
1642 my ($self) = @_;
1643 return $self->{svm}->{uuid} if $self->svm;
1644 $self->ra;
1645 unless ($self->{svm}) {
1646 die "SVM UUID not cached, and reading remotely failed\n";
1648 $self->{svm}->{uuid};
1651 sub svm {
1652 my ($self) = @_;
1653 return $self->{svm} if $self->{svm};
1654 my $svm;
1655 # see if we have it in our config, first:
1656 eval {
1657 my $section = "svn-remote.$self->{repo_id}";
1658 $svm = {
1659 source => tmp_config('--get', "$section.svm-source"),
1660 uuid => tmp_config('--get', "$section.svm-uuid"),
1661 replace => tmp_config('--get', "$section.svm-replace"),
1664 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
1665 $self->{svm} = $svm;
1667 $self->{svm};
1670 sub _set_svm_vars {
1671 my ($self, $ra) = @_;
1672 return $ra if $self->svm;
1674 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
1675 "(svm:source, svm:uuid) ",
1676 "from the following URLs:\n" );
1677 sub read_svm_props {
1678 my ($self, $ra, $path, $r) = @_;
1679 my $props = ($ra->get_dir($path, $r))[2];
1680 my $src = $props->{'svm:source'};
1681 my $uuid = $props->{'svm:uuid'};
1682 return undef if (!$src || !$uuid);
1684 chomp($src, $uuid);
1686 $uuid =~ m{^[0-9a-f\-]{30,}$}
1687 or die "doesn't look right - svm:uuid is '$uuid'\n";
1689 # the '!' is used to mark the repos_root!/relative/path
1690 $src =~ s{/?!/?}{/};
1691 $src =~ s{/+$}{}; # no trailing slashes please
1692 # username is of no interest
1693 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
1695 my $replace = $ra->{url};
1696 $replace .= "/$path" if length $path;
1698 my $section = "svn-remote.$self->{repo_id}";
1699 tmp_config("$section.svm-source", $src);
1700 tmp_config("$section.svm-replace", $replace);
1701 tmp_config("$section.svm-uuid", $uuid);
1702 $self->{svm} = {
1703 source => $src,
1704 uuid => $uuid,
1705 replace => $replace
1709 my $r = $ra->get_latest_revnum;
1710 my $path = $self->{path};
1711 my %tried;
1712 while (length $path) {
1713 unless ($tried{"$self->{url}/$path"}) {
1714 return $ra if $self->read_svm_props($ra, $path, $r);
1715 $tried{"$self->{url}/$path"} = 1;
1717 $path =~ s#/?[^/]+$##;
1719 die "Path: '$path' should be ''\n" if $path ne '';
1720 return $ra if $self->read_svm_props($ra, $path, $r);
1721 $tried{"$self->{url}/$path"} = 1;
1723 if ($ra->{repos_root} eq $self->{url}) {
1724 die @err, (map { " $_\n" } keys %tried), "\n";
1727 # nope, make sure we're connected to the repository root:
1728 my $ok;
1729 my @tried_b;
1730 $path = $ra->{svn_path};
1731 $ra = Git::SVN::Ra->new($ra->{repos_root});
1732 while (length $path) {
1733 unless ($tried{"$ra->{url}/$path"}) {
1734 $ok = $self->read_svm_props($ra, $path, $r);
1735 last if $ok;
1736 $tried{"$ra->{url}/$path"} = 1;
1738 $path =~ s#/?[^/]+$##;
1740 die "Path: '$path' should be ''\n" if $path ne '';
1741 $ok ||= $self->read_svm_props($ra, $path, $r);
1742 $tried{"$ra->{url}/$path"} = 1;
1743 if (!$ok) {
1744 die @err, (map { " $_\n" } keys %tried), "\n";
1746 Git::SVN::Ra->new($self->{url});
1749 sub svnsync {
1750 my ($self) = @_;
1751 return $self->{svnsync} if $self->{svnsync};
1753 if ($self->no_metadata) {
1754 die "Can't have both 'noMetadata' and ",
1755 "'useSvnsyncProps' options set!\n";
1757 if ($self->rewrite_root) {
1758 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
1759 "options set!\n";
1762 my $svnsync;
1763 # see if we have it in our config, first:
1764 eval {
1765 my $section = "svn-remote.$self->{repo_id}";
1767 my $url = tmp_config('--get', "$section.svnsync-url");
1768 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
1769 die "doesn't look right - svn:sync-from-url is '$url'\n";
1771 my $uuid = tmp_config('--get', "$section.svnsync-uuid");
1772 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
1773 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1775 $svnsync = { url => $url, uuid => $uuid }
1777 if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) {
1778 return $self->{svnsync} = $svnsync;
1781 my $err = "useSvnsyncProps set, but failed to read " .
1782 "svnsync property: svn:sync-from-";
1783 my $rp = $self->ra->rev_proplist(0);
1785 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
1786 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
1787 die "doesn't look right - svn:sync-from-url is '$url'\n";
1789 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
1790 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
1791 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1793 my $section = "svn-remote.$self->{repo_id}";
1794 tmp_config('--add', "$section.svnsync-uuid", $uuid);
1795 tmp_config('--add', "$section.svnsync-url", $url);
1796 return $self->{svnsync} = { url => $url, uuid => $uuid };
1799 # this allows us to memoize our SVN::Ra UUID locally and avoid a
1800 # remote lookup (useful for 'git svn log').
1801 sub ra_uuid {
1802 my ($self) = @_;
1803 unless ($self->{ra_uuid}) {
1804 my $key = "svn-remote.$self->{repo_id}.uuid";
1805 my $uuid = eval { tmp_config('--get', $key) };
1806 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/) {
1807 $self->{ra_uuid} = $uuid;
1808 } else {
1809 die "ra_uuid called without URL\n" unless $self->{url};
1810 $self->{ra_uuid} = $self->ra->get_uuid;
1811 tmp_config('--add', $key, $self->{ra_uuid});
1814 $self->{ra_uuid};
1817 sub _set_repos_root {
1818 my ($self, $repos_root) = @_;
1819 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1820 $repos_root ||= $self->ra->{repos_root};
1821 tmp_config($k, $repos_root);
1822 $repos_root;
1825 sub repos_root {
1826 my ($self) = @_;
1827 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1828 eval { tmp_config('--get', $k) } || $self->_set_repos_root;
1831 sub ra {
1832 my ($self) = shift;
1833 my $ra = Git::SVN::Ra->new($self->{url});
1834 $self->_set_repos_root($ra->{repos_root});
1835 if ($self->use_svm_props && !$self->{svm}) {
1836 if ($self->no_metadata) {
1837 die "Can't have both 'noMetadata' and ",
1838 "'useSvmProps' options set!\n";
1839 } elsif ($self->use_svnsync_props) {
1840 die "Can't have both 'useSvnsyncProps' and ",
1841 "'useSvmProps' options set!\n";
1843 $ra = $self->_set_svm_vars($ra);
1844 $self->{-want_revprops} = 1;
1846 $ra;
1849 sub rel_path {
1850 my ($self) = @_;
1851 my $repos_root = $self->ra->{repos_root};
1852 return $self->{path} if ($self->{url} eq $repos_root);
1853 my $url = $self->{url} .
1854 (length $self->{path} ? "/$self->{path}" : $self->{path});
1855 $url =~ s!^\Q$repos_root\E(?:/+|$)!!g;
1856 $url;
1859 # prop_walk(PATH, REV, SUB)
1860 # -------------------------
1861 # Recursively traverse PATH at revision REV and invoke SUB for each
1862 # directory that contains a SVN property. SUB will be invoked as
1863 # follows: &SUB(gs, path, props); where `gs' is this instance of
1864 # Git::SVN, `path' the path to the directory where the properties
1865 # `props' were found. The `path' will be relative to point of checkout,
1866 # that is, if url://repo/trunk is the current Git branch, and that
1867 # directory contains a sub-directory `d', SUB will be invoked with `/d/'
1868 # as `path' (note the trailing `/').
1869 sub prop_walk {
1870 my ($self, $path, $rev, $sub) = @_;
1872 $path =~ s#^/##;
1873 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
1874 $path =~ s#^/*#/#g;
1875 my $p = $path;
1876 # Strip the irrelevant part of the path.
1877 $p =~ s#^/+\Q$self->{path}\E(/|$)#/#;
1878 # Ensure the path is terminated by a `/'.
1879 $p =~ s#/*$#/#;
1881 # The properties contain all the internal SVN stuff nobody
1882 # (usually) cares about.
1883 my $interesting_props = 0;
1884 foreach (keys %{$props}) {
1885 # If it doesn't start with `svn:', it must be a
1886 # user-defined property.
1887 ++$interesting_props and next if $_ !~ /^svn:/;
1888 # FIXME: Fragile, if SVN adds new public properties,
1889 # this needs to be updated.
1890 ++$interesting_props if /^svn:(?:ignore|keywords|executable
1891 |eol-style|mime-type
1892 |externals|needs-lock)$/x;
1894 &$sub($self, $p, $props) if $interesting_props;
1896 foreach (sort keys %$dirent) {
1897 next if $dirent->{$_}->{kind} != $SVN::Node::dir;
1898 $self->prop_walk($path . '/' . $_, $rev, $sub);
1902 sub last_rev { ($_[0]->last_rev_commit)[0] }
1903 sub last_commit { ($_[0]->last_rev_commit)[1] }
1905 # returns the newest SVN revision number and newest commit SHA1
1906 sub last_rev_commit {
1907 my ($self) = @_;
1908 if (defined $self->{last_rev} && defined $self->{last_commit}) {
1909 return ($self->{last_rev}, $self->{last_commit});
1911 my $c = ::verify_ref($self->refname.'^0');
1912 if ($c && !$self->use_svm_props && !$self->no_metadata) {
1913 my $rev = (::cmt_metadata($c))[1];
1914 if (defined $rev) {
1915 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
1916 return ($rev, $c);
1919 my $map_path = $self->map_path;
1920 unless (-e $map_path) {
1921 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
1922 return (undef, undef);
1924 my ($rev, $commit) = $self->rev_map_max(1);
1925 ($self->{last_rev}, $self->{last_commit}) = ($rev, $commit);
1926 return ($rev, $commit);
1929 sub get_fetch_range {
1930 my ($self, $min, $max) = @_;
1931 $max ||= $self->ra->get_latest_revnum;
1932 $min ||= $self->rev_map_max;
1933 (++$min, $max);
1936 sub tmp_config {
1937 my (@args) = @_;
1938 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
1939 my $config = "$ENV{GIT_DIR}/svn/.metadata";
1940 if (! -f $config && -f $old_def_config) {
1941 rename $old_def_config, $config or
1942 die "Failed rename $old_def_config => $config: $!\n";
1944 my $old_config = $ENV{GIT_CONFIG};
1945 $ENV{GIT_CONFIG} = $config;
1946 $@ = undef;
1947 my @ret = eval {
1948 unless (-f $config) {
1949 mkfile($config);
1950 open my $fh, '>', $config or
1951 die "Can't open $config: $!\n";
1952 print $fh "; This file is used internally by ",
1953 "git-svn\n" or die
1954 "Couldn't write to $config: $!\n";
1955 print $fh "; You should not have to edit it\n" or
1956 die "Couldn't write to $config: $!\n";
1957 close $fh or die "Couldn't close $config: $!\n";
1959 command('config', @args);
1961 my $err = $@;
1962 if (defined $old_config) {
1963 $ENV{GIT_CONFIG} = $old_config;
1964 } else {
1965 delete $ENV{GIT_CONFIG};
1967 die $err if $err;
1968 wantarray ? @ret : $ret[0];
1971 sub tmp_index_do {
1972 my ($self, $sub) = @_;
1973 my $old_index = $ENV{GIT_INDEX_FILE};
1974 $ENV{GIT_INDEX_FILE} = $self->{index};
1975 $@ = undef;
1976 my @ret = eval {
1977 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
1978 mkpath([$dir]) unless -d $dir;
1979 &$sub;
1981 my $err = $@;
1982 if (defined $old_index) {
1983 $ENV{GIT_INDEX_FILE} = $old_index;
1984 } else {
1985 delete $ENV{GIT_INDEX_FILE};
1987 die $err if $err;
1988 wantarray ? @ret : $ret[0];
1991 sub assert_index_clean {
1992 my ($self, $treeish) = @_;
1994 $self->tmp_index_do(sub {
1995 command_noisy('read-tree', $treeish) unless -e $self->{index};
1996 my $x = command_oneline('write-tree');
1997 my ($y) = (command(qw/cat-file commit/, $treeish) =~
1998 /^tree ($::sha1)/mo);
1999 return if $y eq $x;
2001 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2002 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2003 command_noisy('read-tree', $treeish);
2004 $x = command_oneline('write-tree');
2005 if ($y ne $x) {
2006 ::fatal "trees ($treeish) $y != $x\n",
2007 "Something is seriously wrong...";
2012 sub get_commit_parents {
2013 my ($self, $log_entry) = @_;
2014 my (%seen, @ret, @tmp);
2015 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2016 if (my $ip = $self->{inject_parents}) {
2017 if (my $commit = delete $ip->{$log_entry->{revision}}) {
2018 push @tmp, $commit;
2021 if (my $cur = ::verify_ref($self->refname.'^0')) {
2022 push @tmp, $cur;
2024 if (my $ipd = $self->{inject_parents_dcommit}) {
2025 if (my $commit = delete $ipd->{$log_entry->{revision}}) {
2026 push @tmp, @$commit;
2029 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
2030 while (my $p = shift @tmp) {
2031 next if $seen{$p};
2032 $seen{$p} = 1;
2033 push @ret, $p;
2034 # MAXPARENT is defined to 16 in commit-tree.c:
2035 last if @ret >= 16;
2037 if (@tmp) {
2038 die "r$log_entry->{revision}: No room for parents:\n\t",
2039 join("\n\t", @tmp), "\n";
2041 @ret;
2044 sub rewrite_root {
2045 my ($self) = @_;
2046 return $self->{-rewrite_root} if exists $self->{-rewrite_root};
2047 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2048 my $rwr = eval { command_oneline(qw/config --get/, $k) };
2049 if ($rwr) {
2050 $rwr =~ s#/+$##;
2051 if ($rwr !~ m#^[a-z\+]+://#) {
2052 die "$rwr is not a valid URL (key: $k)\n";
2055 $self->{-rewrite_root} = $rwr;
2058 sub metadata_url {
2059 my ($self) = @_;
2060 ($self->rewrite_root || $self->{url}) .
2061 (length $self->{path} ? '/' . $self->{path} : '');
2064 sub full_url {
2065 my ($self) = @_;
2066 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
2070 sub set_commit_header_env {
2071 my ($log_entry) = @_;
2072 my %env;
2073 foreach my $ned (qw/NAME EMAIL DATE/) {
2074 foreach my $ac (qw/AUTHOR COMMITTER/) {
2075 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2079 $ENV{GIT_AUTHOR_NAME} = $log_entry->{name};
2080 $ENV{GIT_AUTHOR_EMAIL} = $log_entry->{email};
2081 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
2083 $ENV{GIT_COMMITTER_NAME} = (defined $log_entry->{commit_name})
2084 ? $log_entry->{commit_name}
2085 : $log_entry->{name};
2086 $ENV{GIT_COMMITTER_EMAIL} = (defined $log_entry->{commit_email})
2087 ? $log_entry->{commit_email}
2088 : $log_entry->{email};
2089 \%env;
2092 sub restore_commit_header_env {
2093 my ($env) = @_;
2094 foreach my $ned (qw/NAME EMAIL DATE/) {
2095 foreach my $ac (qw/AUTHOR COMMITTER/) {
2096 my $k = "GIT_${ac}_${ned}";
2097 if (defined $env->{$k}) {
2098 $ENV{$k} = $env->{$k};
2099 } else {
2100 delete $ENV{$k};
2106 sub do_git_commit {
2107 my ($self, $log_entry) = @_;
2108 my $lr = $self->last_rev;
2109 if (defined $lr && $lr >= $log_entry->{revision}) {
2110 die "Last fetched revision of ", $self->refname,
2111 " was r$lr, but we are about to fetch: ",
2112 "r$log_entry->{revision}!\n";
2114 if (my $c = $self->rev_map_get($log_entry->{revision})) {
2115 croak "$log_entry->{revision} = $c already exists! ",
2116 "Why are we refetching it?\n";
2118 my $old_env = set_commit_header_env($log_entry);
2119 my $tree = $log_entry->{tree};
2120 if (!defined $tree) {
2121 $tree = $self->tmp_index_do(sub {
2122 command_oneline('write-tree') });
2124 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2126 my @exec = ('git-commit-tree', $tree);
2127 foreach ($self->get_commit_parents($log_entry)) {
2128 push @exec, '-p', $_;
2130 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2131 or croak $!;
2132 print $msg_fh $log_entry->{log} or croak $!;
2133 restore_commit_header_env($old_env);
2134 unless ($self->no_metadata) {
2135 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
2136 or croak $!;
2138 $msg_fh->flush == 0 or croak $!;
2139 close $msg_fh or croak $!;
2140 chomp(my $commit = do { local $/; <$out_fh> });
2141 close $out_fh or croak $!;
2142 waitpid $pid, 0;
2143 croak $? if $?;
2144 if ($commit !~ /^$::sha1$/o) {
2145 die "Failed to commit, invalid sha1: $commit\n";
2148 $self->rev_map_set($log_entry->{revision}, $commit, 1);
2150 $self->{last_rev} = $log_entry->{revision};
2151 $self->{last_commit} = $commit;
2152 print "r$log_entry->{revision}";
2153 if (defined $log_entry->{svm_revision}) {
2154 print " (\@$log_entry->{svm_revision})";
2155 $self->rev_map_set($log_entry->{svm_revision}, $commit,
2156 0, $self->svm_uuid);
2158 print " = $commit ($self->{ref_id})\n";
2159 if ($_repack && (--$_repack_nr == 0)) {
2160 $_repack_nr = $_repack;
2161 # repack doesn't use any arguments with spaces in them, does it?
2162 print "Running git repack $_repack_flags ...\n";
2163 command_noisy('repack', split(/\s+/, $_repack_flags));
2164 print "Done repacking\n";
2166 return $commit;
2169 sub match_paths {
2170 my ($self, $paths, $r) = @_;
2171 return 1 if $self->{path} eq '';
2172 if (my $path = $paths->{"/$self->{path}"}) {
2173 return ($path->{action} eq 'D') ? 0 : 1;
2175 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
2176 if (grep /$self->{path_regex}/, keys %$paths) {
2177 return 1;
2179 my $c = '';
2180 foreach (split m#/#, $self->{path}) {
2181 $c .= "/$_";
2182 next unless ($paths->{$c} &&
2183 ($paths->{$c}->{action} =~ /^[AR]$/));
2184 if ($self->ra->check_path($self->{path}, $r) ==
2185 $SVN::Node::dir) {
2186 return 1;
2189 return 0;
2192 sub find_parent_branch {
2193 my ($self, $paths, $rev) = @_;
2194 return undef unless $self->follow_parent;
2195 unless (defined $paths) {
2196 my $err_handler = $SVN::Error::handler;
2197 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
2198 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1, sub {
2199 $paths =
2200 Git::SVN::Ra::dup_changed_paths($_[0]) });
2201 $SVN::Error::handler = $err_handler;
2203 return undef unless defined $paths;
2205 # look for a parent from another branch:
2206 my @b_path_components = split m#/#, $self->rel_path;
2207 my @a_path_components;
2208 my $i;
2209 while (@b_path_components) {
2210 $i = $paths->{'/'.join('/', @b_path_components)};
2211 last if $i && defined $i->{copyfrom_path};
2212 unshift(@a_path_components, pop(@b_path_components));
2214 return undef unless defined $i && defined $i->{copyfrom_path};
2215 my $branch_from = $i->{copyfrom_path};
2216 if (@a_path_components) {
2217 print STDERR "branch_from: $branch_from => ";
2218 $branch_from .= '/'.join('/', @a_path_components);
2219 print STDERR $branch_from, "\n";
2221 my $r = $i->{copyfrom_rev};
2222 my $repos_root = $self->ra->{repos_root};
2223 my $url = $self->ra->{url};
2224 my $new_url = $repos_root . $branch_from;
2225 print STDERR "Found possible branch point: ",
2226 "$new_url => ", $self->full_url, ", $r\n";
2227 $branch_from =~ s#^/##;
2228 my $gs = Git::SVN->find_by_url($new_url, $repos_root, $branch_from);
2229 unless ($gs) {
2230 my $ref_id = $self->{ref_id};
2231 $ref_id =~ s/\@\d+$//;
2232 $ref_id .= "\@$r";
2233 # just grow a tail if we're not unique enough :x
2234 $ref_id .= '-' while find_ref($ref_id);
2235 print STDERR "Initializing parent: $ref_id\n";
2236 $gs = Git::SVN->init($new_url, '', $ref_id, $ref_id, 1);
2238 my ($r0, $parent) = $gs->find_rev_before($r, 1);
2239 if (!defined $r0 || !defined $parent) {
2240 my ($base, $head) = parse_revision_argument(0, $r);
2241 if ($base <= $r) {
2242 $gs->fetch($base, $r);
2244 ($r0, $parent) = $gs->last_rev_commit;
2246 if (defined $r0 && defined $parent) {
2247 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n";
2248 my $ed;
2249 if ($self->ra->can_do_switch) {
2250 $self->assert_index_clean($parent);
2251 print STDERR "Following parent with do_switch\n";
2252 # do_switch works with svn/trunk >= r22312, but that
2253 # is not included with SVN 1.4.3 (the latest version
2254 # at the moment), so we can't rely on it
2255 $self->{last_commit} = $parent;
2256 $ed = SVN::Git::Fetcher->new($self);
2257 $gs->ra->gs_do_switch($r0, $rev, $gs,
2258 $self->full_url, $ed)
2259 or die "SVN connection failed somewhere...\n";
2260 } elsif ($self->ra->trees_match($new_url, $r0,
2261 $self->full_url, $rev)) {
2262 print STDERR "Trees match:\n",
2263 " $new_url\@$r0\n",
2264 " ${\$self->full_url}\@$rev\n",
2265 "Following parent with no changes\n";
2266 $self->tmp_index_do(sub {
2267 command_noisy('read-tree', $parent);
2269 $self->{last_commit} = $parent;
2270 } else {
2271 print STDERR "Following parent with do_update\n";
2272 $ed = SVN::Git::Fetcher->new($self);
2273 $self->ra->gs_do_update($rev, $rev, $self, $ed)
2274 or die "SVN connection failed somewhere...\n";
2276 print STDERR "Successfully followed parent\n";
2277 return $self->make_log_entry($rev, [$parent], $ed);
2279 return undef;
2282 sub do_fetch {
2283 my ($self, $paths, $rev) = @_;
2284 my $ed;
2285 my ($last_rev, @parents);
2286 if (my $lc = $self->last_commit) {
2287 # we can have a branch that was deleted, then re-added
2288 # under the same name but copied from another path, in
2289 # which case we'll have multiple parents (we don't
2290 # want to break the original ref, nor lose copypath info):
2291 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2292 push @{$log_entry->{parents}}, $lc;
2293 return $log_entry;
2295 $ed = SVN::Git::Fetcher->new($self);
2296 $last_rev = $self->{last_rev};
2297 $ed->{c} = $lc;
2298 @parents = ($lc);
2299 } else {
2300 $last_rev = $rev;
2301 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2302 return $log_entry;
2304 $ed = SVN::Git::Fetcher->new($self);
2306 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
2307 die "SVN connection failed somewhere...\n";
2309 $self->make_log_entry($rev, \@parents, $ed);
2312 sub get_untracked {
2313 my ($self, $ed) = @_;
2314 my @out;
2315 my $h = $ed->{empty};
2316 foreach (sort keys %$h) {
2317 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
2318 push @out, " $act: " . uri_encode($_);
2319 warn "W: $act: $_\n";
2321 foreach my $t (qw/dir_prop file_prop/) {
2322 $h = $ed->{$t} or next;
2323 foreach my $path (sort keys %$h) {
2324 my $ppath = $path eq '' ? '.' : $path;
2325 foreach my $prop (sort keys %{$h->{$path}}) {
2326 next if $SKIP_PROP{$prop};
2327 my $v = $h->{$path}->{$prop};
2328 my $t_ppath_prop = "$t: " .
2329 uri_encode($ppath) . ' ' .
2330 uri_encode($prop);
2331 if (defined $v) {
2332 push @out, " +$t_ppath_prop " .
2333 uri_encode($v);
2334 } else {
2335 push @out, " -$t_ppath_prop";
2340 foreach my $t (qw/absent_file absent_directory/) {
2341 $h = $ed->{$t} or next;
2342 foreach my $parent (sort keys %$h) {
2343 foreach my $path (sort @{$h->{$parent}}) {
2344 push @out, " $t: " .
2345 uri_encode("$parent/$path");
2346 warn "W: $t: $parent/$path ",
2347 "Insufficient permissions?\n";
2351 \@out;
2354 sub parse_svn_date {
2355 my $date = shift || return '+0000 1970-01-01 00:00:00';
2356 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
2357 (\d\d)\:(\d\d)\:(\d\d).\d+Z$/x) or
2358 croak "Unable to parse date: $date\n";
2359 "+0000 $Y-$m-$d $H:$M:$S";
2362 sub check_author {
2363 my ($author) = @_;
2364 if (!defined $author || length $author == 0) {
2365 $author = '(no author)';
2366 } elsif (defined $::_authors && ! defined $::users{$author}) {
2367 die "Author: $author not defined in $::_authors file\n";
2369 $author;
2372 sub make_log_entry {
2373 my ($self, $rev, $parents, $ed) = @_;
2374 my $untracked = $self->get_untracked($ed);
2376 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
2377 print $un "r$rev\n" or croak $!;
2378 print $un $_, "\n" foreach @$untracked;
2379 my %log_entry = ( parents => $parents || [], revision => $rev,
2380 log => '');
2382 my $headrev;
2383 my $logged = delete $self->{logged_rev_props};
2384 if (!$logged || $self->{-want_revprops}) {
2385 my $rp = $self->ra->rev_proplist($rev);
2386 foreach (sort keys %$rp) {
2387 my $v = $rp->{$_};
2388 if (/^svn:(author|date|log)$/) {
2389 $log_entry{$1} = $v;
2390 } elsif ($_ eq 'svm:headrev') {
2391 $headrev = $v;
2392 } else {
2393 print $un " rev_prop: ", uri_encode($_), ' ',
2394 uri_encode($v), "\n";
2397 } else {
2398 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
2400 close $un or croak $!;
2402 $log_entry{date} = parse_svn_date($log_entry{date});
2403 $log_entry{log} .= "\n";
2404 my $author = $log_entry{author} = check_author($log_entry{author});
2405 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
2406 : ($author, undef);
2408 my ($commit_name, $commit_email) = ($name, $email);
2409 if ($_use_log_author) {
2410 my $name_field;
2411 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
2412 $name_field = $1;
2413 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
2414 $name_field = $1;
2416 if (!defined $name_field) {
2418 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
2419 ($name, $email) = ($1, $2);
2420 } elsif ($name_field =~ /(.*)@/) {
2421 ($name, $email) = ($1, $name_field);
2422 } else {
2423 ($name, $email) = ($name_field, 'unknown');
2426 if (defined $headrev && $self->use_svm_props) {
2427 if ($self->rewrite_root) {
2428 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
2429 "options set!\n";
2431 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$};
2432 # we don't want "SVM: initializing mirror for junk" ...
2433 return undef if $r == 0;
2434 my $svm = $self->svm;
2435 if ($uuid ne $svm->{uuid}) {
2436 die "UUID mismatch on SVM path:\n",
2437 "expected: $svm->{uuid}\n",
2438 " got: $uuid\n";
2440 my $full_url = $self->full_url;
2441 $full_url =~ s#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
2442 die "Failed to replace '$svm->{replace}' with ",
2443 "'$svm->{source}' in $full_url\n";
2444 # throw away username for storing in records
2445 remove_username($full_url);
2446 $log_entry{metadata} = "$full_url\@$r $uuid";
2447 $log_entry{svm_revision} = $r;
2448 $email ||= "$author\@$uuid";
2449 $commit_email ||= "$author\@$uuid";
2450 } elsif ($self->use_svnsync_props) {
2451 my $full_url = $self->svnsync->{url};
2452 $full_url .= "/$self->{path}" if length $self->{path};
2453 remove_username($full_url);
2454 my $uuid = $self->svnsync->{uuid};
2455 $log_entry{metadata} = "$full_url\@$rev $uuid";
2456 $email ||= "$author\@$uuid";
2457 $commit_email ||= "$author\@$uuid";
2458 } else {
2459 my $url = $self->metadata_url;
2460 remove_username($url);
2461 $log_entry{metadata} = "$url\@$rev " .
2462 $self->ra->get_uuid;
2463 $email ||= "$author\@" . $self->ra->get_uuid;
2464 $commit_email ||= "$author\@" . $self->ra->get_uuid;
2466 $log_entry{name} = $name;
2467 $log_entry{email} = $email;
2468 $log_entry{commit_name} = $commit_name;
2469 $log_entry{commit_email} = $commit_email;
2470 \%log_entry;
2473 sub fetch {
2474 my ($self, $min_rev, $max_rev, @parents) = @_;
2475 my ($last_rev, $last_commit) = $self->last_rev_commit;
2476 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
2477 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
2480 sub set_tree_cb {
2481 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
2482 $self->{inject_parents} = { $rev => $tree };
2483 $self->fetch(undef, undef);
2486 sub set_tree {
2487 my ($self, $tree) = (shift, shift);
2488 my $log_entry = ::get_commit_entry($tree);
2489 unless ($self->{last_rev}) {
2490 fatal("Must have an existing revision to commit");
2492 my %ed_opts = ( r => $self->{last_rev},
2493 log => $log_entry->{log},
2494 ra => $self->ra,
2495 tree_a => $self->{last_commit},
2496 tree_b => $tree,
2497 editor_cb => sub {
2498 $self->set_tree_cb($log_entry, $tree, @_) },
2499 svn_path => $self->{path} );
2500 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
2501 print "No changes\nr$self->{last_rev} = $tree\n";
2505 sub rebuild_from_rev_db {
2506 my ($self, $path) = @_;
2507 my $r = -1;
2508 open my $fh, '<', $path or croak "open: $!";
2509 while (<$fh>) {
2510 length($_) == 41 or croak "inconsistent size in ($_) != 41";
2511 chomp($_);
2512 ++$r;
2513 next if $_ eq ('0' x 40);
2514 $self->rev_map_set($r, $_);
2515 print "r$r = $_\n";
2517 close $fh or croak "close: $!";
2518 unlink $path or croak "unlink: $!";
2521 sub rebuild {
2522 my ($self) = @_;
2523 my $map_path = $self->map_path;
2524 return if (-e $map_path && ! -z $map_path);
2525 return unless ::verify_ref($self->refname.'^0');
2526 if ($self->use_svm_props || $self->no_metadata) {
2527 my $rev_db = $self->rev_db_path;
2528 $self->rebuild_from_rev_db($rev_db);
2529 if ($self->use_svm_props) {
2530 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
2531 $self->rebuild_from_rev_db($svm_rev_db);
2533 $self->unlink_rev_db_symlink;
2534 return;
2536 print "Rebuilding $map_path ...\n";
2537 my ($log, $ctx) =
2538 command_output_pipe(qw/rev-list --pretty=raw --no-color --reverse/,
2539 $self->refname, '--');
2540 my $full_url = $self->full_url;
2541 remove_username($full_url);
2542 my $svn_uuid = $self->ra_uuid;
2543 my $c;
2544 while (<$log>) {
2545 if ( m{^commit ($::sha1)$} ) {
2546 $c = $1;
2547 next;
2549 next unless s{^\s*(git-svn-id:)}{$1};
2550 my ($url, $rev, $uuid) = ::extract_metadata($_);
2551 remove_username($url);
2553 # ignore merges (from set-tree)
2554 next if (!defined $rev || !$uuid);
2556 # if we merged or otherwise started elsewhere, this is
2557 # how we break out of it
2558 if (($uuid ne $svn_uuid) ||
2559 ($full_url && $url && ($url ne $full_url))) {
2560 next;
2563 $self->rev_map_set($rev, $c);
2564 print "r$rev = $c\n";
2566 command_close_pipe($log, $ctx);
2567 print "Done rebuilding $map_path\n";
2568 my $rev_db_path = $self->rev_db_path;
2569 if (-f $self->rev_db_path) {
2570 unlink $self->rev_db_path or croak "unlink: $!";
2572 $self->unlink_rev_db_symlink;
2575 # rev_map:
2576 # Tie::File seems to be prone to offset errors if revisions get sparse,
2577 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
2578 # one of my favorite modules is out :< Next up would be one of the DBM
2579 # modules, but I'm not sure which is most portable...
2581 # This is the replacement for the rev_db format, which was too big
2582 # and inefficient for large repositories with a lot of sparse history
2583 # (mainly tags)
2585 # The format is this:
2586 # - 24 bytes for every record,
2587 # * 4 bytes for the integer representing an SVN revision number
2588 # * 20 bytes representing the sha1 of a git commit
2589 # - No empty padding records like the old format
2590 # (except the last record, which can be overwritten)
2591 # - new records are written append-only since SVN revision numbers
2592 # increase monotonically
2593 # - lookups on SVN revision number are done via a binary search
2594 # - Piping the file to xxd -c24 is a good way of dumping it for
2595 # viewing or editing (piped back through xxd -r), should the need
2596 # ever arise.
2597 # - The last record can be padding revision with an all-zero sha1
2598 # This is used to optimize fetch performance when using multiple
2599 # "fetch" directives in .git/config
2601 # These files are disposable unless noMetadata or useSvmProps is set
2603 sub _rev_map_set {
2604 my ($fh, $rev, $commit) = @_;
2606 my $size = (stat($fh))[7];
2607 ($size % 24) == 0 or croak "inconsistent size: $size";
2609 my $wr_offset = 0;
2610 if ($size > 0) {
2611 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
2612 my $read = sysread($fh, my $buf, 24) or croak "read: $!";
2613 $read == 24 or croak "read only $read bytes (!= 24)";
2614 my ($last_rev, $last_commit) = unpack(rev_map_fmt, $buf);
2615 if ($last_commit eq ('0' x40)) {
2616 if ($size >= 48) {
2617 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2618 $read = sysread($fh, $buf, 24) or
2619 croak "read: $!";
2620 $read == 24 or
2621 croak "read only $read bytes (!= 24)";
2622 ($last_rev, $last_commit) =
2623 unpack(rev_map_fmt, $buf);
2624 if ($last_commit eq ('0' x40)) {
2625 croak "inconsistent .rev_map\n";
2628 if ($last_rev >= $rev) {
2629 croak "last_rev is higher!: $last_rev >= $rev";
2631 $wr_offset = -24;
2634 sysseek($fh, $wr_offset, SEEK_END) or croak "seek: $!";
2635 syswrite($fh, pack(rev_map_fmt, $rev, $commit), 24) == 24 or
2636 croak "write: $!";
2639 sub mkfile {
2640 my ($path) = @_;
2641 unless (-e $path) {
2642 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
2643 mkpath([$dir]) unless -d $dir;
2644 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
2645 close $fh or die "Couldn't close (create) $path: $!\n";
2649 sub rev_map_set {
2650 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
2651 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
2652 my $db = $self->map_path($uuid);
2653 my $db_lock = "$db.lock";
2654 my $sig;
2655 if ($update_ref) {
2656 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2657 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
2659 mkfile($db);
2661 $LOCKFILES{$db_lock} = 1;
2662 my $sync;
2663 # both of these options make our .rev_db file very, very important
2664 # and we can't afford to lose it because rebuild() won't work
2665 if ($self->use_svm_props || $self->no_metadata) {
2666 $sync = 1;
2667 copy($db, $db_lock) or die "rev_map_set(@_): ",
2668 "Failed to copy: ",
2669 "$db => $db_lock ($!)\n";
2670 } else {
2671 rename $db, $db_lock or die "rev_map_set(@_): ",
2672 "Failed to rename: ",
2673 "$db => $db_lock ($!)\n";
2676 sysopen(my $fh, $db_lock, O_RDWR | O_CREAT)
2677 or croak "Couldn't open $db_lock: $!\n";
2678 _rev_map_set($fh, $rev, $commit);
2679 if ($sync) {
2680 $fh->flush or die "Couldn't flush $db_lock: $!\n";
2681 $fh->sync or die "Couldn't sync $db_lock: $!\n";
2683 close $fh or croak $!;
2684 if ($update_ref) {
2685 $_head = $self;
2686 command_noisy('update-ref', '-m', "r$rev",
2687 $self->refname, $commit);
2689 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
2690 "$db_lock => $db ($!)\n";
2691 delete $LOCKFILES{$db_lock};
2692 if ($update_ref) {
2693 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2694 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
2695 kill $sig, $$ if defined $sig;
2699 # If want_commit, this will return an array of (rev, commit) where
2700 # commit _must_ be a valid commit in the archive.
2701 # Otherwise, it'll return the max revision (whether or not the
2702 # commit is valid or just a 0x40 placeholder).
2703 sub rev_map_max {
2704 my ($self, $want_commit) = @_;
2705 $self->rebuild;
2706 my $map_path = $self->map_path;
2707 stat $map_path or return $want_commit ? (0, undef) : 0;
2708 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
2709 my $size = (stat($fh))[7];
2710 ($size % 24) == 0 or croak "inconsistent size: $size";
2712 if ($size == 0) {
2713 close $fh or croak "close: $!";
2714 return $want_commit ? (0, undef) : 0;
2717 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
2718 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
2719 my ($r, $c) = unpack(rev_map_fmt, $buf);
2720 if ($want_commit && $c eq ('0' x40)) {
2721 if ($size < 48) {
2722 return $want_commit ? (0, undef) : 0;
2724 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2725 sysread($fh, $buf, 24) == 24 or croak "read: $!";
2726 ($r, $c) = unpack(rev_map_fmt, $buf);
2727 if ($c eq ('0'x40)) {
2728 croak "Penultimate record is all-zeroes in $map_path";
2731 close $fh or croak "close: $!";
2732 $want_commit ? ($r, $c) : $r;
2735 sub rev_map_get {
2736 my ($self, $rev, $uuid) = @_;
2737 my $map_path = $self->map_path($uuid);
2738 return undef unless -e $map_path;
2740 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
2741 my $size = (stat($fh))[7];
2742 ($size % 24) == 0 or croak "inconsistent size: $size";
2744 if ($size == 0) {
2745 close $fh or croak "close: $fh";
2746 return undef;
2749 my ($l, $u) = (0, $size - 24);
2750 my ($r, $c, $buf);
2752 while ($l <= $u) {
2753 my $i = int(($l/24 + $u/24) / 2) * 24;
2754 sysseek($fh, $i, SEEK_SET) or croak "seek: $!";
2755 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
2756 my ($r, $c) = unpack('NH40', $buf);
2758 if ($r < $rev) {
2759 $l = $i + 24;
2760 } elsif ($r > $rev) {
2761 $u = $i - 24;
2762 } else { # $r == $rev
2763 close($fh) or croak "close: $!";
2764 return $c eq ('0' x 40) ? undef : $c;
2767 close($fh) or croak "close: $!";
2768 undef;
2771 # Finds the first svn revision that exists on (if $eq_ok is true) or
2772 # before $rev for the current branch. It will not search any lower
2773 # than $min_rev. Returns the git commit hash and svn revision number
2774 # if found, else (undef, undef).
2775 sub find_rev_before {
2776 my ($self, $rev, $eq_ok, $min_rev) = @_;
2777 --$rev unless $eq_ok;
2778 $min_rev ||= 1;
2779 while ($rev >= $min_rev) {
2780 if (my $c = $self->rev_map_get($rev)) {
2781 return ($rev, $c);
2783 --$rev;
2785 return (undef, undef);
2788 # Finds the first svn revision that exists on (if $eq_ok is true) or
2789 # after $rev for the current branch. It will not search any higher
2790 # than $max_rev. Returns the git commit hash and svn revision number
2791 # if found, else (undef, undef).
2792 sub find_rev_after {
2793 my ($self, $rev, $eq_ok, $max_rev) = @_;
2794 ++$rev unless $eq_ok;
2795 $max_rev ||= $self->rev_map_max;
2796 while ($rev <= $max_rev) {
2797 if (my $c = $self->rev_map_get($rev)) {
2798 return ($rev, $c);
2800 ++$rev;
2802 return (undef, undef);
2805 sub _new {
2806 my ($class, $repo_id, $ref_id, $path) = @_;
2807 unless (defined $repo_id && length $repo_id) {
2808 $repo_id = $Git::SVN::default_repo_id;
2810 unless (defined $ref_id && length $ref_id) {
2811 $_[2] = $ref_id = $Git::SVN::default_ref_id;
2813 $_[1] = $repo_id = sanitize_remote_name($repo_id);
2814 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
2815 $_[3] = $path = '' unless (defined $path);
2816 mkpath(["$ENV{GIT_DIR}/svn"]);
2817 bless {
2818 ref_id => $ref_id, dir => $dir, index => "$dir/index",
2819 path => $path, config => "$ENV{GIT_DIR}/svn/config",
2820 map_root => "$dir/.rev_map", repo_id => $repo_id }, $class;
2823 # for read-only access of old .rev_db formats
2824 sub unlink_rev_db_symlink {
2825 my ($self) = @_;
2826 my $link = $self->rev_db_path;
2827 $link =~ s/\.[\w-]+$// or croak "missing UUID at the end of $link";
2828 if (-l $link) {
2829 unlink $link or croak "unlink: $link failed!";
2833 sub rev_db_path {
2834 my ($self, $uuid) = @_;
2835 my $db_path = $self->map_path($uuid);
2836 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
2837 or croak "map_path: $db_path does not contain '/.rev_map.' !";
2838 $db_path;
2841 # the new replacement for .rev_db
2842 sub map_path {
2843 my ($self, $uuid) = @_;
2844 $uuid ||= $self->ra_uuid;
2845 "$self->{map_root}.$uuid";
2848 sub uri_encode {
2849 my ($f) = @_;
2850 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
2854 sub remove_username {
2855 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
2858 package Git::SVN::Prompt;
2859 use strict;
2860 use warnings;
2861 require SVN::Core;
2862 use vars qw/$_no_auth_cache $_username/;
2864 sub simple {
2865 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
2866 $may_save = undef if $_no_auth_cache;
2867 $default_username = $_username if defined $_username;
2868 if (defined $default_username && length $default_username) {
2869 if (defined $realm && length $realm) {
2870 print STDERR "Authentication realm: $realm\n";
2871 STDERR->flush;
2873 $cred->username($default_username);
2874 } else {
2875 username($cred, $realm, $may_save, $pool);
2877 $cred->password(_read_password("Password for '" .
2878 $cred->username . "': ", $realm));
2879 $cred->may_save($may_save);
2880 $SVN::_Core::SVN_NO_ERROR;
2883 sub ssl_server_trust {
2884 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
2885 $may_save = undef if $_no_auth_cache;
2886 print STDERR "Error validating server certificate for '$realm':\n";
2888 no warnings 'once';
2889 # All variables SVN::Auth::SSL::* are used only once,
2890 # so we're shutting up Perl warnings about this.
2891 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
2892 print STDERR " - The certificate is not issued ",
2893 "by a trusted authority. Use the\n",
2894 " fingerprint to validate ",
2895 "the certificate manually!\n";
2897 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
2898 print STDERR " - The certificate hostname ",
2899 "does not match.\n";
2901 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
2902 print STDERR " - The certificate is not yet valid.\n";
2904 if ($failures & $SVN::Auth::SSL::EXPIRED) {
2905 print STDERR " - The certificate has expired.\n";
2907 if ($failures & $SVN::Auth::SSL::OTHER) {
2908 print STDERR " - The certificate has ",
2909 "an unknown error.\n";
2911 } # no warnings 'once'
2912 printf STDERR
2913 "Certificate information:\n".
2914 " - Hostname: %s\n".
2915 " - Valid: from %s until %s\n".
2916 " - Issuer: %s\n".
2917 " - Fingerprint: %s\n",
2918 map $cert_info->$_, qw(hostname valid_from valid_until
2919 issuer_dname fingerprint);
2920 my $choice;
2921 prompt:
2922 print STDERR $may_save ?
2923 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
2924 "(R)eject or accept (t)emporarily? ";
2925 STDERR->flush;
2926 $choice = lc(substr(<STDIN> || 'R', 0, 1));
2927 if ($choice =~ /^t$/i) {
2928 $cred->may_save(undef);
2929 } elsif ($choice =~ /^r$/i) {
2930 return -1;
2931 } elsif ($may_save && $choice =~ /^p$/i) {
2932 $cred->may_save($may_save);
2933 } else {
2934 goto prompt;
2936 $cred->accepted_failures($failures);
2937 $SVN::_Core::SVN_NO_ERROR;
2940 sub ssl_client_cert {
2941 my ($cred, $realm, $may_save, $pool) = @_;
2942 $may_save = undef if $_no_auth_cache;
2943 print STDERR "Client certificate filename: ";
2944 STDERR->flush;
2945 chomp(my $filename = <STDIN>);
2946 $cred->cert_file($filename);
2947 $cred->may_save($may_save);
2948 $SVN::_Core::SVN_NO_ERROR;
2951 sub ssl_client_cert_pw {
2952 my ($cred, $realm, $may_save, $pool) = @_;
2953 $may_save = undef if $_no_auth_cache;
2954 $cred->password(_read_password("Password: ", $realm));
2955 $cred->may_save($may_save);
2956 $SVN::_Core::SVN_NO_ERROR;
2959 sub username {
2960 my ($cred, $realm, $may_save, $pool) = @_;
2961 $may_save = undef if $_no_auth_cache;
2962 if (defined $realm && length $realm) {
2963 print STDERR "Authentication realm: $realm\n";
2965 my $username;
2966 if (defined $_username) {
2967 $username = $_username;
2968 } else {
2969 print STDERR "Username: ";
2970 STDERR->flush;
2971 chomp($username = <STDIN>);
2973 $cred->username($username);
2974 $cred->may_save($may_save);
2975 $SVN::_Core::SVN_NO_ERROR;
2978 sub _read_password {
2979 my ($prompt, $realm) = @_;
2980 print STDERR $prompt;
2981 STDERR->flush;
2982 require Term::ReadKey;
2983 Term::ReadKey::ReadMode('noecho');
2984 my $password = '';
2985 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
2986 last if $key =~ /[\012\015]/; # \n\r
2987 $password .= $key;
2989 Term::ReadKey::ReadMode('restore');
2990 print STDERR "\n";
2991 STDERR->flush;
2992 $password;
2995 package SVN::Git::Fetcher;
2996 use vars qw/@ISA/;
2997 use strict;
2998 use warnings;
2999 use Carp qw/croak/;
3000 use IO::File qw//;
3002 # file baton members: path, mode_a, mode_b, pool, fh, blob, base
3003 sub new {
3004 my ($class, $git_svn) = @_;
3005 my $self = SVN::Delta::Editor->new;
3006 bless $self, $class;
3007 $self->{c} = $git_svn->{last_commit} if exists $git_svn->{last_commit};
3008 $self->{empty} = {};
3009 $self->{dir_prop} = {};
3010 $self->{file_prop} = {};
3011 $self->{absent_dir} = {};
3012 $self->{absent_file} = {};
3013 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
3014 $self;
3017 sub set_path_strip {
3018 my ($self, $path) = @_;
3019 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
3022 sub open_root {
3023 { path => '' };
3026 sub open_directory {
3027 my ($self, $path, $pb, $rev) = @_;
3028 { path => $path };
3031 sub git_path {
3032 my ($self, $path) = @_;
3033 if ($self->{path_strip}) {
3034 $path =~ s!$self->{path_strip}!! or
3035 die "Failed to strip path '$path' ($self->{path_strip})\n";
3037 $path;
3040 sub delete_entry {
3041 my ($self, $path, $rev, $pb) = @_;
3043 my $gpath = $self->git_path($path);
3044 return undef if ($gpath eq '');
3046 # remove entire directories.
3047 if (command('ls-tree', $self->{c}, '--', $gpath) =~ /^040000 tree/) {
3048 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3049 -r --name-only -z/,
3050 $self->{c}, '--', $gpath);
3051 local $/ = "\0";
3052 while (<$ls>) {
3053 chomp;
3054 $self->{gii}->remove($_);
3055 print "\tD\t$_\n" unless $::_q;
3057 print "\tD\t$gpath/\n" unless $::_q;
3058 command_close_pipe($ls, $ctx);
3059 $self->{empty}->{$path} = 0
3060 } else {
3061 $self->{gii}->remove($gpath);
3062 print "\tD\t$gpath\n" unless $::_q;
3064 undef;
3067 sub open_file {
3068 my ($self, $path, $pb, $rev) = @_;
3069 my $gpath = $self->git_path($path);
3070 my ($mode, $blob) = (command('ls-tree', $self->{c}, '--', $gpath)
3071 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
3072 unless (defined $mode && defined $blob) {
3073 die "$path was not found in commit $self->{c} (r$rev)\n";
3075 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
3076 pool => SVN::Pool->new, action => 'M' };
3079 sub add_file {
3080 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
3081 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3082 delete $self->{empty}->{$dir};
3083 { path => $path, mode_a => 100644, mode_b => 100644,
3084 pool => SVN::Pool->new, action => 'A' };
3087 sub add_directory {
3088 my ($self, $path, $cp_path, $cp_rev) = @_;
3089 my $gpath = $self->git_path($path);
3090 if ($gpath eq '') {
3091 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3092 -r --name-only -z/,
3093 $self->{c});
3094 local $/ = "\0";
3095 while (<$ls>) {
3096 chomp;
3097 $self->{gii}->remove($_);
3098 print "\tD\t$_\n" unless $::_q;
3100 command_close_pipe($ls, $ctx);
3101 $self->{empty}->{$path} = 0;
3103 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3104 delete $self->{empty}->{$dir};
3105 $self->{empty}->{$path} = 1;
3106 { path => $path };
3109 sub change_dir_prop {
3110 my ($self, $db, $prop, $value) = @_;
3111 $self->{dir_prop}->{$db->{path}} ||= {};
3112 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
3113 undef;
3116 sub absent_directory {
3117 my ($self, $path, $pb) = @_;
3118 $self->{absent_dir}->{$pb->{path}} ||= [];
3119 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
3120 undef;
3123 sub absent_file {
3124 my ($self, $path, $pb) = @_;
3125 $self->{absent_file}->{$pb->{path}} ||= [];
3126 push @{$self->{absent_file}->{$pb->{path}}}, $path;
3127 undef;
3130 sub change_file_prop {
3131 my ($self, $fb, $prop, $value) = @_;
3132 if ($prop eq 'svn:executable') {
3133 if ($fb->{mode_b} != 120000) {
3134 $fb->{mode_b} = defined $value ? 100755 : 100644;
3136 } elsif ($prop eq 'svn:special') {
3137 $fb->{mode_b} = defined $value ? 120000 : 100644;
3138 } else {
3139 $self->{file_prop}->{$fb->{path}} ||= {};
3140 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
3142 undef;
3145 sub apply_textdelta {
3146 my ($self, $fb, $exp) = @_;
3147 my $fh = IO::File->new_tmpfile;
3148 $fh->autoflush(1);
3149 # $fh gets auto-closed() by SVN::TxDelta::apply(),
3150 # (but $base does not,) so dup() it for reading in close_file
3151 open my $dup, '<&', $fh or croak $!;
3152 my $base = IO::File->new_tmpfile;
3153 $base->autoflush(1);
3154 if ($fb->{blob}) {
3155 defined (my $pid = fork) or croak $!;
3156 if (!$pid) {
3157 open STDOUT, '>&', $base or croak $!;
3158 print STDOUT 'link ' if ($fb->{mode_a} == 120000);
3159 exec qw/git-cat-file blob/, $fb->{blob} or croak $!;
3161 waitpid $pid, 0;
3162 croak $? if $?;
3164 if (defined $exp) {
3165 seek $base, 0, 0 or croak $!;
3166 my $got = ::md5sum($base);
3167 die "Checksum mismatch: $fb->{path} $fb->{blob}\n",
3168 "expected: $exp\n",
3169 " got: $got\n" if ($got ne $exp);
3172 seek $base, 0, 0 or croak $!;
3173 $fb->{fh} = $dup;
3174 $fb->{base} = $base;
3175 [ SVN::TxDelta::apply($base, $fh, undef, $fb->{path}, $fb->{pool}) ];
3178 sub close_file {
3179 my ($self, $fb, $exp) = @_;
3180 my $hash;
3181 my $path = $self->git_path($fb->{path});
3182 if (my $fh = $fb->{fh}) {
3183 if (defined $exp) {
3184 seek($fh, 0, 0) or croak $!;
3185 my $got = ::md5sum($fh);
3186 if ($got ne $exp) {
3187 die "Checksum mismatch: $path\n",
3188 "expected: $exp\n got: $got\n";
3191 sysseek($fh, 0, 0) or croak $!;
3192 if ($fb->{mode_b} == 120000) {
3193 eval {
3194 sysread($fh, my $buf, 5) == 5 or croak $!;
3195 $buf eq 'link ' or die "$path has mode 120000",
3196 " but is not a link";
3198 if ($@) {
3199 warn "$@\n";
3200 sysseek($fh, 0, 0) or croak $!;
3203 defined(my $pid = open my $out,'-|') or die "Can't fork: $!\n";
3204 if (!$pid) {
3205 open STDIN, '<&', $fh or croak $!;
3206 exec qw/git-hash-object -w --stdin/ or croak $!;
3208 chomp($hash = do { local $/; <$out> });
3209 close $out or croak $!;
3210 close $fh or croak $!;
3211 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
3212 close $fb->{base} or croak $!;
3213 } else {
3214 $hash = $fb->{blob} or die "no blob information\n";
3216 $fb->{pool}->clear;
3217 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
3218 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
3219 undef;
3222 sub abort_edit {
3223 my $self = shift;
3224 $self->{nr} = $self->{gii}->{nr};
3225 delete $self->{gii};
3226 $self->SUPER::abort_edit(@_);
3229 sub close_edit {
3230 my $self = shift;
3231 $self->{git_commit_ok} = 1;
3232 $self->{nr} = $self->{gii}->{nr};
3233 delete $self->{gii};
3234 $self->SUPER::close_edit(@_);
3237 package SVN::Git::Editor;
3238 use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
3239 use strict;
3240 use warnings;
3241 use Carp qw/croak/;
3242 use IO::File;
3244 sub new {
3245 my ($class, $opts) = @_;
3246 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
3247 die "$_ required!\n" unless (defined $opts->{$_});
3250 my $pool = SVN::Pool->new;
3251 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
3252 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
3253 $opts->{r}, $mods);
3255 # $opts->{ra} functions should not be used after this:
3256 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
3257 $opts->{editor_cb}, $pool);
3258 my $self = SVN::Delta::Editor->new(@ce, $pool);
3259 bless $self, $class;
3260 foreach (qw/svn_path r tree_a tree_b/) {
3261 $self->{$_} = $opts->{$_};
3263 $self->{url} = $opts->{ra}->{url};
3264 $self->{mods} = $mods;
3265 $self->{types} = $types;
3266 $self->{pool} = $pool;
3267 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
3268 $self->{rm} = { };
3269 $self->{path_prefix} = length $self->{svn_path} ?
3270 "$self->{svn_path}/" : '';
3271 return $self;
3274 sub generate_diff {
3275 my ($tree_a, $tree_b) = @_;
3276 my @diff_tree = qw(diff-tree -z -r);
3277 if ($_cp_similarity) {
3278 push @diff_tree, "-C$_cp_similarity";
3279 } else {
3280 push @diff_tree, '-C';
3282 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
3283 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
3284 push @diff_tree, $tree_a, $tree_b;
3285 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
3286 local $/ = "\0";
3287 my $state = 'meta';
3288 my @mods;
3289 while (<$diff_fh>) {
3290 chomp $_; # this gets rid of the trailing "\0"
3291 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
3292 $::sha1\s($::sha1)\s
3293 ([MTCRAD])\d*$/xo) {
3294 push @mods, { mode_a => $1, mode_b => $2,
3295 sha1_b => $3, chg => $4 };
3296 if ($4 =~ /^(?:C|R)$/) {
3297 $state = 'file_a';
3298 } else {
3299 $state = 'file_b';
3301 } elsif ($state eq 'file_a') {
3302 my $x = $mods[$#mods] or croak "Empty array\n";
3303 if ($x->{chg} !~ /^(?:C|R)$/) {
3304 croak "Error parsing $_, $x->{chg}\n";
3306 $x->{file_a} = $_;
3307 $state = 'file_b';
3308 } elsif ($state eq 'file_b') {
3309 my $x = $mods[$#mods] or croak "Empty array\n";
3310 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
3311 croak "Error parsing $_, $x->{chg}\n";
3313 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
3314 croak "Error parsing $_, $x->{chg}\n";
3316 $x->{file_b} = $_;
3317 $state = 'meta';
3318 } else {
3319 croak "Error parsing $_\n";
3322 command_close_pipe($diff_fh, $ctx);
3323 \@mods;
3326 sub check_diff_paths {
3327 my ($ra, $pfx, $rev, $mods) = @_;
3328 my %types;
3329 $pfx .= '/' if length $pfx;
3331 sub type_diff_paths {
3332 my ($ra, $types, $path, $rev) = @_;
3333 my @p = split m#/+#, $path;
3334 my $c = shift @p;
3335 unless (defined $types->{$c}) {
3336 $types->{$c} = $ra->check_path($c, $rev);
3338 while (@p) {
3339 $c .= '/' . shift @p;
3340 next if defined $types->{$c};
3341 $types->{$c} = $ra->check_path($c, $rev);
3345 foreach my $m (@$mods) {
3346 foreach my $f (qw/file_a file_b/) {
3347 next unless defined $m->{$f};
3348 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
3349 if (length $pfx.$dir && ! defined $types{$dir}) {
3350 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
3354 \%types;
3357 sub split_path {
3358 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
3361 sub repo_path {
3362 my ($self, $path) = @_;
3363 $self->{path_prefix}.(defined $path ? $path : '');
3366 sub url_path {
3367 my ($self, $path) = @_;
3368 if ($self->{url} =~ m#^https?://#) {
3369 $path =~ s/([^a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg;
3371 $self->{url} . '/' . $self->repo_path($path);
3374 sub rmdirs {
3375 my ($self) = @_;
3376 my $rm = $self->{rm};
3377 delete $rm->{''}; # we never delete the url we're tracking
3378 return unless %$rm;
3380 foreach (keys %$rm) {
3381 my @d = split m#/#, $_;
3382 my $c = shift @d;
3383 $rm->{$c} = 1;
3384 while (@d) {
3385 $c .= '/' . shift @d;
3386 $rm->{$c} = 1;
3389 delete $rm->{$self->{svn_path}};
3390 delete $rm->{''}; # we never delete the url we're tracking
3391 return unless %$rm;
3393 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
3394 $self->{tree_b});
3395 local $/ = "\0";
3396 while (<$fh>) {
3397 chomp;
3398 my @dn = split m#/#, $_;
3399 while (pop @dn) {
3400 delete $rm->{join '/', @dn};
3402 unless (%$rm) {
3403 close $fh;
3404 return;
3407 command_close_pipe($fh, $ctx);
3409 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
3410 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
3411 $self->close_directory($bat->{$d}, $p);
3412 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
3413 print "\tD+\t$d/\n" unless $::_q;
3414 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
3415 delete $bat->{$d};
3419 sub open_or_add_dir {
3420 my ($self, $full_path, $baton) = @_;
3421 my $t = $self->{types}->{$full_path};
3422 if (!defined $t) {
3423 die "$full_path not known in r$self->{r} or we have a bug!\n";
3426 no warnings 'once';
3427 # SVN::Node::none and SVN::Node::file are used only once,
3428 # so we're shutting up Perl's warnings about them.
3429 if ($t == $SVN::Node::none) {
3430 return $self->add_directory($full_path, $baton,
3431 undef, -1, $self->{pool});
3432 } elsif ($t == $SVN::Node::dir) {
3433 return $self->open_directory($full_path, $baton,
3434 $self->{r}, $self->{pool});
3435 } # no warnings 'once'
3436 print STDERR "$full_path already exists in repository at ",
3437 "r$self->{r} and it is not a directory (",
3438 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
3439 } # no warnings 'once'
3440 exit 1;
3443 sub ensure_path {
3444 my ($self, $path) = @_;
3445 my $bat = $self->{bat};
3446 my $repo_path = $self->repo_path($path);
3447 return $bat->{''} unless (length $repo_path);
3448 my @p = split m#/+#, $repo_path;
3449 my $c = shift @p;
3450 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
3451 while (@p) {
3452 my $c0 = $c;
3453 $c .= '/' . shift @p;
3454 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
3456 return $bat->{$c};
3459 sub A {
3460 my ($self, $m) = @_;
3461 my ($dir, $file) = split_path($m->{file_b});
3462 my $pbat = $self->ensure_path($dir);
3463 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3464 undef, -1);
3465 print "\tA\t$m->{file_b}\n" unless $::_q;
3466 $self->chg_file($fbat, $m);
3467 $self->close_file($fbat,undef,$self->{pool});
3470 sub C {
3471 my ($self, $m) = @_;
3472 my ($dir, $file) = split_path($m->{file_b});
3473 my $pbat = $self->ensure_path($dir);
3474 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3475 $self->url_path($m->{file_a}), $self->{r});
3476 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
3477 $self->chg_file($fbat, $m);
3478 $self->close_file($fbat,undef,$self->{pool});
3481 sub delete_entry {
3482 my ($self, $path, $pbat) = @_;
3483 my $rpath = $self->repo_path($path);
3484 my ($dir, $file) = split_path($rpath);
3485 $self->{rm}->{$dir} = 1;
3486 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
3489 sub R {
3490 my ($self, $m) = @_;
3491 my ($dir, $file) = split_path($m->{file_b});
3492 my $pbat = $self->ensure_path($dir);
3493 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3494 $self->url_path($m->{file_a}), $self->{r});
3495 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
3496 $self->chg_file($fbat, $m);
3497 $self->close_file($fbat,undef,$self->{pool});
3499 ($dir, $file) = split_path($m->{file_a});
3500 $pbat = $self->ensure_path($dir);
3501 $self->delete_entry($m->{file_a}, $pbat);
3504 sub M {
3505 my ($self, $m) = @_;
3506 my ($dir, $file) = split_path($m->{file_b});
3507 my $pbat = $self->ensure_path($dir);
3508 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
3509 $pbat,$self->{r},$self->{pool});
3510 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
3511 $self->chg_file($fbat, $m);
3512 $self->close_file($fbat,undef,$self->{pool});
3515 sub T { shift->M(@_) }
3517 sub change_file_prop {
3518 my ($self, $fbat, $pname, $pval) = @_;
3519 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
3522 sub chg_file {
3523 my ($self, $fbat, $m) = @_;
3524 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
3525 $self->change_file_prop($fbat,'svn:executable','*');
3526 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
3527 $self->change_file_prop($fbat,'svn:executable',undef);
3529 my $fh = IO::File->new_tmpfile or croak $!;
3530 if ($m->{mode_b} =~ /^120/) {
3531 print $fh 'link ' or croak $!;
3532 $self->change_file_prop($fbat,'svn:special','*');
3533 } elsif ($m->{mode_a} =~ /^120/ && $m->{mode_b} !~ /^120/) {
3534 $self->change_file_prop($fbat,'svn:special',undef);
3536 defined(my $pid = fork) or croak $!;
3537 if (!$pid) {
3538 open STDOUT, '>&', $fh or croak $!;
3539 exec qw/git-cat-file blob/, $m->{sha1_b} or croak $!;
3541 waitpid $pid, 0;
3542 croak $? if $?;
3543 $fh->flush == 0 or croak $!;
3544 seek $fh, 0, 0 or croak $!;
3546 my $exp = ::md5sum($fh);
3547 seek $fh, 0, 0 or croak $!;
3549 my $pool = SVN::Pool->new;
3550 my $atd = $self->apply_textdelta($fbat, undef, $pool);
3551 my $got = SVN::TxDelta::send_stream($fh, @$atd, $pool);
3552 die "Checksum mismatch\nexpected: $exp\ngot: $got\n" if ($got ne $exp);
3553 $pool->clear;
3555 close $fh or croak $!;
3558 sub D {
3559 my ($self, $m) = @_;
3560 my ($dir, $file) = split_path($m->{file_b});
3561 my $pbat = $self->ensure_path($dir);
3562 print "\tD\t$m->{file_b}\n" unless $::_q;
3563 $self->delete_entry($m->{file_b}, $pbat);
3566 sub close_edit {
3567 my ($self) = @_;
3568 my ($p,$bat) = ($self->{pool}, $self->{bat});
3569 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
3570 next if $_ eq '';
3571 $self->close_directory($bat->{$_}, $p);
3573 $self->close_directory($bat->{''}, $p);
3574 $self->SUPER::close_edit($p);
3575 $p->clear;
3578 sub abort_edit {
3579 my ($self) = @_;
3580 $self->SUPER::abort_edit($self->{pool});
3583 sub DESTROY {
3584 my $self = shift;
3585 $self->SUPER::DESTROY(@_);
3586 $self->{pool}->clear;
3589 # this drives the editor
3590 sub apply_diff {
3591 my ($self) = @_;
3592 my $mods = $self->{mods};
3593 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
3594 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
3595 my $f = $m->{chg};
3596 if (defined $o{$f}) {
3597 $self->$f($m);
3598 } else {
3599 fatal("Invalid change type: $f");
3602 $self->rmdirs if $_rmdir;
3603 if (@$mods == 0) {
3604 $self->abort_edit;
3605 } else {
3606 $self->close_edit;
3608 return scalar @$mods;
3611 package Git::SVN::Ra;
3612 use vars qw/@ISA $config_dir $_log_window_size/;
3613 use strict;
3614 use warnings;
3615 my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
3617 BEGIN {
3618 # enforce temporary pool usage for some simple functions
3619 no strict 'refs';
3620 for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root/) {
3621 my $SUPER = "SUPER::$f";
3622 *$f = sub {
3623 my $self = shift;
3624 my $pool = SVN::Pool->new;
3625 my @ret = $self->$SUPER(@_,$pool);
3626 $pool->clear;
3627 wantarray ? @ret : $ret[0];
3632 sub _auth_providers () {
3634 SVN::Client::get_simple_provider(),
3635 SVN::Client::get_ssl_server_trust_file_provider(),
3636 SVN::Client::get_simple_prompt_provider(
3637 \&Git::SVN::Prompt::simple, 2),
3638 SVN::Client::get_ssl_client_cert_file_provider(),
3639 SVN::Client::get_ssl_client_cert_prompt_provider(
3640 \&Git::SVN::Prompt::ssl_client_cert, 2),
3641 SVN::Client::get_ssl_client_cert_pw_file_provider(),
3642 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
3643 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
3644 SVN::Client::get_username_provider(),
3645 SVN::Client::get_ssl_server_trust_prompt_provider(
3646 \&Git::SVN::Prompt::ssl_server_trust),
3647 SVN::Client::get_username_prompt_provider(
3648 \&Git::SVN::Prompt::username, 2)
3652 sub escape_uri_only {
3653 my ($uri) = @_;
3654 my @tmp;
3655 foreach (split m{/}, $uri) {
3656 s/([^\w.-])/sprintf("%%%02X",ord($1))/eg;
3657 push @tmp, $_;
3659 join('/', @tmp);
3662 sub escape_url {
3663 my ($url) = @_;
3664 if ($url =~ m#^(https?)://([^/]+)(.*)$#) {
3665 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
3666 $url = "$scheme://$domain$uri";
3668 $url;
3671 sub new {
3672 my ($class, $url) = @_;
3673 $url =~ s!/+$!!;
3674 return $RA if ($RA && $RA->{url} eq $url);
3676 SVN::_Core::svn_config_ensure($config_dir, undef);
3677 my ($baton, $callbacks) = SVN::Core::auth_open_helper(_auth_providers);
3678 my $config = SVN::Core::config_get_config($config_dir);
3679 $RA = undef;
3680 my $dont_store_passwords = 1;
3681 my $conf_t = ${$config}{'config'};
3683 no warnings 'once';
3684 # The usage of $SVN::_Core::SVN_CONFIG_* variables
3685 # produces warnings that variables are used only once.
3686 # I had not found the better way to shut them up, so
3687 # the warnings of type 'once' are disabled in this block.
3688 if (SVN::_Core::svn_config_get_bool($conf_t,
3689 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
3690 $SVN::_Core::SVN_CONFIG_OPTION_STORE_PASSWORDS,
3691 1) == 0) {
3692 SVN::_Core::svn_auth_set_parameter($baton,
3693 $SVN::_Core::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS,
3694 bless (\$dont_store_passwords, "_p_void"));
3696 if (SVN::_Core::svn_config_get_bool($conf_t,
3697 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
3698 $SVN::_Core::SVN_CONFIG_OPTION_STORE_AUTH_CREDS,
3699 1) == 0) {
3700 $Git::SVN::Prompt::_no_auth_cache = 1;
3702 } # no warnings 'once'
3703 my $self = SVN::Ra->new(url => escape_url($url), auth => $baton,
3704 config => $config,
3705 pool => SVN::Pool->new,
3706 auth_provider_callbacks => $callbacks);
3707 $self->{url} = $url;
3708 $self->{svn_path} = $url;
3709 $self->{repos_root} = $self->get_repos_root;
3710 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
3711 $self->{cache} = { check_path => { r => 0, data => {} },
3712 get_dir => { r => 0, data => {} } };
3713 $RA = bless $self, $class;
3716 sub check_path {
3717 my ($self, $path, $r) = @_;
3718 my $cache = $self->{cache}->{check_path};
3719 if ($r == $cache->{r} && exists $cache->{data}->{$path}) {
3720 return $cache->{data}->{$path};
3722 my $pool = SVN::Pool->new;
3723 my $t = $self->SUPER::check_path($path, $r, $pool);
3724 $pool->clear;
3725 if ($r != $cache->{r}) {
3726 %{$cache->{data}} = ();
3727 $cache->{r} = $r;
3729 $cache->{data}->{$path} = $t;
3732 sub get_dir {
3733 my ($self, $dir, $r) = @_;
3734 my $cache = $self->{cache}->{get_dir};
3735 if ($r == $cache->{r}) {
3736 if (my $x = $cache->{data}->{$dir}) {
3737 return wantarray ? @$x : $x->[0];
3740 my $pool = SVN::Pool->new;
3741 my ($d, undef, $props) = $self->SUPER::get_dir($dir, $r, $pool);
3742 my %dirents = map { $_ => { kind => $d->{$_}->kind } } keys %$d;
3743 $pool->clear;
3744 if ($r != $cache->{r}) {
3745 %{$cache->{data}} = ();
3746 $cache->{r} = $r;
3748 $cache->{data}->{$dir} = [ \%dirents, $r, $props ];
3749 wantarray ? (\%dirents, $r, $props) : \%dirents;
3752 sub DESTROY {
3753 # do not call the real DESTROY since we store ourselves in $RA
3756 sub get_log {
3757 my ($self, @args) = @_;
3758 my $pool = SVN::Pool->new;
3759 splice(@args, 3, 1) if ($SVN::Core::VERSION le '1.2.0');
3760 my $ret = $self->SUPER::get_log(@args, $pool);
3761 $pool->clear;
3762 $ret;
3765 sub trees_match {
3766 my ($self, $url1, $rev1, $url2, $rev2) = @_;
3767 my $ctx = SVN::Client->new(auth => _auth_providers);
3768 my $out = IO::File->new_tmpfile;
3770 # older SVN (1.1.x) doesn't take $pool as the last parameter for
3771 # $ctx->diff(), so we'll create a default one
3772 my $pool = SVN::Pool->new_default_sub;
3774 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
3775 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
3776 $out->flush;
3777 my $ret = (($out->stat)[7] == 0);
3778 close $out or croak $!;
3780 $ret;
3783 sub get_commit_editor {
3784 my ($self, $log, $cb, $pool) = @_;
3785 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
3786 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
3789 sub gs_do_update {
3790 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
3791 my $new = ($rev_a == $rev_b);
3792 my $path = $gs->{path};
3794 if ($new && -e $gs->{index}) {
3795 unlink $gs->{index} or die
3796 "Couldn't unlink index: $gs->{index}: $!\n";
3798 my $pool = SVN::Pool->new;
3799 $editor->set_path_strip($path);
3800 my (@pc) = split m#/#, $path;
3801 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
3802 1, $editor, $pool);
3803 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
3805 # Since we can't rely on svn_ra_reparent being available, we'll
3806 # just have to do some magic with set_path to make it so
3807 # we only want a partial path.
3808 my $sp = '';
3809 my $final = join('/', @pc);
3810 while (@pc) {
3811 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
3812 $sp .= '/' if length $sp;
3813 $sp .= shift @pc;
3815 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
3817 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
3819 $reporter->finish_report($pool);
3820 $pool->clear;
3821 $editor->{git_commit_ok};
3824 # this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
3825 # svn_ra_reparent didn't work before 1.4)
3826 sub gs_do_switch {
3827 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
3828 my $path = $gs->{path};
3829 my $pool = SVN::Pool->new;
3831 my $full_url = $self->{url};
3832 my $old_url = $full_url;
3833 $full_url .= '/' . escape_uri_only($path) if length $path;
3834 my ($ra, $reparented);
3835 if ($old_url ne $full_url) {
3836 if ($old_url !~ m#^svn(\+ssh)?://#) {
3837 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url,
3838 $pool);
3839 $self->{url} = $full_url;
3840 $reparented = 1;
3841 } else {
3842 $_[0] = undef;
3843 $self = undef;
3844 $RA = undef;
3845 $ra = Git::SVN::Ra->new($full_url);
3846 $ra_invalid = 1;
3849 $ra ||= $self;
3850 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
3851 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
3852 $reporter->set_path('', $rev_a, 0, @lock, $pool);
3853 $reporter->finish_report($pool);
3855 if ($reparented) {
3856 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
3857 $self->{url} = $old_url;
3860 $pool->clear;
3861 $editor->{git_commit_ok};
3864 sub longest_common_path {
3865 my ($gsv, $globs) = @_;
3866 my %common;
3867 my $common_max = scalar @$gsv;
3869 foreach my $gs (@$gsv) {
3870 my @tmp = split m#/#, $gs->{path};
3871 my $p = '';
3872 foreach (@tmp) {
3873 $p .= length($p) ? "/$_" : $_;
3874 $common{$p} ||= 0;
3875 $common{$p}++;
3878 $globs ||= [];
3879 $common_max += scalar @$globs;
3880 foreach my $glob (@$globs) {
3881 my @tmp = split m#/#, $glob->{path}->{left};
3882 my $p = '';
3883 foreach (@tmp) {
3884 $p .= length($p) ? "/$_" : $_;
3885 $common{$p} ||= 0;
3886 $common{$p}++;
3890 my $longest_path = '';
3891 foreach (sort {length $b <=> length $a} keys %common) {
3892 if ($common{$_} == $common_max) {
3893 $longest_path = $_;
3894 last;
3897 $longest_path;
3900 sub gs_fetch_loop_common {
3901 my ($self, $base, $head, $gsv, $globs) = @_;
3902 return if ($base > $head);
3903 my $inc = $_log_window_size;
3904 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
3905 my $longest_path = longest_common_path($gsv, $globs);
3906 my $ra_url = $self->{url};
3907 while (1) {
3908 my %revs;
3909 my $err;
3910 my $err_handler = $SVN::Error::handler;
3911 $SVN::Error::handler = sub {
3912 ($err) = @_;
3913 skip_unknown_revs($err);
3915 sub _cb {
3916 my ($paths, $r, $author, $date, $log) = @_;
3917 [ dup_changed_paths($paths),
3918 { author => $author, date => $date, log => $log } ];
3920 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
3921 sub { $revs{$_[1]} = _cb(@_) });
3922 if ($err && $max >= $head) {
3923 print STDERR "Path '$longest_path' ",
3924 "was probably deleted:\n",
3925 $err->expanded_message,
3926 "\nWill attempt to follow ",
3927 "revisions r$min .. r$max ",
3928 "committed before the deletion\n";
3929 my $hi = $max;
3930 while (--$hi >= $min) {
3931 my $ok;
3932 $self->get_log([$longest_path], $min, $hi,
3933 0, 1, 1, sub {
3934 $ok ||= $_[1];
3935 $revs{$_[1]} = _cb(@_) });
3936 if ($ok) {
3937 print STDERR "r$min .. r$ok OK\n";
3938 last;
3942 $SVN::Error::handler = $err_handler;
3944 my %exists = map { $_->{path} => $_ } @$gsv;
3945 foreach my $r (sort {$a <=> $b} keys %revs) {
3946 my ($paths, $logged) = @{$revs{$r}};
3948 foreach my $gs ($self->match_globs(\%exists, $paths,
3949 $globs, $r)) {
3950 if ($gs->rev_map_max >= $r) {
3951 next;
3953 next unless $gs->match_paths($paths, $r);
3954 $gs->{logged_rev_props} = $logged;
3955 if (my $last_commit = $gs->last_commit) {
3956 $gs->assert_index_clean($last_commit);
3958 my $log_entry = $gs->do_fetch($paths, $r);
3959 if ($log_entry) {
3960 $gs->do_git_commit($log_entry);
3962 $INDEX_FILES{$gs->{index}} = 1;
3964 foreach my $g (@$globs) {
3965 my $k = "svn-remote.$g->{remote}." .
3966 "$g->{t}-maxRev";
3967 Git::SVN::tmp_config($k, $r);
3969 if ($ra_invalid) {
3970 $_[0] = undef;
3971 $self = undef;
3972 $RA = undef;
3973 $self = Git::SVN::Ra->new($ra_url);
3974 $ra_invalid = undef;
3977 # pre-fill the .rev_db since it'll eventually get filled in
3978 # with '0' x40 if something new gets committed
3979 foreach my $gs (@$gsv) {
3980 next if $gs->rev_map_max >= $max;
3981 next if defined $gs->rev_map_get($max);
3982 $gs->rev_map_set($max, 0 x40);
3984 foreach my $g (@$globs) {
3985 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
3986 Git::SVN::tmp_config($k, $max);
3988 last if $max >= $head;
3989 $min = $max + 1;
3990 $max += $inc;
3991 $max = $head if ($max > $head);
3995 sub match_globs {
3996 my ($self, $exists, $paths, $globs, $r) = @_;
3998 sub get_dir_check {
3999 my ($self, $exists, $g, $r) = @_;
4000 my @x = eval { $self->get_dir($g->{path}->{left}, $r) };
4001 return unless scalar @x == 3;
4002 my $dirents = $x[0];
4003 foreach my $de (keys %$dirents) {
4004 next if $dirents->{$de}->{kind} != $SVN::Node::dir;
4005 my $p = $g->{path}->full_path($de);
4006 next if $exists->{$p};
4007 next if (length $g->{path}->{right} &&
4008 ($self->check_path($p, $r) !=
4009 $SVN::Node::dir));
4010 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
4011 $g->{ref}->full_path($de), 1);
4014 foreach my $g (@$globs) {
4015 if (my $path = $paths->{"/$g->{path}->{left}"}) {
4016 if ($path->{action} =~ /^[AR]$/) {
4017 get_dir_check($self, $exists, $g, $r);
4020 foreach (keys %$paths) {
4021 if (/$g->{path}->{left_regex}/ &&
4022 !/$g->{path}->{regex}/) {
4023 next if $paths->{$_}->{action} !~ /^[AR]$/;
4024 get_dir_check($self, $exists, $g, $r);
4026 next unless /$g->{path}->{regex}/;
4027 my $p = $1;
4028 my $pathname = $g->{path}->full_path($p);
4029 next if $exists->{$pathname};
4030 next if ($self->check_path($pathname, $r) !=
4031 $SVN::Node::dir);
4032 $exists->{$pathname} = Git::SVN->init(
4033 $self->{url}, $pathname, undef,
4034 $g->{ref}->full_path($p), 1);
4036 my $c = '';
4037 foreach (split m#/#, $g->{path}->{left}) {
4038 $c .= "/$_";
4039 next unless ($paths->{$c} &&
4040 ($paths->{$c}->{action} =~ /^[AR]$/));
4041 get_dir_check($self, $exists, $g, $r);
4044 values %$exists;
4047 sub minimize_url {
4048 my ($self) = @_;
4049 return $self->{url} if ($self->{url} eq $self->{repos_root});
4050 my $url = $self->{repos_root};
4051 my @components = split(m!/!, $self->{svn_path});
4052 my $c = '';
4053 do {
4054 $url .= "/$c" if length $c;
4055 eval { (ref $self)->new($url)->get_latest_revnum };
4056 } while ($@ && ($c = shift @components));
4057 $url;
4060 sub can_do_switch {
4061 my $self = shift;
4062 unless (defined $can_do_switch) {
4063 my $pool = SVN::Pool->new;
4064 my $rep = eval {
4065 $self->do_switch(1, '', 0, $self->{url},
4066 SVN::Delta::Editor->new, $pool);
4068 if ($@) {
4069 $can_do_switch = 0;
4070 } else {
4071 $rep->abort_report($pool);
4072 $can_do_switch = 1;
4074 $pool->clear;
4076 $can_do_switch;
4079 sub skip_unknown_revs {
4080 my ($err) = @_;
4081 my $errno = $err->apr_err();
4082 # Maybe the branch we're tracking didn't
4083 # exist when the repo started, so it's
4084 # not an error if it doesn't, just continue
4086 # Wonderfully consistent library, eh?
4087 # 160013 - svn:// and file://
4088 # 175002 - http(s)://
4089 # 175007 - http(s):// (this repo required authorization, too...)
4090 # More codes may be discovered later...
4091 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
4092 my $err_key = $err->expanded_message;
4093 # revision numbers change every time, filter them out
4094 $err_key =~ s/\d+/\0/g;
4095 $err_key = "$errno\0$err_key";
4096 unless ($ignored_err{$err_key}) {
4097 warn "W: Ignoring error from SVN, path probably ",
4098 "does not exist: ($errno): ",
4099 $err->expanded_message,"\n";
4100 warn "W: Do not be alarmed at the above message ",
4101 "git-svn is just searching aggressively for ",
4102 "old history.\n",
4103 "This may take a while on large repositories\n";
4104 $ignored_err{$err_key} = 1;
4106 return;
4108 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
4111 # svn_log_changed_path_t objects passed to get_log are likely to be
4112 # overwritten even if only the refs are copied to an external variable,
4113 # so we should dup the structures in their entirety. Using an externally
4114 # passed pool (instead of our temporary and quickly cleared pool in
4115 # Git::SVN::Ra) does not help matters at all...
4116 sub dup_changed_paths {
4117 my ($paths) = @_;
4118 return undef unless $paths;
4119 my %ret;
4120 foreach my $p (keys %$paths) {
4121 my $i = $paths->{$p};
4122 my %s = map { $_ => $i->$_ }
4123 qw/copyfrom_path copyfrom_rev action/;
4124 $ret{$p} = \%s;
4126 \%ret;
4129 package Git::SVN::Log;
4130 use strict;
4131 use warnings;
4132 use POSIX qw/strftime/;
4133 use constant commit_log_separator => ('-' x 72) . "\n";
4134 use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
4135 %rusers $show_commit $incremental/;
4136 my $l_fmt;
4138 sub cmt_showable {
4139 my ($c) = @_;
4140 return 1 if defined $c->{r};
4142 # big commit message got truncated by the 16k pretty buffer in rev-list
4143 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
4144 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
4145 @{$c->{l}} = ();
4146 my @log = command(qw/cat-file commit/, $c->{c});
4148 # shift off the headers
4149 shift @log while ($log[0] ne '');
4150 shift @log;
4152 # TODO: make $c->{l} not have a trailing newline in the future
4153 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
4155 (undef, $c->{r}, undef) = ::extract_metadata(
4156 (grep(/^git-svn-id: /, @log))[-1]);
4158 return defined $c->{r};
4161 sub log_use_color {
4162 return $color || Git->repository->get_colorbool('color.diff');
4165 sub git_svn_log_cmd {
4166 my ($r_min, $r_max, @args) = @_;
4167 my $head = 'HEAD';
4168 my (@files, @log_opts);
4169 foreach my $x (@args) {
4170 if ($x eq '--' || @files) {
4171 push @files, $x;
4172 } else {
4173 if (::verify_ref("$x^0")) {
4174 $head = $x;
4175 } else {
4176 push @log_opts, $x;
4181 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
4182 $gs ||= Git::SVN->_new;
4183 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
4184 $gs->refname);
4185 push @cmd, '-r' unless $non_recursive;
4186 push @cmd, qw/--raw --name-status/ if $verbose;
4187 push @cmd, '--color' if log_use_color();
4188 push @cmd, @log_opts;
4189 if (defined $r_max && $r_max == $r_min) {
4190 push @cmd, '--max-count=1';
4191 if (my $c = $gs->rev_map_get($r_max)) {
4192 push @cmd, $c;
4194 } elsif (defined $r_max) {
4195 if ($r_max < $r_min) {
4196 ($r_min, $r_max) = ($r_max, $r_min);
4198 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
4199 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
4200 # If there are no commits in the range, both $c_max and $c_min
4201 # will be undefined. If there is at least 1 commit in the
4202 # range, both will be defined.
4203 return () if !defined $c_min || !defined $c_max;
4204 if ($c_min eq $c_max) {
4205 push @cmd, '--max-count=1', $c_min;
4206 } else {
4207 push @cmd, '--boundary', "$c_min..$c_max";
4210 return (@cmd, @files);
4213 # adapted from pager.c
4214 sub config_pager {
4215 $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
4216 if (!defined $pager) {
4217 $pager = 'less';
4218 } elsif (length $pager == 0 || $pager eq 'cat') {
4219 $pager = undef;
4221 $ENV{GIT_PAGER_IN_USE} = defined($pager);
4224 sub run_pager {
4225 return unless -t *STDOUT && defined $pager;
4226 pipe my $rfd, my $wfd or return;
4227 defined(my $pid = fork) or ::fatal "Can't fork: $!";
4228 if (!$pid) {
4229 open STDOUT, '>&', $wfd or
4230 ::fatal "Can't redirect to stdout: $!";
4231 return;
4233 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!";
4234 $ENV{LESS} ||= 'FRSX';
4235 exec $pager or ::fatal "Can't run pager: $! ($pager)";
4238 sub format_svn_date {
4239 return strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)", localtime(shift));
4242 sub parse_git_date {
4243 my ($t, $tz) = @_;
4244 # Date::Parse isn't in the standard Perl distro :(
4245 if ($tz =~ s/^\+//) {
4246 $t += tz_to_s_offset($tz);
4247 } elsif ($tz =~ s/^\-//) {
4248 $t -= tz_to_s_offset($tz);
4250 return $t;
4253 sub set_local_timezone {
4254 if (defined $TZ) {
4255 $ENV{TZ} = $TZ;
4256 } else {
4257 delete $ENV{TZ};
4261 sub tz_to_s_offset {
4262 my ($tz) = @_;
4263 $tz =~ s/(\d\d)$//;
4264 return ($1 * 60) + ($tz * 3600);
4267 sub get_author_info {
4268 my ($dest, $author, $t, $tz) = @_;
4269 $author =~ s/(?:^\s*|\s*$)//g;
4270 $dest->{a_raw} = $author;
4271 my $au;
4272 if ($::_authors) {
4273 $au = $rusers{$author} || undef;
4275 if (!$au) {
4276 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
4278 $dest->{t} = $t;
4279 $dest->{tz} = $tz;
4280 $dest->{a} = $au;
4281 $dest->{t_utc} = parse_git_date($t, $tz);
4284 sub process_commit {
4285 my ($c, $r_min, $r_max, $defer) = @_;
4286 if (defined $r_min && defined $r_max) {
4287 if ($r_min == $c->{r} && $r_min == $r_max) {
4288 show_commit($c);
4289 return 0;
4291 return 1 if $r_min == $r_max;
4292 if ($r_min < $r_max) {
4293 # we need to reverse the print order
4294 return 0 if (defined $limit && --$limit < 0);
4295 push @$defer, $c;
4296 return 1;
4298 if ($r_min != $r_max) {
4299 return 1 if ($r_min < $c->{r});
4300 return 1 if ($r_max > $c->{r});
4303 return 0 if (defined $limit && --$limit < 0);
4304 show_commit($c);
4305 return 1;
4308 sub show_commit {
4309 my $c = shift;
4310 if ($oneline) {
4311 my $x = "\n";
4312 if (my $l = $c->{l}) {
4313 while ($l->[0] =~ /^\s*$/) { shift @$l }
4314 $x = $l->[0];
4316 $l_fmt ||= 'A' . length($c->{r});
4317 print 'r',pack($l_fmt, $c->{r}),' | ';
4318 print "$c->{c} | " if $show_commit;
4319 print $x;
4320 } else {
4321 show_commit_normal($c);
4325 sub show_commit_changed_paths {
4326 my ($c) = @_;
4327 return unless $c->{changed};
4328 print "Changed paths:\n", @{$c->{changed}};
4331 sub show_commit_normal {
4332 my ($c) = @_;
4333 print commit_log_separator, "r$c->{r} | ";
4334 print "$c->{c} | " if $show_commit;
4335 print "$c->{a} | ", format_svn_date($c->{t_utc}), ' | ';
4336 my $nr_line = 0;
4338 if (my $l = $c->{l}) {
4339 while ($l->[$#$l] eq "\n" && $#$l > 0
4340 && $l->[($#$l - 1)] eq "\n") {
4341 pop @$l;
4343 $nr_line = scalar @$l;
4344 if (!$nr_line) {
4345 print "1 line\n\n\n";
4346 } else {
4347 if ($nr_line == 1) {
4348 $nr_line = '1 line';
4349 } else {
4350 $nr_line .= ' lines';
4352 print $nr_line, "\n";
4353 show_commit_changed_paths($c);
4354 print "\n";
4355 print $_ foreach @$l;
4357 } else {
4358 print "1 line\n";
4359 show_commit_changed_paths($c);
4360 print "\n";
4363 foreach my $x (qw/raw stat diff/) {
4364 if ($c->{$x}) {
4365 print "\n";
4366 print $_ foreach @{$c->{$x}}
4371 sub cmd_show_log {
4372 my (@args) = @_;
4373 my ($r_min, $r_max);
4374 my $r_last = -1; # prevent dupes
4375 set_local_timezone();
4376 if (defined $::_revision) {
4377 if ($::_revision =~ /^(\d+):(\d+)$/) {
4378 ($r_min, $r_max) = ($1, $2);
4379 } elsif ($::_revision =~ /^\d+$/) {
4380 $r_min = $r_max = $::_revision;
4381 } else {
4382 ::fatal "-r$::_revision is not supported, use ",
4383 "standard 'git log' arguments instead";
4387 config_pager();
4388 @args = git_svn_log_cmd($r_min, $r_max, @args);
4389 if (!@args) {
4390 print commit_log_separator unless $incremental || $oneline;
4391 return;
4393 my $log = command_output_pipe(@args);
4394 run_pager();
4395 my (@k, $c, $d, $stat);
4396 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
4397 while (<$log>) {
4398 if (/^${esc_color}commit -?($::sha1_short)/o) {
4399 my $cmt = $1;
4400 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
4401 $r_last = $c->{r};
4402 process_commit($c, $r_min, $r_max, \@k) or
4403 goto out;
4405 $d = undef;
4406 $c = { c => $cmt };
4407 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
4408 get_author_info($c, $1, $2, $3);
4409 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
4410 # ignore
4411 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
4412 push @{$c->{raw}}, $_;
4413 } elsif (/^${esc_color}[ACRMDT]\t/) {
4414 # we could add $SVN->{svn_path} here, but that requires
4415 # remote access at the moment (repo_path_split)...
4416 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
4417 push @{$c->{changed}}, $_;
4418 } elsif (/^${esc_color}diff /o) {
4419 $d = 1;
4420 push @{$c->{diff}}, $_;
4421 } elsif ($d) {
4422 push @{$c->{diff}}, $_;
4423 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
4424 $esc_color*[\+\-]*$esc_color$/x) {
4425 $stat = 1;
4426 push @{$c->{stat}}, $_;
4427 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
4428 push @{$c->{stat}}, $_;
4429 $stat = undef;
4430 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
4431 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
4432 } elsif (s/^${esc_color} //o) {
4433 push @{$c->{l}}, $_;
4436 if ($c && defined $c->{r} && $c->{r} != $r_last) {
4437 $r_last = $c->{r};
4438 process_commit($c, $r_min, $r_max, \@k);
4440 if (@k) {
4441 ($r_min, $r_max) = ($r_max, $r_min);
4442 process_commit($_, $r_min, $r_max) foreach reverse @k;
4444 out:
4445 close $log;
4446 print commit_log_separator unless $incremental || $oneline;
4449 package Git::SVN::Migration;
4450 # these version numbers do NOT correspond to actual version numbers
4451 # of git nor git-svn. They are just relative.
4453 # v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
4455 # v1 layout: .git/$id/info/url, refs/remotes/$id
4457 # v2 layout: .git/svn/$id/info/url, refs/remotes/$id
4459 # v3 layout: .git/svn/$id, refs/remotes/$id
4460 # - info/url may remain for backwards compatibility
4461 # - this is what we migrate up to this layout automatically,
4462 # - this will be used by git svn init on single branches
4463 # v3.1 layout (auto migrated):
4464 # - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
4465 # for backwards compatibility
4467 # v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
4468 # - this is only created for newly multi-init-ed
4469 # repositories. Similar in spirit to the
4470 # --use-separate-remotes option in git-clone (now default)
4471 # - we do not automatically migrate to this (following
4472 # the example set by core git)
4474 # v5 layout: .rev_db.$UUID => .rev_map.$UUID
4475 # - newer, more-efficient format that uses 24-bytes per record
4476 # with no filler space.
4477 # - use xxd -c24 < .rev_map.$UUID to view and debug
4478 # - This is a one-way migration, repositories updated to the
4479 # new format will not be able to use old git-svn without
4480 # rebuilding the .rev_db. Rebuilding the rev_db is not
4481 # possible if noMetadata or useSvmProps are set; but should
4482 # be no problem for users that use the (sensible) defaults.
4483 use strict;
4484 use warnings;
4485 use Carp qw/croak/;
4486 use File::Path qw/mkpath/;
4487 use File::Basename qw/dirname basename/;
4488 use vars qw/$_minimize/;
4490 sub migrate_from_v0 {
4491 my $git_dir = $ENV{GIT_DIR};
4492 return undef unless -d $git_dir;
4493 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
4494 my $migrated = 0;
4495 while (<$fh>) {
4496 chomp;
4497 my ($id, $orig_ref) = ($_, $_);
4498 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
4499 next unless -f "$git_dir/$id/info/url";
4500 my $new_ref = "refs/remotes/$id";
4501 if (::verify_ref("$new_ref^0")) {
4502 print STDERR "W: $orig_ref is probably an old ",
4503 "branch used by an ancient version of ",
4504 "git-svn.\n",
4505 "However, $new_ref also exists.\n",
4506 "We will not be able ",
4507 "to use this branch until this ",
4508 "ambiguity is resolved.\n";
4509 next;
4511 print STDERR "Migrating from v0 layout...\n" if !$migrated;
4512 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
4513 command_noisy('update-ref', $new_ref, $orig_ref);
4514 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
4515 $migrated++;
4517 command_close_pipe($fh, $ctx);
4518 print STDERR "Done migrating from v0 layout...\n" if $migrated;
4519 $migrated;
4522 sub migrate_from_v1 {
4523 my $git_dir = $ENV{GIT_DIR};
4524 my $migrated = 0;
4525 return $migrated unless -d $git_dir;
4526 my $svn_dir = "$git_dir/svn";
4528 # just in case somebody used 'svn' as their $id at some point...
4529 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
4531 print STDERR "Migrating from a git-svn v1 layout...\n";
4532 mkpath([$svn_dir]);
4533 print STDERR "Data from a previous version of git-svn exists, but\n\t",
4534 "$svn_dir\n\t(required for this version ",
4535 "($::VERSION) of git-svn) does not. exist\n";
4536 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
4537 while (<$fh>) {
4538 my $x = $_;
4539 next unless $x =~ s#^refs/remotes/##;
4540 chomp $x;
4541 next unless -f "$git_dir/$x/info/url";
4542 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
4543 next unless $u;
4544 my $dn = dirname("$git_dir/svn/$x");
4545 mkpath([$dn]) unless -d $dn;
4546 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
4547 mkpath(["$git_dir/svn/svn"]);
4548 print STDERR " - $git_dir/$x/info => ",
4549 "$git_dir/svn/$x/info\n";
4550 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
4551 croak "$!: $x";
4552 # don't worry too much about these, they probably
4553 # don't exist with repos this old (save for index,
4554 # and we can easily regenerate that)
4555 foreach my $f (qw/unhandled.log index .rev_db/) {
4556 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
4558 } else {
4559 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
4560 rename "$git_dir/$x", "$git_dir/svn/$x" or
4561 croak "$!: $x";
4563 $migrated++;
4565 command_close_pipe($fh, $ctx);
4566 print STDERR "Done migrating from a git-svn v1 layout\n";
4567 $migrated;
4570 sub read_old_urls {
4571 my ($l_map, $pfx, $path) = @_;
4572 my @dir;
4573 foreach (<$path/*>) {
4574 if (-r "$_/info/url") {
4575 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
4576 my $ref_id = $pfx . basename $_;
4577 my $url = ::file_to_s("$_/info/url");
4578 $l_map->{$ref_id} = $url;
4579 } elsif (-d $_) {
4580 push @dir, $_;
4583 foreach (@dir) {
4584 my $x = $_;
4585 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
4586 read_old_urls($l_map, $x, $_);
4590 sub migrate_from_v2 {
4591 my @cfg = command(qw/config -l/);
4592 return if grep /^svn-remote\..+\.url=/, @cfg;
4593 my %l_map;
4594 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
4595 my $migrated = 0;
4597 foreach my $ref_id (sort keys %l_map) {
4598 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
4599 if ($@) {
4600 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
4602 $migrated++;
4604 $migrated;
4607 sub minimize_connections {
4608 my $r = Git::SVN::read_all_remotes();
4609 my $new_urls = {};
4610 my $root_repos = {};
4611 foreach my $repo_id (keys %$r) {
4612 my $url = $r->{$repo_id}->{url} or next;
4613 my $fetch = $r->{$repo_id}->{fetch} or next;
4614 my $ra = Git::SVN::Ra->new($url);
4616 # skip existing cases where we already connect to the root
4617 if (($ra->{url} eq $ra->{repos_root}) ||
4618 (Git::SVN::sanitize_remote_name($ra->{repos_root}) eq
4619 $repo_id)) {
4620 $root_repos->{$ra->{url}} = $repo_id;
4621 next;
4624 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
4625 my $root_path = $ra->{url};
4626 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
4627 foreach my $path (keys %$fetch) {
4628 my $ref_id = $fetch->{$path};
4629 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
4631 # make sure we can read when connecting to
4632 # a higher level of a repository
4633 my ($last_rev, undef) = $gs->last_rev_commit;
4634 if (!defined $last_rev) {
4635 $last_rev = eval {
4636 $root_ra->get_latest_revnum;
4638 next if $@;
4640 my $new = $root_path;
4641 $new .= length $path ? "/$path" : '';
4642 eval {
4643 $root_ra->get_log([$new], $last_rev, $last_rev,
4644 0, 0, 1, sub { });
4646 next if $@;
4647 $new_urls->{$ra->{repos_root}}->{$new} =
4648 { ref_id => $ref_id,
4649 old_repo_id => $repo_id,
4650 old_path => $path };
4654 my @emptied;
4655 foreach my $url (keys %$new_urls) {
4656 # see if we can re-use an existing [svn-remote "repo_id"]
4657 # instead of creating a(n ugly) new section:
4658 my $repo_id = $root_repos->{$url} ||
4659 Git::SVN::sanitize_remote_name($url);
4661 my $fetch = $new_urls->{$url};
4662 foreach my $path (keys %$fetch) {
4663 my $x = $fetch->{$path};
4664 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
4665 my $pfx = "svn-remote.$x->{old_repo_id}";
4667 my $old_fetch = quotemeta("$x->{old_path}:".
4668 "refs/remotes/$x->{ref_id}");
4669 command_noisy(qw/config --unset/,
4670 "$pfx.fetch", '^'. $old_fetch . '$');
4671 delete $r->{$x->{old_repo_id}}->
4672 {fetch}->{$x->{old_path}};
4673 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
4674 command_noisy(qw/config --unset/,
4675 "$pfx.url");
4676 push @emptied, $x->{old_repo_id}
4680 if (@emptied) {
4681 my $file = $ENV{GIT_CONFIG} || $ENV{GIT_CONFIG_LOCAL} ||
4682 "$ENV{GIT_DIR}/config";
4683 print STDERR <<EOF;
4684 The following [svn-remote] sections in your config file ($file) are empty
4685 and can be safely removed:
4687 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
4691 sub migration_check {
4692 migrate_from_v0();
4693 migrate_from_v1();
4694 migrate_from_v2();
4695 minimize_connections() if $_minimize;
4698 package Git::IndexInfo;
4699 use strict;
4700 use warnings;
4701 use Git qw/command_input_pipe command_close_pipe/;
4703 sub new {
4704 my ($class) = @_;
4705 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
4706 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
4709 sub remove {
4710 my ($self, $path) = @_;
4711 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
4712 return ++$self->{nr};
4714 undef;
4717 sub update {
4718 my ($self, $mode, $hash, $path) = @_;
4719 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
4720 return ++$self->{nr};
4722 undef;
4725 sub DESTROY {
4726 my ($self) = @_;
4727 command_close_pipe($self->{gui}, $self->{ctx});
4730 package Git::SVN::GlobSpec;
4731 use strict;
4732 use warnings;
4734 sub new {
4735 my ($class, $glob) = @_;
4736 my $re = $glob;
4737 $re =~ s!/+$!!g; # no need for trailing slashes
4738 my $nr = ($re =~ s!^(.*)\*(.*)$!\(\[^/\]+\)!g);
4739 my ($left, $right) = ($1, $2);
4740 if ($nr > 1) {
4741 die "Only one '*' wildcard expansion ",
4742 "is supported (got $nr): '$glob'\n";
4743 } elsif ($nr == 0) {
4744 die "One '*' is needed for glob: '$glob'\n";
4746 $re = quotemeta($left) . $re . quotemeta($right);
4747 if (length $left && !($left =~ s!/+$!!g)) {
4748 die "Missing trailing '/' on left side of: '$glob' ($left)\n";
4750 if (length $right && !($right =~ s!^/+!!g)) {
4751 die "Missing leading '/' on right side of: '$glob' ($right)\n";
4753 my $left_re = qr/^\/\Q$left\E(\/|$)/;
4754 bless { left => $left, right => $right, left_regex => $left_re,
4755 regex => qr/$re/, glob => $glob }, $class;
4758 sub full_path {
4759 my ($self, $path) = @_;
4760 return (length $self->{left} ? "$self->{left}/" : '') .
4761 $path . (length $self->{right} ? "/$self->{right}" : '');
4764 __END__
4766 Data structures:
4769 $remotes = { # returned by read_all_remotes()
4770 'svn' => {
4771 # svn-remote.svn.url=https://svn.musicpd.org
4772 url => 'https://svn.musicpd.org',
4773 # svn-remote.svn.fetch=mpd/trunk:trunk
4774 fetch => {
4775 'mpd/trunk' => 'trunk',
4777 # svn-remote.svn.tags=mpd/tags/*:tags/*
4778 tags => {
4779 path => {
4780 left => 'mpd/tags',
4781 right => '',
4782 regex => qr!mpd/tags/([^/]+)$!,
4783 glob => 'tags/*',
4785 ref => {
4786 left => 'tags',
4787 right => '',
4788 regex => qr!tags/([^/]+)$!,
4789 glob => 'tags/*',
4795 $log_entry hashref as returned by libsvn_log_entry()
4797 log => 'whitespace-formatted log entry
4798 ', # trailing newline is preserved
4799 revision => '8', # integer
4800 date => '2004-02-24T17:01:44.108345Z', # commit date
4801 author => 'committer name'
4805 # this is generated by generate_diff();
4806 @mods = array of diff-index line hashes, each element represents one line
4807 of diff-index output
4809 diff-index line ($m hash)
4811 mode_a => first column of diff-index output, no leading ':',
4812 mode_b => second column of diff-index output,
4813 sha1_b => sha1sum of the final blob,
4814 chg => change type [MCRADT],
4815 file_a => original file name of a file (iff chg is 'C' or 'R')
4816 file_b => new/current file name of a file (any chg)
4820 # retval of read_url_paths{,_all}();
4821 $l_map = {
4822 # repository root url
4823 'https://svn.musicpd.org' => {
4824 # repository path # GIT_SVN_ID
4825 'mpd/trunk' => 'trunk',
4826 'mpd/tags/0.11.5' => 'tags/0.11.5',
4830 Notes:
4831 I don't trust the each() function on unless I created %hash myself
4832 because the internal iterator may not have started at base.