git-am: fix typo in usage message
[git/dscho.git] / git-svn.perl
blob49dd80644b11d8e44a103a6cc1c3a606ad3b4bbd
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 binmode $fh or croak "binmode: $!";
2510 while (<$fh>) {
2511 length($_) == 41 or croak "inconsistent size in ($_) != 41";
2512 chomp($_);
2513 ++$r;
2514 next if $_ eq ('0' x 40);
2515 $self->rev_map_set($r, $_);
2516 print "r$r = $_\n";
2518 close $fh or croak "close: $!";
2519 unlink $path or croak "unlink: $!";
2522 sub rebuild {
2523 my ($self) = @_;
2524 my $map_path = $self->map_path;
2525 return if (-e $map_path && ! -z $map_path);
2526 return unless ::verify_ref($self->refname.'^0');
2527 if ($self->use_svm_props || $self->no_metadata) {
2528 my $rev_db = $self->rev_db_path;
2529 $self->rebuild_from_rev_db($rev_db);
2530 if ($self->use_svm_props) {
2531 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
2532 $self->rebuild_from_rev_db($svm_rev_db);
2534 $self->unlink_rev_db_symlink;
2535 return;
2537 print "Rebuilding $map_path ...\n";
2538 my ($log, $ctx) =
2539 command_output_pipe(qw/rev-list --pretty=raw --no-color --reverse/,
2540 $self->refname, '--');
2541 my $full_url = $self->full_url;
2542 remove_username($full_url);
2543 my $svn_uuid = $self->ra_uuid;
2544 my $c;
2545 while (<$log>) {
2546 if ( m{^commit ($::sha1)$} ) {
2547 $c = $1;
2548 next;
2550 next unless s{^\s*(git-svn-id:)}{$1};
2551 my ($url, $rev, $uuid) = ::extract_metadata($_);
2552 remove_username($url);
2554 # ignore merges (from set-tree)
2555 next if (!defined $rev || !$uuid);
2557 # if we merged or otherwise started elsewhere, this is
2558 # how we break out of it
2559 if (($uuid ne $svn_uuid) ||
2560 ($full_url && $url && ($url ne $full_url))) {
2561 next;
2564 $self->rev_map_set($rev, $c);
2565 print "r$rev = $c\n";
2567 command_close_pipe($log, $ctx);
2568 print "Done rebuilding $map_path\n";
2569 my $rev_db_path = $self->rev_db_path;
2570 if (-f $self->rev_db_path) {
2571 unlink $self->rev_db_path or croak "unlink: $!";
2573 $self->unlink_rev_db_symlink;
2576 # rev_map:
2577 # Tie::File seems to be prone to offset errors if revisions get sparse,
2578 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
2579 # one of my favorite modules is out :< Next up would be one of the DBM
2580 # modules, but I'm not sure which is most portable...
2582 # This is the replacement for the rev_db format, which was too big
2583 # and inefficient for large repositories with a lot of sparse history
2584 # (mainly tags)
2586 # The format is this:
2587 # - 24 bytes for every record,
2588 # * 4 bytes for the integer representing an SVN revision number
2589 # * 20 bytes representing the sha1 of a git commit
2590 # - No empty padding records like the old format
2591 # (except the last record, which can be overwritten)
2592 # - new records are written append-only since SVN revision numbers
2593 # increase monotonically
2594 # - lookups on SVN revision number are done via a binary search
2595 # - Piping the file to xxd -c24 is a good way of dumping it for
2596 # viewing or editing (piped back through xxd -r), should the need
2597 # ever arise.
2598 # - The last record can be padding revision with an all-zero sha1
2599 # This is used to optimize fetch performance when using multiple
2600 # "fetch" directives in .git/config
2602 # These files are disposable unless noMetadata or useSvmProps is set
2604 sub _rev_map_set {
2605 my ($fh, $rev, $commit) = @_;
2607 binmode $fh or croak "binmode: $!";
2608 my $size = (stat($fh))[7];
2609 ($size % 24) == 0 or croak "inconsistent size: $size";
2611 my $wr_offset = 0;
2612 if ($size > 0) {
2613 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
2614 my $read = sysread($fh, my $buf, 24) or croak "read: $!";
2615 $read == 24 or croak "read only $read bytes (!= 24)";
2616 my ($last_rev, $last_commit) = unpack(rev_map_fmt, $buf);
2617 if ($last_commit eq ('0' x40)) {
2618 if ($size >= 48) {
2619 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2620 $read = sysread($fh, $buf, 24) or
2621 croak "read: $!";
2622 $read == 24 or
2623 croak "read only $read bytes (!= 24)";
2624 ($last_rev, $last_commit) =
2625 unpack(rev_map_fmt, $buf);
2626 if ($last_commit eq ('0' x40)) {
2627 croak "inconsistent .rev_map\n";
2630 if ($last_rev >= $rev) {
2631 croak "last_rev is higher!: $last_rev >= $rev";
2633 $wr_offset = -24;
2636 sysseek($fh, $wr_offset, SEEK_END) or croak "seek: $!";
2637 syswrite($fh, pack(rev_map_fmt, $rev, $commit), 24) == 24 or
2638 croak "write: $!";
2641 sub mkfile {
2642 my ($path) = @_;
2643 unless (-e $path) {
2644 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
2645 mkpath([$dir]) unless -d $dir;
2646 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
2647 close $fh or die "Couldn't close (create) $path: $!\n";
2651 sub rev_map_set {
2652 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
2653 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
2654 my $db = $self->map_path($uuid);
2655 my $db_lock = "$db.lock";
2656 my $sig;
2657 if ($update_ref) {
2658 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2659 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
2661 mkfile($db);
2663 $LOCKFILES{$db_lock} = 1;
2664 my $sync;
2665 # both of these options make our .rev_db file very, very important
2666 # and we can't afford to lose it because rebuild() won't work
2667 if ($self->use_svm_props || $self->no_metadata) {
2668 $sync = 1;
2669 copy($db, $db_lock) or die "rev_map_set(@_): ",
2670 "Failed to copy: ",
2671 "$db => $db_lock ($!)\n";
2672 } else {
2673 rename $db, $db_lock or die "rev_map_set(@_): ",
2674 "Failed to rename: ",
2675 "$db => $db_lock ($!)\n";
2678 sysopen(my $fh, $db_lock, O_RDWR | O_CREAT)
2679 or croak "Couldn't open $db_lock: $!\n";
2680 _rev_map_set($fh, $rev, $commit);
2681 if ($sync) {
2682 $fh->flush or die "Couldn't flush $db_lock: $!\n";
2683 $fh->sync or die "Couldn't sync $db_lock: $!\n";
2685 close $fh or croak $!;
2686 if ($update_ref) {
2687 $_head = $self;
2688 command_noisy('update-ref', '-m', "r$rev",
2689 $self->refname, $commit);
2691 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
2692 "$db_lock => $db ($!)\n";
2693 delete $LOCKFILES{$db_lock};
2694 if ($update_ref) {
2695 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2696 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
2697 kill $sig, $$ if defined $sig;
2701 # If want_commit, this will return an array of (rev, commit) where
2702 # commit _must_ be a valid commit in the archive.
2703 # Otherwise, it'll return the max revision (whether or not the
2704 # commit is valid or just a 0x40 placeholder).
2705 sub rev_map_max {
2706 my ($self, $want_commit) = @_;
2707 $self->rebuild;
2708 my $map_path = $self->map_path;
2709 stat $map_path or return $want_commit ? (0, undef) : 0;
2710 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
2711 binmode $fh or croak "binmode: $!";
2712 my $size = (stat($fh))[7];
2713 ($size % 24) == 0 or croak "inconsistent size: $size";
2715 if ($size == 0) {
2716 close $fh or croak "close: $!";
2717 return $want_commit ? (0, undef) : 0;
2720 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
2721 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
2722 my ($r, $c) = unpack(rev_map_fmt, $buf);
2723 if ($want_commit && $c eq ('0' x40)) {
2724 if ($size < 48) {
2725 return $want_commit ? (0, undef) : 0;
2727 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2728 sysread($fh, $buf, 24) == 24 or croak "read: $!";
2729 ($r, $c) = unpack(rev_map_fmt, $buf);
2730 if ($c eq ('0'x40)) {
2731 croak "Penultimate record is all-zeroes in $map_path";
2734 close $fh or croak "close: $!";
2735 $want_commit ? ($r, $c) : $r;
2738 sub rev_map_get {
2739 my ($self, $rev, $uuid) = @_;
2740 my $map_path = $self->map_path($uuid);
2741 return undef unless -e $map_path;
2743 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
2744 binmode $fh or croak "binmode: $!";
2745 my $size = (stat($fh))[7];
2746 ($size % 24) == 0 or croak "inconsistent size: $size";
2748 if ($size == 0) {
2749 close $fh or croak "close: $fh";
2750 return undef;
2753 my ($l, $u) = (0, $size - 24);
2754 my ($r, $c, $buf);
2756 while ($l <= $u) {
2757 my $i = int(($l/24 + $u/24) / 2) * 24;
2758 sysseek($fh, $i, SEEK_SET) or croak "seek: $!";
2759 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
2760 my ($r, $c) = unpack('NH40', $buf);
2762 if ($r < $rev) {
2763 $l = $i + 24;
2764 } elsif ($r > $rev) {
2765 $u = $i - 24;
2766 } else { # $r == $rev
2767 close($fh) or croak "close: $!";
2768 return $c eq ('0' x 40) ? undef : $c;
2771 close($fh) or croak "close: $!";
2772 undef;
2775 # Finds the first svn revision that exists on (if $eq_ok is true) or
2776 # before $rev for the current branch. It will not search any lower
2777 # than $min_rev. Returns the git commit hash and svn revision number
2778 # if found, else (undef, undef).
2779 sub find_rev_before {
2780 my ($self, $rev, $eq_ok, $min_rev) = @_;
2781 --$rev unless $eq_ok;
2782 $min_rev ||= 1;
2783 while ($rev >= $min_rev) {
2784 if (my $c = $self->rev_map_get($rev)) {
2785 return ($rev, $c);
2787 --$rev;
2789 return (undef, undef);
2792 # Finds the first svn revision that exists on (if $eq_ok is true) or
2793 # after $rev for the current branch. It will not search any higher
2794 # than $max_rev. Returns the git commit hash and svn revision number
2795 # if found, else (undef, undef).
2796 sub find_rev_after {
2797 my ($self, $rev, $eq_ok, $max_rev) = @_;
2798 ++$rev unless $eq_ok;
2799 $max_rev ||= $self->rev_map_max;
2800 while ($rev <= $max_rev) {
2801 if (my $c = $self->rev_map_get($rev)) {
2802 return ($rev, $c);
2804 ++$rev;
2806 return (undef, undef);
2809 sub _new {
2810 my ($class, $repo_id, $ref_id, $path) = @_;
2811 unless (defined $repo_id && length $repo_id) {
2812 $repo_id = $Git::SVN::default_repo_id;
2814 unless (defined $ref_id && length $ref_id) {
2815 $_[2] = $ref_id = $Git::SVN::default_ref_id;
2817 $_[1] = $repo_id = sanitize_remote_name($repo_id);
2818 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
2819 $_[3] = $path = '' unless (defined $path);
2820 mkpath(["$ENV{GIT_DIR}/svn"]);
2821 bless {
2822 ref_id => $ref_id, dir => $dir, index => "$dir/index",
2823 path => $path, config => "$ENV{GIT_DIR}/svn/config",
2824 map_root => "$dir/.rev_map", repo_id => $repo_id }, $class;
2827 # for read-only access of old .rev_db formats
2828 sub unlink_rev_db_symlink {
2829 my ($self) = @_;
2830 my $link = $self->rev_db_path;
2831 $link =~ s/\.[\w-]+$// or croak "missing UUID at the end of $link";
2832 if (-l $link) {
2833 unlink $link or croak "unlink: $link failed!";
2837 sub rev_db_path {
2838 my ($self, $uuid) = @_;
2839 my $db_path = $self->map_path($uuid);
2840 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
2841 or croak "map_path: $db_path does not contain '/.rev_map.' !";
2842 $db_path;
2845 # the new replacement for .rev_db
2846 sub map_path {
2847 my ($self, $uuid) = @_;
2848 $uuid ||= $self->ra_uuid;
2849 "$self->{map_root}.$uuid";
2852 sub uri_encode {
2853 my ($f) = @_;
2854 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
2858 sub remove_username {
2859 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
2862 package Git::SVN::Prompt;
2863 use strict;
2864 use warnings;
2865 require SVN::Core;
2866 use vars qw/$_no_auth_cache $_username/;
2868 sub simple {
2869 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
2870 $may_save = undef if $_no_auth_cache;
2871 $default_username = $_username if defined $_username;
2872 if (defined $default_username && length $default_username) {
2873 if (defined $realm && length $realm) {
2874 print STDERR "Authentication realm: $realm\n";
2875 STDERR->flush;
2877 $cred->username($default_username);
2878 } else {
2879 username($cred, $realm, $may_save, $pool);
2881 $cred->password(_read_password("Password for '" .
2882 $cred->username . "': ", $realm));
2883 $cred->may_save($may_save);
2884 $SVN::_Core::SVN_NO_ERROR;
2887 sub ssl_server_trust {
2888 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
2889 $may_save = undef if $_no_auth_cache;
2890 print STDERR "Error validating server certificate for '$realm':\n";
2892 no warnings 'once';
2893 # All variables SVN::Auth::SSL::* are used only once,
2894 # so we're shutting up Perl warnings about this.
2895 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
2896 print STDERR " - The certificate is not issued ",
2897 "by a trusted authority. Use the\n",
2898 " fingerprint to validate ",
2899 "the certificate manually!\n";
2901 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
2902 print STDERR " - The certificate hostname ",
2903 "does not match.\n";
2905 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
2906 print STDERR " - The certificate is not yet valid.\n";
2908 if ($failures & $SVN::Auth::SSL::EXPIRED) {
2909 print STDERR " - The certificate has expired.\n";
2911 if ($failures & $SVN::Auth::SSL::OTHER) {
2912 print STDERR " - The certificate has ",
2913 "an unknown error.\n";
2915 } # no warnings 'once'
2916 printf STDERR
2917 "Certificate information:\n".
2918 " - Hostname: %s\n".
2919 " - Valid: from %s until %s\n".
2920 " - Issuer: %s\n".
2921 " - Fingerprint: %s\n",
2922 map $cert_info->$_, qw(hostname valid_from valid_until
2923 issuer_dname fingerprint);
2924 my $choice;
2925 prompt:
2926 print STDERR $may_save ?
2927 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
2928 "(R)eject or accept (t)emporarily? ";
2929 STDERR->flush;
2930 $choice = lc(substr(<STDIN> || 'R', 0, 1));
2931 if ($choice =~ /^t$/i) {
2932 $cred->may_save(undef);
2933 } elsif ($choice =~ /^r$/i) {
2934 return -1;
2935 } elsif ($may_save && $choice =~ /^p$/i) {
2936 $cred->may_save($may_save);
2937 } else {
2938 goto prompt;
2940 $cred->accepted_failures($failures);
2941 $SVN::_Core::SVN_NO_ERROR;
2944 sub ssl_client_cert {
2945 my ($cred, $realm, $may_save, $pool) = @_;
2946 $may_save = undef if $_no_auth_cache;
2947 print STDERR "Client certificate filename: ";
2948 STDERR->flush;
2949 chomp(my $filename = <STDIN>);
2950 $cred->cert_file($filename);
2951 $cred->may_save($may_save);
2952 $SVN::_Core::SVN_NO_ERROR;
2955 sub ssl_client_cert_pw {
2956 my ($cred, $realm, $may_save, $pool) = @_;
2957 $may_save = undef if $_no_auth_cache;
2958 $cred->password(_read_password("Password: ", $realm));
2959 $cred->may_save($may_save);
2960 $SVN::_Core::SVN_NO_ERROR;
2963 sub username {
2964 my ($cred, $realm, $may_save, $pool) = @_;
2965 $may_save = undef if $_no_auth_cache;
2966 if (defined $realm && length $realm) {
2967 print STDERR "Authentication realm: $realm\n";
2969 my $username;
2970 if (defined $_username) {
2971 $username = $_username;
2972 } else {
2973 print STDERR "Username: ";
2974 STDERR->flush;
2975 chomp($username = <STDIN>);
2977 $cred->username($username);
2978 $cred->may_save($may_save);
2979 $SVN::_Core::SVN_NO_ERROR;
2982 sub _read_password {
2983 my ($prompt, $realm) = @_;
2984 print STDERR $prompt;
2985 STDERR->flush;
2986 require Term::ReadKey;
2987 Term::ReadKey::ReadMode('noecho');
2988 my $password = '';
2989 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
2990 last if $key =~ /[\012\015]/; # \n\r
2991 $password .= $key;
2993 Term::ReadKey::ReadMode('restore');
2994 print STDERR "\n";
2995 STDERR->flush;
2996 $password;
2999 package SVN::Git::Fetcher;
3000 use vars qw/@ISA/;
3001 use strict;
3002 use warnings;
3003 use Carp qw/croak/;
3004 use IO::File qw//;
3006 # file baton members: path, mode_a, mode_b, pool, fh, blob, base
3007 sub new {
3008 my ($class, $git_svn) = @_;
3009 my $self = SVN::Delta::Editor->new;
3010 bless $self, $class;
3011 $self->{c} = $git_svn->{last_commit} if exists $git_svn->{last_commit};
3012 $self->{empty} = {};
3013 $self->{dir_prop} = {};
3014 $self->{file_prop} = {};
3015 $self->{absent_dir} = {};
3016 $self->{absent_file} = {};
3017 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
3018 $self;
3021 sub set_path_strip {
3022 my ($self, $path) = @_;
3023 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
3026 sub open_root {
3027 { path => '' };
3030 sub open_directory {
3031 my ($self, $path, $pb, $rev) = @_;
3032 { path => $path };
3035 sub git_path {
3036 my ($self, $path) = @_;
3037 if ($self->{path_strip}) {
3038 $path =~ s!$self->{path_strip}!! or
3039 die "Failed to strip path '$path' ($self->{path_strip})\n";
3041 $path;
3044 sub delete_entry {
3045 my ($self, $path, $rev, $pb) = @_;
3047 my $gpath = $self->git_path($path);
3048 return undef if ($gpath eq '');
3050 # remove entire directories.
3051 if (command('ls-tree', $self->{c}, '--', $gpath) =~ /^040000 tree/) {
3052 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3053 -r --name-only -z/,
3054 $self->{c}, '--', $gpath);
3055 local $/ = "\0";
3056 while (<$ls>) {
3057 chomp;
3058 $self->{gii}->remove($_);
3059 print "\tD\t$_\n" unless $::_q;
3061 print "\tD\t$gpath/\n" unless $::_q;
3062 command_close_pipe($ls, $ctx);
3063 $self->{empty}->{$path} = 0
3064 } else {
3065 $self->{gii}->remove($gpath);
3066 print "\tD\t$gpath\n" unless $::_q;
3068 undef;
3071 sub open_file {
3072 my ($self, $path, $pb, $rev) = @_;
3073 my $gpath = $self->git_path($path);
3074 my ($mode, $blob) = (command('ls-tree', $self->{c}, '--', $gpath)
3075 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
3076 unless (defined $mode && defined $blob) {
3077 die "$path was not found in commit $self->{c} (r$rev)\n";
3079 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
3080 pool => SVN::Pool->new, action => 'M' };
3083 sub add_file {
3084 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
3085 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3086 delete $self->{empty}->{$dir};
3087 { path => $path, mode_a => 100644, mode_b => 100644,
3088 pool => SVN::Pool->new, action => 'A' };
3091 sub add_directory {
3092 my ($self, $path, $cp_path, $cp_rev) = @_;
3093 my $gpath = $self->git_path($path);
3094 if ($gpath eq '') {
3095 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3096 -r --name-only -z/,
3097 $self->{c});
3098 local $/ = "\0";
3099 while (<$ls>) {
3100 chomp;
3101 $self->{gii}->remove($_);
3102 print "\tD\t$_\n" unless $::_q;
3104 command_close_pipe($ls, $ctx);
3105 $self->{empty}->{$path} = 0;
3107 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3108 delete $self->{empty}->{$dir};
3109 $self->{empty}->{$path} = 1;
3110 { path => $path };
3113 sub change_dir_prop {
3114 my ($self, $db, $prop, $value) = @_;
3115 $self->{dir_prop}->{$db->{path}} ||= {};
3116 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
3117 undef;
3120 sub absent_directory {
3121 my ($self, $path, $pb) = @_;
3122 $self->{absent_dir}->{$pb->{path}} ||= [];
3123 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
3124 undef;
3127 sub absent_file {
3128 my ($self, $path, $pb) = @_;
3129 $self->{absent_file}->{$pb->{path}} ||= [];
3130 push @{$self->{absent_file}->{$pb->{path}}}, $path;
3131 undef;
3134 sub change_file_prop {
3135 my ($self, $fb, $prop, $value) = @_;
3136 if ($prop eq 'svn:executable') {
3137 if ($fb->{mode_b} != 120000) {
3138 $fb->{mode_b} = defined $value ? 100755 : 100644;
3140 } elsif ($prop eq 'svn:special') {
3141 $fb->{mode_b} = defined $value ? 120000 : 100644;
3142 } else {
3143 $self->{file_prop}->{$fb->{path}} ||= {};
3144 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
3146 undef;
3149 sub apply_textdelta {
3150 my ($self, $fb, $exp) = @_;
3151 my $fh = IO::File->new_tmpfile;
3152 $fh->autoflush(1);
3153 # $fh gets auto-closed() by SVN::TxDelta::apply(),
3154 # (but $base does not,) so dup() it for reading in close_file
3155 open my $dup, '<&', $fh or croak $!;
3156 my $base = IO::File->new_tmpfile;
3157 $base->autoflush(1);
3158 if ($fb->{blob}) {
3159 defined (my $pid = fork) or croak $!;
3160 if (!$pid) {
3161 open STDOUT, '>&', $base or croak $!;
3162 print STDOUT 'link ' if ($fb->{mode_a} == 120000);
3163 exec qw/git-cat-file blob/, $fb->{blob} or croak $!;
3165 waitpid $pid, 0;
3166 croak $? if $?;
3168 if (defined $exp) {
3169 seek $base, 0, 0 or croak $!;
3170 my $got = ::md5sum($base);
3171 die "Checksum mismatch: $fb->{path} $fb->{blob}\n",
3172 "expected: $exp\n",
3173 " got: $got\n" if ($got ne $exp);
3176 seek $base, 0, 0 or croak $!;
3177 $fb->{fh} = $dup;
3178 $fb->{base} = $base;
3179 [ SVN::TxDelta::apply($base, $fh, undef, $fb->{path}, $fb->{pool}) ];
3182 sub close_file {
3183 my ($self, $fb, $exp) = @_;
3184 my $hash;
3185 my $path = $self->git_path($fb->{path});
3186 if (my $fh = $fb->{fh}) {
3187 if (defined $exp) {
3188 seek($fh, 0, 0) or croak $!;
3189 my $got = ::md5sum($fh);
3190 if ($got ne $exp) {
3191 die "Checksum mismatch: $path\n",
3192 "expected: $exp\n got: $got\n";
3195 sysseek($fh, 0, 0) or croak $!;
3196 if ($fb->{mode_b} == 120000) {
3197 eval {
3198 sysread($fh, my $buf, 5) == 5 or croak $!;
3199 $buf eq 'link ' or die "$path has mode 120000",
3200 " but is not a link";
3202 if ($@) {
3203 warn "$@\n";
3204 sysseek($fh, 0, 0) or croak $!;
3207 defined(my $pid = open my $out,'-|') or die "Can't fork: $!\n";
3208 if (!$pid) {
3209 open STDIN, '<&', $fh or croak $!;
3210 exec qw/git-hash-object -w --stdin/ or croak $!;
3212 chomp($hash = do { local $/; <$out> });
3213 close $out or croak $!;
3214 close $fh or croak $!;
3215 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
3216 close $fb->{base} or croak $!;
3217 } else {
3218 $hash = $fb->{blob} or die "no blob information\n";
3220 $fb->{pool}->clear;
3221 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
3222 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
3223 undef;
3226 sub abort_edit {
3227 my $self = shift;
3228 $self->{nr} = $self->{gii}->{nr};
3229 delete $self->{gii};
3230 $self->SUPER::abort_edit(@_);
3233 sub close_edit {
3234 my $self = shift;
3235 $self->{git_commit_ok} = 1;
3236 $self->{nr} = $self->{gii}->{nr};
3237 delete $self->{gii};
3238 $self->SUPER::close_edit(@_);
3241 package SVN::Git::Editor;
3242 use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
3243 use strict;
3244 use warnings;
3245 use Carp qw/croak/;
3246 use IO::File;
3248 sub new {
3249 my ($class, $opts) = @_;
3250 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
3251 die "$_ required!\n" unless (defined $opts->{$_});
3254 my $pool = SVN::Pool->new;
3255 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
3256 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
3257 $opts->{r}, $mods);
3259 # $opts->{ra} functions should not be used after this:
3260 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
3261 $opts->{editor_cb}, $pool);
3262 my $self = SVN::Delta::Editor->new(@ce, $pool);
3263 bless $self, $class;
3264 foreach (qw/svn_path r tree_a tree_b/) {
3265 $self->{$_} = $opts->{$_};
3267 $self->{url} = $opts->{ra}->{url};
3268 $self->{mods} = $mods;
3269 $self->{types} = $types;
3270 $self->{pool} = $pool;
3271 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
3272 $self->{rm} = { };
3273 $self->{path_prefix} = length $self->{svn_path} ?
3274 "$self->{svn_path}/" : '';
3275 return $self;
3278 sub generate_diff {
3279 my ($tree_a, $tree_b) = @_;
3280 my @diff_tree = qw(diff-tree -z -r);
3281 if ($_cp_similarity) {
3282 push @diff_tree, "-C$_cp_similarity";
3283 } else {
3284 push @diff_tree, '-C';
3286 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
3287 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
3288 push @diff_tree, $tree_a, $tree_b;
3289 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
3290 local $/ = "\0";
3291 my $state = 'meta';
3292 my @mods;
3293 while (<$diff_fh>) {
3294 chomp $_; # this gets rid of the trailing "\0"
3295 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
3296 $::sha1\s($::sha1)\s
3297 ([MTCRAD])\d*$/xo) {
3298 push @mods, { mode_a => $1, mode_b => $2,
3299 sha1_b => $3, chg => $4 };
3300 if ($4 =~ /^(?:C|R)$/) {
3301 $state = 'file_a';
3302 } else {
3303 $state = 'file_b';
3305 } elsif ($state eq 'file_a') {
3306 my $x = $mods[$#mods] or croak "Empty array\n";
3307 if ($x->{chg} !~ /^(?:C|R)$/) {
3308 croak "Error parsing $_, $x->{chg}\n";
3310 $x->{file_a} = $_;
3311 $state = 'file_b';
3312 } elsif ($state eq 'file_b') {
3313 my $x = $mods[$#mods] or croak "Empty array\n";
3314 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
3315 croak "Error parsing $_, $x->{chg}\n";
3317 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
3318 croak "Error parsing $_, $x->{chg}\n";
3320 $x->{file_b} = $_;
3321 $state = 'meta';
3322 } else {
3323 croak "Error parsing $_\n";
3326 command_close_pipe($diff_fh, $ctx);
3327 \@mods;
3330 sub check_diff_paths {
3331 my ($ra, $pfx, $rev, $mods) = @_;
3332 my %types;
3333 $pfx .= '/' if length $pfx;
3335 sub type_diff_paths {
3336 my ($ra, $types, $path, $rev) = @_;
3337 my @p = split m#/+#, $path;
3338 my $c = shift @p;
3339 unless (defined $types->{$c}) {
3340 $types->{$c} = $ra->check_path($c, $rev);
3342 while (@p) {
3343 $c .= '/' . shift @p;
3344 next if defined $types->{$c};
3345 $types->{$c} = $ra->check_path($c, $rev);
3349 foreach my $m (@$mods) {
3350 foreach my $f (qw/file_a file_b/) {
3351 next unless defined $m->{$f};
3352 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
3353 if (length $pfx.$dir && ! defined $types{$dir}) {
3354 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
3358 \%types;
3361 sub split_path {
3362 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
3365 sub repo_path {
3366 my ($self, $path) = @_;
3367 $self->{path_prefix}.(defined $path ? $path : '');
3370 sub url_path {
3371 my ($self, $path) = @_;
3372 if ($self->{url} =~ m#^https?://#) {
3373 $path =~ s/([^a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg;
3375 $self->{url} . '/' . $self->repo_path($path);
3378 sub rmdirs {
3379 my ($self) = @_;
3380 my $rm = $self->{rm};
3381 delete $rm->{''}; # we never delete the url we're tracking
3382 return unless %$rm;
3384 foreach (keys %$rm) {
3385 my @d = split m#/#, $_;
3386 my $c = shift @d;
3387 $rm->{$c} = 1;
3388 while (@d) {
3389 $c .= '/' . shift @d;
3390 $rm->{$c} = 1;
3393 delete $rm->{$self->{svn_path}};
3394 delete $rm->{''}; # we never delete the url we're tracking
3395 return unless %$rm;
3397 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
3398 $self->{tree_b});
3399 local $/ = "\0";
3400 while (<$fh>) {
3401 chomp;
3402 my @dn = split m#/#, $_;
3403 while (pop @dn) {
3404 delete $rm->{join '/', @dn};
3406 unless (%$rm) {
3407 close $fh;
3408 return;
3411 command_close_pipe($fh, $ctx);
3413 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
3414 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
3415 $self->close_directory($bat->{$d}, $p);
3416 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
3417 print "\tD+\t$d/\n" unless $::_q;
3418 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
3419 delete $bat->{$d};
3423 sub open_or_add_dir {
3424 my ($self, $full_path, $baton) = @_;
3425 my $t = $self->{types}->{$full_path};
3426 if (!defined $t) {
3427 die "$full_path not known in r$self->{r} or we have a bug!\n";
3430 no warnings 'once';
3431 # SVN::Node::none and SVN::Node::file are used only once,
3432 # so we're shutting up Perl's warnings about them.
3433 if ($t == $SVN::Node::none) {
3434 return $self->add_directory($full_path, $baton,
3435 undef, -1, $self->{pool});
3436 } elsif ($t == $SVN::Node::dir) {
3437 return $self->open_directory($full_path, $baton,
3438 $self->{r}, $self->{pool});
3439 } # no warnings 'once'
3440 print STDERR "$full_path already exists in repository at ",
3441 "r$self->{r} and it is not a directory (",
3442 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
3443 } # no warnings 'once'
3444 exit 1;
3447 sub ensure_path {
3448 my ($self, $path) = @_;
3449 my $bat = $self->{bat};
3450 my $repo_path = $self->repo_path($path);
3451 return $bat->{''} unless (length $repo_path);
3452 my @p = split m#/+#, $repo_path;
3453 my $c = shift @p;
3454 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
3455 while (@p) {
3456 my $c0 = $c;
3457 $c .= '/' . shift @p;
3458 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
3460 return $bat->{$c};
3463 sub A {
3464 my ($self, $m) = @_;
3465 my ($dir, $file) = split_path($m->{file_b});
3466 my $pbat = $self->ensure_path($dir);
3467 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3468 undef, -1);
3469 print "\tA\t$m->{file_b}\n" unless $::_q;
3470 $self->chg_file($fbat, $m);
3471 $self->close_file($fbat,undef,$self->{pool});
3474 sub C {
3475 my ($self, $m) = @_;
3476 my ($dir, $file) = split_path($m->{file_b});
3477 my $pbat = $self->ensure_path($dir);
3478 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3479 $self->url_path($m->{file_a}), $self->{r});
3480 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
3481 $self->chg_file($fbat, $m);
3482 $self->close_file($fbat,undef,$self->{pool});
3485 sub delete_entry {
3486 my ($self, $path, $pbat) = @_;
3487 my $rpath = $self->repo_path($path);
3488 my ($dir, $file) = split_path($rpath);
3489 $self->{rm}->{$dir} = 1;
3490 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
3493 sub R {
3494 my ($self, $m) = @_;
3495 my ($dir, $file) = split_path($m->{file_b});
3496 my $pbat = $self->ensure_path($dir);
3497 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3498 $self->url_path($m->{file_a}), $self->{r});
3499 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
3500 $self->chg_file($fbat, $m);
3501 $self->close_file($fbat,undef,$self->{pool});
3503 ($dir, $file) = split_path($m->{file_a});
3504 $pbat = $self->ensure_path($dir);
3505 $self->delete_entry($m->{file_a}, $pbat);
3508 sub M {
3509 my ($self, $m) = @_;
3510 my ($dir, $file) = split_path($m->{file_b});
3511 my $pbat = $self->ensure_path($dir);
3512 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
3513 $pbat,$self->{r},$self->{pool});
3514 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
3515 $self->chg_file($fbat, $m);
3516 $self->close_file($fbat,undef,$self->{pool});
3519 sub T { shift->M(@_) }
3521 sub change_file_prop {
3522 my ($self, $fbat, $pname, $pval) = @_;
3523 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
3526 sub chg_file {
3527 my ($self, $fbat, $m) = @_;
3528 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
3529 $self->change_file_prop($fbat,'svn:executable','*');
3530 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
3531 $self->change_file_prop($fbat,'svn:executable',undef);
3533 my $fh = IO::File->new_tmpfile or croak $!;
3534 if ($m->{mode_b} =~ /^120/) {
3535 print $fh 'link ' or croak $!;
3536 $self->change_file_prop($fbat,'svn:special','*');
3537 } elsif ($m->{mode_a} =~ /^120/ && $m->{mode_b} !~ /^120/) {
3538 $self->change_file_prop($fbat,'svn:special',undef);
3540 defined(my $pid = fork) or croak $!;
3541 if (!$pid) {
3542 open STDOUT, '>&', $fh or croak $!;
3543 exec qw/git-cat-file blob/, $m->{sha1_b} or croak $!;
3545 waitpid $pid, 0;
3546 croak $? if $?;
3547 $fh->flush == 0 or croak $!;
3548 seek $fh, 0, 0 or croak $!;
3550 my $exp = ::md5sum($fh);
3551 seek $fh, 0, 0 or croak $!;
3553 my $pool = SVN::Pool->new;
3554 my $atd = $self->apply_textdelta($fbat, undef, $pool);
3555 my $got = SVN::TxDelta::send_stream($fh, @$atd, $pool);
3556 die "Checksum mismatch\nexpected: $exp\ngot: $got\n" if ($got ne $exp);
3557 $pool->clear;
3559 close $fh or croak $!;
3562 sub D {
3563 my ($self, $m) = @_;
3564 my ($dir, $file) = split_path($m->{file_b});
3565 my $pbat = $self->ensure_path($dir);
3566 print "\tD\t$m->{file_b}\n" unless $::_q;
3567 $self->delete_entry($m->{file_b}, $pbat);
3570 sub close_edit {
3571 my ($self) = @_;
3572 my ($p,$bat) = ($self->{pool}, $self->{bat});
3573 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
3574 next if $_ eq '';
3575 $self->close_directory($bat->{$_}, $p);
3577 $self->close_directory($bat->{''}, $p);
3578 $self->SUPER::close_edit($p);
3579 $p->clear;
3582 sub abort_edit {
3583 my ($self) = @_;
3584 $self->SUPER::abort_edit($self->{pool});
3587 sub DESTROY {
3588 my $self = shift;
3589 $self->SUPER::DESTROY(@_);
3590 $self->{pool}->clear;
3593 # this drives the editor
3594 sub apply_diff {
3595 my ($self) = @_;
3596 my $mods = $self->{mods};
3597 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
3598 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
3599 my $f = $m->{chg};
3600 if (defined $o{$f}) {
3601 $self->$f($m);
3602 } else {
3603 fatal("Invalid change type: $f");
3606 $self->rmdirs if $_rmdir;
3607 if (@$mods == 0) {
3608 $self->abort_edit;
3609 } else {
3610 $self->close_edit;
3612 return scalar @$mods;
3615 package Git::SVN::Ra;
3616 use vars qw/@ISA $config_dir $_log_window_size/;
3617 use strict;
3618 use warnings;
3619 my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
3621 BEGIN {
3622 # enforce temporary pool usage for some simple functions
3623 no strict 'refs';
3624 for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root/) {
3625 my $SUPER = "SUPER::$f";
3626 *$f = sub {
3627 my $self = shift;
3628 my $pool = SVN::Pool->new;
3629 my @ret = $self->$SUPER(@_,$pool);
3630 $pool->clear;
3631 wantarray ? @ret : $ret[0];
3636 sub _auth_providers () {
3638 SVN::Client::get_simple_provider(),
3639 SVN::Client::get_ssl_server_trust_file_provider(),
3640 SVN::Client::get_simple_prompt_provider(
3641 \&Git::SVN::Prompt::simple, 2),
3642 SVN::Client::get_ssl_client_cert_file_provider(),
3643 SVN::Client::get_ssl_client_cert_prompt_provider(
3644 \&Git::SVN::Prompt::ssl_client_cert, 2),
3645 SVN::Client::get_ssl_client_cert_pw_file_provider(),
3646 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
3647 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
3648 SVN::Client::get_username_provider(),
3649 SVN::Client::get_ssl_server_trust_prompt_provider(
3650 \&Git::SVN::Prompt::ssl_server_trust),
3651 SVN::Client::get_username_prompt_provider(
3652 \&Git::SVN::Prompt::username, 2)
3656 sub escape_uri_only {
3657 my ($uri) = @_;
3658 my @tmp;
3659 foreach (split m{/}, $uri) {
3660 s/([^\w.-])/sprintf("%%%02X",ord($1))/eg;
3661 push @tmp, $_;
3663 join('/', @tmp);
3666 sub escape_url {
3667 my ($url) = @_;
3668 if ($url =~ m#^(https?)://([^/]+)(.*)$#) {
3669 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
3670 $url = "$scheme://$domain$uri";
3672 $url;
3675 sub new {
3676 my ($class, $url) = @_;
3677 $url =~ s!/+$!!;
3678 return $RA if ($RA && $RA->{url} eq $url);
3680 SVN::_Core::svn_config_ensure($config_dir, undef);
3681 my ($baton, $callbacks) = SVN::Core::auth_open_helper(_auth_providers);
3682 my $config = SVN::Core::config_get_config($config_dir);
3683 $RA = undef;
3684 my $dont_store_passwords = 1;
3685 my $conf_t = ${$config}{'config'};
3687 no warnings 'once';
3688 # The usage of $SVN::_Core::SVN_CONFIG_* variables
3689 # produces warnings that variables are used only once.
3690 # I had not found the better way to shut them up, so
3691 # the warnings of type 'once' are disabled in this block.
3692 if (SVN::_Core::svn_config_get_bool($conf_t,
3693 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
3694 $SVN::_Core::SVN_CONFIG_OPTION_STORE_PASSWORDS,
3695 1) == 0) {
3696 SVN::_Core::svn_auth_set_parameter($baton,
3697 $SVN::_Core::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS,
3698 bless (\$dont_store_passwords, "_p_void"));
3700 if (SVN::_Core::svn_config_get_bool($conf_t,
3701 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
3702 $SVN::_Core::SVN_CONFIG_OPTION_STORE_AUTH_CREDS,
3703 1) == 0) {
3704 $Git::SVN::Prompt::_no_auth_cache = 1;
3706 } # no warnings 'once'
3707 my $self = SVN::Ra->new(url => escape_url($url), auth => $baton,
3708 config => $config,
3709 pool => SVN::Pool->new,
3710 auth_provider_callbacks => $callbacks);
3711 $self->{url} = $url;
3712 $self->{svn_path} = $url;
3713 $self->{repos_root} = $self->get_repos_root;
3714 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
3715 $self->{cache} = { check_path => { r => 0, data => {} },
3716 get_dir => { r => 0, data => {} } };
3717 $RA = bless $self, $class;
3720 sub check_path {
3721 my ($self, $path, $r) = @_;
3722 my $cache = $self->{cache}->{check_path};
3723 if ($r == $cache->{r} && exists $cache->{data}->{$path}) {
3724 return $cache->{data}->{$path};
3726 my $pool = SVN::Pool->new;
3727 my $t = $self->SUPER::check_path($path, $r, $pool);
3728 $pool->clear;
3729 if ($r != $cache->{r}) {
3730 %{$cache->{data}} = ();
3731 $cache->{r} = $r;
3733 $cache->{data}->{$path} = $t;
3736 sub get_dir {
3737 my ($self, $dir, $r) = @_;
3738 my $cache = $self->{cache}->{get_dir};
3739 if ($r == $cache->{r}) {
3740 if (my $x = $cache->{data}->{$dir}) {
3741 return wantarray ? @$x : $x->[0];
3744 my $pool = SVN::Pool->new;
3745 my ($d, undef, $props) = $self->SUPER::get_dir($dir, $r, $pool);
3746 my %dirents = map { $_ => { kind => $d->{$_}->kind } } keys %$d;
3747 $pool->clear;
3748 if ($r != $cache->{r}) {
3749 %{$cache->{data}} = ();
3750 $cache->{r} = $r;
3752 $cache->{data}->{$dir} = [ \%dirents, $r, $props ];
3753 wantarray ? (\%dirents, $r, $props) : \%dirents;
3756 sub DESTROY {
3757 # do not call the real DESTROY since we store ourselves in $RA
3760 sub get_log {
3761 my ($self, @args) = @_;
3762 my $pool = SVN::Pool->new;
3763 splice(@args, 3, 1) if ($SVN::Core::VERSION le '1.2.0');
3764 my $ret = $self->SUPER::get_log(@args, $pool);
3765 $pool->clear;
3766 $ret;
3769 sub trees_match {
3770 my ($self, $url1, $rev1, $url2, $rev2) = @_;
3771 my $ctx = SVN::Client->new(auth => _auth_providers);
3772 my $out = IO::File->new_tmpfile;
3774 # older SVN (1.1.x) doesn't take $pool as the last parameter for
3775 # $ctx->diff(), so we'll create a default one
3776 my $pool = SVN::Pool->new_default_sub;
3778 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
3779 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
3780 $out->flush;
3781 my $ret = (($out->stat)[7] == 0);
3782 close $out or croak $!;
3784 $ret;
3787 sub get_commit_editor {
3788 my ($self, $log, $cb, $pool) = @_;
3789 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
3790 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
3793 sub gs_do_update {
3794 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
3795 my $new = ($rev_a == $rev_b);
3796 my $path = $gs->{path};
3798 if ($new && -e $gs->{index}) {
3799 unlink $gs->{index} or die
3800 "Couldn't unlink index: $gs->{index}: $!\n";
3802 my $pool = SVN::Pool->new;
3803 $editor->set_path_strip($path);
3804 my (@pc) = split m#/#, $path;
3805 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
3806 1, $editor, $pool);
3807 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
3809 # Since we can't rely on svn_ra_reparent being available, we'll
3810 # just have to do some magic with set_path to make it so
3811 # we only want a partial path.
3812 my $sp = '';
3813 my $final = join('/', @pc);
3814 while (@pc) {
3815 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
3816 $sp .= '/' if length $sp;
3817 $sp .= shift @pc;
3819 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
3821 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
3823 $reporter->finish_report($pool);
3824 $pool->clear;
3825 $editor->{git_commit_ok};
3828 # this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
3829 # svn_ra_reparent didn't work before 1.4)
3830 sub gs_do_switch {
3831 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
3832 my $path = $gs->{path};
3833 my $pool = SVN::Pool->new;
3835 my $full_url = $self->{url};
3836 my $old_url = $full_url;
3837 $full_url .= '/' . escape_uri_only($path) if length $path;
3838 my ($ra, $reparented);
3839 if ($old_url ne $full_url) {
3840 if ($old_url !~ m#^svn(\+ssh)?://#) {
3841 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url,
3842 $pool);
3843 $self->{url} = $full_url;
3844 $reparented = 1;
3845 } else {
3846 $_[0] = undef;
3847 $self = undef;
3848 $RA = undef;
3849 $ra = Git::SVN::Ra->new($full_url);
3850 $ra_invalid = 1;
3853 $ra ||= $self;
3854 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
3855 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
3856 $reporter->set_path('', $rev_a, 0, @lock, $pool);
3857 $reporter->finish_report($pool);
3859 if ($reparented) {
3860 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
3861 $self->{url} = $old_url;
3864 $pool->clear;
3865 $editor->{git_commit_ok};
3868 sub longest_common_path {
3869 my ($gsv, $globs) = @_;
3870 my %common;
3871 my $common_max = scalar @$gsv;
3873 foreach my $gs (@$gsv) {
3874 my @tmp = split m#/#, $gs->{path};
3875 my $p = '';
3876 foreach (@tmp) {
3877 $p .= length($p) ? "/$_" : $_;
3878 $common{$p} ||= 0;
3879 $common{$p}++;
3882 $globs ||= [];
3883 $common_max += scalar @$globs;
3884 foreach my $glob (@$globs) {
3885 my @tmp = split m#/#, $glob->{path}->{left};
3886 my $p = '';
3887 foreach (@tmp) {
3888 $p .= length($p) ? "/$_" : $_;
3889 $common{$p} ||= 0;
3890 $common{$p}++;
3894 my $longest_path = '';
3895 foreach (sort {length $b <=> length $a} keys %common) {
3896 if ($common{$_} == $common_max) {
3897 $longest_path = $_;
3898 last;
3901 $longest_path;
3904 sub gs_fetch_loop_common {
3905 my ($self, $base, $head, $gsv, $globs) = @_;
3906 return if ($base > $head);
3907 my $inc = $_log_window_size;
3908 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
3909 my $longest_path = longest_common_path($gsv, $globs);
3910 my $ra_url = $self->{url};
3911 while (1) {
3912 my %revs;
3913 my $err;
3914 my $err_handler = $SVN::Error::handler;
3915 $SVN::Error::handler = sub {
3916 ($err) = @_;
3917 skip_unknown_revs($err);
3919 sub _cb {
3920 my ($paths, $r, $author, $date, $log) = @_;
3921 [ dup_changed_paths($paths),
3922 { author => $author, date => $date, log => $log } ];
3924 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
3925 sub { $revs{$_[1]} = _cb(@_) });
3926 if ($err && $max >= $head) {
3927 print STDERR "Path '$longest_path' ",
3928 "was probably deleted:\n",
3929 $err->expanded_message,
3930 "\nWill attempt to follow ",
3931 "revisions r$min .. r$max ",
3932 "committed before the deletion\n";
3933 my $hi = $max;
3934 while (--$hi >= $min) {
3935 my $ok;
3936 $self->get_log([$longest_path], $min, $hi,
3937 0, 1, 1, sub {
3938 $ok ||= $_[1];
3939 $revs{$_[1]} = _cb(@_) });
3940 if ($ok) {
3941 print STDERR "r$min .. r$ok OK\n";
3942 last;
3946 $SVN::Error::handler = $err_handler;
3948 my %exists = map { $_->{path} => $_ } @$gsv;
3949 foreach my $r (sort {$a <=> $b} keys %revs) {
3950 my ($paths, $logged) = @{$revs{$r}};
3952 foreach my $gs ($self->match_globs(\%exists, $paths,
3953 $globs, $r)) {
3954 if ($gs->rev_map_max >= $r) {
3955 next;
3957 next unless $gs->match_paths($paths, $r);
3958 $gs->{logged_rev_props} = $logged;
3959 if (my $last_commit = $gs->last_commit) {
3960 $gs->assert_index_clean($last_commit);
3962 my $log_entry = $gs->do_fetch($paths, $r);
3963 if ($log_entry) {
3964 $gs->do_git_commit($log_entry);
3966 $INDEX_FILES{$gs->{index}} = 1;
3968 foreach my $g (@$globs) {
3969 my $k = "svn-remote.$g->{remote}." .
3970 "$g->{t}-maxRev";
3971 Git::SVN::tmp_config($k, $r);
3973 if ($ra_invalid) {
3974 $_[0] = undef;
3975 $self = undef;
3976 $RA = undef;
3977 $self = Git::SVN::Ra->new($ra_url);
3978 $ra_invalid = undef;
3981 # pre-fill the .rev_db since it'll eventually get filled in
3982 # with '0' x40 if something new gets committed
3983 foreach my $gs (@$gsv) {
3984 next if $gs->rev_map_max >= $max;
3985 next if defined $gs->rev_map_get($max);
3986 $gs->rev_map_set($max, 0 x40);
3988 foreach my $g (@$globs) {
3989 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
3990 Git::SVN::tmp_config($k, $max);
3992 last if $max >= $head;
3993 $min = $max + 1;
3994 $max += $inc;
3995 $max = $head if ($max > $head);
3999 sub match_globs {
4000 my ($self, $exists, $paths, $globs, $r) = @_;
4002 sub get_dir_check {
4003 my ($self, $exists, $g, $r) = @_;
4004 my @x = eval { $self->get_dir($g->{path}->{left}, $r) };
4005 return unless scalar @x == 3;
4006 my $dirents = $x[0];
4007 foreach my $de (keys %$dirents) {
4008 next if $dirents->{$de}->{kind} != $SVN::Node::dir;
4009 my $p = $g->{path}->full_path($de);
4010 next if $exists->{$p};
4011 next if (length $g->{path}->{right} &&
4012 ($self->check_path($p, $r) !=
4013 $SVN::Node::dir));
4014 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
4015 $g->{ref}->full_path($de), 1);
4018 foreach my $g (@$globs) {
4019 if (my $path = $paths->{"/$g->{path}->{left}"}) {
4020 if ($path->{action} =~ /^[AR]$/) {
4021 get_dir_check($self, $exists, $g, $r);
4024 foreach (keys %$paths) {
4025 if (/$g->{path}->{left_regex}/ &&
4026 !/$g->{path}->{regex}/) {
4027 next if $paths->{$_}->{action} !~ /^[AR]$/;
4028 get_dir_check($self, $exists, $g, $r);
4030 next unless /$g->{path}->{regex}/;
4031 my $p = $1;
4032 my $pathname = $g->{path}->full_path($p);
4033 next if $exists->{$pathname};
4034 next if ($self->check_path($pathname, $r) !=
4035 $SVN::Node::dir);
4036 $exists->{$pathname} = Git::SVN->init(
4037 $self->{url}, $pathname, undef,
4038 $g->{ref}->full_path($p), 1);
4040 my $c = '';
4041 foreach (split m#/#, $g->{path}->{left}) {
4042 $c .= "/$_";
4043 next unless ($paths->{$c} &&
4044 ($paths->{$c}->{action} =~ /^[AR]$/));
4045 get_dir_check($self, $exists, $g, $r);
4048 values %$exists;
4051 sub minimize_url {
4052 my ($self) = @_;
4053 return $self->{url} if ($self->{url} eq $self->{repos_root});
4054 my $url = $self->{repos_root};
4055 my @components = split(m!/!, $self->{svn_path});
4056 my $c = '';
4057 do {
4058 $url .= "/$c" if length $c;
4059 eval { (ref $self)->new($url)->get_latest_revnum };
4060 } while ($@ && ($c = shift @components));
4061 $url;
4064 sub can_do_switch {
4065 my $self = shift;
4066 unless (defined $can_do_switch) {
4067 my $pool = SVN::Pool->new;
4068 my $rep = eval {
4069 $self->do_switch(1, '', 0, $self->{url},
4070 SVN::Delta::Editor->new, $pool);
4072 if ($@) {
4073 $can_do_switch = 0;
4074 } else {
4075 $rep->abort_report($pool);
4076 $can_do_switch = 1;
4078 $pool->clear;
4080 $can_do_switch;
4083 sub skip_unknown_revs {
4084 my ($err) = @_;
4085 my $errno = $err->apr_err();
4086 # Maybe the branch we're tracking didn't
4087 # exist when the repo started, so it's
4088 # not an error if it doesn't, just continue
4090 # Wonderfully consistent library, eh?
4091 # 160013 - svn:// and file://
4092 # 175002 - http(s)://
4093 # 175007 - http(s):// (this repo required authorization, too...)
4094 # More codes may be discovered later...
4095 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
4096 my $err_key = $err->expanded_message;
4097 # revision numbers change every time, filter them out
4098 $err_key =~ s/\d+/\0/g;
4099 $err_key = "$errno\0$err_key";
4100 unless ($ignored_err{$err_key}) {
4101 warn "W: Ignoring error from SVN, path probably ",
4102 "does not exist: ($errno): ",
4103 $err->expanded_message,"\n";
4104 warn "W: Do not be alarmed at the above message ",
4105 "git-svn is just searching aggressively for ",
4106 "old history.\n",
4107 "This may take a while on large repositories\n";
4108 $ignored_err{$err_key} = 1;
4110 return;
4112 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
4115 # svn_log_changed_path_t objects passed to get_log are likely to be
4116 # overwritten even if only the refs are copied to an external variable,
4117 # so we should dup the structures in their entirety. Using an externally
4118 # passed pool (instead of our temporary and quickly cleared pool in
4119 # Git::SVN::Ra) does not help matters at all...
4120 sub dup_changed_paths {
4121 my ($paths) = @_;
4122 return undef unless $paths;
4123 my %ret;
4124 foreach my $p (keys %$paths) {
4125 my $i = $paths->{$p};
4126 my %s = map { $_ => $i->$_ }
4127 qw/copyfrom_path copyfrom_rev action/;
4128 $ret{$p} = \%s;
4130 \%ret;
4133 package Git::SVN::Log;
4134 use strict;
4135 use warnings;
4136 use POSIX qw/strftime/;
4137 use constant commit_log_separator => ('-' x 72) . "\n";
4138 use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
4139 %rusers $show_commit $incremental/;
4140 my $l_fmt;
4142 sub cmt_showable {
4143 my ($c) = @_;
4144 return 1 if defined $c->{r};
4146 # big commit message got truncated by the 16k pretty buffer in rev-list
4147 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
4148 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
4149 @{$c->{l}} = ();
4150 my @log = command(qw/cat-file commit/, $c->{c});
4152 # shift off the headers
4153 shift @log while ($log[0] ne '');
4154 shift @log;
4156 # TODO: make $c->{l} not have a trailing newline in the future
4157 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
4159 (undef, $c->{r}, undef) = ::extract_metadata(
4160 (grep(/^git-svn-id: /, @log))[-1]);
4162 return defined $c->{r};
4165 sub log_use_color {
4166 return $color || Git->repository->get_colorbool('color.diff');
4169 sub git_svn_log_cmd {
4170 my ($r_min, $r_max, @args) = @_;
4171 my $head = 'HEAD';
4172 my (@files, @log_opts);
4173 foreach my $x (@args) {
4174 if ($x eq '--' || @files) {
4175 push @files, $x;
4176 } else {
4177 if (::verify_ref("$x^0")) {
4178 $head = $x;
4179 } else {
4180 push @log_opts, $x;
4185 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
4186 $gs ||= Git::SVN->_new;
4187 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
4188 $gs->refname);
4189 push @cmd, '-r' unless $non_recursive;
4190 push @cmd, qw/--raw --name-status/ if $verbose;
4191 push @cmd, '--color' if log_use_color();
4192 push @cmd, @log_opts;
4193 if (defined $r_max && $r_max == $r_min) {
4194 push @cmd, '--max-count=1';
4195 if (my $c = $gs->rev_map_get($r_max)) {
4196 push @cmd, $c;
4198 } elsif (defined $r_max) {
4199 if ($r_max < $r_min) {
4200 ($r_min, $r_max) = ($r_max, $r_min);
4202 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
4203 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
4204 # If there are no commits in the range, both $c_max and $c_min
4205 # will be undefined. If there is at least 1 commit in the
4206 # range, both will be defined.
4207 return () if !defined $c_min || !defined $c_max;
4208 if ($c_min eq $c_max) {
4209 push @cmd, '--max-count=1', $c_min;
4210 } else {
4211 push @cmd, '--boundary', "$c_min..$c_max";
4214 return (@cmd, @files);
4217 # adapted from pager.c
4218 sub config_pager {
4219 $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
4220 if (!defined $pager) {
4221 $pager = 'less';
4222 } elsif (length $pager == 0 || $pager eq 'cat') {
4223 $pager = undef;
4225 $ENV{GIT_PAGER_IN_USE} = defined($pager);
4228 sub run_pager {
4229 return unless -t *STDOUT && defined $pager;
4230 pipe my $rfd, my $wfd or return;
4231 defined(my $pid = fork) or ::fatal "Can't fork: $!";
4232 if (!$pid) {
4233 open STDOUT, '>&', $wfd or
4234 ::fatal "Can't redirect to stdout: $!";
4235 return;
4237 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!";
4238 $ENV{LESS} ||= 'FRSX';
4239 exec $pager or ::fatal "Can't run pager: $! ($pager)";
4242 sub format_svn_date {
4243 return strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)", localtime(shift));
4246 sub parse_git_date {
4247 my ($t, $tz) = @_;
4248 # Date::Parse isn't in the standard Perl distro :(
4249 if ($tz =~ s/^\+//) {
4250 $t += tz_to_s_offset($tz);
4251 } elsif ($tz =~ s/^\-//) {
4252 $t -= tz_to_s_offset($tz);
4254 return $t;
4257 sub set_local_timezone {
4258 if (defined $TZ) {
4259 $ENV{TZ} = $TZ;
4260 } else {
4261 delete $ENV{TZ};
4265 sub tz_to_s_offset {
4266 my ($tz) = @_;
4267 $tz =~ s/(\d\d)$//;
4268 return ($1 * 60) + ($tz * 3600);
4271 sub get_author_info {
4272 my ($dest, $author, $t, $tz) = @_;
4273 $author =~ s/(?:^\s*|\s*$)//g;
4274 $dest->{a_raw} = $author;
4275 my $au;
4276 if ($::_authors) {
4277 $au = $rusers{$author} || undef;
4279 if (!$au) {
4280 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
4282 $dest->{t} = $t;
4283 $dest->{tz} = $tz;
4284 $dest->{a} = $au;
4285 $dest->{t_utc} = parse_git_date($t, $tz);
4288 sub process_commit {
4289 my ($c, $r_min, $r_max, $defer) = @_;
4290 if (defined $r_min && defined $r_max) {
4291 if ($r_min == $c->{r} && $r_min == $r_max) {
4292 show_commit($c);
4293 return 0;
4295 return 1 if $r_min == $r_max;
4296 if ($r_min < $r_max) {
4297 # we need to reverse the print order
4298 return 0 if (defined $limit && --$limit < 0);
4299 push @$defer, $c;
4300 return 1;
4302 if ($r_min != $r_max) {
4303 return 1 if ($r_min < $c->{r});
4304 return 1 if ($r_max > $c->{r});
4307 return 0 if (defined $limit && --$limit < 0);
4308 show_commit($c);
4309 return 1;
4312 sub show_commit {
4313 my $c = shift;
4314 if ($oneline) {
4315 my $x = "\n";
4316 if (my $l = $c->{l}) {
4317 while ($l->[0] =~ /^\s*$/) { shift @$l }
4318 $x = $l->[0];
4320 $l_fmt ||= 'A' . length($c->{r});
4321 print 'r',pack($l_fmt, $c->{r}),' | ';
4322 print "$c->{c} | " if $show_commit;
4323 print $x;
4324 } else {
4325 show_commit_normal($c);
4329 sub show_commit_changed_paths {
4330 my ($c) = @_;
4331 return unless $c->{changed};
4332 print "Changed paths:\n", @{$c->{changed}};
4335 sub show_commit_normal {
4336 my ($c) = @_;
4337 print commit_log_separator, "r$c->{r} | ";
4338 print "$c->{c} | " if $show_commit;
4339 print "$c->{a} | ", format_svn_date($c->{t_utc}), ' | ';
4340 my $nr_line = 0;
4342 if (my $l = $c->{l}) {
4343 while ($l->[$#$l] eq "\n" && $#$l > 0
4344 && $l->[($#$l - 1)] eq "\n") {
4345 pop @$l;
4347 $nr_line = scalar @$l;
4348 if (!$nr_line) {
4349 print "1 line\n\n\n";
4350 } else {
4351 if ($nr_line == 1) {
4352 $nr_line = '1 line';
4353 } else {
4354 $nr_line .= ' lines';
4356 print $nr_line, "\n";
4357 show_commit_changed_paths($c);
4358 print "\n";
4359 print $_ foreach @$l;
4361 } else {
4362 print "1 line\n";
4363 show_commit_changed_paths($c);
4364 print "\n";
4367 foreach my $x (qw/raw stat diff/) {
4368 if ($c->{$x}) {
4369 print "\n";
4370 print $_ foreach @{$c->{$x}}
4375 sub cmd_show_log {
4376 my (@args) = @_;
4377 my ($r_min, $r_max);
4378 my $r_last = -1; # prevent dupes
4379 set_local_timezone();
4380 if (defined $::_revision) {
4381 if ($::_revision =~ /^(\d+):(\d+)$/) {
4382 ($r_min, $r_max) = ($1, $2);
4383 } elsif ($::_revision =~ /^\d+$/) {
4384 $r_min = $r_max = $::_revision;
4385 } else {
4386 ::fatal "-r$::_revision is not supported, use ",
4387 "standard 'git log' arguments instead";
4391 config_pager();
4392 @args = git_svn_log_cmd($r_min, $r_max, @args);
4393 if (!@args) {
4394 print commit_log_separator unless $incremental || $oneline;
4395 return;
4397 my $log = command_output_pipe(@args);
4398 run_pager();
4399 my (@k, $c, $d, $stat);
4400 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
4401 while (<$log>) {
4402 if (/^${esc_color}commit -?($::sha1_short)/o) {
4403 my $cmt = $1;
4404 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
4405 $r_last = $c->{r};
4406 process_commit($c, $r_min, $r_max, \@k) or
4407 goto out;
4409 $d = undef;
4410 $c = { c => $cmt };
4411 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
4412 get_author_info($c, $1, $2, $3);
4413 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
4414 # ignore
4415 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
4416 push @{$c->{raw}}, $_;
4417 } elsif (/^${esc_color}[ACRMDT]\t/) {
4418 # we could add $SVN->{svn_path} here, but that requires
4419 # remote access at the moment (repo_path_split)...
4420 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
4421 push @{$c->{changed}}, $_;
4422 } elsif (/^${esc_color}diff /o) {
4423 $d = 1;
4424 push @{$c->{diff}}, $_;
4425 } elsif ($d) {
4426 push @{$c->{diff}}, $_;
4427 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
4428 $esc_color*[\+\-]*$esc_color$/x) {
4429 $stat = 1;
4430 push @{$c->{stat}}, $_;
4431 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
4432 push @{$c->{stat}}, $_;
4433 $stat = undef;
4434 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
4435 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
4436 } elsif (s/^${esc_color} //o) {
4437 push @{$c->{l}}, $_;
4440 if ($c && defined $c->{r} && $c->{r} != $r_last) {
4441 $r_last = $c->{r};
4442 process_commit($c, $r_min, $r_max, \@k);
4444 if (@k) {
4445 ($r_min, $r_max) = ($r_max, $r_min);
4446 process_commit($_, $r_min, $r_max) foreach reverse @k;
4448 out:
4449 close $log;
4450 print commit_log_separator unless $incremental || $oneline;
4453 package Git::SVN::Migration;
4454 # these version numbers do NOT correspond to actual version numbers
4455 # of git nor git-svn. They are just relative.
4457 # v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
4459 # v1 layout: .git/$id/info/url, refs/remotes/$id
4461 # v2 layout: .git/svn/$id/info/url, refs/remotes/$id
4463 # v3 layout: .git/svn/$id, refs/remotes/$id
4464 # - info/url may remain for backwards compatibility
4465 # - this is what we migrate up to this layout automatically,
4466 # - this will be used by git svn init on single branches
4467 # v3.1 layout (auto migrated):
4468 # - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
4469 # for backwards compatibility
4471 # v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
4472 # - this is only created for newly multi-init-ed
4473 # repositories. Similar in spirit to the
4474 # --use-separate-remotes option in git-clone (now default)
4475 # - we do not automatically migrate to this (following
4476 # the example set by core git)
4478 # v5 layout: .rev_db.$UUID => .rev_map.$UUID
4479 # - newer, more-efficient format that uses 24-bytes per record
4480 # with no filler space.
4481 # - use xxd -c24 < .rev_map.$UUID to view and debug
4482 # - This is a one-way migration, repositories updated to the
4483 # new format will not be able to use old git-svn without
4484 # rebuilding the .rev_db. Rebuilding the rev_db is not
4485 # possible if noMetadata or useSvmProps are set; but should
4486 # be no problem for users that use the (sensible) defaults.
4487 use strict;
4488 use warnings;
4489 use Carp qw/croak/;
4490 use File::Path qw/mkpath/;
4491 use File::Basename qw/dirname basename/;
4492 use vars qw/$_minimize/;
4494 sub migrate_from_v0 {
4495 my $git_dir = $ENV{GIT_DIR};
4496 return undef unless -d $git_dir;
4497 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
4498 my $migrated = 0;
4499 while (<$fh>) {
4500 chomp;
4501 my ($id, $orig_ref) = ($_, $_);
4502 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
4503 next unless -f "$git_dir/$id/info/url";
4504 my $new_ref = "refs/remotes/$id";
4505 if (::verify_ref("$new_ref^0")) {
4506 print STDERR "W: $orig_ref is probably an old ",
4507 "branch used by an ancient version of ",
4508 "git-svn.\n",
4509 "However, $new_ref also exists.\n",
4510 "We will not be able ",
4511 "to use this branch until this ",
4512 "ambiguity is resolved.\n";
4513 next;
4515 print STDERR "Migrating from v0 layout...\n" if !$migrated;
4516 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
4517 command_noisy('update-ref', $new_ref, $orig_ref);
4518 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
4519 $migrated++;
4521 command_close_pipe($fh, $ctx);
4522 print STDERR "Done migrating from v0 layout...\n" if $migrated;
4523 $migrated;
4526 sub migrate_from_v1 {
4527 my $git_dir = $ENV{GIT_DIR};
4528 my $migrated = 0;
4529 return $migrated unless -d $git_dir;
4530 my $svn_dir = "$git_dir/svn";
4532 # just in case somebody used 'svn' as their $id at some point...
4533 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
4535 print STDERR "Migrating from a git-svn v1 layout...\n";
4536 mkpath([$svn_dir]);
4537 print STDERR "Data from a previous version of git-svn exists, but\n\t",
4538 "$svn_dir\n\t(required for this version ",
4539 "($::VERSION) of git-svn) does not. exist\n";
4540 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
4541 while (<$fh>) {
4542 my $x = $_;
4543 next unless $x =~ s#^refs/remotes/##;
4544 chomp $x;
4545 next unless -f "$git_dir/$x/info/url";
4546 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
4547 next unless $u;
4548 my $dn = dirname("$git_dir/svn/$x");
4549 mkpath([$dn]) unless -d $dn;
4550 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
4551 mkpath(["$git_dir/svn/svn"]);
4552 print STDERR " - $git_dir/$x/info => ",
4553 "$git_dir/svn/$x/info\n";
4554 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
4555 croak "$!: $x";
4556 # don't worry too much about these, they probably
4557 # don't exist with repos this old (save for index,
4558 # and we can easily regenerate that)
4559 foreach my $f (qw/unhandled.log index .rev_db/) {
4560 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
4562 } else {
4563 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
4564 rename "$git_dir/$x", "$git_dir/svn/$x" or
4565 croak "$!: $x";
4567 $migrated++;
4569 command_close_pipe($fh, $ctx);
4570 print STDERR "Done migrating from a git-svn v1 layout\n";
4571 $migrated;
4574 sub read_old_urls {
4575 my ($l_map, $pfx, $path) = @_;
4576 my @dir;
4577 foreach (<$path/*>) {
4578 if (-r "$_/info/url") {
4579 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
4580 my $ref_id = $pfx . basename $_;
4581 my $url = ::file_to_s("$_/info/url");
4582 $l_map->{$ref_id} = $url;
4583 } elsif (-d $_) {
4584 push @dir, $_;
4587 foreach (@dir) {
4588 my $x = $_;
4589 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
4590 read_old_urls($l_map, $x, $_);
4594 sub migrate_from_v2 {
4595 my @cfg = command(qw/config -l/);
4596 return if grep /^svn-remote\..+\.url=/, @cfg;
4597 my %l_map;
4598 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
4599 my $migrated = 0;
4601 foreach my $ref_id (sort keys %l_map) {
4602 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
4603 if ($@) {
4604 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
4606 $migrated++;
4608 $migrated;
4611 sub minimize_connections {
4612 my $r = Git::SVN::read_all_remotes();
4613 my $new_urls = {};
4614 my $root_repos = {};
4615 foreach my $repo_id (keys %$r) {
4616 my $url = $r->{$repo_id}->{url} or next;
4617 my $fetch = $r->{$repo_id}->{fetch} or next;
4618 my $ra = Git::SVN::Ra->new($url);
4620 # skip existing cases where we already connect to the root
4621 if (($ra->{url} eq $ra->{repos_root}) ||
4622 (Git::SVN::sanitize_remote_name($ra->{repos_root}) eq
4623 $repo_id)) {
4624 $root_repos->{$ra->{url}} = $repo_id;
4625 next;
4628 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
4629 my $root_path = $ra->{url};
4630 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
4631 foreach my $path (keys %$fetch) {
4632 my $ref_id = $fetch->{$path};
4633 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
4635 # make sure we can read when connecting to
4636 # a higher level of a repository
4637 my ($last_rev, undef) = $gs->last_rev_commit;
4638 if (!defined $last_rev) {
4639 $last_rev = eval {
4640 $root_ra->get_latest_revnum;
4642 next if $@;
4644 my $new = $root_path;
4645 $new .= length $path ? "/$path" : '';
4646 eval {
4647 $root_ra->get_log([$new], $last_rev, $last_rev,
4648 0, 0, 1, sub { });
4650 next if $@;
4651 $new_urls->{$ra->{repos_root}}->{$new} =
4652 { ref_id => $ref_id,
4653 old_repo_id => $repo_id,
4654 old_path => $path };
4658 my @emptied;
4659 foreach my $url (keys %$new_urls) {
4660 # see if we can re-use an existing [svn-remote "repo_id"]
4661 # instead of creating a(n ugly) new section:
4662 my $repo_id = $root_repos->{$url} ||
4663 Git::SVN::sanitize_remote_name($url);
4665 my $fetch = $new_urls->{$url};
4666 foreach my $path (keys %$fetch) {
4667 my $x = $fetch->{$path};
4668 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
4669 my $pfx = "svn-remote.$x->{old_repo_id}";
4671 my $old_fetch = quotemeta("$x->{old_path}:".
4672 "refs/remotes/$x->{ref_id}");
4673 command_noisy(qw/config --unset/,
4674 "$pfx.fetch", '^'. $old_fetch . '$');
4675 delete $r->{$x->{old_repo_id}}->
4676 {fetch}->{$x->{old_path}};
4677 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
4678 command_noisy(qw/config --unset/,
4679 "$pfx.url");
4680 push @emptied, $x->{old_repo_id}
4684 if (@emptied) {
4685 my $file = $ENV{GIT_CONFIG} || $ENV{GIT_CONFIG_LOCAL} ||
4686 "$ENV{GIT_DIR}/config";
4687 print STDERR <<EOF;
4688 The following [svn-remote] sections in your config file ($file) are empty
4689 and can be safely removed:
4691 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
4695 sub migration_check {
4696 migrate_from_v0();
4697 migrate_from_v1();
4698 migrate_from_v2();
4699 minimize_connections() if $_minimize;
4702 package Git::IndexInfo;
4703 use strict;
4704 use warnings;
4705 use Git qw/command_input_pipe command_close_pipe/;
4707 sub new {
4708 my ($class) = @_;
4709 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
4710 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
4713 sub remove {
4714 my ($self, $path) = @_;
4715 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
4716 return ++$self->{nr};
4718 undef;
4721 sub update {
4722 my ($self, $mode, $hash, $path) = @_;
4723 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
4724 return ++$self->{nr};
4726 undef;
4729 sub DESTROY {
4730 my ($self) = @_;
4731 command_close_pipe($self->{gui}, $self->{ctx});
4734 package Git::SVN::GlobSpec;
4735 use strict;
4736 use warnings;
4738 sub new {
4739 my ($class, $glob) = @_;
4740 my $re = $glob;
4741 $re =~ s!/+$!!g; # no need for trailing slashes
4742 my $nr = ($re =~ s!^(.*)\*(.*)$!\(\[^/\]+\)!g);
4743 my ($left, $right) = ($1, $2);
4744 if ($nr > 1) {
4745 die "Only one '*' wildcard expansion ",
4746 "is supported (got $nr): '$glob'\n";
4747 } elsif ($nr == 0) {
4748 die "One '*' is needed for glob: '$glob'\n";
4750 $re = quotemeta($left) . $re . quotemeta($right);
4751 if (length $left && !($left =~ s!/+$!!g)) {
4752 die "Missing trailing '/' on left side of: '$glob' ($left)\n";
4754 if (length $right && !($right =~ s!^/+!!g)) {
4755 die "Missing leading '/' on right side of: '$glob' ($right)\n";
4757 my $left_re = qr/^\/\Q$left\E(\/|$)/;
4758 bless { left => $left, right => $right, left_regex => $left_re,
4759 regex => qr/$re/, glob => $glob }, $class;
4762 sub full_path {
4763 my ($self, $path) = @_;
4764 return (length $self->{left} ? "$self->{left}/" : '') .
4765 $path . (length $self->{right} ? "/$self->{right}" : '');
4768 __END__
4770 Data structures:
4773 $remotes = { # returned by read_all_remotes()
4774 'svn' => {
4775 # svn-remote.svn.url=https://svn.musicpd.org
4776 url => 'https://svn.musicpd.org',
4777 # svn-remote.svn.fetch=mpd/trunk:trunk
4778 fetch => {
4779 'mpd/trunk' => 'trunk',
4781 # svn-remote.svn.tags=mpd/tags/*:tags/*
4782 tags => {
4783 path => {
4784 left => 'mpd/tags',
4785 right => '',
4786 regex => qr!mpd/tags/([^/]+)$!,
4787 glob => 'tags/*',
4789 ref => {
4790 left => 'tags',
4791 right => '',
4792 regex => qr!tags/([^/]+)$!,
4793 glob => 'tags/*',
4799 $log_entry hashref as returned by libsvn_log_entry()
4801 log => 'whitespace-formatted log entry
4802 ', # trailing newline is preserved
4803 revision => '8', # integer
4804 date => '2004-02-24T17:01:44.108345Z', # commit date
4805 author => 'committer name'
4809 # this is generated by generate_diff();
4810 @mods = array of diff-index line hashes, each element represents one line
4811 of diff-index output
4813 diff-index line ($m hash)
4815 mode_a => first column of diff-index output, no leading ':',
4816 mode_b => second column of diff-index output,
4817 sha1_b => sha1sum of the final blob,
4818 chg => change type [MCRADT],
4819 file_a => original file name of a file (iff chg is 'C' or 'R')
4820 file_b => new/current file name of a file (any chg)
4824 # retval of read_url_paths{,_all}();
4825 $l_map = {
4826 # repository root url
4827 'https://svn.musicpd.org' => {
4828 # repository path # GIT_SVN_ID
4829 'mpd/trunk' => 'trunk',
4830 'mpd/tags/0.11.5' => 'tags/0.11.5',
4834 Notes:
4835 I don't trust the each() function on unless I created %hash myself
4836 because the internal iterator may not have started at base.