git repack: keep commits hidden by a graft
[git/dscho.git] / git-svn.perl
blob43c86e85a1e1d36210742d34644656151e554da4
1 #!/usr/bin/env perl
2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
4 use warnings;
5 use strict;
6 use vars qw/ $AUTHOR $VERSION
7 $sha1 $sha1_short $_revision $_repository
8 $_q $_authors $_authors_prog %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 File::Spec;
43 use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
44 use IPC::Open3;
45 use Git;
47 BEGIN {
48 # import functions from Git into our packages, en masse
49 no strict 'refs';
50 foreach (qw/command command_oneline command_noisy command_output_pipe
51 command_input_pipe command_close_pipe
52 command_bidi_pipe command_close_bidi_pipe/) {
53 for my $package ( qw(SVN::Git::Editor SVN::Git::Fetcher
54 Git::SVN::Migration Git::SVN::Log Git::SVN),
55 __PACKAGE__) {
56 *{"${package}::$_"} = \&{"Git::$_"};
61 my ($SVN);
63 $sha1 = qr/[a-f\d]{40}/;
64 $sha1_short = qr/[a-f\d]{4,40}/;
65 my ($_stdin, $_help, $_edit,
66 $_message, $_file, $_branch_dest,
67 $_template, $_shared,
68 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
69 $_merge, $_strategy, $_dry_run, $_local,
70 $_prefix, $_no_checkout, $_url, $_verbose,
71 $_git_format, $_commit_url, $_tag);
72 $Git::SVN::_follow_parent = 1;
73 $_q ||= 0;
74 my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
75 'config-dir=s' => \$Git::SVN::Ra::config_dir,
76 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
77 'ignore-paths=s' => \$SVN::Git::Fetcher::_ignore_regex );
78 my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
79 'authors-file|A=s' => \$_authors,
80 'authors-prog=s' => \$_authors_prog,
81 'repack:i' => \$Git::SVN::_repack,
82 'noMetadata' => \$Git::SVN::_no_metadata,
83 'useSvmProps' => \$Git::SVN::_use_svm_props,
84 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
85 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
86 'no-checkout' => \$_no_checkout,
87 'quiet|q+' => \$_q,
88 'repack-flags|repack-args|repack-opts=s' =>
89 \$Git::SVN::_repack_flags,
90 'use-log-author' => \$Git::SVN::_use_log_author,
91 'add-author-from' => \$Git::SVN::_add_author_from,
92 'localtime' => \$Git::SVN::_localtime,
93 %remote_opts );
95 my ($_trunk, @_tags, @_branches, $_stdlayout);
96 my %icv;
97 my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
98 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
99 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
100 'stdlayout|s' => \$_stdlayout,
101 'minimize-url|m' => \$Git::SVN::_minimize_url,
102 'no-metadata' => sub { $icv{noMetadata} = 1 },
103 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
104 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
105 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
106 %remote_opts );
107 my %cmt_opts = ( 'edit|e' => \$_edit,
108 'rmdir' => \$SVN::Git::Editor::_rmdir,
109 'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
110 'l=i' => \$SVN::Git::Editor::_rename_limit,
111 'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
114 my %cmd = (
115 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
116 { 'revision|r=s' => \$_revision,
117 'fetch-all|all' => \$_fetch_all,
118 'parent|p' => \$_fetch_parent,
119 %fc_opts } ],
120 clone => [ \&cmd_clone, "Initialize and fetch revisions",
121 { 'revision|r=s' => \$_revision,
122 %fc_opts, %init_opts } ],
123 init => [ \&cmd_init, "Initialize a repo for tracking" .
124 " (requires URL argument)",
125 \%init_opts ],
126 'multi-init' => [ \&cmd_multi_init,
127 "Deprecated alias for ".
128 "'$0 init -T<trunk> -b<branches> -t<tags>'",
129 \%init_opts ],
130 dcommit => [ \&cmd_dcommit,
131 'Commit several diffs to merge with upstream',
132 { 'merge|m|M' => \$_merge,
133 'strategy|s=s' => \$_strategy,
134 'verbose|v' => \$_verbose,
135 'dry-run|n' => \$_dry_run,
136 'fetch-all|all' => \$_fetch_all,
137 'commit-url=s' => \$_commit_url,
138 'revision|r=i' => \$_revision,
139 'no-rebase' => \$_no_rebase,
140 %cmt_opts, %fc_opts } ],
141 branch => [ \&cmd_branch,
142 'Create a branch in the SVN repository',
143 { 'message|m=s' => \$_message,
144 'destination|d=s' => \$_branch_dest,
145 'dry-run|n' => \$_dry_run,
146 'tag|t' => \$_tag } ],
147 tag => [ sub { $_tag = 1; cmd_branch(@_) },
148 'Create a tag in the SVN repository',
149 { 'message|m=s' => \$_message,
150 'destination|d=s' => \$_branch_dest,
151 'dry-run|n' => \$_dry_run } ],
152 'set-tree' => [ \&cmd_set_tree,
153 "Set an SVN repository to a git tree-ish",
154 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
155 'create-ignore' => [ \&cmd_create_ignore,
156 'Create a .gitignore per svn:ignore',
157 { 'revision|r=i' => \$_revision
158 } ],
159 'propget' => [ \&cmd_propget,
160 'Print the value of a property on a file or directory',
161 { 'revision|r=i' => \$_revision } ],
162 'proplist' => [ \&cmd_proplist,
163 'List all properties of a file or directory',
164 { 'revision|r=i' => \$_revision } ],
165 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
166 { 'revision|r=i' => \$_revision
167 } ],
168 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
169 { 'revision|r=i' => \$_revision
170 } ],
171 'multi-fetch' => [ \&cmd_multi_fetch,
172 "Deprecated alias for $0 fetch --all",
173 { 'revision|r=s' => \$_revision, %fc_opts } ],
174 'migrate' => [ sub { },
175 # no-op, we automatically run this anyways,
176 'Migrate configuration/metadata/layout from
177 previous versions of git-svn',
178 { 'minimize' => \$Git::SVN::Migration::_minimize,
179 %remote_opts } ],
180 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
181 { 'limit=i' => \$Git::SVN::Log::limit,
182 'revision|r=s' => \$_revision,
183 'verbose|v' => \$Git::SVN::Log::verbose,
184 'incremental' => \$Git::SVN::Log::incremental,
185 'oneline' => \$Git::SVN::Log::oneline,
186 'show-commit' => \$Git::SVN::Log::show_commit,
187 'non-recursive' => \$Git::SVN::Log::non_recursive,
188 'authors-file|A=s' => \$_authors,
189 'color' => \$Git::SVN::Log::color,
190 'pager=s' => \$Git::SVN::Log::pager
191 } ],
192 'find-rev' => [ \&cmd_find_rev,
193 "Translate between SVN revision numbers and tree-ish",
194 {} ],
195 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
196 { 'merge|m|M' => \$_merge,
197 'verbose|v' => \$_verbose,
198 'strategy|s=s' => \$_strategy,
199 'local|l' => \$_local,
200 'fetch-all|all' => \$_fetch_all,
201 'dry-run|n' => \$_dry_run,
202 %fc_opts } ],
203 'commit-diff' => [ \&cmd_commit_diff,
204 'Commit a diff between two trees',
205 { 'message|m=s' => \$_message,
206 'file|F=s' => \$_file,
207 'revision|r=s' => \$_revision,
208 %cmt_opts } ],
209 'info' => [ \&cmd_info,
210 "Show info about the latest SVN revision
211 on the current branch",
212 { 'url' => \$_url, } ],
213 'blame' => [ \&Git::SVN::Log::cmd_blame,
214 "Show what revision and author last modified each line of a file",
215 { 'git-format' => \$_git_format } ],
216 'reset' => [ \&cmd_reset,
217 "Undo fetches back to the specified SVN revision",
218 { 'revision|r=s' => \$_revision,
219 'parent|p' => \$_fetch_parent } ],
222 my $cmd;
223 for (my $i = 0; $i < @ARGV; $i++) {
224 if (defined $cmd{$ARGV[$i]}) {
225 $cmd = $ARGV[$i];
226 splice @ARGV, $i, 1;
227 last;
228 } elsif ($ARGV[$i] eq 'help') {
229 $cmd = $ARGV[$i+1];
230 usage(0);
234 # make sure we're always running at the top-level working directory
235 unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
236 unless (-d $ENV{GIT_DIR}) {
237 if ($git_dir_user_set) {
238 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
239 "but it is not a directory\n";
241 my $git_dir = delete $ENV{GIT_DIR};
242 my $cdup = undef;
243 git_cmd_try {
244 $cdup = command_oneline(qw/rev-parse --show-cdup/);
245 $git_dir = '.' unless ($cdup);
246 chomp $cdup if ($cdup);
247 $cdup = "." unless ($cdup && length $cdup);
248 } "Already at toplevel, but $git_dir not found\n";
249 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
250 unless (-d $git_dir) {
251 die "$git_dir still not found after going to ",
252 "'$cdup'\n";
254 $ENV{GIT_DIR} = $git_dir;
256 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
259 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
261 read_repo_config(\%opts);
262 if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
263 Getopt::Long::Configure('pass_through');
265 my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
266 'minimize-connections' => \$Git::SVN::Migration::_minimize,
267 'id|i=s' => \$Git::SVN::default_ref_id,
268 'svn-remote|remote|R=s' => sub {
269 $Git::SVN::no_reuse_existing = 1;
270 $Git::SVN::default_repo_id = $_[1] });
271 exit 1 if (!$rv && $cmd && $cmd ne 'log');
273 usage(0) if $_help;
274 version() if $_version;
275 usage(1) unless defined $cmd;
276 load_authors() if $_authors;
277 if (defined $_authors_prog) {
278 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
281 unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
282 Git::SVN::Migration::migration_check();
284 Git::SVN::init_vars();
285 eval {
286 Git::SVN::verify_remotes_sanity();
287 $cmd{$cmd}->[0]->(@ARGV);
289 fatal $@ if $@;
290 post_fetch_checkout();
291 exit 0;
293 ####################### primary functions ######################
294 sub usage {
295 my $exit = shift || 0;
296 my $fd = $exit ? \*STDERR : \*STDOUT;
297 print $fd <<"";
298 git-svn - bidirectional operations between a single Subversion tree and git
299 Usage: git svn <command> [options] [arguments]\n
301 print $fd "Available commands:\n" unless $cmd;
303 foreach (sort keys %cmd) {
304 next if $cmd && $cmd ne $_;
305 next if /^multi-/; # don't show deprecated commands
306 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
307 foreach (sort keys %{$cmd{$_}->[2]}) {
308 # mixed-case options are for .git/config only
309 next if /[A-Z]/ && /^[a-z]+$/i;
310 # prints out arguments as they should be passed:
311 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
312 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
313 "--$_" : "-$_" }
314 split /\|/,$_)," $x\n";
317 print $fd <<"";
318 \nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
319 arbitrary identifier if you're tracking multiple SVN branches/repositories in
320 one git repository and want to keep them separate. See git-svn(1) for more
321 information.
323 exit $exit;
326 sub version {
327 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
328 exit 0;
331 sub do_git_init_db {
332 unless (-d $ENV{GIT_DIR}) {
333 my @init_db = ('init');
334 push @init_db, "--template=$_template" if defined $_template;
335 if (defined $_shared) {
336 if ($_shared =~ /[a-z]/) {
337 push @init_db, "--shared=$_shared";
338 } else {
339 push @init_db, "--shared";
342 command_noisy(@init_db);
343 $_repository = Git->repository(Repository => ".git");
345 command_noisy('config', 'core.autocrlf', 'false');
346 my $set;
347 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
348 foreach my $i (keys %icv) {
349 die "'$set' and '$i' cannot both be set\n" if $set;
350 next unless defined $icv{$i};
351 command_noisy('config', "$pfx.$i", $icv{$i});
352 $set = $i;
354 my $ignore_regex = \$SVN::Git::Fetcher::_ignore_regex;
355 command_noisy('config', "$pfx.ignore-paths", $$ignore_regex)
356 if defined $$ignore_regex;
359 sub init_subdir {
360 my $repo_path = shift or return;
361 mkpath([$repo_path]) unless -d $repo_path;
362 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
363 $ENV{GIT_DIR} = '.git';
364 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
367 sub cmd_clone {
368 my ($url, $path) = @_;
369 if (!defined $path &&
370 (defined $_trunk || @_branches || @_tags ||
371 defined $_stdlayout) &&
372 $url !~ m#^[a-z\+]+://#) {
373 $path = $url;
375 $path = basename($url) if !defined $path || !length $path;
376 cmd_init($url, $path);
377 Git::SVN::fetch_all($Git::SVN::default_repo_id);
378 command_oneline('config', 'svn.authorsfile', $_authors) if $_authors;
381 sub cmd_init {
382 if (defined $_stdlayout) {
383 $_trunk = 'trunk' if (!defined $_trunk);
384 @_tags = 'tags' if (! @_tags);
385 @_branches = 'branches' if (! @_branches);
387 if (defined $_trunk || @_branches || @_tags) {
388 return cmd_multi_init(@_);
390 my $url = shift or die "SVN repository location required ",
391 "as a command-line argument\n";
392 $url = canonicalize_url($url);
393 init_subdir(@_);
394 do_git_init_db();
396 Git::SVN->init($url);
399 sub cmd_fetch {
400 if (grep /^\d+=./, @_) {
401 die "'<rev>=<commit>' fetch arguments are ",
402 "no longer supported.\n";
404 my ($remote) = @_;
405 if (@_ > 1) {
406 die "Usage: $0 fetch [--all] [--parent] [svn-remote]\n";
408 if ($_fetch_parent) {
409 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
410 unless ($gs) {
411 die "Unable to determine upstream SVN information from ",
412 "working tree history\n";
414 # just fetch, don't checkout.
415 $_no_checkout = 'true';
416 $_fetch_all ? $gs->fetch_all : $gs->fetch;
417 } elsif ($_fetch_all) {
418 cmd_multi_fetch();
419 } else {
420 $remote ||= $Git::SVN::default_repo_id;
421 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
425 sub cmd_set_tree {
426 my (@commits) = @_;
427 if ($_stdin || !@commits) {
428 print "Reading from stdin...\n";
429 @commits = ();
430 while (<STDIN>) {
431 if (/\b($sha1_short)\b/o) {
432 unshift @commits, $1;
436 my @revs;
437 foreach my $c (@commits) {
438 my @tmp = command('rev-parse',$c);
439 if (scalar @tmp == 1) {
440 push @revs, $tmp[0];
441 } elsif (scalar @tmp > 1) {
442 push @revs, reverse(command('rev-list',@tmp));
443 } else {
444 fatal "Failed to rev-parse $c";
447 my $gs = Git::SVN->new;
448 my ($r_last, $cmt_last) = $gs->last_rev_commit;
449 $gs->fetch;
450 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
451 fatal "There are new revisions that were fetched ",
452 "and need to be merged (or acknowledged) ",
453 "before committing.\nlast rev: $r_last\n",
454 " current: $gs->{last_rev}";
456 $gs->set_tree($_) foreach @revs;
457 print "Done committing ",scalar @revs," revisions to SVN\n";
458 unlink $gs->{index};
461 sub cmd_dcommit {
462 my $head = shift;
463 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
464 'Cannot dcommit with a dirty index. Commit your changes first, '
465 . "or stash them with `git stash'.\n";
466 $head ||= 'HEAD';
468 my $old_head;
469 if ($head ne 'HEAD') {
470 $old_head = eval {
471 command_oneline([qw/symbolic-ref -q HEAD/])
473 if ($old_head) {
474 $old_head =~ s{^refs/heads/}{};
475 } else {
476 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
478 command(['checkout', $head], STDERR => 0);
481 my @refs;
482 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
483 unless ($gs) {
484 die "Unable to determine upstream SVN information from ",
485 "$head history.\nPerhaps the repository is empty.";
488 if (defined $_commit_url) {
489 $url = $_commit_url;
490 } else {
491 $url = eval { command_oneline('config', '--get',
492 "svn-remote.$gs->{repo_id}.commiturl") };
493 if (!$url) {
494 $url = $gs->full_url
498 my $last_rev = $_revision if defined $_revision;
499 if ($url) {
500 print "Committing to $url ...\n";
502 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
503 if ($_no_rebase && scalar(@$linear_refs) > 1) {
504 warn "Attempting to commit more than one change while ",
505 "--no-rebase is enabled.\n",
506 "If these changes depend on each other, re-running ",
507 "without --no-rebase may be required."
509 my $expect_url = $url;
510 Git::SVN::remove_username($expect_url);
511 while (1) {
512 my $d = shift @$linear_refs or last;
513 unless (defined $last_rev) {
514 (undef, $last_rev, undef) = cmt_metadata("$d~1");
515 unless (defined $last_rev) {
516 fatal "Unable to extract revision information ",
517 "from commit $d~1";
520 if ($_dry_run) {
521 print "diff-tree $d~1 $d\n";
522 } else {
523 my $cmt_rev;
524 my %ed_opts = ( r => $last_rev,
525 log => get_commit_entry($d)->{log},
526 ra => Git::SVN::Ra->new($url),
527 config => SVN::Core::config_get_config(
528 $Git::SVN::Ra::config_dir
530 tree_a => "$d~1",
531 tree_b => $d,
532 editor_cb => sub {
533 print "Committed r$_[0]\n";
534 $cmt_rev = $_[0];
536 svn_path => '');
537 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
538 print "No changes\n$d~1 == $d\n";
539 } elsif ($parents->{$d} && @{$parents->{$d}}) {
540 $gs->{inject_parents_dcommit}->{$cmt_rev} =
541 $parents->{$d};
543 $_fetch_all ? $gs->fetch_all : $gs->fetch;
544 $last_rev = $cmt_rev;
545 next if $_no_rebase;
547 # we always want to rebase against the current HEAD,
548 # not any head that was passed to us
549 my @diff = command('diff-tree', $d,
550 $gs->refname, '--');
551 my @finish;
552 if (@diff) {
553 @finish = rebase_cmd();
554 print STDERR "W: $d and ", $gs->refname,
555 " differ, using @finish:\n",
556 join("\n", @diff), "\n";
557 } else {
558 print "No changes between current HEAD and ",
559 $gs->refname,
560 "\nResetting to the latest ",
561 $gs->refname, "\n";
562 @finish = qw/reset --mixed/;
564 command_noisy(@finish, $gs->refname);
565 if (@diff) {
566 @refs = ();
567 my ($url_, $rev_, $uuid_, $gs_) =
568 working_head_info('HEAD', \@refs);
569 my ($linear_refs_, $parents_) =
570 linearize_history($gs_, \@refs);
571 if (scalar(@$linear_refs) !=
572 scalar(@$linear_refs_)) {
573 fatal "# of revisions changed ",
574 "\nbefore:\n",
575 join("\n", @$linear_refs),
576 "\n\nafter:\n",
577 join("\n", @$linear_refs_), "\n",
578 'If you are attempting to commit ',
579 "merges, try running:\n\t",
580 'git rebase --interactive',
581 '--preserve-merges ',
582 $gs->refname,
583 "\nBefore dcommitting";
585 if ($url_ ne $expect_url) {
586 fatal "URL mismatch after rebase: ",
587 "$url_ != $expect_url";
589 if ($uuid_ ne $uuid) {
590 fatal "uuid mismatch after rebase: ",
591 "$uuid_ != $uuid";
593 # remap parents
594 my (%p, @l, $i);
595 for ($i = 0; $i < scalar @$linear_refs; $i++) {
596 my $new = $linear_refs_->[$i] or next;
597 $p{$new} =
598 $parents->{$linear_refs->[$i]};
599 push @l, $new;
601 $parents = \%p;
602 $linear_refs = \@l;
607 if ($old_head) {
608 my $new_head = command_oneline(qw/rev-parse HEAD/);
609 my $new_is_symbolic = eval {
610 command_oneline(qw/symbolic-ref -q HEAD/);
612 if ($new_is_symbolic) {
613 print "dcommitted the branch ", $head, "\n";
614 } else {
615 print "dcommitted on a detached HEAD because you gave ",
616 "a revision argument.\n",
617 "The rewritten commit is: ", $new_head, "\n";
619 command(['checkout', $old_head], STDERR => 0);
622 unlink $gs->{index};
625 sub cmd_branch {
626 my ($branch_name, $head) = @_;
628 unless (defined $branch_name && length $branch_name) {
629 die(($_tag ? "tag" : "branch") . " name required\n");
631 $head ||= 'HEAD';
633 my ($src, $rev, undef, $gs) = working_head_info($head);
635 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
636 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
637 my $glob;
638 if ($#{$allglobs} == 0) {
639 $glob = $allglobs->[0];
640 } else {
641 unless(defined $_branch_dest) {
642 die "Multiple ",
643 $_tag ? "tag" : "branch",
644 " paths defined for Subversion repository.\n",
645 "You must specify where you want to create the ",
646 $_tag ? "tag" : "branch",
647 " with the --destination argument.\n";
649 foreach my $g (@{$allglobs}) {
650 # SVN::Git::Editor could probably be moved to Git.pm..
651 my $re = SVN::Git::Editor::glob2pat($g->{path}->{left});
652 if ($_branch_dest =~ /$re/) {
653 $glob = $g;
654 last;
657 unless (defined $glob) {
658 die "Unknown ",
659 $_tag ? "tag" : "branch",
660 " destination $_branch_dest\n";
663 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
664 my $dst = join '/', $remote->{url}, $lft, $branch_name, ($rgt || ());
666 my $ctx = SVN::Client->new(
667 auth => Git::SVN::Ra::_auth_providers(),
668 log_msg => sub {
669 ${ $_[0] } = defined $_message
670 ? $_message
671 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
672 . $branch_name;
676 eval {
677 $ctx->ls($dst, 'HEAD', 0);
678 } and die "branch ${branch_name} already exists\n";
680 print "Copying ${src} at r${rev} to ${dst}...\n";
681 $ctx->copy($src, $rev, $dst)
682 unless $_dry_run;
684 $gs->fetch_all;
687 sub cmd_find_rev {
688 my $revision_or_hash = shift or die "SVN or git revision required ",
689 "as a command-line argument\n";
690 my $result;
691 if ($revision_or_hash =~ /^r\d+$/) {
692 my $head = shift;
693 $head ||= 'HEAD';
694 my @refs;
695 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
696 unless ($gs) {
697 die "Unable to determine upstream SVN information from ",
698 "$head history\n";
700 my $desired_revision = substr($revision_or_hash, 1);
701 $result = $gs->rev_map_get($desired_revision, $uuid);
702 } else {
703 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
704 $result = $rev;
706 print "$result\n" if $result;
709 sub cmd_rebase {
710 command_noisy(qw/update-index --refresh/);
711 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
712 unless ($gs) {
713 die "Unable to determine upstream SVN information from ",
714 "working tree history\n";
716 if ($_dry_run) {
717 print "Remote Branch: " . $gs->refname . "\n";
718 print "SVN URL: " . $url . "\n";
719 return;
721 if (command(qw/diff-index HEAD --/)) {
722 print STDERR "Cannot rebase with uncommited changes:\n";
723 command_noisy('status');
724 exit 1;
726 unless ($_local) {
727 # rebase will checkout for us, so no need to do it explicitly
728 $_no_checkout = 'true';
729 $_fetch_all ? $gs->fetch_all : $gs->fetch;
731 command_noisy(rebase_cmd(), $gs->refname);
734 sub cmd_show_ignore {
735 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
736 $gs ||= Git::SVN->new;
737 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
738 $gs->prop_walk($gs->{path}, $r, sub {
739 my ($gs, $path, $props) = @_;
740 print STDOUT "\n# $path\n";
741 my $s = $props->{'svn:ignore'} or return;
742 $s =~ s/[\r\n]+/\n/g;
743 chomp $s;
744 $s =~ s#^#$path#gm;
745 print STDOUT "$s\n";
749 sub cmd_show_externals {
750 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
751 $gs ||= Git::SVN->new;
752 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
753 $gs->prop_walk($gs->{path}, $r, sub {
754 my ($gs, $path, $props) = @_;
755 print STDOUT "\n# $path\n";
756 my $s = $props->{'svn:externals'} or return;
757 $s =~ s/[\r\n]+/\n/g;
758 chomp $s;
759 $s =~ s#^#$path#gm;
760 print STDOUT "$s\n";
764 sub cmd_create_ignore {
765 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
766 $gs ||= Git::SVN->new;
767 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
768 $gs->prop_walk($gs->{path}, $r, sub {
769 my ($gs, $path, $props) = @_;
770 # $path is of the form /path/to/dir/
771 $path = '.' . $path;
772 # SVN can have attributes on empty directories,
773 # which git won't track
774 mkpath([$path]) unless -d $path;
775 my $ignore = $path . '.gitignore';
776 my $s = $props->{'svn:ignore'} or return;
777 open(GITIGNORE, '>', $ignore)
778 or fatal("Failed to open `$ignore' for writing: $!");
779 $s =~ s/[\r\n]+/\n/g;
780 chomp $s;
781 # Prefix all patterns so that the ignore doesn't apply
782 # to sub-directories.
783 $s =~ s#^#/#gm;
784 print GITIGNORE "$s\n";
785 close(GITIGNORE)
786 or fatal("Failed to close `$ignore': $!");
787 command_noisy('add', '-f', $ignore);
791 sub canonicalize_path {
792 my ($path) = @_;
793 my $dot_slash_added = 0;
794 if (substr($path, 0, 1) ne "/") {
795 $path = "./" . $path;
796 $dot_slash_added = 1;
798 # File::Spec->canonpath doesn't collapse x/../y into y (for a
799 # good reason), so let's do this manually.
800 $path =~ s#/+#/#g;
801 $path =~ s#/\.(?:/|$)#/#g;
802 $path =~ s#/[^/]+/\.\.##g;
803 $path =~ s#/$##g;
804 $path =~ s#^\./## if $dot_slash_added;
805 $path =~ s#^/##;
806 $path =~ s#^\.$##;
807 return $path;
810 sub canonicalize_url {
811 my ($url) = @_;
812 $url =~ s#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
813 return $url;
816 # get_svnprops(PATH)
817 # ------------------
818 # Helper for cmd_propget and cmd_proplist below.
819 sub get_svnprops {
820 my $path = shift;
821 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
822 $gs ||= Git::SVN->new;
824 # prefix THE PATH by the sub-directory from which the user
825 # invoked us.
826 $path = $cmd_dir_prefix . $path;
827 fatal("No such file or directory: $path") unless -e $path;
828 my $is_dir = -d $path ? 1 : 0;
829 $path = $gs->{path} . '/' . $path;
831 # canonicalize the path (otherwise libsvn will abort or fail to
832 # find the file)
833 $path = canonicalize_path($path);
835 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
836 my $props;
837 if ($is_dir) {
838 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
840 else {
841 (undef, $props) = $gs->ra->get_file($path, $r, undef);
843 return $props;
846 # cmd_propget (PROP, PATH)
847 # ------------------------
848 # Print the SVN property PROP for PATH.
849 sub cmd_propget {
850 my ($prop, $path) = @_;
851 $path = '.' if not defined $path;
852 usage(1) if not defined $prop;
853 my $props = get_svnprops($path);
854 if (not defined $props->{$prop}) {
855 fatal("`$path' does not have a `$prop' SVN property.");
857 print $props->{$prop} . "\n";
860 # cmd_proplist (PATH)
861 # -------------------
862 # Print the list of SVN properties for PATH.
863 sub cmd_proplist {
864 my $path = shift;
865 $path = '.' if not defined $path;
866 my $props = get_svnprops($path);
867 print "Properties on '$path':\n";
868 foreach (sort keys %{$props}) {
869 print " $_\n";
873 sub cmd_multi_init {
874 my $url = shift;
875 unless (defined $_trunk || @_branches || @_tags) {
876 usage(1);
879 $_prefix = '' unless defined $_prefix;
880 if (defined $url) {
881 $url = canonicalize_url($url);
882 init_subdir(@_);
884 do_git_init_db();
885 if (defined $_trunk) {
886 my $trunk_ref = $_prefix . 'trunk';
887 # try both old-style and new-style lookups:
888 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
889 unless ($gs_trunk) {
890 my ($trunk_url, $trunk_path) =
891 complete_svn_url($url, $_trunk);
892 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
893 undef, $trunk_ref);
896 return unless @_branches || @_tags;
897 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
898 foreach my $path (@_branches) {
899 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
901 foreach my $path (@_tags) {
902 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
906 sub cmd_multi_fetch {
907 my $remotes = Git::SVN::read_all_remotes();
908 foreach my $repo_id (sort keys %$remotes) {
909 if ($remotes->{$repo_id}->{url}) {
910 Git::SVN::fetch_all($repo_id, $remotes);
915 # this command is special because it requires no metadata
916 sub cmd_commit_diff {
917 my ($ta, $tb, $url) = @_;
918 my $usage = "Usage: $0 commit-diff -r<revision> ".
919 "<tree-ish> <tree-ish> [<URL>]";
920 fatal($usage) if (!defined $ta || !defined $tb);
921 my $svn_path = '';
922 if (!defined $url) {
923 my $gs = eval { Git::SVN->new };
924 if (!$gs) {
925 fatal("Needed URL or usable git-svn --id in ",
926 "the command-line\n", $usage);
928 $url = $gs->{url};
929 $svn_path = $gs->{path};
931 unless (defined $_revision) {
932 fatal("-r|--revision is a required argument\n", $usage);
934 if (defined $_message && defined $_file) {
935 fatal("Both --message/-m and --file/-F specified ",
936 "for the commit message.\n",
937 "I have no idea what you mean");
939 if (defined $_file) {
940 $_message = file_to_s($_file);
941 } else {
942 $_message ||= get_commit_entry($tb)->{log};
944 my $ra ||= Git::SVN::Ra->new($url);
945 my $r = $_revision;
946 if ($r eq 'HEAD') {
947 $r = $ra->get_latest_revnum;
948 } elsif ($r !~ /^\d+$/) {
949 die "revision argument: $r not understood by git-svn\n";
951 my %ed_opts = ( r => $r,
952 log => $_message,
953 ra => $ra,
954 tree_a => $ta,
955 tree_b => $tb,
956 editor_cb => sub { print "Committed r$_[0]\n" },
957 svn_path => $svn_path );
958 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
959 print "No changes\n$ta == $tb\n";
963 sub escape_uri_only {
964 my ($uri) = @_;
965 my @tmp;
966 foreach (split m{/}, $uri) {
967 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
968 push @tmp, $_;
970 join('/', @tmp);
973 sub escape_url {
974 my ($url) = @_;
975 if ($url =~ m#^([^:]+)://([^/]*)(.*)$#) {
976 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
977 $url = "$scheme://$domain$uri";
979 $url;
982 sub cmd_info {
983 my $path = canonicalize_path(defined($_[0]) ? $_[0] : ".");
984 my $fullpath = canonicalize_path($cmd_dir_prefix . $path);
985 if (exists $_[1]) {
986 die "Too many arguments specified\n";
989 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
991 if (!$file_type && !$diff_status) {
992 print STDERR "svn: '$path' is not under version control\n";
993 exit 1;
996 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
997 unless ($gs) {
998 die "Unable to determine upstream SVN information from ",
999 "working tree history\n";
1002 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1003 $path = "." if $path eq "";
1005 my $full_url = $url . ($fullpath eq "" ? "" : "/$fullpath");
1007 if ($_url) {
1008 print escape_url($full_url), "\n";
1009 return;
1012 my $result = "Path: $path\n";
1013 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
1014 $result .= "URL: " . escape_url($full_url) . "\n";
1016 eval {
1017 my $repos_root = $gs->repos_root;
1018 Git::SVN::remove_username($repos_root);
1019 $result .= "Repository Root: " . escape_url($repos_root) . "\n";
1021 if ($@) {
1022 $result .= "Repository Root: (offline)\n";
1024 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
1025 ($SVN::Core::VERSION le '1.5.4' || $file_type ne "dir");
1026 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1028 $result .= "Node Kind: " .
1029 ($file_type eq "dir" ? "directory" : "file") . "\n";
1031 my $schedule = $diff_status eq "A"
1032 ? "add"
1033 : ($diff_status eq "D" ? "delete" : "normal");
1034 $result .= "Schedule: $schedule\n";
1036 if ($diff_status eq "A") {
1037 print $result, "\n";
1038 return;
1041 my ($lc_author, $lc_rev, $lc_date_utc);
1042 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath);
1043 my $log = command_output_pipe(@args);
1044 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1045 while (<$log>) {
1046 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1047 $lc_author = $1;
1048 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1049 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1050 (undef, $lc_rev, undef) = ::extract_metadata($1);
1053 close $log;
1055 Git::SVN::Log::set_local_timezone();
1057 $result .= "Last Changed Author: $lc_author\n";
1058 $result .= "Last Changed Rev: $lc_rev\n";
1059 $result .= "Last Changed Date: " .
1060 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1062 if ($file_type ne "dir") {
1063 my $text_last_updated_date =
1064 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1065 $result .=
1066 "Text Last Updated: " .
1067 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1068 "\n";
1069 my $checksum;
1070 if ($diff_status eq "D") {
1071 my ($fh, $ctx) =
1072 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1073 if ($file_type eq "link") {
1074 my $file_name = <$fh>;
1075 $checksum = md5sum("link $file_name");
1076 } else {
1077 $checksum = md5sum($fh);
1079 command_close_pipe($fh, $ctx);
1080 } elsif ($file_type eq "link") {
1081 my $file_name =
1082 command(qw(cat-file blob), "HEAD:$path");
1083 $checksum =
1084 md5sum("link " . $file_name);
1085 } else {
1086 open FILE, "<", $path or die $!;
1087 $checksum = md5sum(\*FILE);
1088 close FILE or die $!;
1090 $result .= "Checksum: " . $checksum . "\n";
1093 print $result, "\n";
1096 sub cmd_reset {
1097 my $target = shift || $_revision or die "SVN revision required\n";
1098 $target = $1 if $target =~ /^r(\d+)$/;
1099 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1100 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1101 unless ($gs) {
1102 die "Unable to determine upstream SVN information from ".
1103 "history\n";
1105 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
1106 $gs->rev_map_set($r, $c, 'reset', $uuid);
1107 print "r$r = $c ($gs->{ref_id})\n";
1110 ########################### utility functions #########################
1112 sub rebase_cmd {
1113 my @cmd = qw/rebase/;
1114 push @cmd, '-v' if $_verbose;
1115 push @cmd, qw/--merge/ if $_merge;
1116 push @cmd, "--strategy=$_strategy" if $_strategy;
1117 @cmd;
1120 sub post_fetch_checkout {
1121 return if $_no_checkout;
1122 my $gs = $Git::SVN::_head or return;
1123 return if verify_ref('refs/heads/master^0');
1125 my $valid_head = verify_ref('HEAD^0');
1126 command_noisy(qw(update-ref refs/heads/master), $gs->refname);
1127 return if ($valid_head || !verify_ref('HEAD^0'));
1129 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1130 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1131 return if -f $index;
1133 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
1134 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1135 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1136 print STDERR "Checked out HEAD:\n ",
1137 $gs->full_url, " r", $gs->last_rev, "\n";
1140 sub complete_svn_url {
1141 my ($url, $path) = @_;
1142 $path =~ s#/+$##;
1143 if ($path !~ m#^[a-z\+]+://#) {
1144 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1145 fatal("E: '$path' is not a complete URL ",
1146 "and a separate URL is not specified");
1148 return ($url, $path);
1150 return ($path, '');
1153 sub complete_url_ls_init {
1154 my ($ra, $repo_path, $switch, $pfx) = @_;
1155 unless ($repo_path) {
1156 print STDERR "W: $switch not specified\n";
1157 return;
1159 $repo_path =~ s#/+$##;
1160 if ($repo_path =~ m#^[a-z\+]+://#) {
1161 $ra = Git::SVN::Ra->new($repo_path);
1162 $repo_path = '';
1163 } else {
1164 $repo_path =~ s#^/+##;
1165 unless ($ra) {
1166 fatal("E: '$repo_path' is not a complete URL ",
1167 "and a separate URL is not specified");
1170 my $url = $ra->{url};
1171 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1172 my $k = "svn-remote.$gs->{repo_id}.url";
1173 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
1174 if ($orig_url && ($orig_url ne $gs->{url})) {
1175 die "$k already set: $orig_url\n",
1176 "wanted to set to: $gs->{url}\n";
1178 command_oneline('config', $k, $gs->{url}) unless $orig_url;
1179 my $remote_path = "$gs->{path}/$repo_path";
1180 $remote_path =~ s#/+#/#g;
1181 $remote_path =~ s#^/##g;
1182 $remote_path .= "/*" if $remote_path !~ /\*/;
1183 my ($n) = ($switch =~ /^--(\w+)/);
1184 if (length $pfx && $pfx !~ m#/$#) {
1185 die "--prefix='$pfx' must have a trailing slash '/'\n";
1187 command_noisy('config',
1188 '--add',
1189 "svn-remote.$gs->{repo_id}.$n",
1190 "$remote_path:refs/remotes/$pfx*" .
1191 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
1194 sub verify_ref {
1195 my ($ref) = @_;
1196 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1197 { STDERR => 0 }); };
1200 sub get_tree_from_treeish {
1201 my ($treeish) = @_;
1202 # $treeish can be a symbolic ref, too:
1203 my $type = command_oneline(qw/cat-file -t/, $treeish);
1204 my $expected;
1205 while ($type eq 'tag') {
1206 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
1208 if ($type eq 'commit') {
1209 $expected = (grep /^tree /, command(qw/cat-file commit/,
1210 $treeish))[0];
1211 ($expected) = ($expected =~ /^tree ($sha1)$/o);
1212 die "Unable to get tree from $treeish\n" unless $expected;
1213 } elsif ($type eq 'tree') {
1214 $expected = $treeish;
1215 } else {
1216 die "$treeish is a $type, expected tree, tag or commit\n";
1218 return $expected;
1221 sub get_commit_entry {
1222 my ($treeish) = shift;
1223 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1224 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1225 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1226 open my $log_fh, '>', $commit_editmsg or croak $!;
1228 my $type = command_oneline(qw/cat-file -t/, $treeish);
1229 if ($type eq 'commit' || $type eq 'tag') {
1230 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
1231 $type, $treeish);
1232 my $in_msg = 0;
1233 my $author;
1234 my $saw_from = 0;
1235 my $msgbuf = "";
1236 while (<$msg_fh>) {
1237 if (!$in_msg) {
1238 $in_msg = 1 if (/^\s*$/);
1239 $author = $1 if (/^author (.*>)/);
1240 } elsif (/^git-svn-id: /) {
1241 # skip this for now, we regenerate the
1242 # correct one on re-fetch anyways
1243 # TODO: set *:merge properties or like...
1244 } else {
1245 if (/^From:/ || /^Signed-off-by:/) {
1246 $saw_from = 1;
1248 $msgbuf .= $_;
1251 $msgbuf =~ s/\s+$//s;
1252 if ($Git::SVN::_add_author_from && defined($author)
1253 && !$saw_from) {
1254 $msgbuf .= "\n\nFrom: $author";
1256 print $log_fh $msgbuf or croak $!;
1257 command_close_pipe($msg_fh, $ctx);
1259 close $log_fh or croak $!;
1261 if ($_edit || ($type eq 'tree')) {
1262 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
1263 # TODO: strip out spaces, comments, like git-commit.sh
1264 system($editor, $commit_editmsg);
1266 rename $commit_editmsg, $commit_msg or croak $!;
1268 require Encode;
1269 # SVN requires messages to be UTF-8 when entering the repo
1270 local $/;
1271 open $log_fh, '<', $commit_msg or croak $!;
1272 binmode $log_fh;
1273 chomp($log_entry{log} = <$log_fh>);
1275 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1276 my $msg = $log_entry{log};
1278 eval { $msg = Encode::decode($enc, $msg, 1) };
1279 if ($@) {
1280 die "Could not decode as $enc:\n", $msg,
1281 "\nPerhaps you need to set i18n.commitencoding\n";
1284 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1285 die "Could not encode as UTF-8:\n$msg\n" if $@;
1287 $log_entry{log} = $msg;
1289 close $log_fh or croak $!;
1291 unlink $commit_msg;
1292 \%log_entry;
1295 sub s_to_file {
1296 my ($str, $file, $mode) = @_;
1297 open my $fd,'>',$file or croak $!;
1298 print $fd $str,"\n" or croak $!;
1299 close $fd or croak $!;
1300 chmod ($mode &~ umask, $file) if (defined $mode);
1303 sub file_to_s {
1304 my $file = shift;
1305 open my $fd,'<',$file or croak "$!: file: $file\n";
1306 local $/;
1307 my $ret = <$fd>;
1308 close $fd or croak $!;
1309 $ret =~ s/\s*$//s;
1310 return $ret;
1313 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1314 sub load_authors {
1315 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
1316 my $log = $cmd eq 'log';
1317 while (<$authors>) {
1318 chomp;
1319 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
1320 my ($user, $name, $email) = ($1, $2, $3);
1321 if ($log) {
1322 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1323 } else {
1324 $users{$user} = [$name, $email];
1327 close $authors or croak $!;
1330 # convert GetOpt::Long specs for use by git-config
1331 sub read_repo_config {
1332 return unless -d $ENV{GIT_DIR};
1333 my $opts = shift;
1334 my @config_only;
1335 foreach my $o (keys %$opts) {
1336 # if we have mixedCase and a long option-only, then
1337 # it's a config-only variable that we don't need for
1338 # the command-line.
1339 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
1340 my $v = $opts->{$o};
1341 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
1342 $key =~ s/-//g;
1343 my $arg = 'git config';
1344 $arg .= ' --int' if ($o =~ /[:=]i$/);
1345 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1346 if (ref $v eq 'ARRAY') {
1347 chomp(my @tmp = `$arg --get-all svn.$key`);
1348 @$v = @tmp if @tmp;
1349 } else {
1350 chomp(my $tmp = `$arg --get svn.$key`);
1351 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
1352 $$v = $tmp;
1356 delete @$opts{@config_only} if @config_only;
1359 sub extract_metadata {
1360 my $id = shift or return (undef, undef, undef);
1361 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
1362 \s([a-f\d\-]+)$/ix);
1363 if (!defined $rev || !$uuid || !$url) {
1364 # some of the original repositories I made had
1365 # identifiers like this:
1366 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
1368 return ($url, $rev, $uuid);
1371 sub cmt_metadata {
1372 return extract_metadata((grep(/^git-svn-id: /,
1373 command(qw/cat-file commit/, shift)))[-1]);
1376 sub cmt_sha2rev_batch {
1377 my %s2r;
1378 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1379 my $list = shift;
1381 foreach my $sha (@{$list}) {
1382 my $first = 1;
1383 my $size = 0;
1384 print $out $sha, "\n";
1386 while (my $line = <$in>) {
1387 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1388 last;
1389 } elsif ($first &&
1390 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1391 $first = 0;
1392 $size = $1;
1393 next;
1394 } elsif ($line =~ /^(git-svn-id: )/) {
1395 my (undef, $rev, undef) =
1396 extract_metadata($line);
1397 $s2r{$sha} = $rev;
1400 $size -= length($line);
1401 last if ($size == 0);
1405 command_close_bidi_pipe($pid, $in, $out, $ctx);
1407 return \%s2r;
1410 sub working_head_info {
1411 my ($head, $refs) = @_;
1412 my @args = ('log', '--no-color', '--first-parent', '--pretty=medium');
1413 my ($fh, $ctx) = command_output_pipe(@args, $head);
1414 my $hash;
1415 my %max;
1416 while (<$fh>) {
1417 if ( m{^commit ($::sha1)$} ) {
1418 unshift @$refs, $hash if $hash and $refs;
1419 $hash = $1;
1420 next;
1422 next unless s{^\s*(git-svn-id:)}{$1};
1423 my ($url, $rev, $uuid) = extract_metadata($_);
1424 if (defined $url && defined $rev) {
1425 next if $max{$url} and $max{$url} < $rev;
1426 if (my $gs = Git::SVN->find_by_url($url)) {
1427 my $c = $gs->rev_map_get($rev, $uuid);
1428 if ($c && $c eq $hash) {
1429 close $fh; # break the pipe
1430 return ($url, $rev, $uuid, $gs);
1431 } else {
1432 $max{$url} ||= $gs->rev_map_max;
1437 command_close_pipe($fh, $ctx);
1438 (undef, undef, undef, undef);
1441 sub read_commit_parents {
1442 my ($parents, $c) = @_;
1443 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1444 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1445 @{$parents->{$c}} = split(/ /, $p);
1448 sub linearize_history {
1449 my ($gs, $refs) = @_;
1450 my %parents;
1451 foreach my $c (@$refs) {
1452 read_commit_parents(\%parents, $c);
1455 my @linear_refs;
1456 my %skip = ();
1457 my $last_svn_commit = $gs->last_commit;
1458 foreach my $c (reverse @$refs) {
1459 next if $c eq $last_svn_commit;
1460 last if $skip{$c};
1462 unshift @linear_refs, $c;
1463 $skip{$c} = 1;
1465 # we only want the first parent to diff against for linear
1466 # history, we save the rest to inject when we finalize the
1467 # svn commit
1468 my $fp_a = verify_ref("$c~1");
1469 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1470 if (!$fp_a || !$fp_b) {
1471 die "Commit $c\n",
1472 "has no parent commit, and therefore ",
1473 "nothing to diff against.\n",
1474 "You should be working from a repository ",
1475 "originally created by git-svn\n";
1477 if ($fp_a ne $fp_b) {
1478 die "$c~1 = $fp_a, however parsing commit $c ",
1479 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1482 foreach my $p (@{$parents{$c}}) {
1483 $skip{$p} = 1;
1486 (\@linear_refs, \%parents);
1489 sub find_file_type_and_diff_status {
1490 my ($path) = @_;
1491 return ('dir', '') if $path eq '';
1493 my $diff_output =
1494 command_oneline(qw(diff --cached --name-status --), $path) || "";
1495 my $diff_status = (split(' ', $diff_output))[0] || "";
1497 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1499 return (undef, undef) if !$diff_status && !$ls_tree;
1501 if ($diff_status eq "A") {
1502 return ("link", $diff_status) if -l $path;
1503 return ("dir", $diff_status) if -d $path;
1504 return ("file", $diff_status);
1507 my $mode = (split(' ', $ls_tree))[0] || "";
1509 return ("link", $diff_status) if $mode eq "120000";
1510 return ("dir", $diff_status) if $mode eq "040000";
1511 return ("file", $diff_status);
1514 sub md5sum {
1515 my $arg = shift;
1516 my $ref = ref $arg;
1517 my $md5 = Digest::MD5->new();
1518 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
1519 $md5->addfile($arg) or croak $!;
1520 } elsif ($ref eq 'SCALAR') {
1521 $md5->add($$arg) or croak $!;
1522 } elsif (!$ref) {
1523 $md5->add($arg) or croak $!;
1524 } else {
1525 ::fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1527 return $md5->hexdigest();
1530 package Git::SVN;
1531 use strict;
1532 use warnings;
1533 use Fcntl qw/:DEFAULT :seek/;
1534 use constant rev_map_fmt => 'NH40';
1535 use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
1536 $_repack $_repack_flags $_use_svm_props $_head
1537 $_use_svnsync_props $no_reuse_existing $_minimize_url
1538 $_use_log_author $_add_author_from $_localtime/;
1539 use Carp qw/croak/;
1540 use File::Path qw/mkpath/;
1541 use File::Copy qw/copy/;
1542 use IPC::Open3;
1544 my ($_gc_nr, $_gc_period);
1546 # properties that we do not log:
1547 my %SKIP_PROP;
1548 BEGIN {
1549 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
1550 svn:special svn:executable
1551 svn:entry:committed-rev
1552 svn:entry:last-author
1553 svn:entry:uuid
1554 svn:entry:committed-date/;
1556 # some options are read globally, but can be overridden locally
1557 # per [svn-remote "..."] section. Command-line options will *NOT*
1558 # override options set in an [svn-remote "..."] section
1559 no strict 'refs';
1560 for my $option (qw/follow_parent no_metadata use_svm_props
1561 use_svnsync_props/) {
1562 my $key = $option;
1563 $key =~ tr/_//d;
1564 my $prop = "-$option";
1565 *$option = sub {
1566 my ($self) = @_;
1567 return $self->{$prop} if exists $self->{$prop};
1568 my $k = "svn-remote.$self->{repo_id}.$key";
1569 eval { command_oneline(qw/config --get/, $k) };
1570 if ($@) {
1571 $self->{$prop} = ${"Git::SVN::_$option"};
1572 } else {
1573 my $v = command_oneline(qw/config --bool/,$k);
1574 $self->{$prop} = $v eq 'false' ? 0 : 1;
1576 return $self->{$prop};
1582 my (%LOCKFILES, %INDEX_FILES);
1583 END {
1584 unlink keys %LOCKFILES if %LOCKFILES;
1585 unlink keys %INDEX_FILES if %INDEX_FILES;
1588 sub resolve_local_globs {
1589 my ($url, $fetch, $glob_spec) = @_;
1590 return unless defined $glob_spec;
1591 my $ref = $glob_spec->{ref};
1592 my $path = $glob_spec->{path};
1593 foreach (command(qw#for-each-ref --format=%(refname) refs/remotes#)) {
1594 next unless m#^refs/remotes/$ref->{regex}$#;
1595 my $p = $1;
1596 my $pathname = desanitize_refname($path->full_path($p));
1597 my $refname = desanitize_refname($ref->full_path($p));
1598 if (my $existing = $fetch->{$pathname}) {
1599 if ($existing ne $refname) {
1600 die "Refspec conflict:\n",
1601 "existing: refs/remotes/$existing\n",
1602 " globbed: refs/remotes/$refname\n";
1604 my $u = (::cmt_metadata("refs/remotes/$refname"))[0];
1605 $u =~ s!^\Q$url\E(/|$)!! or die
1606 "refs/remotes/$refname: '$url' not found in '$u'\n";
1607 if ($pathname ne $u) {
1608 warn "W: Refspec glob conflict ",
1609 "(ref: refs/remotes/$refname):\n",
1610 "expected path: $pathname\n",
1611 " real path: $u\n",
1612 "Continuing ahead with $u\n";
1613 next;
1615 } else {
1616 $fetch->{$pathname} = $refname;
1621 sub parse_revision_argument {
1622 my ($base, $head) = @_;
1623 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
1624 return ($base, $head);
1626 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
1627 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
1628 return ($head, $head) if ($::_revision eq 'HEAD');
1629 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
1630 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
1631 die "revision argument: $::_revision not understood by git-svn\n";
1634 sub fetch_all {
1635 my ($repo_id, $remotes) = @_;
1636 if (ref $repo_id) {
1637 my $gs = $repo_id;
1638 $repo_id = undef;
1639 $repo_id = $gs->{repo_id};
1641 $remotes ||= read_all_remotes();
1642 my $remote = $remotes->{$repo_id} or
1643 die "[svn-remote \"$repo_id\"] unknown\n";
1644 my $fetch = $remote->{fetch};
1645 my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
1646 my (@gs, @globs);
1647 my $ra = Git::SVN::Ra->new($url);
1648 my $uuid = $ra->get_uuid;
1649 my $head = $ra->get_latest_revnum;
1650 my $base = defined $fetch ? $head : 0;
1652 # read the max revs for wildcard expansion (branches/*, tags/*)
1653 foreach my $t (qw/branches tags/) {
1654 defined $remote->{$t} or next;
1655 push @globs, @{$remote->{$t}};
1657 my $max_rev = eval { tmp_config(qw/--int --get/,
1658 "svn-remote.$repo_id.${t}-maxRev") };
1659 if (defined $max_rev && ($max_rev < $base)) {
1660 $base = $max_rev;
1661 } elsif (!defined $max_rev) {
1662 $base = 0;
1666 if ($fetch) {
1667 foreach my $p (sort keys %$fetch) {
1668 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
1669 my $lr = $gs->rev_map_max;
1670 if (defined $lr) {
1671 $base = $lr if ($lr < $base);
1673 push @gs, $gs;
1677 ($base, $head) = parse_revision_argument($base, $head);
1678 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
1681 sub read_all_remotes {
1682 my $r = {};
1683 my $use_svm_props = eval { command_oneline(qw/config --bool
1684 svn.useSvmProps/) };
1685 $use_svm_props = $use_svm_props eq 'true' if $use_svm_props;
1686 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
1687 if (m!^(.+)\.fetch=\s*(.*)\s*:\s*(.+)\s*$!) {
1688 my ($remote, $local_ref, $_remote_ref) = ($1, $2, $3);
1689 die("svn-remote.$remote: remote ref '$_remote_ref' "
1690 . "must start with 'refs/remotes/'\n")
1691 unless $_remote_ref =~ m{^refs/remotes/(.+)};
1692 my $remote_ref = $1;
1693 $local_ref =~ s{^/}{};
1694 $r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
1695 $r->{$remote}->{svm} = {} if $use_svm_props;
1696 } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
1697 $r->{$1}->{svm} = {};
1698 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
1699 $r->{$1}->{url} = $2;
1700 } elsif (m!^(.+)\.(branches|tags)=
1701 (.*):refs/remotes/(.+)\s*$/!x) {
1702 my ($p, $g) = ($3, $4);
1703 my $rs = {
1704 t => $2,
1705 remote => $1,
1706 path => Git::SVN::GlobSpec->new($p),
1707 ref => Git::SVN::GlobSpec->new($g) };
1708 if (length($rs->{ref}->{right}) != 0) {
1709 die "The '*' glob character must be the last ",
1710 "character of '$g'\n";
1712 push @{ $r->{$1}->{$2} }, $rs;
1716 map {
1717 if (defined $r->{$_}->{svm}) {
1718 my $svm;
1719 eval {
1720 my $section = "svn-remote.$_";
1721 $svm = {
1722 source => tmp_config('--get',
1723 "$section.svm-source"),
1724 replace => tmp_config('--get',
1725 "$section.svm-replace"),
1728 $r->{$_}->{svm} = $svm;
1730 } keys %$r;
1735 sub init_vars {
1736 $_gc_nr = $_gc_period = 1000;
1737 if (defined $_repack || defined $_repack_flags) {
1738 warn "Repack options are obsolete; they have no effect.\n";
1742 sub verify_remotes_sanity {
1743 return unless -d $ENV{GIT_DIR};
1744 my %seen;
1745 foreach (command(qw/config -l/)) {
1746 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
1747 if ($seen{$1}) {
1748 die "Remote ref refs/remote/$1 is tracked by",
1749 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
1750 "Please resolve this ambiguity in ",
1751 "your git configuration file before ",
1752 "continuing\n";
1754 $seen{$1} = $_;
1759 sub find_existing_remote {
1760 my ($url, $remotes) = @_;
1761 return undef if $no_reuse_existing;
1762 my $existing;
1763 foreach my $repo_id (keys %$remotes) {
1764 my $u = $remotes->{$repo_id}->{url} or next;
1765 next if $u ne $url;
1766 $existing = $repo_id;
1767 last;
1769 $existing;
1772 sub init_remote_config {
1773 my ($self, $url, $no_write) = @_;
1774 $url =~ s!/+$!!; # strip trailing slash
1775 my $r = read_all_remotes();
1776 my $existing = find_existing_remote($url, $r);
1777 if ($existing) {
1778 unless ($no_write) {
1779 print STDERR "Using existing ",
1780 "[svn-remote \"$existing\"]\n";
1782 $self->{repo_id} = $existing;
1783 } elsif ($_minimize_url) {
1784 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1785 $existing = find_existing_remote($min_url, $r);
1786 if ($existing) {
1787 unless ($no_write) {
1788 print STDERR "Using existing ",
1789 "[svn-remote \"$existing\"]\n";
1791 $self->{repo_id} = $existing;
1793 if ($min_url ne $url) {
1794 unless ($no_write) {
1795 print STDERR "Using higher level of URL: ",
1796 "$url => $min_url\n";
1798 my $old_path = $self->{path};
1799 $self->{path} = $url;
1800 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
1801 if (length $old_path) {
1802 $self->{path} .= "/$old_path";
1804 $url = $min_url;
1807 my $orig_url;
1808 if (!$existing) {
1809 # verify that we aren't overwriting anything:
1810 $orig_url = eval {
1811 command_oneline('config', '--get',
1812 "svn-remote.$self->{repo_id}.url")
1814 if ($orig_url && ($orig_url ne $url)) {
1815 die "svn-remote.$self->{repo_id}.url already set: ",
1816 "$orig_url\nwanted to set to: $url\n";
1819 my ($xrepo_id, $xpath) = find_ref($self->refname);
1820 if (defined $xpath) {
1821 die "svn-remote.$xrepo_id.fetch already set to track ",
1822 "$xpath:refs/remotes/", $self->refname, "\n";
1824 unless ($no_write) {
1825 command_noisy('config',
1826 "svn-remote.$self->{repo_id}.url", $url);
1827 $self->{path} =~ s{^/}{};
1828 command_noisy('config', '--add',
1829 "svn-remote.$self->{repo_id}.fetch",
1830 "$self->{path}:".$self->refname);
1832 $self->{url} = $url;
1835 sub find_by_url { # repos_root and, path are optional
1836 my ($class, $full_url, $repos_root, $path) = @_;
1838 return undef unless defined $full_url;
1839 remove_username($full_url);
1840 remove_username($repos_root) if defined $repos_root;
1841 my $remotes = read_all_remotes();
1842 if (defined $full_url && defined $repos_root && !defined $path) {
1843 $path = $full_url;
1844 $path =~ s#^\Q$repos_root\E(?:/|$)##;
1846 foreach my $repo_id (keys %$remotes) {
1847 my $u = $remotes->{$repo_id}->{url} or next;
1848 remove_username($u);
1849 next if defined $repos_root && $repos_root ne $u;
1851 my $fetch = $remotes->{$repo_id}->{fetch} || {};
1852 foreach my $t (qw/branches tags/) {
1853 foreach my $globspec (@{$remotes->{$repo_id}->{$t}}) {
1854 resolve_local_globs($u, $fetch, $globspec);
1857 my $p = $path;
1858 my $rwr = rewrite_root({repo_id => $repo_id});
1859 my $svm = $remotes->{$repo_id}->{svm}
1860 if defined $remotes->{$repo_id}->{svm};
1861 unless (defined $p) {
1862 $p = $full_url;
1863 my $z = $u;
1864 my $prefix = '';
1865 if ($rwr) {
1866 $z = $rwr;
1867 remove_username($z);
1868 } elsif (defined $svm) {
1869 $z = $svm->{source};
1870 $prefix = $svm->{replace};
1871 $prefix =~ s#^\Q$u\E(?:/|$)##;
1872 $prefix =~ s#/$##;
1874 $p =~ s#^\Q$z\E(?:/|$)#$prefix# or next;
1876 foreach my $f (keys %$fetch) {
1877 next if $f ne $p;
1878 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
1881 undef;
1884 sub init {
1885 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
1886 my $self = _new($class, $repo_id, $ref_id, $path);
1887 if (defined $url) {
1888 $self->init_remote_config($url, $no_write);
1890 $self;
1893 sub find_ref {
1894 my ($ref_id) = @_;
1895 foreach (command(qw/config -l/)) {
1896 next unless m!^svn-remote\.(.+)\.fetch=
1897 \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
1898 my ($repo_id, $path, $ref) = ($1, $2, $3);
1899 if ($ref eq $ref_id) {
1900 $path = '' if ($path =~ m#^\./?#);
1901 return ($repo_id, $path);
1904 (undef, undef, undef);
1907 sub new {
1908 my ($class, $ref_id, $repo_id, $path) = @_;
1909 if (defined $ref_id && !defined $repo_id && !defined $path) {
1910 ($repo_id, $path) = find_ref($ref_id);
1911 if (!defined $repo_id) {
1912 die "Could not find a \"svn-remote.*.fetch\" key ",
1913 "in the repository configuration matching: ",
1914 "refs/remotes/$ref_id\n";
1917 my $self = _new($class, $repo_id, $ref_id, $path);
1918 if (!defined $self->{path} || !length $self->{path}) {
1919 my $fetch = command_oneline('config', '--get',
1920 "svn-remote.$repo_id.fetch",
1921 ":refs/remotes/$ref_id\$") or
1922 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
1923 "\":refs/remotes/$ref_id\$\" in config\n";
1924 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
1926 $self->{url} = command_oneline('config', '--get',
1927 "svn-remote.$repo_id.url") or
1928 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
1929 $self->rebuild;
1930 $self;
1933 sub refname {
1934 my ($refname) = "refs/remotes/$_[0]->{ref_id}" ;
1936 # It cannot end with a slash /, we'll throw up on this because
1937 # SVN can't have directories with a slash in their name, either:
1938 if ($refname =~ m{/$}) {
1939 die "ref: '$refname' ends with a trailing slash, this is ",
1940 "not permitted by git nor Subversion\n";
1943 # It cannot have ASCII control character space, tilde ~, caret ^,
1944 # colon :, question-mark ?, asterisk *, space, or open bracket [
1945 # anywhere.
1947 # Additionally, % must be escaped because it is used for escaping
1948 # and we want our escaped refname to be reversible
1949 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
1951 # no slash-separated component can begin with a dot .
1952 # /.* becomes /%2E*
1953 $refname =~ s{/\.}{/%2E}g;
1955 # It cannot have two consecutive dots .. anywhere
1956 # .. becomes %2E%2E
1957 $refname =~ s{\.\.}{%2E%2E}g;
1959 return $refname;
1962 sub desanitize_refname {
1963 my ($refname) = @_;
1964 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
1965 return $refname;
1968 sub svm_uuid {
1969 my ($self) = @_;
1970 return $self->{svm}->{uuid} if $self->svm;
1971 $self->ra;
1972 unless ($self->{svm}) {
1973 die "SVM UUID not cached, and reading remotely failed\n";
1975 $self->{svm}->{uuid};
1978 sub svm {
1979 my ($self) = @_;
1980 return $self->{svm} if $self->{svm};
1981 my $svm;
1982 # see if we have it in our config, first:
1983 eval {
1984 my $section = "svn-remote.$self->{repo_id}";
1985 $svm = {
1986 source => tmp_config('--get', "$section.svm-source"),
1987 uuid => tmp_config('--get', "$section.svm-uuid"),
1988 replace => tmp_config('--get', "$section.svm-replace"),
1991 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
1992 $self->{svm} = $svm;
1994 $self->{svm};
1997 sub _set_svm_vars {
1998 my ($self, $ra) = @_;
1999 return $ra if $self->svm;
2001 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
2002 "(svm:source, svm:uuid) ",
2003 "from the following URLs:\n" );
2004 sub read_svm_props {
2005 my ($self, $ra, $path, $r) = @_;
2006 my $props = ($ra->get_dir($path, $r))[2];
2007 my $src = $props->{'svm:source'};
2008 my $uuid = $props->{'svm:uuid'};
2009 return undef if (!$src || !$uuid);
2011 chomp($src, $uuid);
2013 $uuid =~ m{^[0-9a-f\-]{30,}$}i
2014 or die "doesn't look right - svm:uuid is '$uuid'\n";
2016 # the '!' is used to mark the repos_root!/relative/path
2017 $src =~ s{/?!/?}{/};
2018 $src =~ s{/+$}{}; # no trailing slashes please
2019 # username is of no interest
2020 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
2022 my $replace = $ra->{url};
2023 $replace .= "/$path" if length $path;
2025 my $section = "svn-remote.$self->{repo_id}";
2026 tmp_config("$section.svm-source", $src);
2027 tmp_config("$section.svm-replace", $replace);
2028 tmp_config("$section.svm-uuid", $uuid);
2029 $self->{svm} = {
2030 source => $src,
2031 uuid => $uuid,
2032 replace => $replace
2036 my $r = $ra->get_latest_revnum;
2037 my $path = $self->{path};
2038 my %tried;
2039 while (length $path) {
2040 unless ($tried{"$self->{url}/$path"}) {
2041 return $ra if $self->read_svm_props($ra, $path, $r);
2042 $tried{"$self->{url}/$path"} = 1;
2044 $path =~ s#/?[^/]+$##;
2046 die "Path: '$path' should be ''\n" if $path ne '';
2047 return $ra if $self->read_svm_props($ra, $path, $r);
2048 $tried{"$self->{url}/$path"} = 1;
2050 if ($ra->{repos_root} eq $self->{url}) {
2051 die @err, (map { " $_\n" } keys %tried), "\n";
2054 # nope, make sure we're connected to the repository root:
2055 my $ok;
2056 my @tried_b;
2057 $path = $ra->{svn_path};
2058 $ra = Git::SVN::Ra->new($ra->{repos_root});
2059 while (length $path) {
2060 unless ($tried{"$ra->{url}/$path"}) {
2061 $ok = $self->read_svm_props($ra, $path, $r);
2062 last if $ok;
2063 $tried{"$ra->{url}/$path"} = 1;
2065 $path =~ s#/?[^/]+$##;
2067 die "Path: '$path' should be ''\n" if $path ne '';
2068 $ok ||= $self->read_svm_props($ra, $path, $r);
2069 $tried{"$ra->{url}/$path"} = 1;
2070 if (!$ok) {
2071 die @err, (map { " $_\n" } keys %tried), "\n";
2073 Git::SVN::Ra->new($self->{url});
2076 sub svnsync {
2077 my ($self) = @_;
2078 return $self->{svnsync} if $self->{svnsync};
2080 if ($self->no_metadata) {
2081 die "Can't have both 'noMetadata' and ",
2082 "'useSvnsyncProps' options set!\n";
2084 if ($self->rewrite_root) {
2085 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
2086 "options set!\n";
2089 my $svnsync;
2090 # see if we have it in our config, first:
2091 eval {
2092 my $section = "svn-remote.$self->{repo_id}";
2094 my $url = tmp_config('--get', "$section.svnsync-url");
2095 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
2096 die "doesn't look right - svn:sync-from-url is '$url'\n";
2098 my $uuid = tmp_config('--get', "$section.svnsync-uuid");
2099 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or
2100 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2102 $svnsync = { url => $url, uuid => $uuid }
2104 if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) {
2105 return $self->{svnsync} = $svnsync;
2108 my $err = "useSvnsyncProps set, but failed to read " .
2109 "svnsync property: svn:sync-from-";
2110 my $rp = $self->ra->rev_proplist(0);
2112 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
2113 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
2114 die "doesn't look right - svn:sync-from-url is '$url'\n";
2116 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
2117 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or
2118 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2120 my $section = "svn-remote.$self->{repo_id}";
2121 tmp_config('--add', "$section.svnsync-uuid", $uuid);
2122 tmp_config('--add', "$section.svnsync-url", $url);
2123 return $self->{svnsync} = { url => $url, uuid => $uuid };
2126 # this allows us to memoize our SVN::Ra UUID locally and avoid a
2127 # remote lookup (useful for 'git svn log').
2128 sub ra_uuid {
2129 my ($self) = @_;
2130 unless ($self->{ra_uuid}) {
2131 my $key = "svn-remote.$self->{repo_id}.uuid";
2132 my $uuid = eval { tmp_config('--get', $key) };
2133 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/i) {
2134 $self->{ra_uuid} = $uuid;
2135 } else {
2136 die "ra_uuid called without URL\n" unless $self->{url};
2137 $self->{ra_uuid} = $self->ra->get_uuid;
2138 tmp_config('--add', $key, $self->{ra_uuid});
2141 $self->{ra_uuid};
2144 sub _set_repos_root {
2145 my ($self, $repos_root) = @_;
2146 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2147 $repos_root ||= $self->ra->{repos_root};
2148 tmp_config($k, $repos_root);
2149 $repos_root;
2152 sub repos_root {
2153 my ($self) = @_;
2154 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2155 eval { tmp_config('--get', $k) } || $self->_set_repos_root;
2158 sub ra {
2159 my ($self) = shift;
2160 my $ra = Git::SVN::Ra->new($self->{url});
2161 $self->_set_repos_root($ra->{repos_root});
2162 if ($self->use_svm_props && !$self->{svm}) {
2163 if ($self->no_metadata) {
2164 die "Can't have both 'noMetadata' and ",
2165 "'useSvmProps' options set!\n";
2166 } elsif ($self->use_svnsync_props) {
2167 die "Can't have both 'useSvnsyncProps' and ",
2168 "'useSvmProps' options set!\n";
2170 $ra = $self->_set_svm_vars($ra);
2171 $self->{-want_revprops} = 1;
2173 $ra;
2176 # prop_walk(PATH, REV, SUB)
2177 # -------------------------
2178 # Recursively traverse PATH at revision REV and invoke SUB for each
2179 # directory that contains a SVN property. SUB will be invoked as
2180 # follows: &SUB(gs, path, props); where `gs' is this instance of
2181 # Git::SVN, `path' the path to the directory where the properties
2182 # `props' were found. The `path' will be relative to point of checkout,
2183 # that is, if url://repo/trunk is the current Git branch, and that
2184 # directory contains a sub-directory `d', SUB will be invoked with `/d/'
2185 # as `path' (note the trailing `/').
2186 sub prop_walk {
2187 my ($self, $path, $rev, $sub) = @_;
2189 $path =~ s#^/##;
2190 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
2191 $path =~ s#^/*#/#g;
2192 my $p = $path;
2193 # Strip the irrelevant part of the path.
2194 $p =~ s#^/+\Q$self->{path}\E(/|$)#/#;
2195 # Ensure the path is terminated by a `/'.
2196 $p =~ s#/*$#/#;
2198 # The properties contain all the internal SVN stuff nobody
2199 # (usually) cares about.
2200 my $interesting_props = 0;
2201 foreach (keys %{$props}) {
2202 # If it doesn't start with `svn:', it must be a
2203 # user-defined property.
2204 ++$interesting_props and next if $_ !~ /^svn:/;
2205 # FIXME: Fragile, if SVN adds new public properties,
2206 # this needs to be updated.
2207 ++$interesting_props if /^svn:(?:ignore|keywords|executable
2208 |eol-style|mime-type
2209 |externals|needs-lock)$/x;
2211 &$sub($self, $p, $props) if $interesting_props;
2213 foreach (sort keys %$dirent) {
2214 next if $dirent->{$_}->{kind} != $SVN::Node::dir;
2215 $self->prop_walk($self->{path} . $p . $_, $rev, $sub);
2219 sub last_rev { ($_[0]->last_rev_commit)[0] }
2220 sub last_commit { ($_[0]->last_rev_commit)[1] }
2222 # returns the newest SVN revision number and newest commit SHA1
2223 sub last_rev_commit {
2224 my ($self) = @_;
2225 if (defined $self->{last_rev} && defined $self->{last_commit}) {
2226 return ($self->{last_rev}, $self->{last_commit});
2228 my $c = ::verify_ref($self->refname.'^0');
2229 if ($c && !$self->use_svm_props && !$self->no_metadata) {
2230 my $rev = (::cmt_metadata($c))[1];
2231 if (defined $rev) {
2232 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
2233 return ($rev, $c);
2236 my $map_path = $self->map_path;
2237 unless (-e $map_path) {
2238 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
2239 return (undef, undef);
2241 my ($rev, $commit) = $self->rev_map_max(1);
2242 ($self->{last_rev}, $self->{last_commit}) = ($rev, $commit);
2243 return ($rev, $commit);
2246 sub get_fetch_range {
2247 my ($self, $min, $max) = @_;
2248 $max ||= $self->ra->get_latest_revnum;
2249 $min ||= $self->rev_map_max;
2250 (++$min, $max);
2253 sub tmp_config {
2254 my (@args) = @_;
2255 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
2256 my $config = "$ENV{GIT_DIR}/svn/.metadata";
2257 if (! -f $config && -f $old_def_config) {
2258 rename $old_def_config, $config or
2259 die "Failed rename $old_def_config => $config: $!\n";
2261 my $old_config = $ENV{GIT_CONFIG};
2262 $ENV{GIT_CONFIG} = $config;
2263 $@ = undef;
2264 my @ret = eval {
2265 unless (-f $config) {
2266 mkfile($config);
2267 open my $fh, '>', $config or
2268 die "Can't open $config: $!\n";
2269 print $fh "; This file is used internally by ",
2270 "git-svn\n" or die
2271 "Couldn't write to $config: $!\n";
2272 print $fh "; You should not have to edit it\n" or
2273 die "Couldn't write to $config: $!\n";
2274 close $fh or die "Couldn't close $config: $!\n";
2276 command('config', @args);
2278 my $err = $@;
2279 if (defined $old_config) {
2280 $ENV{GIT_CONFIG} = $old_config;
2281 } else {
2282 delete $ENV{GIT_CONFIG};
2284 die $err if $err;
2285 wantarray ? @ret : $ret[0];
2288 sub tmp_index_do {
2289 my ($self, $sub) = @_;
2290 my $old_index = $ENV{GIT_INDEX_FILE};
2291 $ENV{GIT_INDEX_FILE} = $self->{index};
2292 $@ = undef;
2293 my @ret = eval {
2294 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
2295 mkpath([$dir]) unless -d $dir;
2296 &$sub;
2298 my $err = $@;
2299 if (defined $old_index) {
2300 $ENV{GIT_INDEX_FILE} = $old_index;
2301 } else {
2302 delete $ENV{GIT_INDEX_FILE};
2304 die $err if $err;
2305 wantarray ? @ret : $ret[0];
2308 sub assert_index_clean {
2309 my ($self, $treeish) = @_;
2311 $self->tmp_index_do(sub {
2312 command_noisy('read-tree', $treeish) unless -e $self->{index};
2313 my $x = command_oneline('write-tree');
2314 my ($y) = (command(qw/cat-file commit/, $treeish) =~
2315 /^tree ($::sha1)/mo);
2316 return if $y eq $x;
2318 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2319 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2320 command_noisy('read-tree', $treeish);
2321 $x = command_oneline('write-tree');
2322 if ($y ne $x) {
2323 ::fatal "trees ($treeish) $y != $x\n",
2324 "Something is seriously wrong...";
2329 sub get_commit_parents {
2330 my ($self, $log_entry) = @_;
2331 my (%seen, @ret, @tmp);
2332 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2333 if (my $ip = $self->{inject_parents}) {
2334 if (my $commit = delete $ip->{$log_entry->{revision}}) {
2335 push @tmp, $commit;
2338 if (my $cur = ::verify_ref($self->refname.'^0')) {
2339 push @tmp, $cur;
2341 if (my $ipd = $self->{inject_parents_dcommit}) {
2342 if (my $commit = delete $ipd->{$log_entry->{revision}}) {
2343 push @tmp, @$commit;
2346 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
2347 while (my $p = shift @tmp) {
2348 next if $seen{$p};
2349 $seen{$p} = 1;
2350 push @ret, $p;
2351 # MAXPARENT is defined to 16 in commit-tree.c:
2352 last if @ret >= 16;
2354 if (@tmp) {
2355 die "r$log_entry->{revision}: No room for parents:\n\t",
2356 join("\n\t", @tmp), "\n";
2358 @ret;
2361 sub rewrite_root {
2362 my ($self) = @_;
2363 return $self->{-rewrite_root} if exists $self->{-rewrite_root};
2364 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2365 my $rwr = eval { command_oneline(qw/config --get/, $k) };
2366 if ($rwr) {
2367 $rwr =~ s#/+$##;
2368 if ($rwr !~ m#^[a-z\+]+://#) {
2369 die "$rwr is not a valid URL (key: $k)\n";
2372 $self->{-rewrite_root} = $rwr;
2375 sub metadata_url {
2376 my ($self) = @_;
2377 ($self->rewrite_root || $self->{url}) .
2378 (length $self->{path} ? '/' . $self->{path} : '');
2381 sub full_url {
2382 my ($self) = @_;
2383 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
2387 sub set_commit_header_env {
2388 my ($log_entry) = @_;
2389 my %env;
2390 foreach my $ned (qw/NAME EMAIL DATE/) {
2391 foreach my $ac (qw/AUTHOR COMMITTER/) {
2392 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2396 $ENV{GIT_AUTHOR_NAME} = $log_entry->{name};
2397 $ENV{GIT_AUTHOR_EMAIL} = $log_entry->{email};
2398 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
2400 $ENV{GIT_COMMITTER_NAME} = (defined $log_entry->{commit_name})
2401 ? $log_entry->{commit_name}
2402 : $log_entry->{name};
2403 $ENV{GIT_COMMITTER_EMAIL} = (defined $log_entry->{commit_email})
2404 ? $log_entry->{commit_email}
2405 : $log_entry->{email};
2406 \%env;
2409 sub restore_commit_header_env {
2410 my ($env) = @_;
2411 foreach my $ned (qw/NAME EMAIL DATE/) {
2412 foreach my $ac (qw/AUTHOR COMMITTER/) {
2413 my $k = "GIT_${ac}_${ned}";
2414 if (defined $env->{$k}) {
2415 $ENV{$k} = $env->{$k};
2416 } else {
2417 delete $ENV{$k};
2423 sub gc {
2424 command_noisy('gc', '--auto');
2427 sub do_git_commit {
2428 my ($self, $log_entry) = @_;
2429 my $lr = $self->last_rev;
2430 if (defined $lr && $lr >= $log_entry->{revision}) {
2431 die "Last fetched revision of ", $self->refname,
2432 " was r$lr, but we are about to fetch: ",
2433 "r$log_entry->{revision}!\n";
2435 if (my $c = $self->rev_map_get($log_entry->{revision})) {
2436 croak "$log_entry->{revision} = $c already exists! ",
2437 "Why are we refetching it?\n";
2439 my $old_env = set_commit_header_env($log_entry);
2440 my $tree = $log_entry->{tree};
2441 if (!defined $tree) {
2442 $tree = $self->tmp_index_do(sub {
2443 command_oneline('write-tree') });
2445 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2447 my @exec = ('git', 'commit-tree', $tree);
2448 foreach ($self->get_commit_parents($log_entry)) {
2449 push @exec, '-p', $_;
2451 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2452 or croak $!;
2453 binmode $msg_fh;
2455 # we always get UTF-8 from SVN, but we may want our commits in
2456 # a different encoding.
2457 if (my $enc = Git::config('i18n.commitencoding')) {
2458 require Encode;
2459 Encode::from_to($log_entry->{log}, 'UTF-8', $enc);
2461 print $msg_fh $log_entry->{log} or croak $!;
2462 restore_commit_header_env($old_env);
2463 unless ($self->no_metadata) {
2464 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
2465 or croak $!;
2467 $msg_fh->flush == 0 or croak $!;
2468 close $msg_fh or croak $!;
2469 chomp(my $commit = do { local $/; <$out_fh> });
2470 close $out_fh or croak $!;
2471 waitpid $pid, 0;
2472 croak $? if $?;
2473 if ($commit !~ /^$::sha1$/o) {
2474 die "Failed to commit, invalid sha1: $commit\n";
2477 $self->rev_map_set($log_entry->{revision}, $commit, 1);
2479 $self->{last_rev} = $log_entry->{revision};
2480 $self->{last_commit} = $commit;
2481 print "r$log_entry->{revision}" unless $::_q > 1;
2482 if (defined $log_entry->{svm_revision}) {
2483 print " (\@$log_entry->{svm_revision})" unless $::_q > 1;
2484 $self->rev_map_set($log_entry->{svm_revision}, $commit,
2485 0, $self->svm_uuid);
2487 print " = $commit ($self->{ref_id})\n" unless $::_q > 1;
2488 if (--$_gc_nr == 0) {
2489 $_gc_nr = $_gc_period;
2490 gc();
2492 return $commit;
2495 sub match_paths {
2496 my ($self, $paths, $r) = @_;
2497 return 1 if $self->{path} eq '';
2498 if (my $path = $paths->{"/$self->{path}"}) {
2499 return ($path->{action} eq 'D') ? 0 : 1;
2501 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
2502 if (grep /$self->{path_regex}/, keys %$paths) {
2503 return 1;
2505 my $c = '';
2506 foreach (split m#/#, $self->{path}) {
2507 $c .= "/$_";
2508 next unless ($paths->{$c} &&
2509 ($paths->{$c}->{action} =~ /^[AR]$/));
2510 if ($self->ra->check_path($self->{path}, $r) ==
2511 $SVN::Node::dir) {
2512 return 1;
2515 return 0;
2518 sub find_parent_branch {
2519 my ($self, $paths, $rev) = @_;
2520 return undef unless $self->follow_parent;
2521 unless (defined $paths) {
2522 my $err_handler = $SVN::Error::handler;
2523 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
2524 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1,
2525 sub { $paths = $_[0] });
2526 $SVN::Error::handler = $err_handler;
2528 return undef unless defined $paths;
2530 # look for a parent from another branch:
2531 my @b_path_components = split m#/#, $self->{path};
2532 my @a_path_components;
2533 my $i;
2534 while (@b_path_components) {
2535 $i = $paths->{'/'.join('/', @b_path_components)};
2536 last if $i && defined $i->{copyfrom_path};
2537 unshift(@a_path_components, pop(@b_path_components));
2539 return undef unless defined $i && defined $i->{copyfrom_path};
2540 my $branch_from = $i->{copyfrom_path};
2541 if (@a_path_components) {
2542 print STDERR "branch_from: $branch_from => ";
2543 $branch_from .= '/'.join('/', @a_path_components);
2544 print STDERR $branch_from, "\n";
2546 my $r = $i->{copyfrom_rev};
2547 my $repos_root = $self->ra->{repos_root};
2548 my $url = $self->ra->{url};
2549 my $new_url = $url . $branch_from;
2550 print STDERR "Found possible branch point: ",
2551 "$new_url => ", $self->full_url, ", $r\n";
2552 $branch_from =~ s#^/##;
2553 my $gs = $self->other_gs($new_url, $url,
2554 $branch_from, $r, $self->{ref_id});
2555 my ($r0, $parent) = $gs->find_rev_before($r, 1);
2557 my ($base, $head);
2558 if (!defined $r0 || !defined $parent) {
2559 ($base, $head) = parse_revision_argument(0, $r);
2560 } else {
2561 if ($r0 < $r) {
2562 $gs->ra->get_log([$gs->{path}], $r0 + 1, $r, 1,
2563 0, 1, sub { $base = $_[1] - 1 });
2566 if (defined $base && $base <= $r) {
2567 $gs->fetch($base, $r);
2569 ($r0, $parent) = $gs->find_rev_before($r, 1);
2571 if (defined $r0 && defined $parent) {
2572 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n";
2573 my $ed;
2574 if ($self->ra->can_do_switch) {
2575 $self->assert_index_clean($parent);
2576 print STDERR "Following parent with do_switch\n";
2577 # do_switch works with svn/trunk >= r22312, but that
2578 # is not included with SVN 1.4.3 (the latest version
2579 # at the moment), so we can't rely on it
2580 $self->{last_rev} = $r0;
2581 $self->{last_commit} = $parent;
2582 $ed = SVN::Git::Fetcher->new($self, $gs->{path});
2583 $gs->ra->gs_do_switch($r0, $rev, $gs,
2584 $self->full_url, $ed)
2585 or die "SVN connection failed somewhere...\n";
2586 } elsif ($self->ra->trees_match($new_url, $r0,
2587 $self->full_url, $rev)) {
2588 print STDERR "Trees match:\n",
2589 " $new_url\@$r0\n",
2590 " ${\$self->full_url}\@$rev\n",
2591 "Following parent with no changes\n";
2592 $self->tmp_index_do(sub {
2593 command_noisy('read-tree', $parent);
2595 $self->{last_commit} = $parent;
2596 } else {
2597 print STDERR "Following parent with do_update\n";
2598 $ed = SVN::Git::Fetcher->new($self);
2599 $self->ra->gs_do_update($rev, $rev, $self, $ed)
2600 or die "SVN connection failed somewhere...\n";
2602 print STDERR "Successfully followed parent\n";
2603 return $self->make_log_entry($rev, [$parent], $ed);
2605 return undef;
2608 sub do_fetch {
2609 my ($self, $paths, $rev) = @_;
2610 my $ed;
2611 my ($last_rev, @parents);
2612 if (my $lc = $self->last_commit) {
2613 # we can have a branch that was deleted, then re-added
2614 # under the same name but copied from another path, in
2615 # which case we'll have multiple parents (we don't
2616 # want to break the original ref, nor lose copypath info):
2617 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2618 push @{$log_entry->{parents}}, $lc;
2619 return $log_entry;
2621 $ed = SVN::Git::Fetcher->new($self);
2622 $last_rev = $self->{last_rev};
2623 $ed->{c} = $lc;
2624 @parents = ($lc);
2625 } else {
2626 $last_rev = $rev;
2627 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2628 return $log_entry;
2630 $ed = SVN::Git::Fetcher->new($self);
2632 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
2633 die "SVN connection failed somewhere...\n";
2635 $self->make_log_entry($rev, \@parents, $ed);
2638 sub get_untracked {
2639 my ($self, $ed) = @_;
2640 my @out;
2641 my $h = $ed->{empty};
2642 foreach (sort keys %$h) {
2643 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
2644 push @out, " $act: " . uri_encode($_);
2645 warn "W: $act: $_\n";
2647 foreach my $t (qw/dir_prop file_prop/) {
2648 $h = $ed->{$t} or next;
2649 foreach my $path (sort keys %$h) {
2650 my $ppath = $path eq '' ? '.' : $path;
2651 foreach my $prop (sort keys %{$h->{$path}}) {
2652 next if $SKIP_PROP{$prop};
2653 my $v = $h->{$path}->{$prop};
2654 my $t_ppath_prop = "$t: " .
2655 uri_encode($ppath) . ' ' .
2656 uri_encode($prop);
2657 if (defined $v) {
2658 push @out, " +$t_ppath_prop " .
2659 uri_encode($v);
2660 } else {
2661 push @out, " -$t_ppath_prop";
2666 foreach my $t (qw/absent_file absent_directory/) {
2667 $h = $ed->{$t} or next;
2668 foreach my $parent (sort keys %$h) {
2669 foreach my $path (sort @{$h->{$parent}}) {
2670 push @out, " $t: " .
2671 uri_encode("$parent/$path");
2672 warn "W: $t: $parent/$path ",
2673 "Insufficient permissions?\n";
2677 \@out;
2680 # parse_svn_date(DATE)
2681 # --------------------
2682 # Given a date (in UTC) from Subversion, return a string in the format
2683 # "<TZ Offset> <local date/time>" that Git will use.
2685 # By default the parsed date will be in UTC; if $Git::SVN::_localtime
2686 # is true we'll convert it to the local timezone instead.
2687 sub parse_svn_date {
2688 my $date = shift || return '+0000 1970-01-01 00:00:00';
2689 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
2690 (\d\d)\:(\d\d)\:(\d\d)\.\d*Z$/x) or
2691 croak "Unable to parse date: $date\n";
2692 my $parsed_date; # Set next.
2694 if ($Git::SVN::_localtime) {
2695 # Translate the Subversion datetime to an epoch time.
2696 # Begin by switching ourselves to $date's timezone, UTC.
2697 my $old_env_TZ = $ENV{TZ};
2698 $ENV{TZ} = 'UTC';
2700 my $epoch_in_UTC =
2701 POSIX::strftime('%s', $S, $M, $H, $d, $m - 1, $Y - 1900);
2703 # Determine our local timezone (including DST) at the
2704 # time of $epoch_in_UTC. $Git::SVN::Log::TZ stored the
2705 # value of TZ, if any, at the time we were run.
2706 if (defined $Git::SVN::Log::TZ) {
2707 $ENV{TZ} = $Git::SVN::Log::TZ;
2708 } else {
2709 delete $ENV{TZ};
2712 my $our_TZ =
2713 POSIX::strftime('%Z', $S, $M, $H, $d, $m - 1, $Y - 1900);
2715 # This converts $epoch_in_UTC into our local timezone.
2716 my ($sec, $min, $hour, $mday, $mon, $year,
2717 $wday, $yday, $isdst) = localtime($epoch_in_UTC);
2719 $parsed_date = sprintf('%s %04d-%02d-%02d %02d:%02d:%02d',
2720 $our_TZ, $year + 1900, $mon + 1,
2721 $mday, $hour, $min, $sec);
2723 # Reset us to the timezone in effect when we entered
2724 # this routine.
2725 if (defined $old_env_TZ) {
2726 $ENV{TZ} = $old_env_TZ;
2727 } else {
2728 delete $ENV{TZ};
2730 } else {
2731 $parsed_date = "+0000 $Y-$m-$d $H:$M:$S";
2734 return $parsed_date;
2737 sub other_gs {
2738 my ($self, $new_url, $url,
2739 $branch_from, $r, $old_ref_id) = @_;
2740 my $gs = Git::SVN->find_by_url($new_url, $url, $branch_from);
2741 unless ($gs) {
2742 my $ref_id = $old_ref_id;
2743 $ref_id =~ s/\@\d+$//;
2744 $ref_id .= "\@$r";
2745 # just grow a tail if we're not unique enough :x
2746 $ref_id .= '-' while find_ref($ref_id);
2747 print STDERR "Initializing parent: $ref_id\n";
2748 my ($u, $p, $repo_id) = ($new_url, '', $ref_id);
2749 if ($u =~ s#^\Q$url\E(/|$)##) {
2750 $p = $u;
2751 $u = $url;
2752 $repo_id = $self->{repo_id};
2754 $gs = Git::SVN->init($u, $p, $repo_id, $ref_id, 1);
2759 sub call_authors_prog {
2760 my ($orig_author) = @_;
2761 my $author = `$::_authors_prog $orig_author`;
2762 if ($? != 0) {
2763 die "$::_authors_prog failed with exit code $?\n"
2765 if ($author =~ /^\s*(.+?)\s*<(.*)>\s*$/) {
2766 my ($name, $email) = ($1, $2);
2767 $email = undef if length $2 == 0;
2768 return [$name, $email];
2769 } else {
2770 die "Author: $orig_author: $::_authors_prog returned "
2771 . "invalid author format: $author\n";
2775 sub check_author {
2776 my ($author) = @_;
2777 if (!defined $author || length $author == 0) {
2778 $author = '(no author)';
2780 if (!defined $::users{$author}) {
2781 if (defined $::_authors_prog) {
2782 $::users{$author} = call_authors_prog($author);
2783 } elsif (defined $::_authors) {
2784 die "Author: $author not defined in $::_authors file\n";
2787 $author;
2790 sub make_log_entry {
2791 my ($self, $rev, $parents, $ed) = @_;
2792 my $untracked = $self->get_untracked($ed);
2794 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
2795 print $un "r$rev\n" or croak $!;
2796 print $un $_, "\n" foreach @$untracked;
2797 my %log_entry = ( parents => $parents || [], revision => $rev,
2798 log => '');
2800 my $headrev;
2801 my $logged = delete $self->{logged_rev_props};
2802 if (!$logged || $self->{-want_revprops}) {
2803 my $rp = $self->ra->rev_proplist($rev);
2804 foreach (sort keys %$rp) {
2805 my $v = $rp->{$_};
2806 if (/^svn:(author|date|log)$/) {
2807 $log_entry{$1} = $v;
2808 } elsif ($_ eq 'svm:headrev') {
2809 $headrev = $v;
2810 } else {
2811 print $un " rev_prop: ", uri_encode($_), ' ',
2812 uri_encode($v), "\n";
2815 } else {
2816 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
2818 close $un or croak $!;
2820 $log_entry{date} = parse_svn_date($log_entry{date});
2821 $log_entry{log} .= "\n";
2822 my $author = $log_entry{author} = check_author($log_entry{author});
2823 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
2824 : ($author, undef);
2826 my ($commit_name, $commit_email) = ($name, $email);
2827 if ($_use_log_author) {
2828 my $name_field;
2829 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
2830 $name_field = $1;
2831 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
2832 $name_field = $1;
2834 if (!defined $name_field) {
2835 if (!defined $email) {
2836 $email = $name;
2838 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
2839 ($name, $email) = ($1, $2);
2840 } elsif ($name_field =~ /(.*)@/) {
2841 ($name, $email) = ($1, $name_field);
2842 } else {
2843 ($name, $email) = ($name_field, $name_field);
2846 if (defined $headrev && $self->use_svm_props) {
2847 if ($self->rewrite_root) {
2848 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
2849 "options set!\n";
2851 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$}i;
2852 # we don't want "SVM: initializing mirror for junk" ...
2853 return undef if $r == 0;
2854 my $svm = $self->svm;
2855 if ($uuid ne $svm->{uuid}) {
2856 die "UUID mismatch on SVM path:\n",
2857 "expected: $svm->{uuid}\n",
2858 " got: $uuid\n";
2860 my $full_url = $self->full_url;
2861 $full_url =~ s#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
2862 die "Failed to replace '$svm->{replace}' with ",
2863 "'$svm->{source}' in $full_url\n";
2864 # throw away username for storing in records
2865 remove_username($full_url);
2866 $log_entry{metadata} = "$full_url\@$r $uuid";
2867 $log_entry{svm_revision} = $r;
2868 $email ||= "$author\@$uuid";
2869 $commit_email ||= "$author\@$uuid";
2870 } elsif ($self->use_svnsync_props) {
2871 my $full_url = $self->svnsync->{url};
2872 $full_url .= "/$self->{path}" if length $self->{path};
2873 remove_username($full_url);
2874 my $uuid = $self->svnsync->{uuid};
2875 $log_entry{metadata} = "$full_url\@$rev $uuid";
2876 $email ||= "$author\@$uuid";
2877 $commit_email ||= "$author\@$uuid";
2878 } else {
2879 my $url = $self->metadata_url;
2880 remove_username($url);
2881 $log_entry{metadata} = "$url\@$rev " .
2882 $self->ra->get_uuid;
2883 $email ||= "$author\@" . $self->ra->get_uuid;
2884 $commit_email ||= "$author\@" . $self->ra->get_uuid;
2886 $log_entry{name} = $name;
2887 $log_entry{email} = $email;
2888 $log_entry{commit_name} = $commit_name;
2889 $log_entry{commit_email} = $commit_email;
2890 \%log_entry;
2893 sub fetch {
2894 my ($self, $min_rev, $max_rev, @parents) = @_;
2895 my ($last_rev, $last_commit) = $self->last_rev_commit;
2896 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
2897 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
2900 sub set_tree_cb {
2901 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
2902 $self->{inject_parents} = { $rev => $tree };
2903 $self->fetch(undef, undef);
2906 sub set_tree {
2907 my ($self, $tree) = (shift, shift);
2908 my $log_entry = ::get_commit_entry($tree);
2909 unless ($self->{last_rev}) {
2910 ::fatal("Must have an existing revision to commit");
2912 my %ed_opts = ( r => $self->{last_rev},
2913 log => $log_entry->{log},
2914 ra => $self->ra,
2915 tree_a => $self->{last_commit},
2916 tree_b => $tree,
2917 editor_cb => sub {
2918 $self->set_tree_cb($log_entry, $tree, @_) },
2919 svn_path => $self->{path} );
2920 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
2921 print "No changes\nr$self->{last_rev} = $tree\n";
2925 sub rebuild_from_rev_db {
2926 my ($self, $path) = @_;
2927 my $r = -1;
2928 open my $fh, '<', $path or croak "open: $!";
2929 binmode $fh or croak "binmode: $!";
2930 while (<$fh>) {
2931 length($_) == 41 or croak "inconsistent size in ($_) != 41";
2932 chomp($_);
2933 ++$r;
2934 next if $_ eq ('0' x 40);
2935 $self->rev_map_set($r, $_);
2936 print "r$r = $_\n";
2938 close $fh or croak "close: $!";
2939 unlink $path or croak "unlink: $!";
2942 sub rebuild {
2943 my ($self) = @_;
2944 my $map_path = $self->map_path;
2945 my $partial = (-e $map_path && ! -z $map_path);
2946 return unless ::verify_ref($self->refname.'^0');
2947 if (!$partial && ($self->use_svm_props || $self->no_metadata)) {
2948 my $rev_db = $self->rev_db_path;
2949 $self->rebuild_from_rev_db($rev_db);
2950 if ($self->use_svm_props) {
2951 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
2952 $self->rebuild_from_rev_db($svm_rev_db);
2954 $self->unlink_rev_db_symlink;
2955 return;
2957 print "Rebuilding $map_path ...\n" if (!$partial);
2958 my ($base_rev, $head) = ($partial ? $self->rev_map_max_norebuild(1) :
2959 (undef, undef));
2960 my ($log, $ctx) =
2961 command_output_pipe(qw/rev-list --pretty=raw --no-color --reverse/,
2962 ($head ? "$head.." : "") . $self->refname,
2963 '--');
2964 my $metadata_url = $self->metadata_url;
2965 remove_username($metadata_url);
2966 my $svn_uuid = $self->ra_uuid;
2967 my $c;
2968 while (<$log>) {
2969 if ( m{^commit ($::sha1)$} ) {
2970 $c = $1;
2971 next;
2973 next unless s{^\s*(git-svn-id:)}{$1};
2974 my ($url, $rev, $uuid) = ::extract_metadata($_);
2975 remove_username($url);
2977 # ignore merges (from set-tree)
2978 next if (!defined $rev || !$uuid);
2980 # if we merged or otherwise started elsewhere, this is
2981 # how we break out of it
2982 if (($uuid ne $svn_uuid) ||
2983 ($metadata_url && $url && ($url ne $metadata_url))) {
2984 next;
2986 if ($partial && $head) {
2987 print "Partial-rebuilding $map_path ...\n";
2988 print "Currently at $base_rev = $head\n";
2989 $head = undef;
2992 $self->rev_map_set($rev, $c);
2993 print "r$rev = $c\n";
2995 command_close_pipe($log, $ctx);
2996 print "Done rebuilding $map_path\n" if (!$partial || !$head);
2997 my $rev_db_path = $self->rev_db_path;
2998 if (-f $self->rev_db_path) {
2999 unlink $self->rev_db_path or croak "unlink: $!";
3001 $self->unlink_rev_db_symlink;
3004 # rev_map:
3005 # Tie::File seems to be prone to offset errors if revisions get sparse,
3006 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
3007 # one of my favorite modules is out :< Next up would be one of the DBM
3008 # modules, but I'm not sure which is most portable...
3010 # This is the replacement for the rev_db format, which was too big
3011 # and inefficient for large repositories with a lot of sparse history
3012 # (mainly tags)
3014 # The format is this:
3015 # - 24 bytes for every record,
3016 # * 4 bytes for the integer representing an SVN revision number
3017 # * 20 bytes representing the sha1 of a git commit
3018 # - No empty padding records like the old format
3019 # (except the last record, which can be overwritten)
3020 # - new records are written append-only since SVN revision numbers
3021 # increase monotonically
3022 # - lookups on SVN revision number are done via a binary search
3023 # - Piping the file to xxd -c24 is a good way of dumping it for
3024 # viewing or editing (piped back through xxd -r), should the need
3025 # ever arise.
3026 # - The last record can be padding revision with an all-zero sha1
3027 # This is used to optimize fetch performance when using multiple
3028 # "fetch" directives in .git/config
3030 # These files are disposable unless noMetadata or useSvmProps is set
3032 sub _rev_map_set {
3033 my ($fh, $rev, $commit) = @_;
3035 binmode $fh or croak "binmode: $!";
3036 my $size = (stat($fh))[7];
3037 ($size % 24) == 0 or croak "inconsistent size: $size";
3039 my $wr_offset = 0;
3040 if ($size > 0) {
3041 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
3042 my $read = sysread($fh, my $buf, 24) or croak "read: $!";
3043 $read == 24 or croak "read only $read bytes (!= 24)";
3044 my ($last_rev, $last_commit) = unpack(rev_map_fmt, $buf);
3045 if ($last_commit eq ('0' x40)) {
3046 if ($size >= 48) {
3047 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
3048 $read = sysread($fh, $buf, 24) or
3049 croak "read: $!";
3050 $read == 24 or
3051 croak "read only $read bytes (!= 24)";
3052 ($last_rev, $last_commit) =
3053 unpack(rev_map_fmt, $buf);
3054 if ($last_commit eq ('0' x40)) {
3055 croak "inconsistent .rev_map\n";
3058 if ($last_rev >= $rev) {
3059 croak "last_rev is higher!: $last_rev >= $rev";
3061 $wr_offset = -24;
3064 sysseek($fh, $wr_offset, SEEK_END) or croak "seek: $!";
3065 syswrite($fh, pack(rev_map_fmt, $rev, $commit), 24) == 24 or
3066 croak "write: $!";
3069 sub _rev_map_reset {
3070 my ($fh, $rev, $commit) = @_;
3071 my $c = _rev_map_get($fh, $rev);
3072 $c eq $commit or die "_rev_map_reset(@_) commit $c does not match!\n";
3073 my $offset = sysseek($fh, 0, SEEK_CUR) or croak "seek: $!";
3074 truncate $fh, $offset or croak "truncate: $!";
3077 sub mkfile {
3078 my ($path) = @_;
3079 unless (-e $path) {
3080 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
3081 mkpath([$dir]) unless -d $dir;
3082 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
3083 close $fh or die "Couldn't close (create) $path: $!\n";
3087 sub rev_map_set {
3088 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
3089 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
3090 my $db = $self->map_path($uuid);
3091 my $db_lock = "$db.lock";
3092 my $sig;
3093 $update_ref ||= 0;
3094 if ($update_ref) {
3095 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
3096 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
3098 mkfile($db);
3100 $LOCKFILES{$db_lock} = 1;
3101 my $sync;
3102 # both of these options make our .rev_db file very, very important
3103 # and we can't afford to lose it because rebuild() won't work
3104 if ($self->use_svm_props || $self->no_metadata) {
3105 $sync = 1;
3106 copy($db, $db_lock) or die "rev_map_set(@_): ",
3107 "Failed to copy: ",
3108 "$db => $db_lock ($!)\n";
3109 } else {
3110 rename $db, $db_lock or die "rev_map_set(@_): ",
3111 "Failed to rename: ",
3112 "$db => $db_lock ($!)\n";
3115 sysopen(my $fh, $db_lock, O_RDWR | O_CREAT)
3116 or croak "Couldn't open $db_lock: $!\n";
3117 $update_ref eq 'reset' ? _rev_map_reset($fh, $rev, $commit) :
3118 _rev_map_set($fh, $rev, $commit);
3119 if ($sync) {
3120 $fh->flush or die "Couldn't flush $db_lock: $!\n";
3121 $fh->sync or die "Couldn't sync $db_lock: $!\n";
3123 close $fh or croak $!;
3124 if ($update_ref) {
3125 $_head = $self;
3126 my $note = "";
3127 $note = " ($update_ref)" if ($update_ref !~ /^\d*$/);
3128 command_noisy('update-ref', '-m', "r$rev$note",
3129 $self->refname, $commit);
3131 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
3132 "$db_lock => $db ($!)\n";
3133 delete $LOCKFILES{$db_lock};
3134 if ($update_ref) {
3135 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
3136 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
3137 kill $sig, $$ if defined $sig;
3141 # If want_commit, this will return an array of (rev, commit) where
3142 # commit _must_ be a valid commit in the archive.
3143 # Otherwise, it'll return the max revision (whether or not the
3144 # commit is valid or just a 0x40 placeholder).
3145 sub rev_map_max {
3146 my ($self, $want_commit) = @_;
3147 $self->rebuild;
3148 my ($r, $c) = $self->rev_map_max_norebuild($want_commit);
3149 $want_commit ? ($r, $c) : $r;
3152 sub rev_map_max_norebuild {
3153 my ($self, $want_commit) = @_;
3154 my $map_path = $self->map_path;
3155 stat $map_path or return $want_commit ? (0, undef) : 0;
3156 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
3157 binmode $fh or croak "binmode: $!";
3158 my $size = (stat($fh))[7];
3159 ($size % 24) == 0 or croak "inconsistent size: $size";
3161 if ($size == 0) {
3162 close $fh or croak "close: $!";
3163 return $want_commit ? (0, undef) : 0;
3166 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
3167 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
3168 my ($r, $c) = unpack(rev_map_fmt, $buf);
3169 if ($want_commit && $c eq ('0' x40)) {
3170 if ($size < 48) {
3171 return $want_commit ? (0, undef) : 0;
3173 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
3174 sysread($fh, $buf, 24) == 24 or croak "read: $!";
3175 ($r, $c) = unpack(rev_map_fmt, $buf);
3176 if ($c eq ('0'x40)) {
3177 croak "Penultimate record is all-zeroes in $map_path";
3180 close $fh or croak "close: $!";
3181 $want_commit ? ($r, $c) : $r;
3184 sub rev_map_get {
3185 my ($self, $rev, $uuid) = @_;
3186 my $map_path = $self->map_path($uuid);
3187 return undef unless -e $map_path;
3189 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
3190 my $c = _rev_map_get($fh, $rev);
3191 close($fh) or croak "close: $!";
3195 sub _rev_map_get {
3196 my ($fh, $rev) = @_;
3198 binmode $fh or croak "binmode: $!";
3199 my $size = (stat($fh))[7];
3200 ($size % 24) == 0 or croak "inconsistent size: $size";
3202 if ($size == 0) {
3203 return undef;
3206 my ($l, $u) = (0, $size - 24);
3207 my ($r, $c, $buf);
3209 while ($l <= $u) {
3210 my $i = int(($l/24 + $u/24) / 2) * 24;
3211 sysseek($fh, $i, SEEK_SET) or croak "seek: $!";
3212 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
3213 my ($r, $c) = unpack('NH40', $buf);
3215 if ($r < $rev) {
3216 $l = $i + 24;
3217 } elsif ($r > $rev) {
3218 $u = $i - 24;
3219 } else { # $r == $rev
3220 return $c eq ('0' x 40) ? undef : $c;
3223 undef;
3226 # Finds the first svn revision that exists on (if $eq_ok is true) or
3227 # before $rev for the current branch. It will not search any lower
3228 # than $min_rev. Returns the git commit hash and svn revision number
3229 # if found, else (undef, undef).
3230 sub find_rev_before {
3231 my ($self, $rev, $eq_ok, $min_rev) = @_;
3232 --$rev unless $eq_ok;
3233 $min_rev ||= 1;
3234 my $max_rev = $self->rev_map_max;
3235 $rev = $max_rev if ($rev > $max_rev);
3236 while ($rev >= $min_rev) {
3237 if (my $c = $self->rev_map_get($rev)) {
3238 return ($rev, $c);
3240 --$rev;
3242 return (undef, undef);
3245 # Finds the first svn revision that exists on (if $eq_ok is true) or
3246 # after $rev for the current branch. It will not search any higher
3247 # than $max_rev. Returns the git commit hash and svn revision number
3248 # if found, else (undef, undef).
3249 sub find_rev_after {
3250 my ($self, $rev, $eq_ok, $max_rev) = @_;
3251 ++$rev unless $eq_ok;
3252 $max_rev ||= $self->rev_map_max;
3253 while ($rev <= $max_rev) {
3254 if (my $c = $self->rev_map_get($rev)) {
3255 return ($rev, $c);
3257 ++$rev;
3259 return (undef, undef);
3262 sub _new {
3263 my ($class, $repo_id, $ref_id, $path) = @_;
3264 unless (defined $repo_id && length $repo_id) {
3265 $repo_id = $Git::SVN::default_repo_id;
3267 unless (defined $ref_id && length $ref_id) {
3268 $_[2] = $ref_id = $Git::SVN::default_ref_id;
3270 $_[1] = $repo_id;
3271 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
3272 $_[3] = $path = '' unless (defined $path);
3273 mkpath(["$ENV{GIT_DIR}/svn"]);
3274 bless {
3275 ref_id => $ref_id, dir => $dir, index => "$dir/index",
3276 path => $path, config => "$ENV{GIT_DIR}/svn/config",
3277 map_root => "$dir/.rev_map", repo_id => $repo_id }, $class;
3280 # for read-only access of old .rev_db formats
3281 sub unlink_rev_db_symlink {
3282 my ($self) = @_;
3283 my $link = $self->rev_db_path;
3284 $link =~ s/\.[\w-]+$// or croak "missing UUID at the end of $link";
3285 if (-l $link) {
3286 unlink $link or croak "unlink: $link failed!";
3290 sub rev_db_path {
3291 my ($self, $uuid) = @_;
3292 my $db_path = $self->map_path($uuid);
3293 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
3294 or croak "map_path: $db_path does not contain '/.rev_map.' !";
3295 $db_path;
3298 # the new replacement for .rev_db
3299 sub map_path {
3300 my ($self, $uuid) = @_;
3301 $uuid ||= $self->ra_uuid;
3302 "$self->{map_root}.$uuid";
3305 sub uri_encode {
3306 my ($f) = @_;
3307 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
3311 sub remove_username {
3312 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
3315 package Git::SVN::Prompt;
3316 use strict;
3317 use warnings;
3318 require SVN::Core;
3319 use vars qw/$_no_auth_cache $_username/;
3321 sub simple {
3322 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
3323 $may_save = undef if $_no_auth_cache;
3324 $default_username = $_username if defined $_username;
3325 if (defined $default_username && length $default_username) {
3326 if (defined $realm && length $realm) {
3327 print STDERR "Authentication realm: $realm\n";
3328 STDERR->flush;
3330 $cred->username($default_username);
3331 } else {
3332 username($cred, $realm, $may_save, $pool);
3334 $cred->password(_read_password("Password for '" .
3335 $cred->username . "': ", $realm));
3336 $cred->may_save($may_save);
3337 $SVN::_Core::SVN_NO_ERROR;
3340 sub ssl_server_trust {
3341 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
3342 $may_save = undef if $_no_auth_cache;
3343 print STDERR "Error validating server certificate for '$realm':\n";
3345 no warnings 'once';
3346 # All variables SVN::Auth::SSL::* are used only once,
3347 # so we're shutting up Perl warnings about this.
3348 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
3349 print STDERR " - The certificate is not issued ",
3350 "by a trusted authority. Use the\n",
3351 " fingerprint to validate ",
3352 "the certificate manually!\n";
3354 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
3355 print STDERR " - The certificate hostname ",
3356 "does not match.\n";
3358 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
3359 print STDERR " - The certificate is not yet valid.\n";
3361 if ($failures & $SVN::Auth::SSL::EXPIRED) {
3362 print STDERR " - The certificate has expired.\n";
3364 if ($failures & $SVN::Auth::SSL::OTHER) {
3365 print STDERR " - The certificate has ",
3366 "an unknown error.\n";
3368 } # no warnings 'once'
3369 printf STDERR
3370 "Certificate information:\n".
3371 " - Hostname: %s\n".
3372 " - Valid: from %s until %s\n".
3373 " - Issuer: %s\n".
3374 " - Fingerprint: %s\n",
3375 map $cert_info->$_, qw(hostname valid_from valid_until
3376 issuer_dname fingerprint);
3377 my $choice;
3378 prompt:
3379 print STDERR $may_save ?
3380 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
3381 "(R)eject or accept (t)emporarily? ";
3382 STDERR->flush;
3383 $choice = lc(substr(<STDIN> || 'R', 0, 1));
3384 if ($choice =~ /^t$/i) {
3385 $cred->may_save(undef);
3386 } elsif ($choice =~ /^r$/i) {
3387 return -1;
3388 } elsif ($may_save && $choice =~ /^p$/i) {
3389 $cred->may_save($may_save);
3390 } else {
3391 goto prompt;
3393 $cred->accepted_failures($failures);
3394 $SVN::_Core::SVN_NO_ERROR;
3397 sub ssl_client_cert {
3398 my ($cred, $realm, $may_save, $pool) = @_;
3399 $may_save = undef if $_no_auth_cache;
3400 print STDERR "Client certificate filename: ";
3401 STDERR->flush;
3402 chomp(my $filename = <STDIN>);
3403 $cred->cert_file($filename);
3404 $cred->may_save($may_save);
3405 $SVN::_Core::SVN_NO_ERROR;
3408 sub ssl_client_cert_pw {
3409 my ($cred, $realm, $may_save, $pool) = @_;
3410 $may_save = undef if $_no_auth_cache;
3411 $cred->password(_read_password("Password: ", $realm));
3412 $cred->may_save($may_save);
3413 $SVN::_Core::SVN_NO_ERROR;
3416 sub username {
3417 my ($cred, $realm, $may_save, $pool) = @_;
3418 $may_save = undef if $_no_auth_cache;
3419 if (defined $realm && length $realm) {
3420 print STDERR "Authentication realm: $realm\n";
3422 my $username;
3423 if (defined $_username) {
3424 $username = $_username;
3425 } else {
3426 print STDERR "Username: ";
3427 STDERR->flush;
3428 chomp($username = <STDIN>);
3430 $cred->username($username);
3431 $cred->may_save($may_save);
3432 $SVN::_Core::SVN_NO_ERROR;
3435 sub _read_password {
3436 my ($prompt, $realm) = @_;
3437 print STDERR $prompt;
3438 STDERR->flush;
3439 require Term::ReadKey;
3440 Term::ReadKey::ReadMode('noecho');
3441 my $password = '';
3442 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
3443 last if $key =~ /[\012\015]/; # \n\r
3444 $password .= $key;
3446 Term::ReadKey::ReadMode('restore');
3447 print STDERR "\n";
3448 STDERR->flush;
3449 $password;
3452 package SVN::Git::Fetcher;
3453 use vars qw/@ISA/;
3454 use strict;
3455 use warnings;
3456 use Carp qw/croak/;
3457 use File::Temp qw/tempfile/;
3458 use IO::File qw//;
3459 use vars qw/$_ignore_regex/;
3461 # file baton members: path, mode_a, mode_b, pool, fh, blob, base
3462 sub new {
3463 my ($class, $git_svn, $switch_path) = @_;
3464 my $self = SVN::Delta::Editor->new;
3465 bless $self, $class;
3466 if (exists $git_svn->{last_commit}) {
3467 $self->{c} = $git_svn->{last_commit};
3468 $self->{empty_symlinks} =
3469 _mark_empty_symlinks($git_svn, $switch_path);
3471 $self->{ignore_regex} = eval { command_oneline('config', '--get',
3472 "svn-remote.$git_svn->{repo_id}.ignore-paths") };
3473 $self->{empty} = {};
3474 $self->{dir_prop} = {};
3475 $self->{file_prop} = {};
3476 $self->{absent_dir} = {};
3477 $self->{absent_file} = {};
3478 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
3479 $self;
3482 # this uses the Ra object, so it must be called before do_{switch,update},
3483 # not inside them (when the Git::SVN::Fetcher object is passed) to
3484 # do_{switch,update}
3485 sub _mark_empty_symlinks {
3486 my ($git_svn, $switch_path) = @_;
3487 my $bool = Git::config_bool('svn.brokenSymlinkWorkaround');
3488 return {} if (!defined($bool)) || (defined($bool) && ! $bool);
3490 my %ret;
3491 my ($rev, $cmt) = $git_svn->last_rev_commit;
3492 return {} unless ($rev && $cmt);
3494 # allow the warning to be printed for each revision we fetch to
3495 # ensure the user sees it. The user can also disable the workaround
3496 # on the repository even while git svn is running and the next
3497 # revision fetched will skip this expensive function.
3498 my $printed_warning;
3499 chomp(my $empty_blob = `git hash-object -t blob --stdin < /dev/null`);
3500 my ($ls, $ctx) = command_output_pipe(qw/ls-tree -r -z/, $cmt);
3501 local $/ = "\0";
3502 my $pfx = defined($switch_path) ? $switch_path : $git_svn->{path};
3503 $pfx .= '/' if length($pfx);
3504 while (<$ls>) {
3505 chomp;
3506 s/\A100644 blob $empty_blob\t//o or next;
3507 unless ($printed_warning) {
3508 print STDERR "Scanning for empty symlinks, ",
3509 "this may take a while if you have ",
3510 "many empty files\n",
3511 "You may disable this with `",
3512 "git config svn.brokenSymlinkWorkaround ",
3513 "false'.\n",
3514 "This may be done in a different ",
3515 "terminal without restarting ",
3516 "git svn\n";
3517 $printed_warning = 1;
3519 my $path = $_;
3520 my (undef, $props) =
3521 $git_svn->ra->get_file($pfx.$path, $rev, undef);
3522 if ($props->{'svn:special'}) {
3523 $ret{$path} = 1;
3526 command_close_pipe($ls, $ctx);
3527 \%ret;
3530 # returns true if a given path is inside a ".git" directory
3531 sub in_dot_git {
3532 $_[0] =~ m{(?:^|/)\.git(?:/|$)};
3535 # return value: 0 -- don't ignore, 1 -- ignore
3536 sub is_path_ignored {
3537 my ($self, $path) = @_;
3538 return 1 if in_dot_git($path);
3539 return 1 if defined($self->{ignore_regex}) &&
3540 $path =~ m!$self->{ignore_regex}!;
3541 return 0 unless defined($_ignore_regex);
3542 return 1 if $path =~ m!$_ignore_regex!o;
3543 return 0;
3546 sub set_path_strip {
3547 my ($self, $path) = @_;
3548 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
3551 sub open_root {
3552 { path => '' };
3555 sub open_directory {
3556 my ($self, $path, $pb, $rev) = @_;
3557 { path => $path };
3560 sub git_path {
3561 my ($self, $path) = @_;
3562 if ($self->{path_strip}) {
3563 $path =~ s!$self->{path_strip}!! or
3564 die "Failed to strip path '$path' ($self->{path_strip})\n";
3566 $path;
3569 sub delete_entry {
3570 my ($self, $path, $rev, $pb) = @_;
3571 return undef if $self->is_path_ignored($path);
3573 my $gpath = $self->git_path($path);
3574 return undef if ($gpath eq '');
3576 # remove entire directories.
3577 my ($tree) = (command('ls-tree', '-z', $self->{c}, "./$gpath")
3578 =~ /\A040000 tree ([a-f\d]{40})\t\Q$gpath\E\0/);
3579 if ($tree) {
3580 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3581 -r --name-only -z/,
3582 $tree);
3583 local $/ = "\0";
3584 while (<$ls>) {
3585 chomp;
3586 my $rmpath = "$gpath/$_";
3587 $self->{gii}->remove($rmpath);
3588 print "\tD\t$rmpath\n" unless $::_q;
3590 print "\tD\t$gpath/\n" unless $::_q;
3591 command_close_pipe($ls, $ctx);
3592 $self->{empty}->{$path} = 0
3593 } else {
3594 $self->{gii}->remove($gpath);
3595 print "\tD\t$gpath\n" unless $::_q;
3597 undef;
3600 sub open_file {
3601 my ($self, $path, $pb, $rev) = @_;
3602 my ($mode, $blob);
3604 goto out if $self->is_path_ignored($path);
3606 my $gpath = $self->git_path($path);
3607 ($mode, $blob) = (command('ls-tree', '-z', $self->{c}, "./$gpath")
3608 =~ /\A(\d{6}) blob ([a-f\d]{40})\t\Q$gpath\E\0/);
3609 unless (defined $mode && defined $blob) {
3610 die "$path was not found in commit $self->{c} (r$rev)\n";
3612 if ($mode eq '100644' && $self->{empty_symlinks}->{$path}) {
3613 $mode = '120000';
3615 out:
3616 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
3617 pool => SVN::Pool->new, action => 'M' };
3620 sub add_file {
3621 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
3622 my $mode;
3624 if (!$self->is_path_ignored($path)) {
3625 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3626 delete $self->{empty}->{$dir};
3627 $mode = '100644';
3629 { path => $path, mode_a => $mode, mode_b => $mode,
3630 pool => SVN::Pool->new, action => 'A' };
3633 sub add_directory {
3634 my ($self, $path, $cp_path, $cp_rev) = @_;
3635 goto out if $self->is_path_ignored($path);
3636 my $gpath = $self->git_path($path);
3637 if ($gpath eq '') {
3638 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3639 -r --name-only -z/,
3640 $self->{c});
3641 local $/ = "\0";
3642 while (<$ls>) {
3643 chomp;
3644 $self->{gii}->remove($_);
3645 print "\tD\t$_\n" unless $::_q;
3647 command_close_pipe($ls, $ctx);
3648 $self->{empty}->{$path} = 0;
3650 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3651 delete $self->{empty}->{$dir};
3652 $self->{empty}->{$path} = 1;
3653 out:
3654 { path => $path };
3657 sub change_dir_prop {
3658 my ($self, $db, $prop, $value) = @_;
3659 return undef if $self->is_path_ignored($db->{path});
3660 $self->{dir_prop}->{$db->{path}} ||= {};
3661 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
3662 undef;
3665 sub absent_directory {
3666 my ($self, $path, $pb) = @_;
3667 return undef if $self->is_path_ignored($path);
3668 $self->{absent_dir}->{$pb->{path}} ||= [];
3669 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
3670 undef;
3673 sub absent_file {
3674 my ($self, $path, $pb) = @_;
3675 return undef if $self->is_path_ignored($path);
3676 $self->{absent_file}->{$pb->{path}} ||= [];
3677 push @{$self->{absent_file}->{$pb->{path}}}, $path;
3678 undef;
3681 sub change_file_prop {
3682 my ($self, $fb, $prop, $value) = @_;
3683 return undef if $self->is_path_ignored($fb->{path});
3684 if ($prop eq 'svn:executable') {
3685 if ($fb->{mode_b} != 120000) {
3686 $fb->{mode_b} = defined $value ? 100755 : 100644;
3688 } elsif ($prop eq 'svn:special') {
3689 $fb->{mode_b} = defined $value ? 120000 : 100644;
3690 } else {
3691 $self->{file_prop}->{$fb->{path}} ||= {};
3692 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
3694 undef;
3697 sub apply_textdelta {
3698 my ($self, $fb, $exp) = @_;
3699 return undef if $self->is_path_ignored($fb->{path});
3700 my $fh = $::_repository->temp_acquire('svn_delta');
3701 # $fh gets auto-closed() by SVN::TxDelta::apply(),
3702 # (but $base does not,) so dup() it for reading in close_file
3703 open my $dup, '<&', $fh or croak $!;
3704 my $base = $::_repository->temp_acquire('git_blob');
3706 if ($fb->{blob}) {
3707 my ($base_is_link, $size);
3709 if ($fb->{mode_a} eq '120000' &&
3710 ! $self->{empty_symlinks}->{$fb->{path}}) {
3711 print $base 'link ' or die "print $!\n";
3712 $base_is_link = 1;
3714 retry:
3715 $size = $::_repository->cat_blob($fb->{blob}, $base);
3716 die "Failed to read object $fb->{blob}" if ($size < 0);
3718 if (defined $exp) {
3719 seek $base, 0, 0 or croak $!;
3720 my $got = ::md5sum($base);
3721 if ($got ne $exp) {
3722 my $err = "Checksum mismatch: ".
3723 "$fb->{path} $fb->{blob}\n" .
3724 "expected: $exp\n" .
3725 " got: $got\n";
3726 if ($base_is_link) {
3727 warn $err,
3728 "Retrying... (possibly ",
3729 "a bad symlink from SVN)\n";
3730 $::_repository->temp_reset($base);
3731 $base_is_link = 0;
3732 goto retry;
3734 die $err;
3738 seek $base, 0, 0 or croak $!;
3739 $fb->{fh} = $fh;
3740 $fb->{base} = $base;
3741 [ SVN::TxDelta::apply($base, $dup, undef, $fb->{path}, $fb->{pool}) ];
3744 sub close_file {
3745 my ($self, $fb, $exp) = @_;
3746 return undef if $self->is_path_ignored($fb->{path});
3748 my $hash;
3749 my $path = $self->git_path($fb->{path});
3750 if (my $fh = $fb->{fh}) {
3751 if (defined $exp) {
3752 seek($fh, 0, 0) or croak $!;
3753 my $got = ::md5sum($fh);
3754 if ($got ne $exp) {
3755 die "Checksum mismatch: $path\n",
3756 "expected: $exp\n got: $got\n";
3759 if ($fb->{mode_b} == 120000) {
3760 sysseek($fh, 0, 0) or croak $!;
3761 my $rd = sysread($fh, my $buf, 5);
3763 if (!defined $rd) {
3764 croak "sysread: $!\n";
3765 } elsif ($rd == 0) {
3766 warn "$path has mode 120000",
3767 " but it points to nothing\n",
3768 "converting to an empty file with mode",
3769 " 100644\n";
3770 $fb->{mode_b} = '100644';
3771 } elsif ($buf ne 'link ') {
3772 warn "$path has mode 120000",
3773 " but is not a link\n";
3774 } else {
3775 my $tmp_fh = $::_repository->temp_acquire(
3776 'svn_hash');
3777 my $res;
3778 while ($res = sysread($fh, my $str, 1024)) {
3779 my $out = syswrite($tmp_fh, $str, $res);
3780 defined($out) && $out == $res
3781 or croak("write ",
3782 Git::temp_path($tmp_fh),
3783 ": $!\n");
3785 defined $res or croak $!;
3787 ($fh, $tmp_fh) = ($tmp_fh, $fh);
3788 Git::temp_release($tmp_fh, 1);
3792 $hash = $::_repository->hash_and_insert_object(
3793 Git::temp_path($fh));
3794 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
3796 Git::temp_release($fb->{base}, 1);
3797 Git::temp_release($fh, 1);
3798 } else {
3799 $hash = $fb->{blob} or die "no blob information\n";
3801 $fb->{pool}->clear;
3802 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
3803 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
3804 undef;
3807 sub abort_edit {
3808 my $self = shift;
3809 $self->{nr} = $self->{gii}->{nr};
3810 delete $self->{gii};
3811 $self->SUPER::abort_edit(@_);
3814 sub close_edit {
3815 my $self = shift;
3816 $self->{git_commit_ok} = 1;
3817 $self->{nr} = $self->{gii}->{nr};
3818 delete $self->{gii};
3819 $self->SUPER::close_edit(@_);
3822 package SVN::Git::Editor;
3823 use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
3824 use strict;
3825 use warnings;
3826 use Carp qw/croak/;
3827 use IO::File;
3829 sub new {
3830 my ($class, $opts) = @_;
3831 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
3832 die "$_ required!\n" unless (defined $opts->{$_});
3835 my $pool = SVN::Pool->new;
3836 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
3837 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
3838 $opts->{r}, $mods);
3840 # $opts->{ra} functions should not be used after this:
3841 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
3842 $opts->{editor_cb}, $pool);
3843 my $self = SVN::Delta::Editor->new(@ce, $pool);
3844 bless $self, $class;
3845 foreach (qw/svn_path r tree_a tree_b/) {
3846 $self->{$_} = $opts->{$_};
3848 $self->{url} = $opts->{ra}->{url};
3849 $self->{mods} = $mods;
3850 $self->{types} = $types;
3851 $self->{pool} = $pool;
3852 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
3853 $self->{rm} = { };
3854 $self->{path_prefix} = length $self->{svn_path} ?
3855 "$self->{svn_path}/" : '';
3856 $self->{config} = $opts->{config};
3857 return $self;
3860 sub generate_diff {
3861 my ($tree_a, $tree_b) = @_;
3862 my @diff_tree = qw(diff-tree -z -r);
3863 if ($_cp_similarity) {
3864 push @diff_tree, "-C$_cp_similarity";
3865 } else {
3866 push @diff_tree, '-C';
3868 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
3869 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
3870 push @diff_tree, $tree_a, $tree_b;
3871 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
3872 local $/ = "\0";
3873 my $state = 'meta';
3874 my @mods;
3875 while (<$diff_fh>) {
3876 chomp $_; # this gets rid of the trailing "\0"
3877 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
3878 ($::sha1)\s($::sha1)\s
3879 ([MTCRAD])\d*$/xo) {
3880 push @mods, { mode_a => $1, mode_b => $2,
3881 sha1_a => $3, sha1_b => $4,
3882 chg => $5 };
3883 if ($5 =~ /^(?:C|R)$/) {
3884 $state = 'file_a';
3885 } else {
3886 $state = 'file_b';
3888 } elsif ($state eq 'file_a') {
3889 my $x = $mods[$#mods] or croak "Empty array\n";
3890 if ($x->{chg} !~ /^(?:C|R)$/) {
3891 croak "Error parsing $_, $x->{chg}\n";
3893 $x->{file_a} = $_;
3894 $state = 'file_b';
3895 } elsif ($state eq 'file_b') {
3896 my $x = $mods[$#mods] or croak "Empty array\n";
3897 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
3898 croak "Error parsing $_, $x->{chg}\n";
3900 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
3901 croak "Error parsing $_, $x->{chg}\n";
3903 $x->{file_b} = $_;
3904 $state = 'meta';
3905 } else {
3906 croak "Error parsing $_\n";
3909 command_close_pipe($diff_fh, $ctx);
3910 \@mods;
3913 sub check_diff_paths {
3914 my ($ra, $pfx, $rev, $mods) = @_;
3915 my %types;
3916 $pfx .= '/' if length $pfx;
3918 sub type_diff_paths {
3919 my ($ra, $types, $path, $rev) = @_;
3920 my @p = split m#/+#, $path;
3921 my $c = shift @p;
3922 unless (defined $types->{$c}) {
3923 $types->{$c} = $ra->check_path($c, $rev);
3925 while (@p) {
3926 $c .= '/' . shift @p;
3927 next if defined $types->{$c};
3928 $types->{$c} = $ra->check_path($c, $rev);
3932 foreach my $m (@$mods) {
3933 foreach my $f (qw/file_a file_b/) {
3934 next unless defined $m->{$f};
3935 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
3936 if (length $pfx.$dir && ! defined $types{$dir}) {
3937 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
3941 \%types;
3944 sub split_path {
3945 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
3948 sub repo_path {
3949 my ($self, $path) = @_;
3950 $self->{path_prefix}.(defined $path ? $path : '');
3953 sub url_path {
3954 my ($self, $path) = @_;
3955 if ($self->{url} =~ m#^https?://#) {
3956 $path =~ s/([^~a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg;
3958 $self->{url} . '/' . $self->repo_path($path);
3961 sub rmdirs {
3962 my ($self) = @_;
3963 my $rm = $self->{rm};
3964 delete $rm->{''}; # we never delete the url we're tracking
3965 return unless %$rm;
3967 foreach (keys %$rm) {
3968 my @d = split m#/#, $_;
3969 my $c = shift @d;
3970 $rm->{$c} = 1;
3971 while (@d) {
3972 $c .= '/' . shift @d;
3973 $rm->{$c} = 1;
3976 delete $rm->{$self->{svn_path}};
3977 delete $rm->{''}; # we never delete the url we're tracking
3978 return unless %$rm;
3980 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
3981 $self->{tree_b});
3982 local $/ = "\0";
3983 while (<$fh>) {
3984 chomp;
3985 my @dn = split m#/#, $_;
3986 while (pop @dn) {
3987 delete $rm->{join '/', @dn};
3989 unless (%$rm) {
3990 close $fh;
3991 return;
3994 command_close_pipe($fh, $ctx);
3996 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
3997 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
3998 $self->close_directory($bat->{$d}, $p);
3999 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
4000 print "\tD+\t$d/\n" unless $::_q;
4001 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
4002 delete $bat->{$d};
4006 sub open_or_add_dir {
4007 my ($self, $full_path, $baton) = @_;
4008 my $t = $self->{types}->{$full_path};
4009 if (!defined $t) {
4010 die "$full_path not known in r$self->{r} or we have a bug!\n";
4013 no warnings 'once';
4014 # SVN::Node::none and SVN::Node::file are used only once,
4015 # so we're shutting up Perl's warnings about them.
4016 if ($t == $SVN::Node::none) {
4017 return $self->add_directory($full_path, $baton,
4018 undef, -1, $self->{pool});
4019 } elsif ($t == $SVN::Node::dir) {
4020 return $self->open_directory($full_path, $baton,
4021 $self->{r}, $self->{pool});
4022 } # no warnings 'once'
4023 print STDERR "$full_path already exists in repository at ",
4024 "r$self->{r} and it is not a directory (",
4025 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
4026 } # no warnings 'once'
4027 exit 1;
4030 sub ensure_path {
4031 my ($self, $path) = @_;
4032 my $bat = $self->{bat};
4033 my $repo_path = $self->repo_path($path);
4034 return $bat->{''} unless (length $repo_path);
4035 my @p = split m#/+#, $repo_path;
4036 my $c = shift @p;
4037 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
4038 while (@p) {
4039 my $c0 = $c;
4040 $c .= '/' . shift @p;
4041 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
4043 return $bat->{$c};
4046 # Subroutine to convert a globbing pattern to a regular expression.
4047 # From perl cookbook.
4048 sub glob2pat {
4049 my $globstr = shift;
4050 my %patmap = ('*' => '.*', '?' => '.', '[' => '[', ']' => ']');
4051 $globstr =~ s{(.)} { $patmap{$1} || "\Q$1" }ge;
4052 return '^' . $globstr . '$';
4055 sub check_autoprop {
4056 my ($self, $pattern, $properties, $file, $fbat) = @_;
4057 # Convert the globbing pattern to a regular expression.
4058 my $regex = glob2pat($pattern);
4059 # Check if the pattern matches the file name.
4060 if($file =~ m/($regex)/) {
4061 # Parse the list of properties to set.
4062 my @props = split(/;/, $properties);
4063 foreach my $prop (@props) {
4064 # Parse 'name=value' syntax and set the property.
4065 if ($prop =~ /([^=]+)=(.*)/) {
4066 my ($n,$v) = ($1,$2);
4067 for ($n, $v) {
4068 s/^\s+//; s/\s+$//;
4070 $self->change_file_prop($fbat, $n, $v);
4076 sub apply_autoprops {
4077 my ($self, $file, $fbat) = @_;
4078 my $conf_t = ${$self->{config}}{'config'};
4079 no warnings 'once';
4080 # Check [miscellany]/enable-auto-props in svn configuration.
4081 if (SVN::_Core::svn_config_get_bool(
4082 $conf_t,
4083 $SVN::_Core::SVN_CONFIG_SECTION_MISCELLANY,
4084 $SVN::_Core::SVN_CONFIG_OPTION_ENABLE_AUTO_PROPS,
4085 0)) {
4086 # Auto-props are enabled. Enumerate them to look for matches.
4087 my $callback = sub {
4088 $self->check_autoprop($_[0], $_[1], $file, $fbat);
4090 SVN::_Core::svn_config_enumerate(
4091 $conf_t,
4092 $SVN::_Core::SVN_CONFIG_SECTION_AUTO_PROPS,
4093 $callback);
4097 sub A {
4098 my ($self, $m) = @_;
4099 my ($dir, $file) = split_path($m->{file_b});
4100 my $pbat = $self->ensure_path($dir);
4101 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4102 undef, -1);
4103 print "\tA\t$m->{file_b}\n" unless $::_q;
4104 $self->apply_autoprops($file, $fbat);
4105 $self->chg_file($fbat, $m);
4106 $self->close_file($fbat,undef,$self->{pool});
4109 sub C {
4110 my ($self, $m) = @_;
4111 my ($dir, $file) = split_path($m->{file_b});
4112 my $pbat = $self->ensure_path($dir);
4113 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4114 $self->url_path($m->{file_a}), $self->{r});
4115 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
4116 $self->chg_file($fbat, $m);
4117 $self->close_file($fbat,undef,$self->{pool});
4120 sub delete_entry {
4121 my ($self, $path, $pbat) = @_;
4122 my $rpath = $self->repo_path($path);
4123 my ($dir, $file) = split_path($rpath);
4124 $self->{rm}->{$dir} = 1;
4125 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
4128 sub R {
4129 my ($self, $m) = @_;
4130 my ($dir, $file) = split_path($m->{file_b});
4131 my $pbat = $self->ensure_path($dir);
4132 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4133 $self->url_path($m->{file_a}), $self->{r});
4134 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
4135 $self->apply_autoprops($file, $fbat);
4136 $self->chg_file($fbat, $m);
4137 $self->close_file($fbat,undef,$self->{pool});
4139 ($dir, $file) = split_path($m->{file_a});
4140 $pbat = $self->ensure_path($dir);
4141 $self->delete_entry($m->{file_a}, $pbat);
4144 sub M {
4145 my ($self, $m) = @_;
4146 my ($dir, $file) = split_path($m->{file_b});
4147 my $pbat = $self->ensure_path($dir);
4148 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
4149 $pbat,$self->{r},$self->{pool});
4150 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
4151 $self->chg_file($fbat, $m);
4152 $self->close_file($fbat,undef,$self->{pool});
4155 sub T { shift->M(@_) }
4157 sub change_file_prop {
4158 my ($self, $fbat, $pname, $pval) = @_;
4159 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
4162 sub _chg_file_get_blob ($$$$) {
4163 my ($self, $fbat, $m, $which) = @_;
4164 my $fh = $::_repository->temp_acquire("git_blob_$which");
4165 if ($m->{"mode_$which"} =~ /^120/) {
4166 print $fh 'link ' or croak $!;
4167 $self->change_file_prop($fbat,'svn:special','*');
4168 } elsif ($m->{mode_a} =~ /^120/ && $m->{"mode_$which"} !~ /^120/) {
4169 $self->change_file_prop($fbat,'svn:special',undef);
4171 my $blob = $m->{"sha1_$which"};
4172 return ($fh,) if ($blob =~ /^0{40}$/);
4173 my $size = $::_repository->cat_blob($blob, $fh);
4174 croak "Failed to read object $blob" if ($size < 0);
4175 $fh->flush == 0 or croak $!;
4176 seek $fh, 0, 0 or croak $!;
4178 my $exp = ::md5sum($fh);
4179 seek $fh, 0, 0 or croak $!;
4180 return ($fh, $exp);
4183 sub chg_file {
4184 my ($self, $fbat, $m) = @_;
4185 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
4186 $self->change_file_prop($fbat,'svn:executable','*');
4187 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
4188 $self->change_file_prop($fbat,'svn:executable',undef);
4190 my ($fh_a, $exp_a) = _chg_file_get_blob $self, $fbat, $m, 'a';
4191 my ($fh_b, $exp_b) = _chg_file_get_blob $self, $fbat, $m, 'b';
4192 my $pool = SVN::Pool->new;
4193 my $atd = $self->apply_textdelta($fbat, $exp_a, $pool);
4194 if (-s $fh_a) {
4195 my $txstream = SVN::TxDelta::new ($fh_a, $fh_b, $pool);
4196 my $res = SVN::TxDelta::send_txstream($txstream, @$atd, $pool);
4197 if (defined $res) {
4198 die "Unexpected result from send_txstream: $res\n",
4199 "(SVN::Core::VERSION: $SVN::Core::VERSION)\n";
4201 } else {
4202 my $got = SVN::TxDelta::send_stream($fh_b, @$atd, $pool);
4203 die "Checksum mismatch\nexpected: $exp_b\ngot: $got\n"
4204 if ($got ne $exp_b);
4206 Git::temp_release($fh_b, 1);
4207 Git::temp_release($fh_a, 1);
4208 $pool->clear;
4211 sub D {
4212 my ($self, $m) = @_;
4213 my ($dir, $file) = split_path($m->{file_b});
4214 my $pbat = $self->ensure_path($dir);
4215 print "\tD\t$m->{file_b}\n" unless $::_q;
4216 $self->delete_entry($m->{file_b}, $pbat);
4219 sub close_edit {
4220 my ($self) = @_;
4221 my ($p,$bat) = ($self->{pool}, $self->{bat});
4222 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
4223 next if $_ eq '';
4224 $self->close_directory($bat->{$_}, $p);
4226 $self->close_directory($bat->{''}, $p);
4227 $self->SUPER::close_edit($p);
4228 $p->clear;
4231 sub abort_edit {
4232 my ($self) = @_;
4233 $self->SUPER::abort_edit($self->{pool});
4236 sub DESTROY {
4237 my $self = shift;
4238 $self->SUPER::DESTROY(@_);
4239 $self->{pool}->clear;
4242 # this drives the editor
4243 sub apply_diff {
4244 my ($self) = @_;
4245 my $mods = $self->{mods};
4246 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
4247 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
4248 my $f = $m->{chg};
4249 if (defined $o{$f}) {
4250 $self->$f($m);
4251 } else {
4252 fatal("Invalid change type: $f");
4255 $self->rmdirs if $_rmdir;
4256 if (@$mods == 0) {
4257 $self->abort_edit;
4258 } else {
4259 $self->close_edit;
4261 return scalar @$mods;
4264 package Git::SVN::Ra;
4265 use vars qw/@ISA $config_dir $_log_window_size/;
4266 use strict;
4267 use warnings;
4268 my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
4270 BEGIN {
4271 # enforce temporary pool usage for some simple functions
4272 no strict 'refs';
4273 for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root
4274 get_file/) {
4275 my $SUPER = "SUPER::$f";
4276 *$f = sub {
4277 my $self = shift;
4278 my $pool = SVN::Pool->new;
4279 my @ret = $self->$SUPER(@_,$pool);
4280 $pool->clear;
4281 wantarray ? @ret : $ret[0];
4286 sub _auth_providers () {
4288 SVN::Client::get_simple_provider(),
4289 SVN::Client::get_ssl_server_trust_file_provider(),
4290 SVN::Client::get_simple_prompt_provider(
4291 \&Git::SVN::Prompt::simple, 2),
4292 SVN::Client::get_ssl_client_cert_file_provider(),
4293 SVN::Client::get_ssl_client_cert_prompt_provider(
4294 \&Git::SVN::Prompt::ssl_client_cert, 2),
4295 SVN::Client::get_ssl_client_cert_pw_file_provider(),
4296 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
4297 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
4298 SVN::Client::get_username_provider(),
4299 SVN::Client::get_ssl_server_trust_prompt_provider(
4300 \&Git::SVN::Prompt::ssl_server_trust),
4301 SVN::Client::get_username_prompt_provider(
4302 \&Git::SVN::Prompt::username, 2)
4306 sub escape_uri_only {
4307 my ($uri) = @_;
4308 my @tmp;
4309 foreach (split m{/}, $uri) {
4310 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
4311 push @tmp, $_;
4313 join('/', @tmp);
4316 sub escape_url {
4317 my ($url) = @_;
4318 if ($url =~ m#^(https?)://([^/]+)(.*)$#) {
4319 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
4320 $url = "$scheme://$domain$uri";
4322 $url;
4325 sub new {
4326 my ($class, $url) = @_;
4327 $url =~ s!/+$!!;
4328 return $RA if ($RA && $RA->{url} eq $url);
4330 SVN::_Core::svn_config_ensure($config_dir, undef);
4331 my ($baton, $callbacks) = SVN::Core::auth_open_helper(_auth_providers);
4332 my $config = SVN::Core::config_get_config($config_dir);
4333 $RA = undef;
4334 my $dont_store_passwords = 1;
4335 my $conf_t = ${$config}{'config'};
4337 no warnings 'once';
4338 # The usage of $SVN::_Core::SVN_CONFIG_* variables
4339 # produces warnings that variables are used only once.
4340 # I had not found the better way to shut them up, so
4341 # the warnings of type 'once' are disabled in this block.
4342 if (SVN::_Core::svn_config_get_bool($conf_t,
4343 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4344 $SVN::_Core::SVN_CONFIG_OPTION_STORE_PASSWORDS,
4345 1) == 0) {
4346 SVN::_Core::svn_auth_set_parameter($baton,
4347 $SVN::_Core::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS,
4348 bless (\$dont_store_passwords, "_p_void"));
4350 if (SVN::_Core::svn_config_get_bool($conf_t,
4351 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4352 $SVN::_Core::SVN_CONFIG_OPTION_STORE_AUTH_CREDS,
4353 1) == 0) {
4354 $Git::SVN::Prompt::_no_auth_cache = 1;
4356 } # no warnings 'once'
4357 my $self = SVN::Ra->new(url => escape_url($url), auth => $baton,
4358 config => $config,
4359 pool => SVN::Pool->new,
4360 auth_provider_callbacks => $callbacks);
4361 $self->{url} = $url;
4362 $self->{svn_path} = $url;
4363 $self->{repos_root} = $self->get_repos_root;
4364 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
4365 $self->{cache} = { check_path => { r => 0, data => {} },
4366 get_dir => { r => 0, data => {} } };
4367 $RA = bless $self, $class;
4370 sub check_path {
4371 my ($self, $path, $r) = @_;
4372 my $cache = $self->{cache}->{check_path};
4373 if ($r == $cache->{r} && exists $cache->{data}->{$path}) {
4374 return $cache->{data}->{$path};
4376 my $pool = SVN::Pool->new;
4377 my $t = $self->SUPER::check_path($path, $r, $pool);
4378 $pool->clear;
4379 if ($r != $cache->{r}) {
4380 %{$cache->{data}} = ();
4381 $cache->{r} = $r;
4383 $cache->{data}->{$path} = $t;
4386 sub get_dir {
4387 my ($self, $dir, $r) = @_;
4388 my $cache = $self->{cache}->{get_dir};
4389 if ($r == $cache->{r}) {
4390 if (my $x = $cache->{data}->{$dir}) {
4391 return wantarray ? @$x : $x->[0];
4394 my $pool = SVN::Pool->new;
4395 my ($d, undef, $props) = $self->SUPER::get_dir($dir, $r, $pool);
4396 my %dirents = map { $_ => { kind => $d->{$_}->kind } } keys %$d;
4397 $pool->clear;
4398 if ($r != $cache->{r}) {
4399 %{$cache->{data}} = ();
4400 $cache->{r} = $r;
4402 $cache->{data}->{$dir} = [ \%dirents, $r, $props ];
4403 wantarray ? (\%dirents, $r, $props) : \%dirents;
4406 sub DESTROY {
4407 # do not call the real DESTROY since we store ourselves in $RA
4410 # get_log(paths, start, end, limit,
4411 # discover_changed_paths, strict_node_history, receiver)
4412 sub get_log {
4413 my ($self, @args) = @_;
4414 my $pool = SVN::Pool->new;
4416 # svn_log_changed_path_t objects passed to get_log are likely to be
4417 # overwritten even if only the refs are copied to an external variable,
4418 # so we should dup the structures in their entirety. Using an
4419 # externally passed pool (instead of our temporary and quickly cleared
4420 # pool in Git::SVN::Ra) does not help matters at all...
4421 my $receiver = pop @args;
4422 my $prefix = "/".$self->{svn_path};
4423 $prefix =~ s#/+($)##;
4424 my $prefix_regex = qr#^\Q$prefix\E#;
4425 push(@args, sub {
4426 my ($paths) = $_[0];
4427 return &$receiver(@_) unless $paths;
4428 $_[0] = ();
4429 foreach my $p (keys %$paths) {
4430 my $i = $paths->{$p};
4431 # Make path relative to our url, not repos_root
4432 $p =~ s/$prefix_regex//;
4433 my %s = map { $_ => $i->$_; }
4434 qw/copyfrom_path copyfrom_rev action/;
4435 if ($s{'copyfrom_path'}) {
4436 $s{'copyfrom_path'} =~ s/$prefix_regex//;
4438 $_[0]{$p} = \%s;
4440 &$receiver(@_);
4444 # the limit parameter was not supported in SVN 1.1.x, so we
4445 # drop it. Therefore, the receiver callback passed to it
4446 # is made aware of this limitation by being wrapped if
4447 # the limit passed to is being wrapped.
4448 if ($SVN::Core::VERSION le '1.2.0') {
4449 my $limit = splice(@args, 3, 1);
4450 if ($limit > 0) {
4451 my $receiver = pop @args;
4452 push(@args, sub { &$receiver(@_) if (--$limit >= 0) });
4455 my $ret = $self->SUPER::get_log(@args, $pool);
4456 $pool->clear;
4457 $ret;
4460 sub trees_match {
4461 my ($self, $url1, $rev1, $url2, $rev2) = @_;
4462 my $ctx = SVN::Client->new(auth => _auth_providers);
4463 my $out = IO::File->new_tmpfile;
4465 # older SVN (1.1.x) doesn't take $pool as the last parameter for
4466 # $ctx->diff(), so we'll create a default one
4467 my $pool = SVN::Pool->new_default_sub;
4469 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
4470 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
4471 $out->flush;
4472 my $ret = (($out->stat)[7] == 0);
4473 close $out or croak $!;
4475 $ret;
4478 sub get_commit_editor {
4479 my ($self, $log, $cb, $pool) = @_;
4480 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
4481 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
4484 sub gs_do_update {
4485 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
4486 my $new = ($rev_a == $rev_b);
4487 my $path = $gs->{path};
4489 if ($new && -e $gs->{index}) {
4490 unlink $gs->{index} or die
4491 "Couldn't unlink index: $gs->{index}: $!\n";
4493 my $pool = SVN::Pool->new;
4494 $editor->set_path_strip($path);
4495 my (@pc) = split m#/#, $path;
4496 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
4497 1, $editor, $pool);
4498 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
4500 # Since we can't rely on svn_ra_reparent being available, we'll
4501 # just have to do some magic with set_path to make it so
4502 # we only want a partial path.
4503 my $sp = '';
4504 my $final = join('/', @pc);
4505 while (@pc) {
4506 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
4507 $sp .= '/' if length $sp;
4508 $sp .= shift @pc;
4510 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
4512 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
4514 $reporter->finish_report($pool);
4515 $pool->clear;
4516 $editor->{git_commit_ok};
4519 # this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
4520 # svn_ra_reparent didn't work before 1.4)
4521 sub gs_do_switch {
4522 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
4523 my $path = $gs->{path};
4524 my $pool = SVN::Pool->new;
4526 my $full_url = $self->{url};
4527 my $old_url = $full_url;
4528 $full_url .= '/' . $path if length $path;
4529 my ($ra, $reparented);
4531 if ($old_url =~ m#^svn(\+ssh)?://# ||
4532 ($full_url =~ m#^https?://# &&
4533 escape_url($full_url) ne $full_url)) {
4534 $_[0] = undef;
4535 $self = undef;
4536 $RA = undef;
4537 $ra = Git::SVN::Ra->new($full_url);
4538 $ra_invalid = 1;
4539 } elsif ($old_url ne $full_url) {
4540 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url, $pool);
4541 $self->{url} = $full_url;
4542 $reparented = 1;
4545 $ra ||= $self;
4546 $url_b = escape_url($url_b);
4547 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
4548 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
4549 $reporter->set_path('', $rev_a, 0, @lock, $pool);
4550 $reporter->finish_report($pool);
4552 if ($reparented) {
4553 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
4554 $self->{url} = $old_url;
4557 $pool->clear;
4558 $editor->{git_commit_ok};
4561 sub longest_common_path {
4562 my ($gsv, $globs) = @_;
4563 my %common;
4564 my $common_max = scalar @$gsv;
4566 foreach my $gs (@$gsv) {
4567 my @tmp = split m#/#, $gs->{path};
4568 my $p = '';
4569 foreach (@tmp) {
4570 $p .= length($p) ? "/$_" : $_;
4571 $common{$p} ||= 0;
4572 $common{$p}++;
4575 $globs ||= [];
4576 $common_max += scalar @$globs;
4577 foreach my $glob (@$globs) {
4578 my @tmp = split m#/#, $glob->{path}->{left};
4579 my $p = '';
4580 foreach (@tmp) {
4581 $p .= length($p) ? "/$_" : $_;
4582 $common{$p} ||= 0;
4583 $common{$p}++;
4587 my $longest_path = '';
4588 foreach (sort {length $b <=> length $a} keys %common) {
4589 if ($common{$_} == $common_max) {
4590 $longest_path = $_;
4591 last;
4594 $longest_path;
4597 sub gs_fetch_loop_common {
4598 my ($self, $base, $head, $gsv, $globs) = @_;
4599 return if ($base > $head);
4600 my $inc = $_log_window_size;
4601 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
4602 my $longest_path = longest_common_path($gsv, $globs);
4603 my $ra_url = $self->{url};
4604 my $find_trailing_edge;
4605 while (1) {
4606 my %revs;
4607 my $err;
4608 my $err_handler = $SVN::Error::handler;
4609 $SVN::Error::handler = sub {
4610 ($err) = @_;
4611 skip_unknown_revs($err);
4613 sub _cb {
4614 my ($paths, $r, $author, $date, $log) = @_;
4615 [ $paths,
4616 { author => $author, date => $date, log => $log } ];
4618 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
4619 sub { $revs{$_[1]} = _cb(@_) });
4620 if ($err) {
4621 print "Checked through r$max\r";
4622 } else {
4623 $find_trailing_edge = 1;
4625 if ($err and $find_trailing_edge) {
4626 print STDERR "Path '$longest_path' ",
4627 "was probably deleted:\n",
4628 $err->expanded_message,
4629 "\nWill attempt to follow ",
4630 "revisions r$min .. r$max ",
4631 "committed before the deletion\n";
4632 my $hi = $max;
4633 while (--$hi >= $min) {
4634 my $ok;
4635 $self->get_log([$longest_path], $min, $hi,
4636 0, 1, 1, sub {
4637 $ok = $_[1];
4638 $revs{$_[1]} = _cb(@_) });
4639 if ($ok) {
4640 print STDERR "r$min .. r$ok OK\n";
4641 last;
4644 $find_trailing_edge = 0;
4646 $SVN::Error::handler = $err_handler;
4648 my %exists = map { $_->{path} => $_ } @$gsv;
4649 foreach my $r (sort {$a <=> $b} keys %revs) {
4650 my ($paths, $logged) = @{$revs{$r}};
4652 foreach my $gs ($self->match_globs(\%exists, $paths,
4653 $globs, $r)) {
4654 if ($gs->rev_map_max >= $r) {
4655 next;
4657 next unless $gs->match_paths($paths, $r);
4658 $gs->{logged_rev_props} = $logged;
4659 if (my $last_commit = $gs->last_commit) {
4660 $gs->assert_index_clean($last_commit);
4662 my $log_entry = $gs->do_fetch($paths, $r);
4663 if ($log_entry) {
4664 $gs->do_git_commit($log_entry);
4666 $INDEX_FILES{$gs->{index}} = 1;
4668 foreach my $g (@$globs) {
4669 my $k = "svn-remote.$g->{remote}." .
4670 "$g->{t}-maxRev";
4671 Git::SVN::tmp_config($k, $r);
4673 if ($ra_invalid) {
4674 $_[0] = undef;
4675 $self = undef;
4676 $RA = undef;
4677 $self = Git::SVN::Ra->new($ra_url);
4678 $ra_invalid = undef;
4681 # pre-fill the .rev_db since it'll eventually get filled in
4682 # with '0' x40 if something new gets committed
4683 foreach my $gs (@$gsv) {
4684 next if $gs->rev_map_max >= $max;
4685 next if defined $gs->rev_map_get($max);
4686 $gs->rev_map_set($max, 0 x40);
4688 foreach my $g (@$globs) {
4689 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
4690 Git::SVN::tmp_config($k, $max);
4692 last if $max >= $head;
4693 $min = $max + 1;
4694 $max += $inc;
4695 $max = $head if ($max > $head);
4697 Git::SVN::gc();
4700 sub get_dir_globbed {
4701 my ($self, $left, $depth, $r) = @_;
4703 my @x = eval { $self->get_dir($left, $r) };
4704 return unless scalar @x == 3;
4705 my $dirents = $x[0];
4706 my @finalents;
4707 foreach my $de (keys %$dirents) {
4708 next if $dirents->{$de}->{kind} != $SVN::Node::dir;
4709 if ($depth > 1) {
4710 my @args = ("$left/$de", $depth - 1, $r);
4711 foreach my $dir ($self->get_dir_globbed(@args)) {
4712 push @finalents, "$de/$dir";
4714 } else {
4715 push @finalents, $de;
4718 @finalents;
4721 sub match_globs {
4722 my ($self, $exists, $paths, $globs, $r) = @_;
4724 sub get_dir_check {
4725 my ($self, $exists, $g, $r) = @_;
4727 my @dirs = $self->get_dir_globbed($g->{path}->{left},
4728 $g->{path}->{depth},
4729 $r);
4731 foreach my $de (@dirs) {
4732 my $p = $g->{path}->full_path($de);
4733 next if $exists->{$p};
4734 next if (length $g->{path}->{right} &&
4735 ($self->check_path($p, $r) !=
4736 $SVN::Node::dir));
4737 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
4738 $g->{ref}->full_path($de), 1);
4741 foreach my $g (@$globs) {
4742 if (my $path = $paths->{"/$g->{path}->{left}"}) {
4743 if ($path->{action} =~ /^[AR]$/) {
4744 get_dir_check($self, $exists, $g, $r);
4747 foreach (keys %$paths) {
4748 if (/$g->{path}->{left_regex}/ &&
4749 !/$g->{path}->{regex}/) {
4750 next if $paths->{$_}->{action} !~ /^[AR]$/;
4751 get_dir_check($self, $exists, $g, $r);
4753 next unless /$g->{path}->{regex}/;
4754 my $p = $1;
4755 my $pathname = $g->{path}->full_path($p);
4756 next if $exists->{$pathname};
4757 next if ($self->check_path($pathname, $r) !=
4758 $SVN::Node::dir);
4759 $exists->{$pathname} = Git::SVN->init(
4760 $self->{url}, $pathname, undef,
4761 $g->{ref}->full_path($p), 1);
4763 my $c = '';
4764 foreach (split m#/#, $g->{path}->{left}) {
4765 $c .= "/$_";
4766 next unless ($paths->{$c} &&
4767 ($paths->{$c}->{action} =~ /^[AR]$/));
4768 get_dir_check($self, $exists, $g, $r);
4771 values %$exists;
4774 sub minimize_url {
4775 my ($self) = @_;
4776 return $self->{url} if ($self->{url} eq $self->{repos_root});
4777 my $url = $self->{repos_root};
4778 my @components = split(m!/!, $self->{svn_path});
4779 my $c = '';
4780 do {
4781 $url .= "/$c" if length $c;
4782 eval { (ref $self)->new($url)->get_latest_revnum };
4783 } while ($@ && ($c = shift @components));
4784 $url;
4787 sub can_do_switch {
4788 my $self = shift;
4789 unless (defined $can_do_switch) {
4790 my $pool = SVN::Pool->new;
4791 my $rep = eval {
4792 $self->do_switch(1, '', 0, $self->{url},
4793 SVN::Delta::Editor->new, $pool);
4795 if ($@) {
4796 $can_do_switch = 0;
4797 } else {
4798 $rep->abort_report($pool);
4799 $can_do_switch = 1;
4801 $pool->clear;
4803 $can_do_switch;
4806 sub skip_unknown_revs {
4807 my ($err) = @_;
4808 my $errno = $err->apr_err();
4809 # Maybe the branch we're tracking didn't
4810 # exist when the repo started, so it's
4811 # not an error if it doesn't, just continue
4813 # Wonderfully consistent library, eh?
4814 # 160013 - svn:// and file://
4815 # 175002 - http(s)://
4816 # 175007 - http(s):// (this repo required authorization, too...)
4817 # More codes may be discovered later...
4818 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
4819 my $err_key = $err->expanded_message;
4820 # revision numbers change every time, filter them out
4821 $err_key =~ s/\d+/\0/g;
4822 $err_key = "$errno\0$err_key";
4823 unless ($ignored_err{$err_key}) {
4824 warn "W: Ignoring error from SVN, path probably ",
4825 "does not exist: ($errno): ",
4826 $err->expanded_message,"\n";
4827 warn "W: Do not be alarmed at the above message ",
4828 "git-svn is just searching aggressively for ",
4829 "old history.\n",
4830 "This may take a while on large repositories\n";
4831 $ignored_err{$err_key} = 1;
4833 return;
4835 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
4838 package Git::SVN::Log;
4839 use strict;
4840 use warnings;
4841 use POSIX qw/strftime/;
4842 use Time::Local;
4843 use constant commit_log_separator => ('-' x 72) . "\n";
4844 use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
4845 %rusers $show_commit $incremental/;
4846 my $l_fmt;
4848 sub cmt_showable {
4849 my ($c) = @_;
4850 return 1 if defined $c->{r};
4852 # big commit message got truncated by the 16k pretty buffer in rev-list
4853 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
4854 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
4855 @{$c->{l}} = ();
4856 my @log = command(qw/cat-file commit/, $c->{c});
4858 # shift off the headers
4859 shift @log while ($log[0] ne '');
4860 shift @log;
4862 # TODO: make $c->{l} not have a trailing newline in the future
4863 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
4865 (undef, $c->{r}, undef) = ::extract_metadata(
4866 (grep(/^git-svn-id: /, @log))[-1]);
4868 return defined $c->{r};
4871 sub log_use_color {
4872 return $color || Git->repository->get_colorbool('color.diff');
4875 sub git_svn_log_cmd {
4876 my ($r_min, $r_max, @args) = @_;
4877 my $head = 'HEAD';
4878 my (@files, @log_opts);
4879 foreach my $x (@args) {
4880 if ($x eq '--' || @files) {
4881 push @files, $x;
4882 } else {
4883 if (::verify_ref("$x^0")) {
4884 $head = $x;
4885 } else {
4886 push @log_opts, $x;
4891 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
4892 $gs ||= Git::SVN->_new;
4893 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
4894 $gs->refname);
4895 push @cmd, '-r' unless $non_recursive;
4896 push @cmd, qw/--raw --name-status/ if $verbose;
4897 push @cmd, '--color' if log_use_color();
4898 push @cmd, @log_opts;
4899 if (defined $r_max && $r_max == $r_min) {
4900 push @cmd, '--max-count=1';
4901 if (my $c = $gs->rev_map_get($r_max)) {
4902 push @cmd, $c;
4904 } elsif (defined $r_max) {
4905 if ($r_max < $r_min) {
4906 ($r_min, $r_max) = ($r_max, $r_min);
4908 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
4909 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
4910 # If there are no commits in the range, both $c_max and $c_min
4911 # will be undefined. If there is at least 1 commit in the
4912 # range, both will be defined.
4913 return () if !defined $c_min || !defined $c_max;
4914 if ($c_min eq $c_max) {
4915 push @cmd, '--max-count=1', $c_min;
4916 } else {
4917 push @cmd, '--boundary', "$c_min..$c_max";
4920 return (@cmd, @files);
4923 # adapted from pager.c
4924 sub config_pager {
4925 $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
4926 if (!defined $pager) {
4927 $pager = 'less';
4928 } elsif (length $pager == 0 || $pager eq 'cat') {
4929 $pager = undef;
4931 $ENV{GIT_PAGER_IN_USE} = defined($pager);
4934 sub run_pager {
4935 return unless -t *STDOUT && defined $pager;
4936 pipe my ($rfd, $wfd) or return;
4937 defined(my $pid = fork) or ::fatal "Can't fork: $!";
4938 if (!$pid) {
4939 open STDOUT, '>&', $wfd or
4940 ::fatal "Can't redirect to stdout: $!";
4941 return;
4943 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!";
4944 $ENV{LESS} ||= 'FRSX';
4945 exec $pager or ::fatal "Can't run pager: $! ($pager)";
4948 sub format_svn_date {
4949 # some systmes don't handle or mishandle %z, so be creative.
4950 my $t = shift || time;
4951 my $gm = timelocal(gmtime($t));
4952 my $sign = qw( + + - )[ $t <=> $gm ];
4953 my $gmoff = sprintf("%s%02d%02d", $sign, (gmtime(abs($t - $gm)))[2,1]);
4954 return strftime("%Y-%m-%d %H:%M:%S $gmoff (%a, %d %b %Y)", localtime($t));
4957 sub parse_git_date {
4958 my ($t, $tz) = @_;
4959 # Date::Parse isn't in the standard Perl distro :(
4960 if ($tz =~ s/^\+//) {
4961 $t += tz_to_s_offset($tz);
4962 } elsif ($tz =~ s/^\-//) {
4963 $t -= tz_to_s_offset($tz);
4965 return $t;
4968 sub set_local_timezone {
4969 if (defined $TZ) {
4970 $ENV{TZ} = $TZ;
4971 } else {
4972 delete $ENV{TZ};
4976 sub tz_to_s_offset {
4977 my ($tz) = @_;
4978 $tz =~ s/(\d\d)$//;
4979 return ($1 * 60) + ($tz * 3600);
4982 sub get_author_info {
4983 my ($dest, $author, $t, $tz) = @_;
4984 $author =~ s/(?:^\s*|\s*$)//g;
4985 $dest->{a_raw} = $author;
4986 my $au;
4987 if ($::_authors) {
4988 $au = $rusers{$author} || undef;
4990 if (!$au) {
4991 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
4993 $dest->{t} = $t;
4994 $dest->{tz} = $tz;
4995 $dest->{a} = $au;
4996 $dest->{t_utc} = parse_git_date($t, $tz);
4999 sub process_commit {
5000 my ($c, $r_min, $r_max, $defer) = @_;
5001 if (defined $r_min && defined $r_max) {
5002 if ($r_min == $c->{r} && $r_min == $r_max) {
5003 show_commit($c);
5004 return 0;
5006 return 1 if $r_min == $r_max;
5007 if ($r_min < $r_max) {
5008 # we need to reverse the print order
5009 return 0 if (defined $limit && --$limit < 0);
5010 push @$defer, $c;
5011 return 1;
5013 if ($r_min != $r_max) {
5014 return 1 if ($r_min < $c->{r});
5015 return 1 if ($r_max > $c->{r});
5018 return 0 if (defined $limit && --$limit < 0);
5019 show_commit($c);
5020 return 1;
5023 sub show_commit {
5024 my $c = shift;
5025 if ($oneline) {
5026 my $x = "\n";
5027 if (my $l = $c->{l}) {
5028 while ($l->[0] =~ /^\s*$/) { shift @$l }
5029 $x = $l->[0];
5031 $l_fmt ||= 'A' . length($c->{r});
5032 print 'r',pack($l_fmt, $c->{r}),' | ';
5033 print "$c->{c} | " if $show_commit;
5034 print $x;
5035 } else {
5036 show_commit_normal($c);
5040 sub show_commit_changed_paths {
5041 my ($c) = @_;
5042 return unless $c->{changed};
5043 print "Changed paths:\n", @{$c->{changed}};
5046 sub show_commit_normal {
5047 my ($c) = @_;
5048 print commit_log_separator, "r$c->{r} | ";
5049 print "$c->{c} | " if $show_commit;
5050 print "$c->{a} | ", format_svn_date($c->{t_utc}), ' | ';
5051 my $nr_line = 0;
5053 if (my $l = $c->{l}) {
5054 while ($l->[$#$l] eq "\n" && $#$l > 0
5055 && $l->[($#$l - 1)] eq "\n") {
5056 pop @$l;
5058 $nr_line = scalar @$l;
5059 if (!$nr_line) {
5060 print "1 line\n\n\n";
5061 } else {
5062 if ($nr_line == 1) {
5063 $nr_line = '1 line';
5064 } else {
5065 $nr_line .= ' lines';
5067 print $nr_line, "\n";
5068 show_commit_changed_paths($c);
5069 print "\n";
5070 print $_ foreach @$l;
5072 } else {
5073 print "1 line\n";
5074 show_commit_changed_paths($c);
5075 print "\n";
5078 foreach my $x (qw/raw stat diff/) {
5079 if ($c->{$x}) {
5080 print "\n";
5081 print $_ foreach @{$c->{$x}}
5086 sub cmd_show_log {
5087 my (@args) = @_;
5088 my ($r_min, $r_max);
5089 my $r_last = -1; # prevent dupes
5090 set_local_timezone();
5091 if (defined $::_revision) {
5092 if ($::_revision =~ /^(\d+):(\d+)$/) {
5093 ($r_min, $r_max) = ($1, $2);
5094 } elsif ($::_revision =~ /^\d+$/) {
5095 $r_min = $r_max = $::_revision;
5096 } else {
5097 ::fatal "-r$::_revision is not supported, use ",
5098 "standard 'git log' arguments instead";
5102 config_pager();
5103 @args = git_svn_log_cmd($r_min, $r_max, @args);
5104 if (!@args) {
5105 print commit_log_separator unless $incremental || $oneline;
5106 return;
5108 my $log = command_output_pipe(@args);
5109 run_pager();
5110 my (@k, $c, $d, $stat);
5111 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
5112 while (<$log>) {
5113 if (/^${esc_color}commit -?($::sha1_short)/o) {
5114 my $cmt = $1;
5115 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
5116 $r_last = $c->{r};
5117 process_commit($c, $r_min, $r_max, \@k) or
5118 goto out;
5120 $d = undef;
5121 $c = { c => $cmt };
5122 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
5123 get_author_info($c, $1, $2, $3);
5124 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
5125 # ignore
5126 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
5127 push @{$c->{raw}}, $_;
5128 } elsif (/^${esc_color}[ACRMDT]\t/) {
5129 # we could add $SVN->{svn_path} here, but that requires
5130 # remote access at the moment (repo_path_split)...
5131 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
5132 push @{$c->{changed}}, $_;
5133 } elsif (/^${esc_color}diff /o) {
5134 $d = 1;
5135 push @{$c->{diff}}, $_;
5136 } elsif ($d) {
5137 push @{$c->{diff}}, $_;
5138 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
5139 $esc_color*[\+\-]*$esc_color$/x) {
5140 $stat = 1;
5141 push @{$c->{stat}}, $_;
5142 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
5143 push @{$c->{stat}}, $_;
5144 $stat = undef;
5145 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
5146 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
5147 } elsif (s/^${esc_color} //o) {
5148 push @{$c->{l}}, $_;
5151 if ($c && defined $c->{r} && $c->{r} != $r_last) {
5152 $r_last = $c->{r};
5153 process_commit($c, $r_min, $r_max, \@k);
5155 if (@k) {
5156 ($r_min, $r_max) = ($r_max, $r_min);
5157 process_commit($_, $r_min, $r_max) foreach reverse @k;
5159 out:
5160 close $log;
5161 print commit_log_separator unless $incremental || $oneline;
5164 sub cmd_blame {
5165 my $path = pop;
5167 config_pager();
5168 run_pager();
5170 my ($fh, $ctx, $rev);
5172 if ($_git_format) {
5173 ($fh, $ctx) = command_output_pipe('blame', @_, $path);
5174 while (my $line = <$fh>) {
5175 if ($line =~ /^\^?([[:xdigit:]]+)\s/) {
5176 # Uncommitted edits show up as a rev ID of
5177 # all zeros, which we can't look up with
5178 # cmt_metadata
5179 if ($1 !~ /^0+$/) {
5180 (undef, $rev, undef) =
5181 ::cmt_metadata($1);
5182 $rev = '0' if (!$rev);
5183 } else {
5184 $rev = '0';
5186 $rev = sprintf('%-10s', $rev);
5187 $line =~ s/^\^?[[:xdigit:]]+(\s)/$rev$1/;
5189 print $line;
5191 } else {
5192 ($fh, $ctx) = command_output_pipe('blame', '-p', @_, 'HEAD',
5193 '--', $path);
5194 my ($sha1);
5195 my %authors;
5196 my @buffer;
5197 my %dsha; #distinct sha keys
5199 while (my $line = <$fh>) {
5200 push @buffer, $line;
5201 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
5202 $dsha{$1} = 1;
5206 my $s2r = ::cmt_sha2rev_batch([keys %dsha]);
5208 foreach my $line (@buffer) {
5209 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
5210 $rev = $s2r->{$1};
5211 $rev = '0' if (!$rev)
5213 elsif ($line =~ /^author (.*)/) {
5214 $authors{$rev} = $1;
5215 $authors{$rev} =~ s/\s/_/g;
5217 elsif ($line =~ /^\t(.*)$/) {
5218 printf("%6s %10s %s\n", $rev, $authors{$rev}, $1);
5222 command_close_pipe($fh, $ctx);
5225 package Git::SVN::Migration;
5226 # these version numbers do NOT correspond to actual version numbers
5227 # of git nor git-svn. They are just relative.
5229 # v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
5231 # v1 layout: .git/$id/info/url, refs/remotes/$id
5233 # v2 layout: .git/svn/$id/info/url, refs/remotes/$id
5235 # v3 layout: .git/svn/$id, refs/remotes/$id
5236 # - info/url may remain for backwards compatibility
5237 # - this is what we migrate up to this layout automatically,
5238 # - this will be used by git svn init on single branches
5239 # v3.1 layout (auto migrated):
5240 # - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
5241 # for backwards compatibility
5243 # v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
5244 # - this is only created for newly multi-init-ed
5245 # repositories. Similar in spirit to the
5246 # --use-separate-remotes option in git-clone (now default)
5247 # - we do not automatically migrate to this (following
5248 # the example set by core git)
5250 # v5 layout: .rev_db.$UUID => .rev_map.$UUID
5251 # - newer, more-efficient format that uses 24-bytes per record
5252 # with no filler space.
5253 # - use xxd -c24 < .rev_map.$UUID to view and debug
5254 # - This is a one-way migration, repositories updated to the
5255 # new format will not be able to use old git-svn without
5256 # rebuilding the .rev_db. Rebuilding the rev_db is not
5257 # possible if noMetadata or useSvmProps are set; but should
5258 # be no problem for users that use the (sensible) defaults.
5259 use strict;
5260 use warnings;
5261 use Carp qw/croak/;
5262 use File::Path qw/mkpath/;
5263 use File::Basename qw/dirname basename/;
5264 use vars qw/$_minimize/;
5266 sub migrate_from_v0 {
5267 my $git_dir = $ENV{GIT_DIR};
5268 return undef unless -d $git_dir;
5269 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5270 my $migrated = 0;
5271 while (<$fh>) {
5272 chomp;
5273 my ($id, $orig_ref) = ($_, $_);
5274 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
5275 next unless -f "$git_dir/$id/info/url";
5276 my $new_ref = "refs/remotes/$id";
5277 if (::verify_ref("$new_ref^0")) {
5278 print STDERR "W: $orig_ref is probably an old ",
5279 "branch used by an ancient version of ",
5280 "git-svn.\n",
5281 "However, $new_ref also exists.\n",
5282 "We will not be able ",
5283 "to use this branch until this ",
5284 "ambiguity is resolved.\n";
5285 next;
5287 print STDERR "Migrating from v0 layout...\n" if !$migrated;
5288 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
5289 command_noisy('update-ref', $new_ref, $orig_ref);
5290 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
5291 $migrated++;
5293 command_close_pipe($fh, $ctx);
5294 print STDERR "Done migrating from v0 layout...\n" if $migrated;
5295 $migrated;
5298 sub migrate_from_v1 {
5299 my $git_dir = $ENV{GIT_DIR};
5300 my $migrated = 0;
5301 return $migrated unless -d $git_dir;
5302 my $svn_dir = "$git_dir/svn";
5304 # just in case somebody used 'svn' as their $id at some point...
5305 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
5307 print STDERR "Migrating from a git-svn v1 layout...\n";
5308 mkpath([$svn_dir]);
5309 print STDERR "Data from a previous version of git-svn exists, but\n\t",
5310 "$svn_dir\n\t(required for this version ",
5311 "($::VERSION) of git-svn) does not exist.\n";
5312 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5313 while (<$fh>) {
5314 my $x = $_;
5315 next unless $x =~ s#^refs/remotes/##;
5316 chomp $x;
5317 next unless -f "$git_dir/$x/info/url";
5318 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
5319 next unless $u;
5320 my $dn = dirname("$git_dir/svn/$x");
5321 mkpath([$dn]) unless -d $dn;
5322 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
5323 mkpath(["$git_dir/svn/svn"]);
5324 print STDERR " - $git_dir/$x/info => ",
5325 "$git_dir/svn/$x/info\n";
5326 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
5327 croak "$!: $x";
5328 # don't worry too much about these, they probably
5329 # don't exist with repos this old (save for index,
5330 # and we can easily regenerate that)
5331 foreach my $f (qw/unhandled.log index .rev_db/) {
5332 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
5334 } else {
5335 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
5336 rename "$git_dir/$x", "$git_dir/svn/$x" or
5337 croak "$!: $x";
5339 $migrated++;
5341 command_close_pipe($fh, $ctx);
5342 print STDERR "Done migrating from a git-svn v1 layout\n";
5343 $migrated;
5346 sub read_old_urls {
5347 my ($l_map, $pfx, $path) = @_;
5348 my @dir;
5349 foreach (<$path/*>) {
5350 if (-r "$_/info/url") {
5351 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
5352 my $ref_id = $pfx . basename $_;
5353 my $url = ::file_to_s("$_/info/url");
5354 $l_map->{$ref_id} = $url;
5355 } elsif (-d $_) {
5356 push @dir, $_;
5359 foreach (@dir) {
5360 my $x = $_;
5361 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
5362 read_old_urls($l_map, $x, $_);
5366 sub migrate_from_v2 {
5367 my @cfg = command(qw/config -l/);
5368 return if grep /^svn-remote\..+\.url=/, @cfg;
5369 my %l_map;
5370 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
5371 my $migrated = 0;
5373 foreach my $ref_id (sort keys %l_map) {
5374 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
5375 if ($@) {
5376 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
5378 $migrated++;
5380 $migrated;
5383 sub minimize_connections {
5384 my $r = Git::SVN::read_all_remotes();
5385 my $new_urls = {};
5386 my $root_repos = {};
5387 foreach my $repo_id (keys %$r) {
5388 my $url = $r->{$repo_id}->{url} or next;
5389 my $fetch = $r->{$repo_id}->{fetch} or next;
5390 my $ra = Git::SVN::Ra->new($url);
5392 # skip existing cases where we already connect to the root
5393 if (($ra->{url} eq $ra->{repos_root}) ||
5394 ($ra->{repos_root} eq $repo_id)) {
5395 $root_repos->{$ra->{url}} = $repo_id;
5396 next;
5399 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
5400 my $root_path = $ra->{url};
5401 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
5402 foreach my $path (keys %$fetch) {
5403 my $ref_id = $fetch->{$path};
5404 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
5406 # make sure we can read when connecting to
5407 # a higher level of a repository
5408 my ($last_rev, undef) = $gs->last_rev_commit;
5409 if (!defined $last_rev) {
5410 $last_rev = eval {
5411 $root_ra->get_latest_revnum;
5413 next if $@;
5415 my $new = $root_path;
5416 $new .= length $path ? "/$path" : '';
5417 eval {
5418 $root_ra->get_log([$new], $last_rev, $last_rev,
5419 0, 0, 1, sub { });
5421 next if $@;
5422 $new_urls->{$ra->{repos_root}}->{$new} =
5423 { ref_id => $ref_id,
5424 old_repo_id => $repo_id,
5425 old_path => $path };
5429 my @emptied;
5430 foreach my $url (keys %$new_urls) {
5431 # see if we can re-use an existing [svn-remote "repo_id"]
5432 # instead of creating a(n ugly) new section:
5433 my $repo_id = $root_repos->{$url} || $url;
5435 my $fetch = $new_urls->{$url};
5436 foreach my $path (keys %$fetch) {
5437 my $x = $fetch->{$path};
5438 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
5439 my $pfx = "svn-remote.$x->{old_repo_id}";
5441 my $old_fetch = quotemeta("$x->{old_path}:".
5442 "refs/remotes/$x->{ref_id}");
5443 command_noisy(qw/config --unset/,
5444 "$pfx.fetch", '^'. $old_fetch . '$');
5445 delete $r->{$x->{old_repo_id}}->
5446 {fetch}->{$x->{old_path}};
5447 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
5448 command_noisy(qw/config --unset/,
5449 "$pfx.url");
5450 push @emptied, $x->{old_repo_id}
5454 if (@emptied) {
5455 my $file = $ENV{GIT_CONFIG} || "$ENV{GIT_DIR}/config";
5456 print STDERR <<EOF;
5457 The following [svn-remote] sections in your config file ($file) are empty
5458 and can be safely removed:
5460 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
5464 sub migration_check {
5465 migrate_from_v0();
5466 migrate_from_v1();
5467 migrate_from_v2();
5468 minimize_connections() if $_minimize;
5471 package Git::IndexInfo;
5472 use strict;
5473 use warnings;
5474 use Git qw/command_input_pipe command_close_pipe/;
5476 sub new {
5477 my ($class) = @_;
5478 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
5479 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
5482 sub remove {
5483 my ($self, $path) = @_;
5484 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
5485 return ++$self->{nr};
5487 undef;
5490 sub update {
5491 my ($self, $mode, $hash, $path) = @_;
5492 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
5493 return ++$self->{nr};
5495 undef;
5498 sub DESTROY {
5499 my ($self) = @_;
5500 command_close_pipe($self->{gui}, $self->{ctx});
5503 package Git::SVN::GlobSpec;
5504 use strict;
5505 use warnings;
5507 sub new {
5508 my ($class, $glob) = @_;
5509 my $re = $glob;
5510 $re =~ s!/+$!!g; # no need for trailing slashes
5511 $re =~ m!^([^*]*)(\*(?:/\*)*)([^*]*)$!;
5512 my $temp = $re;
5513 my ($left, $right) = ($1, $3);
5514 $re = $2;
5515 my $depth = $re =~ tr/*/*/;
5516 if ($depth != $temp =~ tr/*/*/) {
5517 die "Only one set of wildcard directories " .
5518 "(e.g. '*' or '*/*/*') is supported: '$glob'\n";
5520 if ($depth == 0) {
5521 die "One '*' is needed for glob: '$glob'\n";
5523 $re =~ s!\*!\[^/\]*!g;
5524 $re = quotemeta($left) . "($re)" . quotemeta($right);
5525 if (length $left && !($left =~ s!/+$!!g)) {
5526 die "Missing trailing '/' on left side of: '$glob' ($left)\n";
5528 if (length $right && !($right =~ s!^/+!!g)) {
5529 die "Missing leading '/' on right side of: '$glob' ($right)\n";
5531 my $left_re = qr/^\/\Q$left\E(\/|$)/;
5532 bless { left => $left, right => $right, left_regex => $left_re,
5533 regex => qr/$re/, glob => $glob, depth => $depth }, $class;
5536 sub full_path {
5537 my ($self, $path) = @_;
5538 return (length $self->{left} ? "$self->{left}/" : '') .
5539 $path . (length $self->{right} ? "/$self->{right}" : '');
5542 __END__
5544 Data structures:
5547 $remotes = { # returned by read_all_remotes()
5548 'svn' => {
5549 # svn-remote.svn.url=https://svn.musicpd.org
5550 url => 'https://svn.musicpd.org',
5551 # svn-remote.svn.fetch=mpd/trunk:trunk
5552 fetch => {
5553 'mpd/trunk' => 'trunk',
5555 # svn-remote.svn.tags=mpd/tags/*:tags/*
5556 tags => {
5557 path => {
5558 left => 'mpd/tags',
5559 right => '',
5560 regex => qr!mpd/tags/([^/]+)$!,
5561 glob => 'tags/*',
5563 ref => {
5564 left => 'tags',
5565 right => '',
5566 regex => qr!tags/([^/]+)$!,
5567 glob => 'tags/*',
5573 $log_entry hashref as returned by libsvn_log_entry()
5575 log => 'whitespace-formatted log entry
5576 ', # trailing newline is preserved
5577 revision => '8', # integer
5578 date => '2004-02-24T17:01:44.108345Z', # commit date
5579 author => 'committer name'
5583 # this is generated by generate_diff();
5584 @mods = array of diff-index line hashes, each element represents one line
5585 of diff-index output
5587 diff-index line ($m hash)
5589 mode_a => first column of diff-index output, no leading ':',
5590 mode_b => second column of diff-index output,
5591 sha1_b => sha1sum of the final blob,
5592 chg => change type [MCRADT],
5593 file_a => original file name of a file (iff chg is 'C' or 'R')
5594 file_b => new/current file name of a file (any chg)
5598 # retval of read_url_paths{,_all}();
5599 $l_map = {
5600 # repository root url
5601 'https://svn.musicpd.org' => {
5602 # repository path # GIT_SVN_ID
5603 'mpd/trunk' => 'trunk',
5604 'mpd/tags/0.11.5' => 'tags/0.11.5',
5608 Notes:
5609 I don't trust the each() function on unless I created %hash myself
5610 because the internal iterator may not have started at base.