2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
7 use vars qw
/ $AUTHOR $VERSION
8 $sha1 $sha1_short $_revision $_repository
9 $_q $_authors $_authors_prog %users/;
10 $AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
11 $VERSION = '@@GIT_VERSION@@';
13 # From which subdir have we been invoked?
14 my $cmd_dir_prefix = eval {
15 command_oneline
([qw
/rev-parse --show-prefix/], STDERR
=> 0)
18 my $git_dir_user_set = 1 if defined $ENV{GIT_DIR
};
19 $ENV{GIT_DIR
} ||= '.git';
20 $Git::SVN
::default_repo_id
= 'svn';
21 $Git::SVN
::default_ref_id
= $ENV{GIT_SVN_ID
} || 'git-svn';
22 $Git::SVN
::Ra
::_log_window_size
= 100;
23 $Git::SVN
::_minimize_url
= 'unset';
25 if (! exists $ENV{SVN_SSH
} && exists $ENV{GIT_SSH
}) {
26 $ENV{SVN_SSH
} = $ENV{GIT_SSH
};
29 if (exists $ENV{SVN_SSH
} && $^O
eq 'msys') {
30 $ENV{SVN_SSH
} =~ s/\\/\\\\/g;
31 $ENV{SVN_SSH
} =~ s/(.*)/"$1"/;
34 $Git::SVN
::Log
::TZ
= $ENV{TZ
};
36 $| = 1; # unbuffer STDOUT
38 sub fatal
(@
) { print STDERR
"@_\n"; exit 1 }
40 require SVN
::Core
; # use()-ing this causes segfaults for me... *shrug*
43 if ($SVN::Core
::VERSION
lt '1.1.0') {
44 fatal
"Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
47 my $can_compress = eval { require Compress
::Zlib
; 1};
48 push @Git::SVN
::Ra
::ISA
, 'SVN::Ra';
49 push @SVN::Git
::Editor
::ISA
, 'SVN::Delta::Editor';
50 push @SVN::Git
::Fetcher
::ISA
, 'SVN::Delta::Editor';
54 use File
::Basename qw
/dirname basename/;
55 use File
::Path qw
/mkpath/;
58 use Getopt
::Long qw
/:config gnu_getopt no_ignore_case auto_abbrev/;
61 use Memoize
; # core since 5.8.0, Jul 2002
64 # import functions from Git into our packages, en masse
66 foreach (qw
/command command_oneline command_noisy command_output_pipe
67 command_input_pipe command_close_pipe
68 command_bidi_pipe command_close_bidi_pipe
/) {
69 for my $package ( qw(SVN::Git::Editor SVN::Git::Fetcher
70 Git::SVN::Migration Git::SVN::Log Git::SVN),
72 *{"${package}::$_"} = \
&{"Git::$_"};
75 Memoize
::memoize
'Git::config';
76 Memoize
::memoize
'Git::config_bool';
81 $sha1 = qr/[a-f\d]{40}/;
82 $sha1_short = qr/[a-f\d]{4,40}/;
83 my ($_stdin, $_help, $_edit,
84 $_message, $_file, $_branch_dest,
86 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
87 $_merge, $_strategy, $_dry_run, $_local,
88 $_prefix, $_no_checkout, $_url, $_verbose,
89 $_git_format, $_commit_url, $_tag, $_merge_info, $_interactive);
90 $Git::SVN
::_follow_parent
= 1;
91 $SVN::Git
::Fetcher
::_placeholder_filename
= ".gitignore";
93 my %remote_opts = ( 'username=s' => \
$Git::SVN
::Prompt
::_username
,
94 'config-dir=s' => \
$Git::SVN
::Ra
::config_dir
,
95 'no-auth-cache' => \
$Git::SVN
::Prompt
::_no_auth_cache
,
96 'ignore-paths=s' => \
$SVN::Git
::Fetcher
::_ignore_regex
,
97 'ignore-refs=s' => \
$Git::SVN
::Ra
::_ignore_refs_regex
);
98 my %fc_opts = ( 'follow-parent|follow!' => \
$Git::SVN
::_follow_parent
,
99 'authors-file|A=s' => \
$_authors,
100 'authors-prog=s' => \
$_authors_prog,
101 'repack:i' => \
$Git::SVN
::_repack
,
102 'noMetadata' => \
$Git::SVN
::_no_metadata
,
103 'useSvmProps' => \
$Git::SVN
::_use_svm_props
,
104 'useSvnsyncProps' => \
$Git::SVN
::_use_svnsync_props
,
105 'log-window-size=i' => \
$Git::SVN
::Ra
::_log_window_size
,
106 'no-checkout' => \
$_no_checkout,
108 'repack-flags|repack-args|repack-opts=s' =>
109 \
$Git::SVN
::_repack_flags
,
110 'use-log-author' => \
$Git::SVN
::_use_log_author
,
111 'add-author-from' => \
$Git::SVN
::_add_author_from
,
112 'localtime' => \
$Git::SVN
::_localtime
,
115 my ($_trunk, @_tags, @_branches, $_stdlayout);
117 my %init_opts = ( 'template=s' => \
$_template, 'shared:s' => \
$_shared,
118 'trunk|T=s' => \
$_trunk, 'tags|t=s@' => \
@_tags,
119 'branches|b=s@' => \
@_branches, 'prefix=s' => \
$_prefix,
120 'stdlayout|s' => \
$_stdlayout,
121 'minimize-url|m!' => \
$Git::SVN
::_minimize_url
,
122 'no-metadata' => sub { $icv{noMetadata
} = 1 },
123 'use-svm-props' => sub { $icv{useSvmProps
} = 1 },
124 'use-svnsync-props' => sub { $icv{useSvnsyncProps
} = 1 },
125 'rewrite-root=s' => sub { $icv{rewriteRoot
} = $_[1] },
126 'rewrite-uuid=s' => sub { $icv{rewriteUUID
} = $_[1] },
128 my %cmt_opts = ( 'edit|e' => \
$_edit,
129 'rmdir' => \
$SVN::Git
::Editor
::_rmdir
,
130 'find-copies-harder' => \
$SVN::Git
::Editor
::_find_copies_harder
,
131 'l=i' => \
$SVN::Git
::Editor
::_rename_limit
,
132 'copy-similarity|C=i'=> \
$SVN::Git
::Editor
::_cp_similarity
136 fetch
=> [ \
&cmd_fetch
, "Download new revisions from SVN",
137 { 'revision|r=s' => \
$_revision,
138 'fetch-all|all' => \
$_fetch_all,
139 'parent|p' => \
$_fetch_parent,
141 clone
=> [ \
&cmd_clone
, "Initialize and fetch revisions",
142 { 'revision|r=s' => \
$_revision,
143 'preserve-empty-dirs' =>
144 \
$SVN::Git
::Fetcher
::_preserve_empty_dirs
,
145 'placeholder-filename=s' =>
146 \
$SVN::Git
::Fetcher
::_placeholder_filename
,
147 %fc_opts, %init_opts } ],
148 init
=> [ \
&cmd_init
, "Initialize a repo for tracking" .
149 " (requires URL argument)",
151 'multi-init' => [ \
&cmd_multi_init
,
152 "Deprecated alias for ".
153 "'$0 init -T<trunk> -b<branches> -t<tags>'",
155 dcommit
=> [ \
&cmd_dcommit
,
156 'Commit several diffs to merge with upstream',
157 { 'merge|m|M' => \
$_merge,
158 'strategy|s=s' => \
$_strategy,
159 'verbose|v' => \
$_verbose,
160 'dry-run|n' => \
$_dry_run,
161 'fetch-all|all' => \
$_fetch_all,
162 'commit-url=s' => \
$_commit_url,
163 'revision|r=i' => \
$_revision,
164 'no-rebase' => \
$_no_rebase,
165 'mergeinfo=s' => \
$_merge_info,
166 'interactive|i' => \
$_interactive,
167 %cmt_opts, %fc_opts } ],
168 branch
=> [ \
&cmd_branch
,
169 'Create a branch in the SVN repository',
170 { 'message|m=s' => \
$_message,
171 'destination|d=s' => \
$_branch_dest,
172 'dry-run|n' => \
$_dry_run,
174 'username=s' => \
$Git::SVN
::Prompt
::_username
,
175 'commit-url=s' => \
$_commit_url } ],
176 tag
=> [ sub { $_tag = 1; cmd_branch
(@_) },
177 'Create a tag in the SVN repository',
178 { 'message|m=s' => \
$_message,
179 'destination|d=s' => \
$_branch_dest,
180 'dry-run|n' => \
$_dry_run,
181 'username=s' => \
$Git::SVN
::Prompt
::_username
,
182 'commit-url=s' => \
$_commit_url } ],
183 'set-tree' => [ \
&cmd_set_tree
,
184 "Set an SVN repository to a git tree-ish",
185 { 'stdin' => \
$_stdin, %cmt_opts, %fc_opts, } ],
186 'create-ignore' => [ \
&cmd_create_ignore
,
187 'Create a .gitignore per svn:ignore',
188 { 'revision|r=i' => \
$_revision
190 'mkdirs' => [ \
&cmd_mkdirs
,
191 "recreate empty directories after a checkout",
192 { 'revision|r=i' => \
$_revision } ],
193 'propget' => [ \
&cmd_propget
,
194 'Print the value of a property on a file or directory',
195 { 'revision|r=i' => \
$_revision } ],
196 'proplist' => [ \
&cmd_proplist
,
197 'List all properties of a file or directory',
198 { 'revision|r=i' => \
$_revision } ],
199 'show-ignore' => [ \
&cmd_show_ignore
, "Show svn:ignore listings",
200 { 'revision|r=i' => \
$_revision
202 'show-externals' => [ \
&cmd_show_externals
, "Show svn:externals listings",
203 { 'revision|r=i' => \
$_revision
205 'multi-fetch' => [ \
&cmd_multi_fetch
,
206 "Deprecated alias for $0 fetch --all",
207 { 'revision|r=s' => \
$_revision, %fc_opts } ],
208 'migrate' => [ sub { },
209 # no-op, we automatically run this anyways,
210 'Migrate configuration/metadata/layout from
211 previous versions of git-svn',
212 { 'minimize' => \
$Git::SVN
::Migration
::_minimize
,
214 'log' => [ \
&Git
::SVN
::Log
::cmd_show_log
, 'Show commit logs',
215 { 'limit=i' => \
$Git::SVN
::Log
::limit
,
216 'revision|r=s' => \
$_revision,
217 'verbose|v' => \
$Git::SVN
::Log
::verbose
,
218 'incremental' => \
$Git::SVN
::Log
::incremental
,
219 'oneline' => \
$Git::SVN
::Log
::oneline
,
220 'show-commit' => \
$Git::SVN
::Log
::show_commit
,
221 'non-recursive' => \
$Git::SVN
::Log
::non_recursive
,
222 'authors-file|A=s' => \
$_authors,
223 'color' => \
$Git::SVN
::Log
::color
,
224 'pager=s' => \
$Git::SVN
::Log
::pager
226 'find-rev' => [ \
&cmd_find_rev
,
227 "Translate between SVN revision numbers and tree-ish",
229 'rebase' => [ \
&cmd_rebase
, "Fetch and rebase your working directory",
230 { 'merge|m|M' => \
$_merge,
231 'verbose|v' => \
$_verbose,
232 'strategy|s=s' => \
$_strategy,
233 'local|l' => \
$_local,
234 'fetch-all|all' => \
$_fetch_all,
235 'dry-run|n' => \
$_dry_run,
237 'commit-diff' => [ \
&cmd_commit_diff
,
238 'Commit a diff between two trees',
239 { 'message|m=s' => \
$_message,
240 'file|F=s' => \
$_file,
241 'revision|r=s' => \
$_revision,
243 'info' => [ \
&cmd_info
,
244 "Show info about the latest SVN revision
245 on the current branch",
246 { 'url' => \
$_url, } ],
247 'blame' => [ \
&Git
::SVN
::Log
::cmd_blame
,
248 "Show what revision and author last modified each line of a file",
249 { 'git-format' => \
$_git_format } ],
250 'reset' => [ \
&cmd_reset
,
251 "Undo fetches back to the specified SVN revision",
252 { 'revision|r=s' => \
$_revision,
253 'parent|p' => \
$_fetch_parent } ],
255 "Compress unhandled.log files in .git/svn and remove " .
256 "index files in .git/svn",
263 my ($class, $reason) = @_;
264 return bless \
$reason, shift;
268 die "Cannot use readline on FakeTerm: $$self";
273 $ENV{"GIT_SVN_NOTTY"}
274 ? new Term
::ReadLine
'git-svn', \
*STDIN
, \
*STDOUT
275 : new Term
::ReadLine
'git-svn';
278 $term = new FakeTerm
"$@: going non-interactive";
282 for (my $i = 0; $i < @ARGV; $i++) {
283 if (defined $cmd{$ARGV[$i]}) {
287 } elsif ($ARGV[$i] eq 'help') {
293 # make sure we're always running at the top-level working directory
294 unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
295 unless (-d
$ENV{GIT_DIR
}) {
296 if ($git_dir_user_set) {
297 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
298 "but it is not a directory\n";
300 my $git_dir = delete $ENV{GIT_DIR
};
303 $cdup = command_oneline
(qw
/rev-parse --show-cdup/);
304 $git_dir = '.' unless ($cdup);
305 chomp $cdup if ($cdup);
306 $cdup = "." unless ($cdup && length $cdup);
307 } "Already at toplevel, but $git_dir not found\n";
308 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
309 unless (-d
$git_dir) {
310 die "$git_dir still not found after going to ",
313 $ENV{GIT_DIR
} = $git_dir;
315 $_repository = Git
->repository(Repository
=> $ENV{GIT_DIR
});
318 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
320 read_git_config
(\
%opts);
321 if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
322 Getopt
::Long
::Configure
('pass_through');
324 my $rv = GetOptions
(%opts, 'h|H' => \
$_help, 'version|V' => \
$_version,
325 'minimize-connections' => \
$Git::SVN
::Migration
::_minimize
,
326 'id|i=s' => \
$Git::SVN
::default_ref_id
,
327 'svn-remote|remote|R=s' => sub {
328 $Git::SVN
::no_reuse_existing
= 1;
329 $Git::SVN
::default_repo_id
= $_[1] });
330 exit 1 if (!$rv && $cmd && $cmd ne 'log');
333 version
() if $_version;
334 usage
(1) unless defined $cmd;
335 load_authors
() if $_authors;
336 if (defined $_authors_prog) {
337 $_authors_prog = "'" . File
::Spec
->rel2abs($_authors_prog) . "'";
340 unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
341 Git
::SVN
::Migration
::migration_check
();
343 Git
::SVN
::init_vars
();
345 Git
::SVN
::verify_remotes_sanity
();
346 $cmd{$cmd}->[0]->(@ARGV);
349 post_fetch_checkout
();
352 ####################### primary functions ######################
354 my $exit = shift || 0;
355 my $fd = $exit ? \
*STDERR
: \
*STDOUT
;
357 git
-svn
- bidirectional operations between a single Subversion tree
and git
358 Usage
: git svn
<command
> [options
] [arguments
]\n
360 print $fd "Available commands:\n" unless $cmd;
362 foreach (sort keys %cmd) {
363 next if $cmd && $cmd ne $_;
364 next if /^multi-/; # don't show deprecated commands
365 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
366 foreach (sort keys %{$cmd{$_}->[2]}) {
367 # mixed-case options are for .git/config only
368 next if /[A-Z]/ && /^[a-z]+$/i;
369 # prints out arguments as they should be passed:
370 my $x = s
#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
371 print $fd ' ' x
21, join(', ', map { length $_ > 1 ?
373 split /\|/,$_)," $x\n";
377 \nGIT_SVN_ID may be set
in the environment
or via the
--id
/-i switch to an
378 arbitrary identifier
if you
're tracking multiple SVN branches/repositories in
379 one git repository and want to keep them separate. See git-svn(1) for more
387 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
392 my ($prompt, %arg) = @_;
393 my $valid_re = $arg{valid_re};
394 my $default = $arg{default};
398 if ( !( defined($term->IN)
399 && defined( fileno($term->IN) )
400 && defined( $term->OUT )
401 && defined( fileno($term->OUT) ) ) ){
402 return defined($default) ? $default : undef;
406 $resp = $term->readline($prompt);
407 if (!defined $resp) { # EOF
409 return defined $default ? $default : undef;
411 if ($resp eq '' and defined $default) {
414 if (!defined $valid_re or $resp =~ /$valid_re/) {
422 unless (-d $ENV{GIT_DIR}) {
423 my @init_db = ('init
');
424 push @init_db, "--template=$_template" if defined $_template;
425 if (defined $_shared) {
426 if ($_shared =~ /[a-z]/) {
427 push @init_db, "--shared=$_shared";
429 push @init_db, "--shared";
432 command_noisy(@init_db);
433 $_repository = Git->repository(Repository => ".git");
436 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
437 foreach my $i (keys %icv) {
438 die "'$set' and '$i' cannot both be set\n" if $set;
439 next unless defined $icv{$i};
440 command_noisy('config
', "$pfx.$i", $icv{$i});
443 my $ignore_paths_regex = \$SVN::Git::Fetcher::_ignore_regex;
444 command_noisy('config
', "$pfx.ignore-paths", $$ignore_paths_regex)
445 if defined $$ignore_paths_regex;
446 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
447 command_noisy('config
', "$pfx.ignore-refs", $$ignore_refs_regex)
448 if defined $$ignore_refs_regex;
450 if (defined $SVN::Git::Fetcher::_preserve_empty_dirs) {
451 my $fname = \$SVN::Git::Fetcher::_placeholder_filename;
452 command_noisy('config
', "$pfx.preserve-empty-dirs", 'true
');
453 command_noisy('config
', "$pfx.placeholder-filename", $$fname);
458 my $repo_path = shift or return;
459 mkpath([$repo_path]) unless -d $repo_path;
460 chdir $repo_path or die "Couldn't
chdir to
$repo_path: $!\n";
461 $ENV{GIT_DIR} = '.git';
462 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
466 my ($url, $path) = @_;
467 if (!defined $path &&
468 (defined $_trunk || @_branches || @_tags ||
469 defined $_stdlayout) &&
470 $url !~ m#^[a-z\+]+://#) {
473 $path = basename($url) if !defined $path || !length $path;
474 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
475 cmd_init($url, $path);
476 command_oneline('config', 'svn.authorsfile', $authors_absolute)
478 Git::SVN::fetch_all($Git::SVN::default_repo_id);
482 if (defined $_stdlayout) {
483 $_trunk = 'trunk' if (!defined $_trunk);
484 @_tags = 'tags' if (! @_tags);
485 @_branches = 'branches' if (! @_branches);
487 if (defined $_trunk || @_branches || @_tags) {
488 return cmd_multi_init(@_);
490 my $url = shift or die "SVN repository location required
",
491 "as a command
-line argument
\n";
492 $url = canonicalize_url($url);
496 if ($Git::SVN::_minimize_url eq 'unset') {
497 $Git::SVN::_minimize_url = 0;
500 Git::SVN->init($url);
504 if (grep /^\d+=./, @_) {
505 die "'<rev>=<commit>' fetch arguments are
",
506 "no longer supported
.\n";
510 die "Usage
: $0 fetch
[--all
] [--parent
] [svn
-remote
]\n";
512 $Git::SVN::no_reuse_existing = undef;
513 if ($_fetch_parent) {
514 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
516 die "Unable to determine upstream SVN information from
",
517 "working tree history
\n";
519 # just fetch, don't checkout.
520 $_no_checkout = 'true';
521 $_fetch_all ? $gs->fetch_all : $gs->fetch;
522 } elsif ($_fetch_all) {
525 $remote ||= $Git::SVN::default_repo_id;
526 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
532 if ($_stdin || !@commits) {
533 print "Reading from stdin
...\n";
536 if (/\b($sha1_short)\b/o) {
537 unshift @commits, $1;
542 foreach my $c (@commits) {
543 my @tmp = command('rev-parse',$c);
544 if (scalar @tmp == 1) {
546 } elsif (scalar @tmp > 1) {
547 push @revs, reverse(command('rev-list',@tmp));
549 fatal "Failed to rev
-parse
$c";
552 my $gs = Git::SVN->new;
553 my ($r_last, $cmt_last) = $gs->last_rev_commit;
555 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
556 fatal "There are new revisions that were fetched
",
557 "and need to be merged
(or acknowledged
) ",
558 "before committing
.\nlast rev
: $r_last\n",
559 " current
: $gs->{last_rev
}";
561 $gs->set_tree($_) foreach @revs;
562 print "Done committing
",scalar @revs," revisions to SVN
\n";
566 sub split_merge_info_range {
568 if ($range =~ /(\d+)-(\d+)/) {
569 return (int($1), int($2));
571 return (int($range), int($range));
579 my @arr = split(/,/, $in);
580 for my $element (@arr) {
581 my ($start, $end) = split_merge_info_range($element);
585 my @sorted = @arr [ sort {
586 $fnums[$a] <=> $fnums[$b]
592 for my $element (@sorted) {
593 my ($start, $end) = split_merge_info_range($element);
600 if ($start <= $last+1) {
606 if ($first == $last) {
607 push @return, "$first";
609 push @return, "$first-$last";
616 if ($first == $last) {
617 push @return, "$first";
619 push @return, "$first-$last";
623 return join(',', @return);
626 sub merge_revs_into_hash {
627 my ($hash, $minfo) = @_;
628 my @lines = split(' ', $minfo);
630 for my $line (@lines) {
631 my ($branchpath, $revs) = split(/:/, $line);
633 if (exists($hash->{$branchpath})) {
634 # Merge the two revision sets
635 my $combined = "$hash->{$branchpath},$revs";
636 $hash->{$branchpath} = combine_ranges($combined);
638 # Just do range combining for consolidation
639 $hash->{$branchpath} = combine_ranges($revs);
644 sub merge_merge_info {
645 my ($mergeinfo_one, $mergeinfo_two) = @_;
646 my %result_hash = ();
648 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
649 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
652 # Sort below is for consistency's sake
653 for my $branchname (sort keys(%result_hash)) {
654 my $revlist = $result_hash{$branchname};
655 $result .= "$branchname:$revlist\n"
660 sub populate_merge_info {
661 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
664 read_commit_parents(\%parentshash, $d);
665 my @parents = @{$parentshash{$d}};
668 my $all_parents_ok = 1;
669 my $aggregate_mergeinfo = '';
670 my $rooturl = $gs->repos_root;
672 if (defined($rewritten_parent)) {
673 # Replace first parent with newly-rewritten version
675 unshift @parents, $rewritten_parent;
678 foreach my $parent (@parents) {
679 my ($branchurl, $svnrev, $paruuid) =
680 cmt_metadata($parent);
682 unless (defined($svnrev)) {
683 # Should have been caught be preflight check
684 fatal "merge commit
$d has ancestor
$parent, but that change
"
685 ."does
not have git
-svn metadata
!";
687 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
688 fatal "commit
$parent git
-svn metadata changed mid
-run
!";
692 my $ra = Git::SVN::Ra->new($branchurl);
693 my (undef, undef, $props) =
694 $ra->get_dir(canonicalize_path("."), $svnrev);
695 my $par_mergeinfo = $props->{'svn:mergeinfo'};
696 unless (defined $par_mergeinfo) {
699 # Merge previous mergeinfo values
700 $aggregate_mergeinfo =
701 merge_merge_info($aggregate_mergeinfo,
704 next if $parent eq $parents[0]; # Skip first parent
705 # Add new changes being placed in tree by merge
706 my @cmd = (qw/rev-list --reverse/,
708 foreach my $par (@parents) {
709 unless ($par eq $parent) {
714 my ($revlist, $ctx) = command_output_pipe(@cmd);
718 my (undef, $csvnrev, undef) =
720 unless (defined $csvnrev) {
721 # A child is missing SVN annotations...
722 # this might be OK, or might not be.
723 warn "W
:child
$irev is merged into revision
"
724 ."$d but does
not have git
-svn metadata
. "
725 ."This means git
-svn cannot determine the
"
726 ."svn revision numbers to place into the
"
727 ."svn
:mergeinfo property
. You must ensure
"
728 ."a branch is entirely committed to
"
729 ."SVN before merging it
in order
for "
730 ."svn
:mergeinfo population to function
"
733 push @revsin, $csvnrev;
735 command_close_pipe($revlist, $ctx);
737 last unless $all_parents_ok;
739 # We now have a list of all SVN revnos which are
740 # merged by this particular parent. Integrate them.
741 next if $#revsin == -1;
742 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
743 $aggregate_mergeinfo =
744 merge_merge_info($aggregate_mergeinfo,
747 if ($all_parents_ok and $aggregate_mergeinfo) {
748 return $aggregate_mergeinfo;
757 command_noisy(qw/update-index --refresh/);
758 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
759 'Cannot dcommit with a dirty index. Commit your changes first, '
760 . "or stash them with
`git stash'.\n";
764 if ($head ne 'HEAD') {
766 command_oneline([qw/symbolic-ref -q HEAD/])
769 $old_head =~ s{^refs/heads/}{};
771 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
773 command(['checkout', $head], STDERR => 0);
777 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
779 die "Unable to determine upstream SVN information from ",
780 "$head history.\nPerhaps the repository is empty.";
783 if (defined $_commit_url) {
786 $url = eval { command_oneline('config', '--get',
787 "svn-remote.$gs->{repo_id}.commiturl") };
789 $url = $gs->full_pushurl
793 my $last_rev = $_revision if defined $_revision;
795 print "Committing to $url ...\n";
797 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
798 if ($_no_rebase && scalar(@$linear_refs) > 1) {
799 warn "Attempting to commit more than one change while ",
800 "--no-rebase is enabled.\n",
801 "If these changes depend on each other, re-running ",
802 "without --no-rebase may be required."
805 if (defined $_interactive){
806 my $ask_default = "y";
807 foreach my $d (@$linear_refs){
808 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
812 command_close_pipe
($fh, $ctx);
813 $_ = ask
("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
814 valid_re
=> qr/^(?:yes|y|no|n|quit|q|all|a)/i,
815 default => $ask_default);
816 die "Commit this patch reply required" unless defined $_;
825 my $expect_url = $url;
827 my $push_merge_info = eval {
828 command_oneline
(qw
/config --get svn.pushmergeinfo/)
830 if (not defined($push_merge_info)
831 or $push_merge_info eq "false"
832 or $push_merge_info eq "no"
833 or $push_merge_info eq "never") {
834 $push_merge_info = 0;
837 unless (defined($_merge_info) || ! $push_merge_info) {
838 # Preflight check of changes to ensure no issues with mergeinfo
839 # This includes check for uncommitted-to-SVN parents
840 # (other than the first parent, which we will handle),
841 # information from different SVN repos, and paths
842 # which are not underneath this repository root.
843 my $rooturl = $gs->repos_root;
844 foreach my $d (@
$linear_refs) {
846 read_commit_parents
(\
%parentshash, $d);
847 my @realparents = @
{$parentshash{$d}};
848 if ($#realparents > 0) {
850 shift @realparents; # Remove/ignore first parent
851 foreach my $parent (@realparents) {
852 my ($branchurl, $svnrev, $paruuid) = cmt_metadata
($parent);
853 unless (defined $paruuid) {
854 # A parent is missing SVN annotations...
855 # abort the whole operation.
856 fatal
"$parent is merged into revision $d, "
857 ."but does not have git-svn metadata. "
858 ."Either dcommit the branch or use a "
859 ."local cherry-pick, FF merge, or rebase "
860 ."instead of an explicit merge commit.";
863 unless ($paruuid eq $uuid) {
864 # Parent has SVN metadata from different repository
865 fatal
"merge parent $parent for change $d has "
866 ."git-svn uuid $paruuid, while current change "
870 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
871 # This branch is very strange indeed.
872 fatal
"merge parent $parent for $d is on branch "
873 ."$branchurl, which is not under the "
874 ."git-svn root $rooturl!";
881 my $rewritten_parent;
882 Git
::SVN
::remove_username
($expect_url);
883 if (defined($_merge_info)) {
884 $_merge_info =~ tr{ }{\n};
887 my $d = shift @
$linear_refs or last;
888 unless (defined $last_rev) {
889 (undef, $last_rev, undef) = cmt_metadata
("$d~1");
890 unless (defined $last_rev) {
891 fatal
"Unable to extract revision information ",
896 print "diff-tree $d~1 $d\n";
900 unless (defined($_merge_info) || ! $push_merge_info) {
901 $_merge_info = populate_merge_info
($d, $gs,
907 my %ed_opts = ( r
=> $last_rev,
908 log => get_commit_entry
($d)->{log},
909 ra
=> Git
::SVN
::Ra
->new($url),
910 config
=> SVN
::Core
::config_get_config
(
911 $Git::SVN
::Ra
::config_dir
916 print "Committed r$_[0]\n";
919 mergeinfo
=> $_merge_info,
921 if (!SVN
::Git
::Editor
->new(\
%ed_opts)->apply_diff) {
922 print "No changes\n$d~1 == $d\n";
923 } elsif ($parents->{$d} && @
{$parents->{$d}}) {
924 $gs->{inject_parents_dcommit
}->{$cmt_rev} =
927 $_fetch_all ?
$gs->fetch_all : $gs->fetch;
928 $last_rev = $cmt_rev;
931 # we always want to rebase against the current HEAD,
932 # not any head that was passed to us
933 my @diff = command
('diff-tree', $d,
937 @finish = rebase_cmd
();
938 print STDERR
"W: $d and ", $gs->refname,
939 " differ, using @finish:\n",
940 join("\n", @diff), "\n";
942 print "No changes between current HEAD and ",
944 "\nResetting to the latest ",
946 @finish = qw
/reset --mixed/;
948 command_noisy
(@finish, $gs->refname);
950 $rewritten_parent = command_oneline
(qw
/rev-parse HEAD/);
954 my ($url_, $rev_, $uuid_, $gs_) =
955 working_head_info
('HEAD', \
@refs);
956 my ($linear_refs_, $parents_) =
957 linearize_history
($gs_, \
@refs);
958 if (scalar(@
$linear_refs) !=
959 scalar(@
$linear_refs_)) {
960 fatal
"# of revisions changed ",
962 join("\n", @
$linear_refs),
964 join("\n", @
$linear_refs_), "\n",
965 'If you are attempting to commit ',
966 "merges, try running:\n\t",
967 'git rebase --interactive',
968 '--preserve-merges ',
970 "\nBefore dcommitting";
972 if ($url_ ne $expect_url) {
973 if ($url_ eq $gs->metadata_url) {
975 "Accepting rewritten URL:",
979 "URL mismatch after rebase:",
980 " $url_ != $expect_url";
983 if ($uuid_ ne $uuid) {
984 fatal
"uuid mismatch after rebase: ",
989 for ($i = 0; $i < scalar @
$linear_refs; $i++) {
990 my $new = $linear_refs_->[$i] or next;
992 $parents->{$linear_refs->[$i]};
1002 my $new_head = command_oneline
(qw
/rev-parse HEAD/);
1003 my $new_is_symbolic = eval {
1004 command_oneline
(qw
/symbolic-ref -q HEAD/);
1006 if ($new_is_symbolic) {
1007 print "dcommitted the branch ", $head, "\n";
1009 print "dcommitted on a detached HEAD because you gave ",
1010 "a revision argument.\n",
1011 "The rewritten commit is: ", $new_head, "\n";
1013 command
(['checkout', $old_head], STDERR
=> 0);
1016 unlink $gs->{index};
1020 my ($branch_name, $head) = @_;
1022 unless (defined $branch_name && length $branch_name) {
1023 die(($_tag ?
"tag" : "branch") . " name required\n");
1027 my (undef, $rev, undef, $gs) = working_head_info
($head);
1028 my $src = $gs->full_pushurl;
1030 my $remote = Git
::SVN
::read_all_remotes
()->{$gs->{repo_id
}};
1031 my $allglobs = $remote->{ $_tag ?
'tags' : 'branches' };
1033 if ($#{$allglobs} == 0) {
1034 $glob = $allglobs->[0];
1036 unless(defined $_branch_dest) {
1038 $_tag ?
"tag" : "branch",
1039 " paths defined for Subversion repository.\n",
1040 "You must specify where you want to create the ",
1041 $_tag ?
"tag" : "branch",
1042 " with the --destination argument.\n";
1044 foreach my $g (@
{$allglobs}) {
1045 # SVN::Git::Editor could probably be moved to Git.pm..
1046 my $re = SVN
::Git
::Editor
::glob2pat
($g->{path
}->{left
});
1047 if ($_branch_dest =~ /$re/) {
1052 unless (defined $glob) {
1053 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1054 foreach my $g (@
{$allglobs}) {
1055 $g->{path
}->{left
} =~ /$dest_re/ or next;
1056 if (defined $glob) {
1057 die "Ambiguous destination: ",
1058 $_branch_dest, "\nmatches both '",
1059 $glob->{path
}->{left
}, "' and '",
1060 $g->{path
}->{left
}, "'\n";
1064 unless (defined $glob) {
1066 $_tag ?
"tag" : "branch",
1067 " destination $_branch_dest\n";
1071 my ($lft, $rgt) = @
{ $glob->{path
} }{qw
/left right/};
1073 if (defined $_commit_url) {
1074 $url = $_commit_url;
1076 $url = eval { command_oneline
('config', '--get',
1077 "svn-remote.$gs->{repo_id}.commiturl") };
1079 $url = $remote->{pushurl
} || $remote->{url
};
1082 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
1084 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1085 $src=~s/^http:/https:/;
1090 my $ctx = SVN
::Client
->new(
1091 auth
=> Git
::SVN
::Ra
::_auth_providers
(),
1093 ${ $_[0] } = defined $_message
1095 : 'Create ' . ($_tag ?
'tag ' : 'branch ' )
1101 $ctx->ls($dst, 'HEAD', 0);
1102 } and die "branch ${branch_name} already exists\n";
1104 print "Copying ${src} at r${rev} to ${dst}...\n";
1105 $ctx->copy($src, $rev, $dst)
1112 my $revision_or_hash = shift or die "SVN or git revision required ",
1113 "as a command-line argument\n";
1115 if ($revision_or_hash =~ /^r\d+$/) {
1119 my (undef, undef, $uuid, $gs) = working_head_info
($head, \
@refs);
1121 die "Unable to determine upstream SVN information from ",
1124 my $desired_revision = substr($revision_or_hash, 1);
1125 $result = $gs->rev_map_get($desired_revision, $uuid);
1127 my (undef, $rev, undef) = cmt_metadata
($revision_or_hash);
1130 print "$result\n" if $result;
1133 sub auto_create_empty_directories
{
1135 my $var = eval { command_oneline
('config', '--get', '--bool',
1136 "svn-remote.$gs->{repo_id}.automkdirs") };
1137 # By default, create empty directories by consulting the unhandled log,
1138 # but allow setting it to 'false' to skip it.
1139 return !($var && $var eq 'false');
1143 command_noisy
(qw
/update-index --refresh/);
1144 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1146 die "Unable to determine upstream SVN information from ",
1147 "working tree history\n";
1150 print "Remote Branch: " . $gs->refname . "\n";
1151 print "SVN URL: " . $url . "\n";
1154 if (command
(qw
/diff-index HEAD --/)) {
1155 print STDERR
"Cannot rebase with uncommited changes:\n";
1156 command_noisy
('status');
1160 # rebase will checkout for us, so no need to do it explicitly
1161 $_no_checkout = 'true';
1162 $_fetch_all ?
$gs->fetch_all : $gs->fetch;
1164 command_noisy
(rebase_cmd
(), $gs->refname);
1165 if (auto_create_empty_directories
($gs)) {
1170 sub cmd_show_ignore
{
1171 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1172 $gs ||= Git
::SVN
->new;
1173 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1174 $gs->prop_walk($gs->{path
}, $r, sub {
1175 my ($gs, $path, $props) = @_;
1176 print STDOUT
"\n# $path\n";
1177 my $s = $props->{'svn:ignore'} or return;
1178 $s =~ s/[\r\n]+/\n/g;
1182 print STDOUT
"$s\n";
1186 sub cmd_show_externals
{
1187 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1188 $gs ||= Git
::SVN
->new;
1189 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1190 $gs->prop_walk($gs->{path
}, $r, sub {
1191 my ($gs, $path, $props) = @_;
1192 print STDOUT
"\n# $path\n";
1193 my $s = $props->{'svn:externals'} or return;
1194 $s =~ s/[\r\n]+/\n/g;
1197 print STDOUT
"$s\n";
1201 sub cmd_create_ignore
{
1202 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1203 $gs ||= Git
::SVN
->new;
1204 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1205 $gs->prop_walk($gs->{path
}, $r, sub {
1206 my ($gs, $path, $props) = @_;
1207 # $path is of the form /path/to/dir/
1208 $path = '.' . $path;
1209 # SVN can have attributes on empty directories,
1210 # which git won't track
1211 mkpath
([$path]) unless -d
$path;
1212 my $ignore = $path . '.gitignore';
1213 my $s = $props->{'svn:ignore'} or return;
1214 open(GITIGNORE
, '>', $ignore)
1215 or fatal
("Failed to open `$ignore' for writing: $!");
1216 $s =~ s/[\r\n]+/\n/g;
1219 # Prefix all patterns so that the ignore doesn't apply
1220 # to sub-directories.
1222 print GITIGNORE
"$s\n";
1224 or fatal
("Failed to close `$ignore': $!");
1225 command_noisy
('add', '-f', $ignore);
1230 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1231 $gs ||= Git
::SVN
->new;
1232 $gs->mkemptydirs($_revision);
1235 sub canonicalize_path
{
1237 my $dot_slash_added = 0;
1238 if (substr($path, 0, 1) ne "/") {
1239 $path = "./" . $path;
1240 $dot_slash_added = 1;
1242 # File::Spec->canonpath doesn't collapse x/../y into y (for a
1243 # good reason), so let's do this manually.
1245 $path =~ s
#/\.(?:/|$)#/#g;
1246 $path =~ s
#/[^/]+/\.\.##g;
1248 $path =~ s
#^\./## if $dot_slash_added;
1254 sub canonicalize_url
{
1256 $url =~ s
#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
1260 # get_svnprops(PATH)
1261 # ------------------
1262 # Helper for cmd_propget and cmd_proplist below.
1265 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1266 $gs ||= Git
::SVN
->new;
1268 # prefix THE PATH by the sub-directory from which the user
1270 $path = $cmd_dir_prefix . $path;
1271 fatal
("No such file or directory: $path") unless -e
$path;
1272 my $is_dir = -d
$path ?
1 : 0;
1273 $path = $gs->{path
} . '/' . $path;
1275 # canonicalize the path (otherwise libsvn will abort or fail to
1277 $path = canonicalize_path
($path);
1279 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1282 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1285 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1290 # cmd_propget (PROP, PATH)
1291 # ------------------------
1292 # Print the SVN property PROP for PATH.
1294 my ($prop, $path) = @_;
1295 $path = '.' if not defined $path;
1296 usage
(1) if not defined $prop;
1297 my $props = get_svnprops
($path);
1298 if (not defined $props->{$prop}) {
1299 fatal
("`$path' does not have a `$prop' SVN property.");
1301 print $props->{$prop} . "\n";
1304 # cmd_proplist (PATH)
1305 # -------------------
1306 # Print the list of SVN properties for PATH.
1309 $path = '.' if not defined $path;
1310 my $props = get_svnprops
($path);
1311 print "Properties on '$path':\n";
1312 foreach (sort keys %{$props}) {
1317 sub cmd_multi_init
{
1319 unless (defined $_trunk || @_branches || @_tags) {
1323 $_prefix = '' unless defined $_prefix;
1325 $url = canonicalize_url
($url);
1329 if (defined $_trunk) {
1331 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
1332 # try both old-style and new-style lookups:
1333 my $gs_trunk = eval { Git
::SVN
->new($trunk_ref) };
1334 unless ($gs_trunk) {
1335 my ($trunk_url, $trunk_path) =
1336 complete_svn_url
($url, $_trunk);
1337 $gs_trunk = Git
::SVN
->init($trunk_url, $trunk_path,
1341 return unless @_branches || @_tags;
1342 my $ra = $url ? Git
::SVN
::Ra
->new($url) : undef;
1343 foreach my $path (@_branches) {
1344 complete_url_ls_init
($ra, $path, '--branches/-b', $_prefix);
1346 foreach my $path (@_tags) {
1347 complete_url_ls_init
($ra, $path, '--tags/-t', $_prefix.'tags/');
1351 sub cmd_multi_fetch
{
1352 $Git::SVN
::no_reuse_existing
= undef;
1353 my $remotes = Git
::SVN
::read_all_remotes
();
1354 foreach my $repo_id (sort keys %$remotes) {
1355 if ($remotes->{$repo_id}->{url
}) {
1356 Git
::SVN
::fetch_all
($repo_id, $remotes);
1361 # this command is special because it requires no metadata
1362 sub cmd_commit_diff
{
1363 my ($ta, $tb, $url) = @_;
1364 my $usage = "Usage: $0 commit-diff -r<revision> ".
1365 "<tree-ish> <tree-ish> [<URL>]";
1366 fatal
($usage) if (!defined $ta || !defined $tb);
1368 if (!defined $url) {
1369 my $gs = eval { Git
::SVN
->new };
1371 fatal
("Needed URL or usable git-svn --id in ",
1372 "the command-line\n", $usage);
1375 $svn_path = $gs->{path
};
1377 unless (defined $_revision) {
1378 fatal
("-r|--revision is a required argument\n", $usage);
1380 if (defined $_message && defined $_file) {
1381 fatal
("Both --message/-m and --file/-F specified ",
1382 "for the commit message.\n",
1383 "I have no idea what you mean");
1385 if (defined $_file) {
1386 $_message = file_to_s
($_file);
1388 $_message ||= get_commit_entry
($tb)->{log};
1390 my $ra ||= Git
::SVN
::Ra
->new($url);
1393 $r = $ra->get_latest_revnum;
1394 } elsif ($r !~ /^\d+$/) {
1395 die "revision argument: $r not understood by git-svn\n";
1397 my %ed_opts = ( r
=> $r,
1402 editor_cb
=> sub { print "Committed r$_[0]\n" },
1403 svn_path
=> $svn_path );
1404 if (!SVN
::Git
::Editor
->new(\
%ed_opts)->apply_diff) {
1405 print "No changes\n$ta == $tb\n";
1409 sub escape_uri_only
{
1412 foreach (split m{/}, $uri) {
1413 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
1421 if ($url =~ m
#^([^:]+)://([^/]*)(.*)$#) {
1422 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only
($3));
1423 $url = "$scheme://$domain$uri";
1429 my $path = canonicalize_path
(defined($_[0]) ?
$_[0] : ".");
1430 my $fullpath = canonicalize_path
($cmd_dir_prefix . $path);
1432 die "Too many arguments specified\n";
1435 my ($file_type, $diff_status) = find_file_type_and_diff_status
($path);
1437 if (!$file_type && !$diff_status) {
1438 print STDERR
"svn: '$path' is not under version control\n";
1442 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1444 die "Unable to determine upstream SVN information from ",
1445 "working tree history\n";
1448 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1449 $path = "." if $path eq "";
1451 my $full_url = $url . ($fullpath eq "" ?
"" : "/$fullpath");
1454 print escape_url
($full_url), "\n";
1458 my $result = "Path: $path\n";
1459 $result .= "Name: " . basename
($path) . "\n" if $file_type ne "dir";
1460 $result .= "URL: " . escape_url
($full_url) . "\n";
1463 my $repos_root = $gs->repos_root;
1464 Git
::SVN
::remove_username
($repos_root);
1465 $result .= "Repository Root: " . escape_url
($repos_root) . "\n";
1468 $result .= "Repository Root: (offline)\n";
1471 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
1472 ($SVN::Core
::VERSION
le '1.5.4' || $file_type ne "dir");
1473 $result .= "Revision: " . ($diff_status eq "A" ?
0 : $rev) . "\n";
1475 $result .= "Node Kind: " .
1476 ($file_type eq "dir" ?
"directory" : "file") . "\n";
1478 my $schedule = $diff_status eq "A"
1480 : ($diff_status eq "D" ?
"delete" : "normal");
1481 $result .= "Schedule: $schedule\n";
1483 if ($diff_status eq "A") {
1484 print $result, "\n";
1488 my ($lc_author, $lc_rev, $lc_date_utc);
1489 my @args = Git
::SVN
::Log
::git_svn_log_cmd
($rev, $rev, "--", $fullpath);
1490 my $log = command_output_pipe
(@args);
1491 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1493 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1495 $lc_date_utc = Git
::SVN
::Log
::parse_git_date
($2, $3);
1496 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1497 (undef, $lc_rev, undef) = ::extract_metadata
($1);
1502 Git
::SVN
::Log
::set_local_timezone
();
1504 $result .= "Last Changed Author: $lc_author\n";
1505 $result .= "Last Changed Rev: $lc_rev\n";
1506 $result .= "Last Changed Date: " .
1507 Git
::SVN
::Log
::format_svn_date
($lc_date_utc) . "\n";
1509 if ($file_type ne "dir") {
1510 my $text_last_updated_date =
1511 ($diff_status eq "D" ?
$lc_date_utc : (stat $path)[9]);
1513 "Text Last Updated: " .
1514 Git
::SVN
::Log
::format_svn_date
($text_last_updated_date) .
1517 if ($diff_status eq "D") {
1519 command_output_pipe
(qw(cat-file blob), "HEAD:$path");
1520 if ($file_type eq "link") {
1521 my $file_name = <$fh>;
1522 $checksum = md5sum
("link $file_name");
1524 $checksum = md5sum
($fh);
1526 command_close_pipe
($fh, $ctx);
1527 } elsif ($file_type eq "link") {
1529 command
(qw(cat-file blob), "HEAD:$path");
1531 md5sum
("link " . $file_name);
1533 open FILE
, "<", $path or die $!;
1534 $checksum = md5sum
(\
*FILE
);
1535 close FILE
or die $!;
1537 $result .= "Checksum: " . $checksum . "\n";
1540 print $result, "\n";
1544 my $target = shift || $_revision or die "SVN revision required\n";
1545 $target = $1 if $target =~ /^r(\d+)$/;
1546 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1547 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1549 die "Unable to determine upstream SVN information from ".
1552 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
1553 die "Cannot find SVN revision $target\n" unless defined($c);
1554 $gs->rev_map_set($r, $c, 'reset', $uuid);
1555 print "r$r = $c ($gs->{ref_id})\n";
1559 if (!$can_compress) {
1560 warn "Compress::Zlib could not be found; unhandled.log " .
1561 "files will not be compressed.\n";
1563 find
({ wanted
=> \
&gc_directory
, no_chdir
=> 1}, "$ENV{GIT_DIR}/svn");
1566 ########################### utility functions #########################
1569 my @cmd = qw
/rebase/;
1570 push @cmd, '-v' if $_verbose;
1571 push @cmd, qw
/--merge/ if $_merge;
1572 push @cmd, "--strategy=$_strategy" if $_strategy;
1576 sub post_fetch_checkout
{
1577 return if $_no_checkout;
1578 my $gs = $Git::SVN
::_head
or return;
1579 return if verify_ref
('refs/heads/master^0');
1581 # look for "trunk" ref if it exists
1582 my $remote = Git
::SVN
::read_all_remotes
()->{$gs->{repo_id
}};
1583 my $fetch = $remote->{fetch
};
1585 foreach my $p (keys %$fetch) {
1586 basename
($fetch->{$p}) eq 'trunk' or next;
1587 $gs = Git
::SVN
->new($fetch->{$p}, $gs->{repo_id
}, $p);
1592 my $valid_head = verify_ref
('HEAD^0');
1593 command_noisy
(qw(update-ref refs/heads/master), $gs->refname);
1594 return if ($valid_head || !verify_ref
('HEAD^0'));
1596 return if $ENV{GIT_DIR
} !~ m
#^(?:.*/)?\.git$#;
1597 my $index = $ENV{GIT_INDEX_FILE
} || "$ENV{GIT_DIR}/index";
1598 return if -f
$index;
1600 return if command_oneline
(qw
/rev-parse --is-inside-work-tree/) eq 'false';
1601 return if command_oneline
(qw
/rev-parse --is-inside-git-dir/) eq 'true';
1602 command_noisy
(qw
/read-tree -m -u -v HEAD HEAD/);
1603 print STDERR
"Checked out HEAD:\n ",
1604 $gs->full_url, " r", $gs->last_rev, "\n";
1605 if (auto_create_empty_directories
($gs)) {
1606 $gs->mkemptydirs($gs->last_rev);
1610 sub complete_svn_url
{
1611 my ($url, $path) = @_;
1613 if ($path !~ m
#^[a-z\+]+://#) {
1614 if (!defined $url || $url !~ m
#^[a-z\+]+://#) {
1615 fatal
("E: '$path' is not a complete URL ",
1616 "and a separate URL is not specified");
1618 return ($url, $path);
1623 sub complete_url_ls_init
{
1624 my ($ra, $repo_path, $switch, $pfx) = @_;
1625 unless ($repo_path) {
1626 print STDERR
"W: $switch not specified\n";
1629 $repo_path =~ s
#/+$##;
1630 if ($repo_path =~ m
#^[a-z\+]+://#) {
1631 $ra = Git
::SVN
::Ra
->new($repo_path);
1634 $repo_path =~ s
#^/+##;
1636 fatal
("E: '$repo_path' is not a complete URL ",
1637 "and a separate URL is not specified");
1640 my $url = $ra->{url
};
1641 my $gs = Git
::SVN
->init($url, undef, undef, undef, 1);
1642 my $k = "svn-remote.$gs->{repo_id}.url";
1643 my $orig_url = eval { command_oneline
(qw
/config --get/, $k) };
1644 if ($orig_url && ($orig_url ne $gs->{url
})) {
1645 die "$k already set: $orig_url\n",
1646 "wanted to set to: $gs->{url}\n";
1648 command_oneline
('config', $k, $gs->{url
}) unless $orig_url;
1649 my $remote_path = "$gs->{path}/$repo_path";
1650 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
1651 $remote_path =~ s
#/+#/#g;
1652 $remote_path =~ s
#^/##g;
1653 $remote_path .= "/*" if $remote_path !~ /\
*/;
1654 my ($n) = ($switch =~ /^--(\w+)/);
1655 if (length $pfx && $pfx !~ m
#/$#) {
1656 die "--prefix='$pfx' must have a trailing slash '/'\n";
1658 command_noisy
('config',
1660 "svn-remote.$gs->{repo_id}.$n",
1661 "$remote_path:refs/remotes/$pfx*" .
1662 ('/*' x
(($remote_path =~ tr
/*/*/) - 1)) );
1667 eval { command_oneline
([ 'rev-parse', '--verify', $ref ],
1668 { STDERR
=> 0 }); };
1671 sub get_tree_from_treeish
{
1673 # $treeish can be a symbolic ref, too:
1674 my $type = command_oneline
(qw
/cat-file -t/, $treeish);
1676 while ($type eq 'tag') {
1677 ($treeish, $type) = command
(qw
/cat-file tag/, $treeish);
1679 if ($type eq 'commit') {
1680 $expected = (grep /^tree /, command
(qw
/cat-file commit/,
1682 ($expected) = ($expected =~ /^tree ($sha1)$/o);
1683 die "Unable to get tree from $treeish\n" unless $expected;
1684 } elsif ($type eq 'tree') {
1685 $expected = $treeish;
1687 die "$treeish is a $type, expected tree, tag or commit\n";
1692 sub get_commit_entry
{
1693 my ($treeish) = shift;
1694 my %log_entry = ( log => '', tree
=> get_tree_from_treeish
($treeish) );
1695 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1696 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1697 open my $log_fh, '>', $commit_editmsg or croak
$!;
1699 my $type = command_oneline
(qw
/cat-file -t/, $treeish);
1700 if ($type eq 'commit' || $type eq 'tag') {
1701 my ($msg_fh, $ctx) = command_output_pipe
('cat-file',
1709 $in_msg = 1 if (/^\s*$/);
1710 $author = $1 if (/^author (.*>)/);
1711 } elsif (/^git-svn-id: /) {
1712 # skip this for now, we regenerate the
1713 # correct one on re-fetch anyways
1714 # TODO: set *:merge properties or like...
1716 if (/^From:/ || /^Signed-off-by:/) {
1722 $msgbuf =~ s/\s+$//s;
1723 if ($Git::SVN
::_add_author_from
&& defined($author)
1725 $msgbuf .= "\n\nFrom: $author";
1727 print $log_fh $msgbuf or croak
$!;
1728 command_close_pipe
($msg_fh, $ctx);
1730 close $log_fh or croak
$!;
1732 if ($_edit || ($type eq 'tree')) {
1733 chomp(my $editor = command_oneline
(qw(var GIT_EDITOR)));
1734 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
1736 rename $commit_editmsg, $commit_msg or croak
$!;
1739 # SVN requires messages to be UTF-8 when entering the repo
1741 open $log_fh, '<', $commit_msg or croak
$!;
1743 chomp($log_entry{log} = <$log_fh>);
1745 my $enc = Git
::config
('i18n.commitencoding') || 'UTF-8';
1746 my $msg = $log_entry{log};
1748 eval { $msg = Encode
::decode
($enc, $msg, 1) };
1750 die "Could not decode as $enc:\n", $msg,
1751 "\nPerhaps you need to set i18n.commitencoding\n";
1754 eval { $msg = Encode
::encode
('UTF-8', $msg, 1) };
1755 die "Could not encode as UTF-8:\n$msg\n" if $@
;
1757 $log_entry{log} = $msg;
1759 close $log_fh or croak
$!;
1766 my ($str, $file, $mode) = @_;
1767 open my $fd,'>',$file or croak
$!;
1768 print $fd $str,"\n" or croak
$!;
1769 close $fd or croak
$!;
1770 chmod ($mode &~ umask, $file) if (defined $mode);
1775 open my $fd,'<',$file or croak
"$!: file: $file\n";
1778 close $fd or croak
$!;
1783 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1785 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
1786 my $log = $cmd eq 'log';
1787 while (<$authors>) {
1789 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
1790 my ($user, $name, $email) = ($1, $2, $3);
1792 $Git::SVN
::Log
::rusers
{"$name <$email>"} = $user;
1794 $users{$user} = [$name, $email];
1797 close $authors or croak
$!;
1800 # convert GetOpt::Long specs for use by git-config
1801 sub read_git_config
{
1804 foreach my $o (keys %$opts) {
1805 # if we have mixedCase and a long option-only, then
1806 # it's a config-only variable that we don't need for
1808 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
1809 my $v = $opts->{$o};
1810 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
1812 my $arg = 'git config';
1813 $arg .= ' --int' if ($o =~ /[:=]i$/);
1814 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1815 if (ref $v eq 'ARRAY') {
1816 chomp(my @tmp = `$arg --get-all svn.$key`);
1819 chomp(my $tmp = `$arg --get svn.$key`);
1820 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
1825 delete @
$opts{@config_only} if @config_only;
1828 sub extract_metadata
{
1829 my $id = shift or return (undef, undef, undef);
1830 my ($url, $rev, $uuid) = ($id =~ /^\s
*git
-svn
-id
:\s
+(.*)\@
(\d
+)
1831 \s
([a
-f\d\
-]+)$/ix
);
1832 if (!defined $rev || !$uuid || !$url) {
1833 # some of the original repositories I made had
1834 # identifiers like this:
1835 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
1837 return ($url, $rev, $uuid);
1841 return extract_metadata
((grep(/^git-svn-id: /,
1842 command
(qw
/cat-file commit/, shift)))[-1]);
1845 sub cmt_sha2rev_batch
{
1847 my ($pid, $in, $out, $ctx) = command_bidi_pipe
(qw
/cat-file --batch/);
1850 foreach my $sha (@
{$list}) {
1853 print $out $sha, "\n";
1855 while (my $line = <$in>) {
1856 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1859 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1863 } elsif ($line =~ /^(git-svn-id: )/) {
1864 my (undef, $rev, undef) =
1865 extract_metadata
($line);
1869 $size -= length($line);
1870 last if ($size == 0);
1874 command_close_bidi_pipe
($pid, $in, $out, $ctx);
1879 sub working_head_info
{
1880 my ($head, $refs) = @_;
1881 my @args = qw
/log --no-color
--no-decorate
--first
-parent
1883 my ($fh, $ctx) = command_output_pipe
(@args, $head);
1887 if ( m{^commit ($::sha1)$} ) {
1888 unshift @
$refs, $hash if $hash and $refs;
1892 next unless s{^\s*(git-svn-id:)}{$1};
1893 my ($url, $rev, $uuid) = extract_metadata
($_);
1894 if (defined $url && defined $rev) {
1895 next if $max{$url} and $max{$url} < $rev;
1896 if (my $gs = Git
::SVN
->find_by_url($url)) {
1897 my $c = $gs->rev_map_get($rev, $uuid);
1898 if ($c && $c eq $hash) {
1899 close $fh; # break the pipe
1900 return ($url, $rev, $uuid, $gs);
1902 $max{$url} ||= $gs->rev_map_max;
1907 command_close_pipe
($fh, $ctx);
1908 (undef, undef, undef, undef);
1911 sub read_commit_parents
{
1912 my ($parents, $c) = @_;
1913 chomp(my $p = command_oneline
(qw
/rev-list --parents -1/, $c));
1914 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1915 @
{$parents->{$c}} = split(/ /, $p);
1918 sub linearize_history
{
1919 my ($gs, $refs) = @_;
1921 foreach my $c (@
$refs) {
1922 read_commit_parents
(\
%parents, $c);
1927 my $last_svn_commit = $gs->last_commit;
1928 foreach my $c (reverse @
$refs) {
1929 next if $c eq $last_svn_commit;
1932 unshift @linear_refs, $c;
1935 # we only want the first parent to diff against for linear
1936 # history, we save the rest to inject when we finalize the
1938 my $fp_a = verify_ref
("$c~1");
1939 my $fp_b = shift @
{$parents{$c}} if $parents{$c};
1940 if (!$fp_a || !$fp_b) {
1942 "has no parent commit, and therefore ",
1943 "nothing to diff against.\n",
1944 "You should be working from a repository ",
1945 "originally created by git-svn\n";
1947 if ($fp_a ne $fp_b) {
1948 die "$c~1 = $fp_a, however parsing commit $c ",
1949 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1952 foreach my $p (@
{$parents{$c}}) {
1956 (\
@linear_refs, \
%parents);
1959 sub find_file_type_and_diff_status
{
1961 return ('dir', '') if $path eq '';
1964 command_oneline
(qw(diff --cached --name-status --), $path) || "";
1965 my $diff_status = (split(' ', $diff_output))[0] || "";
1967 my $ls_tree = command_oneline
(qw(ls-tree HEAD), $path) || "";
1969 return (undef, undef) if !$diff_status && !$ls_tree;
1971 if ($diff_status eq "A") {
1972 return ("link", $diff_status) if -l
$path;
1973 return ("dir", $diff_status) if -d
$path;
1974 return ("file", $diff_status);
1977 my $mode = (split(' ', $ls_tree))[0] || "";
1979 return ("link", $diff_status) if $mode eq "120000";
1980 return ("dir", $diff_status) if $mode eq "040000";
1981 return ("file", $diff_status);
1987 my $md5 = Digest
::MD5
->new();
1988 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
1989 $md5->addfile($arg) or croak
$!;
1990 } elsif ($ref eq 'SCALAR') {
1991 $md5->add($$arg) or croak
$!;
1993 $md5->add($arg) or croak
$!;
1995 ::fatal
"Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1997 return $md5->hexdigest();
2001 if ($can_compress && -f
$_ && basename
($_) eq "unhandled.log") {
2002 my $out_filename = $_ . ".gz";
2003 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
2005 my $gz = Compress
::Zlib
::gzopen
($out_filename, "ab") or
2006 die "Unable to open $out_filename: $!\n";
2009 while ($res = sysread($in_fh, my $str, 1024)) {
2010 $gz->gzwrite($str) or
2011 die "Unable to write: ".$gz->gzerror()."!\n";
2013 unlink $_ or die "unlink $File::Find::name: $!\n";
2014 } elsif (-f
$_ && basename
($_) eq "index") {
2015 unlink $_ or die "unlink $_: $!\n";
2022 use Fcntl qw
/:DEFAULT :seek/;
2023 use constant rev_map_fmt
=> 'NH40';
2024 use vars qw
/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
2025 $_repack $_repack_flags $_use_svm_props $_head
2026 $_use_svnsync_props $no_reuse_existing $_minimize_url
2027 $_use_log_author $_add_author_from $_localtime/;
2029 use File
::Path qw
/mkpath/;
2030 use File
::Copy qw
/copy/;
2032 use Memoize
; # core since 5.8.0, Jul 2002
2033 use Memoize
::Storable
;
2035 my ($_gc_nr, $_gc_period);
2037 # properties that we do not log:
2040 %SKIP_PROP = map { $_ => 1 } qw
/svn
:wc
:ra_dav
:version
-url
2041 svn
:special svn
:executable
2042 svn
:entry
:committed
-rev
2043 svn
:entry
:last-author
2045 svn
:entry
:committed
-date
/;
2047 # some options are read globally, but can be overridden locally
2048 # per [svn-remote "..."] section. Command-line options will *NOT*
2049 # override options set in an [svn-remote "..."] section
2051 for my $option (qw
/follow_parent no_metadata use_svm_props
2052 use_svnsync_props
/) {
2055 my $prop = "-$option";
2058 return $self->{$prop} if exists $self->{$prop};
2059 my $k = "svn-remote.$self->{repo_id}.$key";
2060 eval { command_oneline
(qw
/config --get/, $k) };
2062 $self->{$prop} = ${"Git::SVN::_$option"};
2064 my $v = command_oneline
(qw
/config --bool/,$k);
2065 $self->{$prop} = $v eq 'false' ?
0 : 1;
2067 return $self->{$prop};
2073 my (%LOCKFILES, %INDEX_FILES);
2075 unlink keys %LOCKFILES if %LOCKFILES;
2076 unlink keys %INDEX_FILES if %INDEX_FILES;
2079 sub resolve_local_globs
{
2080 my ($url, $fetch, $glob_spec) = @_;
2081 return unless defined $glob_spec;
2082 my $ref = $glob_spec->{ref};
2083 my $path = $glob_spec->{path
};
2084 foreach (command
(qw
#for-each-ref --format=%(refname) refs/#)) {
2085 next unless m
#^$ref->{regex}$#;
2087 my $pathname = desanitize_refname
($path->full_path($p));
2088 my $refname = desanitize_refname
($ref->full_path($p));
2089 if (my $existing = $fetch->{$pathname}) {
2090 if ($existing ne $refname) {
2091 die "Refspec conflict:\n",
2092 "existing: $existing\n",
2093 " globbed: $refname\n";
2095 my $u = (::cmt_metadata
("$refname"))[0];
2096 $u =~ s!^\Q$url\E(/|$)!! or die
2097 "$refname: '$url' not found in '$u'\n";
2098 if ($pathname ne $u) {
2099 warn "W: Refspec glob conflict ",
2100 "(ref: $refname):\n",
2101 "expected path: $pathname\n",
2103 "Continuing ahead with $u\n";
2107 $fetch->{$pathname} = $refname;
2112 sub parse_revision_argument
{
2113 my ($base, $head) = @_;
2114 if (!defined $::_revision
|| $::_revision
eq 'BASE:HEAD') {
2115 return ($base, $head);
2117 return ($1, $2) if ($::_revision
=~ /^(\d+):(\d+)$/);
2118 return ($::_revision
, $::_revision
) if ($::_revision
=~ /^\d+$/);
2119 return ($head, $head) if ($::_revision
eq 'HEAD');
2120 return ($base, $1) if ($::_revision
=~ /^BASE:(\d+)$/);
2121 return ($1, $head) if ($::_revision
=~ /^(\d+):HEAD$/);
2122 die "revision argument: $::_revision not understood by git-svn\n";
2126 my ($repo_id, $remotes) = @_;
2130 $repo_id = $gs->{repo_id
};
2132 $remotes ||= read_all_remotes
();
2133 my $remote = $remotes->{$repo_id} or
2134 die "[svn-remote \"$repo_id\"] unknown\n";
2135 my $fetch = $remote->{fetch
};
2136 my $url = $remote->{url
} or die "svn-remote.$repo_id.url not defined\n";
2138 my $ra = Git
::SVN
::Ra
->new($url);
2139 my $uuid = $ra->get_uuid;
2140 my $head = $ra->get_latest_revnum;
2142 # ignore errors, $head revision may not even exist anymore
2143 eval { $ra->get_log("", $head, 0, 1, 0, 1, sub { $head = $_[1] }) };
2144 warn "W: $@\n" if $@
;
2146 my $base = defined $fetch ?
$head : 0;
2148 # read the max revs for wildcard expansion (branches/*, tags/*)
2149 foreach my $t (qw
/branches tags/) {
2150 defined $remote->{$t} or next;
2151 push @globs, @
{$remote->{$t}};
2153 my $max_rev = eval { tmp_config
(qw
/--int --get/,
2154 "svn-remote.$repo_id.${t}-maxRev") };
2155 if (defined $max_rev && ($max_rev < $base)) {
2157 } elsif (!defined $max_rev) {
2163 foreach my $p (sort keys %$fetch) {
2164 my $gs = Git
::SVN
->new($fetch->{$p}, $repo_id, $p);
2165 my $lr = $gs->rev_map_max;
2167 $base = $lr if ($lr < $base);
2173 ($base, $head) = parse_revision_argument
($base, $head);
2174 $ra->gs_fetch_loop_common($base, $head, \
@gs, \
@globs);
2177 sub read_all_remotes
{
2179 my $use_svm_props = eval { command_oneline
(qw
/config
--bool
2180 svn
.useSvmProps
/) };
2181 $use_svm_props = $use_svm_props eq 'true' if $use_svm_props;
2182 my $svn_refspec = qr{\s*(.*?)\s*:\s*(.+?)\s*};
2183 foreach (grep { s/^svn-remote\.// } command
(qw
/config -l/)) {
2184 if (m!^(.+)\.fetch=$svn_refspec$!) {
2185 my ($remote, $local_ref, $remote_ref) = ($1, $2, $3);
2186 die("svn-remote.$remote: remote ref '$remote_ref' "
2187 . "must start with 'refs/'\n")
2188 unless $remote_ref =~ m{^refs/};
2189 $local_ref = uri_decode
($local_ref);
2190 $r->{$remote}->{fetch
}->{$local_ref} = $remote_ref;
2191 $r->{$remote}->{svm
} = {} if $use_svm_props;
2192 } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
2193 $r->{$1}->{svm
} = {};
2194 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
2195 $r->{$1}->{url
} = $2;
2196 } elsif (m!^(.+)\.pushurl=\s*(.*)\s*$!) {
2197 $r->{$1}->{pushurl
} = $2;
2198 } elsif (m!^(.+)\.ignore-refs=\s*(.*)\s*$!) {
2199 $r->{$1}->{ignore_refs_regex
} = $2;
2200 } elsif (m!^(.+)\.(branches|tags)=$svn_refspec$!) {
2201 my ($remote, $t, $local_ref, $remote_ref) =
2203 die("svn-remote.$remote: remote ref '$remote_ref' ($t) "
2204 . "must start with 'refs/'\n")
2205 unless $remote_ref =~ m{^refs/};
2206 $local_ref = uri_decode
($local_ref);
2210 path
=> Git
::SVN
::GlobSpec
->new($local_ref, 1),
2211 ref => Git
::SVN
::GlobSpec
->new($remote_ref, 0) };
2212 if (length($rs->{ref}->{right
}) != 0) {
2213 die "The '*' glob character must be the last ",
2214 "character of '$remote_ref'\n";
2216 push @
{ $r->{$remote}->{$t} }, $rs;
2221 if (defined $r->{$_}->{svm
}) {
2224 my $section = "svn-remote.$_";
2226 source
=> tmp_config
('--get',
2227 "$section.svm-source"),
2228 replace
=> tmp_config
('--get',
2229 "$section.svm-replace"),
2232 $r->{$_}->{svm
} = $svm;
2236 foreach my $remote (keys %$r) {
2237 foreach ( grep { defined $_ }
2238 map { $r->{$remote}->{$_} } qw(branches tags) ) {
2239 foreach my $rs ( @
$_ ) {
2240 $rs->{ignore_refs_regex
} =
2241 $r->{$remote}->{ignore_refs_regex
};
2250 $_gc_nr = $_gc_period = 1000;
2251 if (defined $_repack || defined $_repack_flags) {
2252 warn "Repack options are obsolete; they have no effect.\n";
2256 sub verify_remotes_sanity
{
2257 return unless -d
$ENV{GIT_DIR
};
2259 foreach (command
(qw
/config -l/)) {
2260 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
2262 die "Remote ref refs/remote/$1 is tracked by",
2263 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
2264 "Please resolve this ambiguity in ",
2265 "your git configuration file before ",
2273 sub find_existing_remote
{
2274 my ($url, $remotes) = @_;
2275 return undef if $no_reuse_existing;
2277 foreach my $repo_id (keys %$remotes) {
2278 my $u = $remotes->{$repo_id}->{url
} or next;
2280 $existing = $repo_id;
2286 sub init_remote_config
{
2287 my ($self, $url, $no_write) = @_;
2288 $url =~ s!/+$!!; # strip trailing slash
2289 my $r = read_all_remotes
();
2290 my $existing = find_existing_remote
($url, $r);
2292 unless ($no_write) {
2293 print STDERR
"Using existing ",
2294 "[svn-remote \"$existing\"]\n";
2296 $self->{repo_id
} = $existing;
2297 } elsif ($_minimize_url) {
2298 my $min_url = Git
::SVN
::Ra
->new($url)->minimize_url;
2299 $existing = find_existing_remote
($min_url, $r);
2301 unless ($no_write) {
2302 print STDERR
"Using existing ",
2303 "[svn-remote \"$existing\"]\n";
2305 $self->{repo_id
} = $existing;
2307 if ($min_url ne $url) {
2308 unless ($no_write) {
2309 print STDERR
"Using higher level of URL: ",
2310 "$url => $min_url\n";
2312 my $old_path = $self->{path
};
2313 $self->{path
} = $url;
2314 $self->{path
} =~ s!^\Q$min_url\E(/|$)!!;
2315 if (length $old_path) {
2316 $self->{path
} .= "/$old_path";
2323 # verify that we aren't overwriting anything:
2325 command_oneline
('config', '--get',
2326 "svn-remote.$self->{repo_id}.url")
2328 if ($orig_url && ($orig_url ne $url)) {
2329 die "svn-remote.$self->{repo_id}.url already set: ",
2330 "$orig_url\nwanted to set to: $url\n";
2333 my ($xrepo_id, $xpath) = find_ref
($self->refname);
2334 if (!$no_write && defined $xpath) {
2335 die "svn-remote.$xrepo_id.fetch already set to track ",
2336 "$xpath:", $self->refname, "\n";
2338 unless ($no_write) {
2339 command_noisy
('config',
2340 "svn-remote.$self->{repo_id}.url", $url);
2341 $self->{path
} =~ s{^/}{};
2342 $self->{path
} =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
2343 command_noisy
('config', '--add',
2344 "svn-remote.$self->{repo_id}.fetch",
2345 "$self->{path}:".$self->refname);
2347 $self->{url
} = $url;
2350 sub find_by_url
{ # repos_root and, path are optional
2351 my ($class, $full_url, $repos_root, $path) = @_;
2353 return undef unless defined $full_url;
2354 remove_username
($full_url);
2355 remove_username
($repos_root) if defined $repos_root;
2356 my $remotes = read_all_remotes
();
2357 if (defined $full_url && defined $repos_root && !defined $path) {
2359 $path =~ s
#^\Q$repos_root\E(?:/|$)##;
2361 foreach my $repo_id (keys %$remotes) {
2362 my $u = $remotes->{$repo_id}->{url
} or next;
2363 remove_username
($u);
2364 next if defined $repos_root && $repos_root ne $u;
2366 my $fetch = $remotes->{$repo_id}->{fetch
} || {};
2367 foreach my $t (qw
/branches tags/) {
2368 foreach my $globspec (@
{$remotes->{$repo_id}->{$t}}) {
2369 resolve_local_globs
($u, $fetch, $globspec);
2373 my $rwr = rewrite_root
({repo_id
=> $repo_id});
2374 my $svm = $remotes->{$repo_id}->{svm
}
2375 if defined $remotes->{$repo_id}->{svm
};
2376 unless (defined $p) {
2382 remove_username
($z);
2383 } elsif (defined $svm) {
2384 $z = $svm->{source
};
2385 $prefix = $svm->{replace
};
2386 $prefix =~ s
#^\Q$u\E(?:/|$)##;
2389 $p =~ s
#^\Q$z\E(?:/|$)#$prefix# or next;
2391 foreach my $f (keys %$fetch) {
2393 return Git
::SVN
->new($fetch->{$f}, $repo_id, $f);
2400 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
2401 my $self = _new
($class, $repo_id, $ref_id, $path);
2403 $self->init_remote_config($url, $no_write);
2410 foreach (command
(qw
/config -l/)) {
2411 next unless m
!^svn
-remote\
.(.+)\
.fetch
=
2412 \s
*(.*?
)\s
*:\s
*(.+?
)\s
*$!x
;
2413 my ($repo_id, $path, $ref) = ($1, $2, $3);
2414 if ($ref eq $ref_id) {
2415 $path = '' if ($path =~ m
#^\./?#);
2416 return ($repo_id, $path);
2419 (undef, undef, undef);
2423 my ($class, $ref_id, $repo_id, $path) = @_;
2424 if (defined $ref_id && !defined $repo_id && !defined $path) {
2425 ($repo_id, $path) = find_ref
($ref_id);
2426 if (!defined $repo_id) {
2427 die "Could not find a \"svn-remote.*.fetch\" key ",
2428 "in the repository configuration matching: ",
2432 my $self = _new
($class, $repo_id, $ref_id, $path);
2433 if (!defined $self->{path
} || !length $self->{path
}) {
2434 my $fetch = command_oneline
('config', '--get',
2435 "svn-remote.$repo_id.fetch",
2437 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
2438 "\":$ref_id\$\" in config\n";
2439 ($self->{path
}, undef) = split(/\s*:\s*/, $fetch);
2441 $self->{path
} =~ s{/+}{/}g;
2442 $self->{path
} =~ s{\A/}{};
2443 $self->{path
} =~ s{/\z}{};
2444 $self->{url
} = command_oneline
('config', '--get',
2445 "svn-remote.$repo_id.url") or
2446 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
2447 $self->{pushurl
} = eval { command_oneline
('config', '--get',
2448 "svn-remote.$repo_id.pushurl") };
2454 my ($refname) = $_[0]->{ref_id
} ;
2456 # It cannot end with a slash /, we'll throw up on this because
2457 # SVN can't have directories with a slash in their name, either:
2458 if ($refname =~ m{/$}) {
2459 die "ref: '$refname' ends with a trailing slash, this is ",
2460 "not permitted by git nor Subversion\n";
2463 # It cannot have ASCII control character space, tilde ~, caret ^,
2464 # colon :, question-mark ?, asterisk *, space, or open bracket [
2467 # Additionally, % must be escaped because it is used for escaping
2468 # and we want our escaped refname to be reversible
2469 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
2471 # no slash-separated component can begin with a dot .
2473 $refname =~ s{/\.}{/%2E}g;
2475 # It cannot have two consecutive dots .. anywhere
2477 $refname =~ s{\.\.}{%2E%2E}g;
2479 # trailing dots and .lock are not allowed
2480 # .$ becomes %2E and .lock becomes %2Elock
2481 $refname =~ s{\.(?=$|lock$)}{%2E};
2483 # the sequence @{ is used to access the reflog
2485 $refname =~ s{\@\{}{%40\{}g;
2490 sub desanitize_refname
{
2492 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
2498 return $self->{svm
}->{uuid
} if $self->svm;
2500 unless ($self->{svm
}) {
2501 die "SVM UUID not cached, and reading remotely failed\n";
2503 $self->{svm
}->{uuid
};
2508 return $self->{svm
} if $self->{svm
};
2510 # see if we have it in our config, first:
2512 my $section = "svn-remote.$self->{repo_id}";
2514 source
=> tmp_config
('--get', "$section.svm-source"),
2515 uuid
=> tmp_config
('--get', "$section.svm-uuid"),
2516 replace
=> tmp_config
('--get', "$section.svm-replace"),
2519 if ($svm && $svm->{source
} && $svm->{uuid
} && $svm->{replace
}) {
2520 $self->{svm
} = $svm;
2526 my ($self, $ra) = @_;
2527 return $ra if $self->svm;
2529 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
2530 "(svm:source, svm:uuid) ",
2531 "from the following URLs:\n" );
2532 sub read_svm_props
{
2533 my ($self, $ra, $path, $r) = @_;
2534 my $props = ($ra->get_dir($path, $r))[2];
2535 my $src = $props->{'svm:source'};
2536 my $uuid = $props->{'svm:uuid'};
2537 return undef if (!$src || !$uuid);
2541 $uuid =~ m{^[0-9a-f\-]{30,}$}i
2542 or die "doesn't look right - svm:uuid is '$uuid'\n";
2544 # the '!' is used to mark the repos_root!/relative/path
2545 $src =~ s{/?!/?}{/};
2546 $src =~ s{/+$}{}; # no trailing slashes please
2547 # username is of no interest
2548 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
2550 my $replace = $ra->{url
};
2551 $replace .= "/$path" if length $path;
2553 my $section = "svn-remote.$self->{repo_id}";
2554 tmp_config
("$section.svm-source", $src);
2555 tmp_config
("$section.svm-replace", $replace);
2556 tmp_config
("$section.svm-uuid", $uuid);
2564 my $r = $ra->get_latest_revnum;
2565 my $path = $self->{path
};
2567 while (length $path) {
2568 unless ($tried{"$self->{url}/$path"}) {
2569 return $ra if $self->read_svm_props($ra, $path, $r);
2570 $tried{"$self->{url}/$path"} = 1;
2572 $path =~ s
#/?[^/]+$##;
2574 die "Path: '$path' should be ''\n" if $path ne '';
2575 return $ra if $self->read_svm_props($ra, $path, $r);
2576 $tried{"$self->{url}/$path"} = 1;
2578 if ($ra->{repos_root
} eq $self->{url
}) {
2579 die @err, (map { " $_\n" } keys %tried), "\n";
2582 # nope, make sure we're connected to the repository root:
2585 $path = $ra->{svn_path
};
2586 $ra = Git
::SVN
::Ra
->new($ra->{repos_root
});
2587 while (length $path) {
2588 unless ($tried{"$ra->{url}/$path"}) {
2589 $ok = $self->read_svm_props($ra, $path, $r);
2591 $tried{"$ra->{url}/$path"} = 1;
2593 $path =~ s
#/?[^/]+$##;
2595 die "Path: '$path' should be ''\n" if $path ne '';
2596 $ok ||= $self->read_svm_props($ra, $path, $r);
2597 $tried{"$ra->{url}/$path"} = 1;
2599 die @err, (map { " $_\n" } keys %tried), "\n";
2601 Git
::SVN
::Ra
->new($self->{url
});
2606 return $self->{svnsync
} if $self->{svnsync
};
2608 if ($self->no_metadata) {
2609 die "Can't have both 'noMetadata' and ",
2610 "'useSvnsyncProps' options set!\n";
2612 if ($self->rewrite_root) {
2613 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
2616 if ($self->rewrite_uuid) {
2617 die "Can't have both 'useSvnsyncProps' and 'rewriteUUID' ",
2622 # see if we have it in our config, first:
2624 my $section = "svn-remote.$self->{repo_id}";
2626 my $url = tmp_config
('--get', "$section.svnsync-url");
2627 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
2628 die "doesn't look right - svn:sync-from-url is '$url'\n";
2630 my $uuid = tmp_config
('--get', "$section.svnsync-uuid");
2631 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i
) or
2632 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2634 $svnsync = { url
=> $url, uuid
=> $uuid }
2636 if ($svnsync && $svnsync->{url
} && $svnsync->{uuid
}) {
2637 return $self->{svnsync
} = $svnsync;
2640 my $err = "useSvnsyncProps set, but failed to read " .
2641 "svnsync property: svn:sync-from-";
2642 my $rp = $self->ra->rev_proplist(0);
2644 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
2645 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
2646 die "doesn't look right - svn:sync-from-url is '$url'\n";
2648 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
2649 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i
) or
2650 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2652 my $section = "svn-remote.$self->{repo_id}";
2653 tmp_config
('--add', "$section.svnsync-uuid", $uuid);
2654 tmp_config
('--add', "$section.svnsync-url", $url);
2655 return $self->{svnsync
} = { url
=> $url, uuid
=> $uuid };
2658 # this allows us to memoize our SVN::Ra UUID locally and avoid a
2659 # remote lookup (useful for 'git svn log').
2662 unless ($self->{ra_uuid
}) {
2663 my $key = "svn-remote.$self->{repo_id}.uuid";
2664 my $uuid = eval { tmp_config
('--get', $key) };
2665 if (!$@
&& $uuid && $uuid =~ /^([a-f\d\-]{30,})$/i) {
2666 $self->{ra_uuid
} = $uuid;
2668 die "ra_uuid called without URL\n" unless $self->{url
};
2669 $self->{ra_uuid
} = $self->ra->get_uuid;
2670 tmp_config
('--add', $key, $self->{ra_uuid
});
2676 sub _set_repos_root
{
2677 my ($self, $repos_root) = @_;
2678 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2679 $repos_root ||= $self->ra->{repos_root
};
2680 tmp_config
($k, $repos_root);
2686 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2687 eval { tmp_config
('--get', $k) } || $self->_set_repos_root;
2692 my $ra = Git
::SVN
::Ra
->new($self->{url
});
2693 $self->_set_repos_root($ra->{repos_root
});
2694 if ($self->use_svm_props && !$self->{svm
}) {
2695 if ($self->no_metadata) {
2696 die "Can't have both 'noMetadata' and ",
2697 "'useSvmProps' options set!\n";
2698 } elsif ($self->use_svnsync_props) {
2699 die "Can't have both 'useSvnsyncProps' and ",
2700 "'useSvmProps' options set!\n";
2702 $ra = $self->_set_svm_vars($ra);
2703 $self->{-want_revprops
} = 1;
2708 # prop_walk(PATH, REV, SUB)
2709 # -------------------------
2710 # Recursively traverse PATH at revision REV and invoke SUB for each
2711 # directory that contains a SVN property. SUB will be invoked as
2712 # follows: &SUB(gs, path, props); where `gs' is this instance of
2713 # Git::SVN, `path' the path to the directory where the properties
2714 # `props' were found. The `path' will be relative to point of checkout,
2715 # that is, if url://repo/trunk is the current Git branch, and that
2716 # directory contains a sub-directory `d', SUB will be invoked with `/d/'
2717 # as `path' (note the trailing `/').
2719 my ($self, $path, $rev, $sub) = @_;
2722 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
2725 # Strip the irrelevant part of the path.
2726 $p =~ s
#^/+\Q$self->{path}\E(/|$)#/#;
2727 # Ensure the path is terminated by a `/'.
2730 # The properties contain all the internal SVN stuff nobody
2731 # (usually) cares about.
2732 my $interesting_props = 0;
2733 foreach (keys %{$props}) {
2734 # If it doesn't start with `svn:', it must be a
2735 # user-defined property.
2736 ++$interesting_props and next if $_ !~ /^svn:/;
2737 # FIXME: Fragile, if SVN adds new public properties,
2738 # this needs to be updated.
2739 ++$interesting_props if /^svn
:(?
:ignore
|keywords
|executable
2740 |eol
-style
|mime
-type
2741 |externals
|needs
-lock)$/x
;
2743 &$sub($self, $p, $props) if $interesting_props;
2745 foreach (sort keys %$dirent) {
2746 next if $dirent->{$_}->{kind
} != $SVN::Node
::dir
;
2747 $self->prop_walk($self->{path
} . $p . $_, $rev, $sub);
2751 sub last_rev
{ ($_[0]->last_rev_commit)[0] }
2752 sub last_commit
{ ($_[0]->last_rev_commit)[1] }
2754 # returns the newest SVN revision number and newest commit SHA1
2755 sub last_rev_commit
{
2757 if (defined $self->{last_rev
} && defined $self->{last_commit
}) {
2758 return ($self->{last_rev
}, $self->{last_commit
});
2760 my $c = ::verify_ref
($self->refname.'^0');
2761 if ($c && !$self->use_svm_props && !$self->no_metadata) {
2762 my $rev = (::cmt_metadata
($c))[1];
2764 ($self->{last_rev
}, $self->{last_commit
}) = ($rev, $c);
2768 my $map_path = $self->map_path;
2769 unless (-e
$map_path) {
2770 ($self->{last_rev
}, $self->{last_commit
}) = (undef, undef);
2771 return (undef, undef);
2773 my ($rev, $commit) = $self->rev_map_max(1);
2774 ($self->{last_rev
}, $self->{last_commit
}) = ($rev, $commit);
2775 return ($rev, $commit);
2778 sub get_fetch_range
{
2779 my ($self, $min, $max) = @_;
2780 $max ||= $self->ra->get_latest_revnum;
2781 $min ||= $self->rev_map_max;
2787 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
2788 my $config = "$ENV{GIT_DIR}/svn/.metadata";
2789 if (! -f
$config && -f
$old_def_config) {
2790 rename $old_def_config, $config or
2791 die "Failed rename $old_def_config => $config: $!\n";
2793 my $old_config = $ENV{GIT_CONFIG
};
2794 $ENV{GIT_CONFIG
} = $config;
2797 unless (-f
$config) {
2799 open my $fh, '>', $config or
2800 die "Can't open $config: $!\n";
2801 print $fh "; This file is used internally by ",
2803 "Couldn't write to $config: $!\n";
2804 print $fh "; You should not have to edit it\n" or
2805 die "Couldn't write to $config: $!\n";
2806 close $fh or die "Couldn't close $config: $!\n";
2808 command
('config', @args);
2811 if (defined $old_config) {
2812 $ENV{GIT_CONFIG
} = $old_config;
2814 delete $ENV{GIT_CONFIG
};
2817 wantarray ?
@ret : $ret[0];
2821 my ($self, $sub) = @_;
2822 my $old_index = $ENV{GIT_INDEX_FILE
};
2823 $ENV{GIT_INDEX_FILE
} = $self->{index};
2826 my ($dir, $base) = ($self->{index} =~ m
#^(.*?)/?([^/]+)$#);
2827 mkpath
([$dir]) unless -d
$dir;
2831 if (defined $old_index) {
2832 $ENV{GIT_INDEX_FILE
} = $old_index;
2834 delete $ENV{GIT_INDEX_FILE
};
2837 wantarray ?
@ret : $ret[0];
2840 sub assert_index_clean
{
2841 my ($self, $treeish) = @_;
2843 $self->tmp_index_do(sub {
2844 command_noisy
('read-tree', $treeish) unless -e
$self->{index};
2845 my $x = command_oneline
('write-tree');
2846 my ($y) = (command
(qw
/cat-file commit/, $treeish) =~
2847 /^tree ($::sha1)/mo);
2850 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2851 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2852 command_noisy
('read-tree', $treeish);
2853 $x = command_oneline
('write-tree');
2855 ::fatal
"trees ($treeish) $y != $x\n",
2856 "Something is seriously wrong...";
2861 sub get_commit_parents
{
2862 my ($self, $log_entry) = @_;
2863 my (%seen, @ret, @tmp);
2864 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2865 if (my $ip = $self->{inject_parents
}) {
2866 if (my $commit = delete $ip->{$log_entry->{revision
}}) {
2870 if (my $cur = ::verify_ref
($self->refname.'^0')) {
2873 if (my $ipd = $self->{inject_parents_dcommit
}) {
2874 if (my $commit = delete $ipd->{$log_entry->{revision
}}) {
2875 push @tmp, @
$commit;
2878 push @tmp, $_ foreach (@
{$log_entry->{parents
}}, @tmp);
2879 while (my $p = shift @tmp) {
2889 return $self->{-rewrite_root
} if exists $self->{-rewrite_root
};
2890 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2891 my $rwr = eval { command_oneline
(qw
/config --get/, $k) };
2894 if ($rwr !~ m
#^[a-z\+]+://#) {
2895 die "$rwr is not a valid URL (key: $k)\n";
2898 $self->{-rewrite_root
} = $rwr;
2903 return $self->{-rewrite_uuid
} if exists $self->{-rewrite_uuid
};
2904 my $k = "svn-remote.$self->{repo_id}.rewriteUUID";
2905 my $rwid = eval { command_oneline
(qw
/config --get/, $k) };
2908 if ($rwid !~ m
#^[a-f0-9]{8}-(?:[a-f0-9]{4}-){3}[a-f0-9]{12}$#) {
2909 die "$rwid is not a valid UUID (key: $k)\n";
2912 $self->{-rewrite_uuid
} = $rwid;
2917 ($self->rewrite_root || $self->{url
}) .
2918 (length $self->{path
} ?
'/' . $self->{path
} : '');
2923 $self->{url
} . (length $self->{path
} ?
'/' . $self->{path
} : '');
2928 if ($self->{pushurl
}) {
2929 return $self->{pushurl
} . (length $self->{path
} ?
'/' .
2930 $self->{path
} : '');
2932 return $self->full_url;
2936 sub set_commit_header_env
{
2937 my ($log_entry) = @_;
2939 foreach my $ned (qw
/NAME EMAIL DATE/) {
2940 foreach my $ac (qw
/AUTHOR COMMITTER/) {
2941 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2945 $ENV{GIT_AUTHOR_NAME
} = $log_entry->{name
};
2946 $ENV{GIT_AUTHOR_EMAIL
} = $log_entry->{email
};
2947 $ENV{GIT_AUTHOR_DATE
} = $ENV{GIT_COMMITTER_DATE
} = $log_entry->{date
};
2949 $ENV{GIT_COMMITTER_NAME
} = (defined $log_entry->{commit_name
})
2950 ?
$log_entry->{commit_name
}
2951 : $log_entry->{name
};
2952 $ENV{GIT_COMMITTER_EMAIL
} = (defined $log_entry->{commit_email
})
2953 ?
$log_entry->{commit_email
}
2954 : $log_entry->{email
};
2958 sub restore_commit_header_env
{
2960 foreach my $ned (qw
/NAME EMAIL DATE/) {
2961 foreach my $ac (qw
/AUTHOR COMMITTER/) {
2962 my $k = "GIT_${ac}_${ned}";
2963 if (defined $env->{$k}) {
2964 $ENV{$k} = $env->{$k};
2973 command_noisy
('gc', '--auto');
2977 my ($self, $log_entry) = @_;
2978 my $lr = $self->last_rev;
2979 if (defined $lr && $lr >= $log_entry->{revision
}) {
2980 die "Last fetched revision of ", $self->refname,
2981 " was r$lr, but we are about to fetch: ",
2982 "r$log_entry->{revision}!\n";
2984 if (my $c = $self->rev_map_get($log_entry->{revision
})) {
2985 croak
"$log_entry->{revision} = $c already exists! ",
2986 "Why are we refetching it?\n";
2988 my $old_env = set_commit_header_env
($log_entry);
2989 my $tree = $log_entry->{tree
};
2990 if (!defined $tree) {
2991 $tree = $self->tmp_index_do(sub {
2992 command_oneline
('write-tree') });
2994 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2996 my @exec = ('git', 'commit-tree', $tree);
2997 foreach ($self->get_commit_parents($log_entry)) {
2998 push @exec, '-p', $_;
3000 defined(my $pid = open3
(my $msg_fh, my $out_fh, '>&STDERR', @exec))
3004 # we always get UTF-8 from SVN, but we may want our commits in
3005 # a different encoding.
3006 if (my $enc = Git
::config
('i18n.commitencoding')) {
3008 Encode
::from_to
($log_entry->{log}, 'UTF-8', $enc);
3010 print $msg_fh $log_entry->{log} or croak
$!;
3011 restore_commit_header_env
($old_env);
3012 unless ($self->no_metadata) {
3013 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
3016 $msg_fh->flush == 0 or croak
$!;
3017 close $msg_fh or croak
$!;
3018 chomp(my $commit = do { local $/; <$out_fh> });
3019 close $out_fh or croak
$!;
3022 if ($commit !~ /^$::sha1$/o) {
3023 die "Failed to commit, invalid sha1: $commit\n";
3026 $self->rev_map_set($log_entry->{revision
}, $commit, 1);
3028 $self->{last_rev
} = $log_entry->{revision
};
3029 $self->{last_commit
} = $commit;
3030 print "r$log_entry->{revision}" unless $::_q
> 1;
3031 if (defined $log_entry->{svm_revision
}) {
3032 print " (\@$log_entry->{svm_revision})" unless $::_q
> 1;
3033 $self->rev_map_set($log_entry->{svm_revision
}, $commit,
3034 0, $self->svm_uuid);
3036 print " = $commit ($self->{ref_id})\n" unless $::_q
> 1;
3037 if (--$_gc_nr == 0) {
3038 $_gc_nr = $_gc_period;
3045 my ($self, $paths, $r) = @_;
3046 return 1 if $self->{path
} eq '';
3047 if (my $path = $paths->{"/$self->{path}"}) {
3048 return ($path->{action
} eq 'D') ?
0 : 1;
3050 $self->{path_regex
} ||= qr/^\/\Q
$self->{path
}\E\
//;
3051 if (grep /$self->{path_regex}/, keys %$paths) {
3055 foreach (split m
#/#, $self->{path}) {
3057 next unless ($paths->{$c} &&
3058 ($paths->{$c}->{action
} =~ /^[AR]$/));
3059 if ($self->ra->check_path($self->{path
}, $r) ==
3067 sub find_parent_branch
{
3068 my ($self, $paths, $rev) = @_;
3069 return undef unless $self->follow_parent;
3070 unless (defined $paths) {
3071 my $err_handler = $SVN::Error
::handler
;
3072 $SVN::Error
::handler
= \
&Git
::SVN
::Ra
::skip_unknown_revs
;
3073 $self->ra->get_log([$self->{path
}], $rev, $rev, 0, 1, 1,
3074 sub { $paths = $_[0] });
3075 $SVN::Error
::handler
= $err_handler;
3077 return undef unless defined $paths;
3079 # look for a parent from another branch:
3080 my @b_path_components = split m
#/#, $self->{path};
3081 my @a_path_components;
3083 while (@b_path_components) {
3084 $i = $paths->{'/'.join('/', @b_path_components)};
3085 last if $i && defined $i->{copyfrom_path
};
3086 unshift(@a_path_components, pop(@b_path_components));
3088 return undef unless defined $i && defined $i->{copyfrom_path
};
3089 my $branch_from = $i->{copyfrom_path
};
3090 if (@a_path_components) {
3091 print STDERR
"branch_from: $branch_from => ";
3092 $branch_from .= '/'.join('/', @a_path_components);
3093 print STDERR
$branch_from, "\n";
3095 my $r = $i->{copyfrom_rev
};
3096 my $repos_root = $self->ra->{repos_root
};
3097 my $url = $self->ra->{url
};
3098 my $new_url = $url . $branch_from;
3099 print STDERR
"Found possible branch point: ",
3100 "$new_url => ", $self->full_url, ", $r\n"
3102 $branch_from =~ s
#^/##;
3103 my $gs = $self->other_gs($new_url, $url,
3104 $branch_from, $r, $self->{ref_id
});
3105 my ($r0, $parent) = $gs->find_rev_before($r, 1);
3108 if (!defined $r0 || !defined $parent) {
3109 ($base, $head) = parse_revision_argument
(0, $r);
3112 $gs->ra->get_log([$gs->{path
}], $r0 + 1, $r, 1,
3113 0, 1, sub { $base = $_[1] - 1 });
3116 if (defined $base && $base <= $r) {
3117 $gs->fetch($base, $r);
3119 ($r0, $parent) = $gs->find_rev_before($r, 1);
3121 if (defined $r0 && defined $parent) {
3122 print STDERR
"Found branch parent: ($self->{ref_id}) $parent\n"
3125 if ($self->ra->can_do_switch) {
3126 $self->assert_index_clean($parent);
3127 print STDERR
"Following parent with do_switch\n"
3129 # do_switch works with svn/trunk >= r22312, but that
3130 # is not included with SVN 1.4.3 (the latest version
3131 # at the moment), so we can't rely on it
3132 $self->{last_rev
} = $r0;
3133 $self->{last_commit
} = $parent;
3134 $ed = SVN
::Git
::Fetcher
->new($self, $gs->{path
});
3135 $gs->ra->gs_do_switch($r0, $rev, $gs,
3136 $self->full_url, $ed)
3137 or die "SVN connection failed somewhere...\n";
3138 } elsif ($self->ra->trees_match($new_url, $r0,
3139 $self->full_url, $rev)) {
3140 print STDERR
"Trees match:\n",
3142 " ${\$self->full_url}\@$rev\n",
3143 "Following parent with no changes\n"
3145 $self->tmp_index_do(sub {
3146 command_noisy
('read-tree', $parent);
3148 $self->{last_commit
} = $parent;
3150 print STDERR
"Following parent with do_update\n"
3152 $ed = SVN
::Git
::Fetcher
->new($self);
3153 $self->ra->gs_do_update($rev, $rev, $self, $ed)
3154 or die "SVN connection failed somewhere...\n";
3156 print STDERR
"Successfully followed parent\n" unless $::_q
> 1;
3157 return $self->make_log_entry($rev, [$parent], $ed);
3163 my ($self, $paths, $rev) = @_;
3165 my ($last_rev, @parents);
3166 if (my $lc = $self->last_commit) {
3167 # we can have a branch that was deleted, then re-added
3168 # under the same name but copied from another path, in
3169 # which case we'll have multiple parents (we don't
3170 # want to break the original ref, nor lose copypath info):
3171 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
3172 push @
{$log_entry->{parents
}}, $lc;
3175 $ed = SVN
::Git
::Fetcher
->new($self);
3176 $last_rev = $self->{last_rev
};
3181 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
3184 $ed = SVN
::Git
::Fetcher
->new($self);
3186 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
3187 die "SVN connection failed somewhere...\n";
3189 $self->make_log_entry($rev, \
@parents, $ed);
3193 my ($self, $r) = @_;
3196 my ($r, $empty_dirs, $line) = @_;
3197 if (defined $r && $line =~ /^r(\d+)$/) {
3198 return 0 if $1 > $r;
3199 } elsif ($line =~ /^ \+empty_dir: (.+)$/) {
3200 $empty_dirs->{$1} = 1;
3201 } elsif ($line =~ /^ \-empty_dir: (.+)$/) {
3202 my @d = grep {m
[^\Q
$1\E
(/|$)]} (keys %$empty_dirs);
3203 delete @
$empty_dirs{@d};
3208 my %empty_dirs = ();
3209 my $gz_file = "$self->{dir}/unhandled.log.gz";
3211 if (!$can_compress) {
3212 warn "Compress::Zlib could not be found; ",
3213 "empty directories in $gz_file will not be read\n";
3215 my $gz = Compress
::Zlib
::gzopen
($gz_file, "rb") or
3216 die "Unable to open $gz_file: $!\n";
3218 while ($gz->gzreadline($line) > 0) {
3219 scan
($r, \
%empty_dirs, $line) or last;
3225 if (open my $fh, '<', "$self->{dir}/unhandled.log") {
3226 binmode $fh or croak
"binmode: $!";
3228 scan
($r, \
%empty_dirs, $_) or last;
3233 my $strip = qr/\A\Q$self->{path}\E(?:\/|$)/;
3234 foreach my $d (sort keys %empty_dirs) {
3235 $d = uri_decode
($d);
3237 next unless length($d);
3240 warn "$d exists but is not a directory\n";
3242 print "creating empty directory: $d\n";
3249 my ($self, $ed) = @_;
3251 my $h = $ed->{empty
};
3252 foreach (sort keys %$h) {
3253 my $act = $h->{$_} ?
'+empty_dir' : '-empty_dir';
3254 push @out, " $act: " . uri_encode
($_);
3255 warn "W: $act: $_\n";
3257 foreach my $t (qw
/dir_prop file_prop/) {
3258 $h = $ed->{$t} or next;
3259 foreach my $path (sort keys %$h) {
3260 my $ppath = $path eq '' ?
'.' : $path;
3261 foreach my $prop (sort keys %{$h->{$path}}) {
3262 next if $SKIP_PROP{$prop};
3263 my $v = $h->{$path}->{$prop};
3264 my $t_ppath_prop = "$t: " .
3265 uri_encode
($ppath) . ' ' .
3268 push @out, " +$t_ppath_prop " .
3271 push @out, " -$t_ppath_prop";
3276 foreach my $t (qw
/absent_file absent_directory/) {
3277 $h = $ed->{$t} or next;
3278 foreach my $parent (sort keys %$h) {
3279 foreach my $path (sort @
{$h->{$parent}}) {
3280 push @out, " $t: " .
3281 uri_encode
("$parent/$path");
3282 warn "W: $t: $parent/$path ",
3283 "Insufficient permissions?\n";
3290 # parse_svn_date(DATE)
3291 # --------------------
3292 # Given a date (in UTC) from Subversion, return a string in the format
3293 # "<TZ Offset> <local date/time>" that Git will use.
3295 # By default the parsed date will be in UTC; if $Git::SVN::_localtime
3296 # is true we'll convert it to the local timezone instead.
3297 sub parse_svn_date
{
3298 my $date = shift || return '+0000 1970-01-01 00:00:00';
3299 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d
{4})\
-(\d\d
)\
-(\d\d
)T
3300 (\d\d
)\
:(\d\d
)\
:(\d\d
)\
.\d
*Z
$/x
) or
3301 croak
"Unable to parse date: $date\n";
3302 my $parsed_date; # Set next.
3304 if ($Git::SVN
::_localtime
) {
3305 # Translate the Subversion datetime to an epoch time.
3306 # Begin by switching ourselves to $date's timezone, UTC.
3307 my $old_env_TZ = $ENV{TZ
};
3311 POSIX
::strftime
('%s', $S, $M, $H, $d, $m - 1, $Y - 1900);
3313 # Determine our local timezone (including DST) at the
3314 # time of $epoch_in_UTC. $Git::SVN::Log::TZ stored the
3315 # value of TZ, if any, at the time we were run.
3316 if (defined $Git::SVN
::Log
::TZ
) {
3317 $ENV{TZ
} = $Git::SVN
::Log
::TZ
;
3323 POSIX
::strftime
('%Z', $S, $M, $H, $d, $m - 1, $Y - 1900);
3325 # This converts $epoch_in_UTC into our local timezone.
3326 my ($sec, $min, $hour, $mday, $mon, $year,
3327 $wday, $yday, $isdst) = localtime($epoch_in_UTC);
3329 $parsed_date = sprintf('%s %04d-%02d-%02d %02d:%02d:%02d',
3330 $our_TZ, $year + 1900, $mon + 1,
3331 $mday, $hour, $min, $sec);
3333 # Reset us to the timezone in effect when we entered
3335 if (defined $old_env_TZ) {
3336 $ENV{TZ
} = $old_env_TZ;
3341 $parsed_date = "+0000 $Y-$m-$d $H:$M:$S";
3344 return $parsed_date;
3348 my ($self, $new_url, $url,
3349 $branch_from, $r, $old_ref_id) = @_;
3350 my $gs = Git
::SVN
->find_by_url($new_url, $url, $branch_from);
3352 my $ref_id = $old_ref_id;
3353 $ref_id =~ s/\@\d+-*$//;
3355 # just grow a tail if we're not unique enough :x
3356 $ref_id .= '-' while find_ref
($ref_id);
3357 my ($u, $p, $repo_id) = ($new_url, '', $ref_id);
3358 if ($u =~ s
#^\Q$url\E(/|$)##) {
3361 $repo_id = $self->{repo_id
};
3364 # It is possible to tag two different subdirectories at
3365 # the same revision. If the url for an existing ref
3366 # does not match, we must either find a ref with a
3367 # matching url or create a new ref by growing a tail.
3368 $gs = Git
::SVN
->init($u, $p, $repo_id, $ref_id, 1);
3369 my (undef, $max_commit) = $gs->rev_map_max(1);
3370 last if (!$max_commit);
3371 my ($url) = ::cmt_metadata
($max_commit);
3372 last if ($url eq $gs->metadata_url);
3375 print STDERR
"Initializing parent: $ref_id\n" unless $::_q
> 1;
3380 sub call_authors_prog
{
3381 my ($orig_author) = @_;
3382 $orig_author = command_oneline
('rev-parse', '--sq-quote', $orig_author);
3383 my $author = `$::_authors_prog $orig_author`;
3385 die "$::_authors_prog failed with exit code $?\n"
3387 if ($author =~ /^\s*(.+?)\s*<(.*)>\s*$/) {
3388 my ($name, $email) = ($1, $2);
3389 $email = undef if length $2 == 0;
3390 return [$name, $email];
3392 die "Author: $orig_author: $::_authors_prog returned "
3393 . "invalid author format: $author\n";
3399 if (!defined $author || length $author == 0) {
3400 $author = '(no author)';
3402 if (!defined $::users
{$author}) {
3403 if (defined $::_authors_prog
) {
3404 $::users
{$author} = call_authors_prog
($author);
3405 } elsif (defined $::_authors
) {
3406 die "Author: $author not defined in $::_authors file\n";
3412 sub find_extra_svk_parents
{
3413 my ($self, $ed, $tickets, $parents) = @_;
3414 # aha! svk:merge property changed...
3415 my @tickets = split "\n", $tickets;
3417 for my $ticket ( @tickets ) {
3418 my ($uuid, $path, $rev) = split /:/, $ticket;
3419 if ( $uuid eq $self->ra_uuid ) {
3420 my $url = $self->{url
};
3421 my $repos_root = $url;
3422 my $branch_from = $path;
3423 $branch_from =~ s{^/}{};
3424 my $gs = $self->other_gs($repos_root."/".$branch_from,
3429 if ( my $commit = $gs->rev_map_get($rev, $uuid) ) {
3430 # wahey! we found it, but it might be
3432 push @known_parents, [ $rev, $commit ];
3436 # Ordering matters; highest-numbered commit merge tickets
3437 # first, as they may account for later merge ticket additions
3439 @known_parents = map {$_->[1]} sort {$b->[0] <=> $a->[0]} @known_parents;
3440 for my $parent ( @known_parents ) {
3441 my @cmd = ('rev-list', $parent, map { "^$_" } @
$parents );
3442 my ($msg_fh, $ctx) = command_output_pipe
(@cmd);
3444 while ( <$msg_fh> ) {
3447 command_close_pipe
($msg_fh, $ctx);
3450 "Found merge parent (svk:merge ticket): $parent\n";
3451 push @
$parents, $parent;
3456 sub lookup_svn_merge
{
3461 my ($source, $revs) = split ":", $merge;
3464 my $gs = Git
::SVN
->find_by_url($url.$source, $url, $path);
3466 warn "Couldn't find revmap for $url$source\n";
3469 my @ranges = split ",", $revs;
3470 my ($tip, $tip_commit);
3471 my @merged_commit_ranges;
3473 for my $range ( @ranges ) {
3474 my ($bottom, $top) = split "-", $range;
3476 my $bottom_commit = $gs->find_rev_after( $bottom, 1, $top );
3477 my $top_commit = $gs->find_rev_before( $top, 1, $bottom );
3479 unless ($top_commit and $bottom_commit) {
3480 warn "W:unknown path/rev in svn:mergeinfo "
3481 ."dirprop: $source:$range\n";
3485 if (scalar(command
('rev-parse', "$bottom_commit^@"))) {
3486 push @merged_commit_ranges,
3487 "$bottom_commit^..$top_commit";
3489 push @merged_commit_ranges, "$top_commit";
3492 if ( !defined $tip or $top > $tip ) {
3494 $tip_commit = $top_commit;
3497 return ($tip_commit, @merged_commit_ranges);
3501 my ($msg_fh, $ctx) = command_output_pipe
(
3505 while ( <$msg_fh> ) {
3509 command_close_pipe
($msg_fh, $ctx);
3513 sub check_cherry_pick
{
3516 my $parents = shift;
3518 my %commits = map { $_ => 1 }
3519 _rev_list
("--no-merges", $tip, "--not", $base, @
$parents, "--");
3520 for my $range ( @ranges ) {
3521 delete @commits{_rev_list
($range, "--")};
3523 for my $commit (keys %commits) {
3524 if (has_no_changes
($commit)) {
3525 delete $commits{$commit};
3528 return (keys %commits);
3531 sub has_no_changes
{
3534 my @revs = split / /, command_oneline
(
3535 qw(rev-list --parents -1 -m), $commit);
3537 # Commits with no parents, e.g. the start of a partial branch,
3538 # have changes by definition.
3539 return 1 if (@revs < 2);
3541 # Commits with multiple parents, e.g a merge, have no changes
3543 return 0 if (@revs > 2);
3545 return (command_oneline
("rev-parse", "$commit^{tree}") eq
3546 command_oneline
("rev-parse", "$commit~1^{tree}"));
3549 # The GIT_DIR environment variable is not always set until after the command
3550 # line arguments are processed, so we can't memoize in a BEGIN block.
3554 sub memoize_svn_mergeinfo_functions
{
3555 return if $memoized;
3558 my $cache_path = "$ENV{GIT_DIR}/svn/.caches/";
3559 mkpath
([$cache_path]) unless -d
$cache_path;
3561 tie
my %lookup_svn_merge_cache => 'Memoize::Storable',
3562 "$cache_path/lookup_svn_merge.db", 'nstore';
3563 memoize
'lookup_svn_merge',
3564 SCALAR_CACHE
=> 'FAULT',
3565 LIST_CACHE
=> ['HASH' => \
%lookup_svn_merge_cache],
3568 tie
my %check_cherry_pick_cache => 'Memoize::Storable',
3569 "$cache_path/check_cherry_pick.db", 'nstore';
3570 memoize
'check_cherry_pick',
3571 SCALAR_CACHE
=> 'FAULT',
3572 LIST_CACHE
=> ['HASH' => \
%check_cherry_pick_cache],
3575 tie
my %has_no_changes_cache => 'Memoize::Storable',
3576 "$cache_path/has_no_changes.db", 'nstore';
3577 memoize
'has_no_changes',
3578 SCALAR_CACHE
=> ['HASH' => \
%has_no_changes_cache],
3579 LIST_CACHE
=> 'FAULT',
3583 sub unmemoize_svn_mergeinfo_functions
{
3584 return if not $memoized;
3587 Memoize
::unmemoize
'lookup_svn_merge';
3588 Memoize
::unmemoize
'check_cherry_pick';
3589 Memoize
::unmemoize
'has_no_changes';
3592 Memoize
::memoize
'Git::SVN::repos_root';
3596 # Force cache writeout explicitly instead of waiting for
3597 # global destruction to avoid segfault in Storable:
3598 # http://rt.cpan.org/Public/Bug/Display.html?id=36087
3599 unmemoize_svn_mergeinfo_functions
();
3602 sub parents_exclude
{
3603 my $parents = shift;
3605 return unless @commits;
3610 my @cmd = ('rev-list', "-1", @commits, "--not", @
$parents );
3611 $excluded = command_oneline
(@cmd);
3615 for my $commit ( @commits ) {
3616 if ( $commit eq $excluded ) {
3617 push @excluded, $commit;
3625 die "saw commit '$excluded' in rev-list output, "
3626 ."but we didn't ask for that commit (wanted: @commits --not @$parents)"
3631 while ($excluded and @commits);
3637 # note: this function should only be called if the various dirprops
3638 # have actually changed
3639 sub find_extra_svn_parents
{
3640 my ($self, $ed, $mergeinfo, $parents) = @_;
3641 # aha! svk:merge property changed...
3643 memoize_svn_mergeinfo_functions
();
3645 # We first search for merged tips which are not in our
3646 # history. Then, we figure out which git revisions are in
3647 # that tip, but not this revision. If all of those revisions
3648 # are now marked as merge, we can add the tip as a parent.
3649 my @merges = split "\n", $mergeinfo;
3651 my $url = $self->{url
};
3652 my $uuid = $self->ra_uuid;
3654 for my $merge ( @merges ) {
3655 my ($tip_commit, @ranges) =
3656 lookup_svn_merge
( $uuid, $url, $merge );
3657 unless (!$tip_commit or
3658 grep { $_ eq $tip_commit } @
$parents ) {
3659 push @merge_tips, $tip_commit;
3660 $ranges{$tip_commit} = \
@ranges;
3662 push @merge_tips, undef;
3666 my %excluded = map { $_ => 1 }
3667 parents_exclude
($parents, grep { defined } @merge_tips);
3669 # check merge tips for new parents
3671 for my $merge_tip ( @merge_tips ) {
3672 my $spec = shift @merges;
3673 next unless $merge_tip and $excluded{$merge_tip};
3675 my $ranges = $ranges{$merge_tip};
3677 # check out 'new' tips
3680 $merge_base = command_oneline
(
3682 @
$parents, $merge_tip,
3686 die "An error occurred during merge-base"
3687 unless $@
->isa("Git::Error::Command");
3689 warn "W: Cannot find common ancestor between ".
3690 "@$parents and $merge_tip. Ignoring merge info.\n";
3694 # double check that there are no missing non-merge commits
3695 my (@incomplete) = check_cherry_pick
(
3696 $merge_base, $merge_tip,
3701 if ( @incomplete ) {
3702 warn "W:svn cherry-pick ignored ($spec) - missing "
3703 .@incomplete." commit(s) (eg $incomplete[0])\n";
3706 "Found merge parent (svn:mergeinfo prop): ",
3708 push @new_parents, $merge_tip;
3712 # cater for merges which merge commits from multiple branches
3713 if ( @new_parents > 1 ) {
3714 for ( my $i = 0; $i <= $#new_parents; $i++ ) {
3715 for ( my $j = 0; $j <= $#new_parents; $j++ ) {
3717 next unless $new_parents[$i];
3718 next unless $new_parents[$j];
3719 my $revs = command_oneline
(
3721 "$new_parents[$i]..$new_parents[$j]",
3724 undef($new_parents[$j]);
3729 push @
$parents, grep { defined } @new_parents;
3732 sub make_log_entry
{
3733 my ($self, $rev, $parents, $ed) = @_;
3734 my $untracked = $self->get_untracked($ed);
3736 my @parents = @
$parents;
3737 my $ps = $ed->{path_strip
} || "";
3738 for my $path ( grep { m/$ps/ } %{$ed->{dir_prop
}} ) {
3739 my $props = $ed->{dir_prop
}{$path};
3740 if ( $props->{"svk:merge"} ) {
3741 $self->find_extra_svk_parents
3742 ($ed, $props->{"svk:merge"}, \
@parents);
3744 if ( $props->{"svn:mergeinfo"} ) {
3745 $self->find_extra_svn_parents
3747 $props->{"svn:mergeinfo"},
3752 open my $un, '>>', "$self->{dir}/unhandled.log" or croak
$!;
3753 print $un "r$rev\n" or croak
$!;
3754 print $un $_, "\n" foreach @
$untracked;
3755 my %log_entry = ( parents
=> \
@parents, revision
=> $rev,
3759 my $logged = delete $self->{logged_rev_props
};
3760 if (!$logged || $self->{-want_revprops
}) {
3761 my $rp = $self->ra->rev_proplist($rev);
3762 foreach (sort keys %$rp) {
3764 if (/^svn:(author|date|log)$/) {
3765 $log_entry{$1} = $v;
3766 } elsif ($_ eq 'svm:headrev') {
3769 print $un " rev_prop: ", uri_encode
($_), ' ',
3770 uri_encode
($v), "\n";
3774 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
3776 close $un or croak
$!;
3778 $log_entry{date
} = parse_svn_date
($log_entry{date
});
3779 $log_entry{log} .= "\n";
3780 my $author = $log_entry{author
} = check_author
($log_entry{author
});
3781 my ($name, $email) = defined $::users
{$author} ? @
{$::users
{$author}}
3784 my ($commit_name, $commit_email) = ($name, $email);
3785 if ($_use_log_author) {
3787 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
3789 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
3792 if (!defined $name_field) {
3793 if (!defined $email) {
3796 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
3797 ($name, $email) = ($1, $2);
3798 } elsif ($name_field =~ /(.*)@/) {
3799 ($name, $email) = ($1, $name_field);
3801 ($name, $email) = ($name_field, $name_field);
3804 if (defined $headrev && $self->use_svm_props) {
3805 if ($self->rewrite_root) {
3806 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
3809 if ($self->rewrite_uuid) {
3810 die "Can't have both 'useSvmProps' and 'rewriteUUID' ",
3813 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d
+)$}i
;
3814 # we don't want "SVM: initializing mirror for junk" ...
3815 return undef if $r == 0;
3816 my $svm = $self->svm;
3817 if ($uuid ne $svm->{uuid
}) {
3818 die "UUID mismatch on SVM path:\n",
3819 "expected: $svm->{uuid}\n",
3822 my $full_url = $self->full_url;
3823 $full_url =~ s
#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
3824 die "Failed to replace '$svm->{replace}' with ",
3825 "'$svm->{source}' in $full_url\n";
3826 # throw away username for storing in records
3827 remove_username
($full_url);
3828 $log_entry{metadata
} = "$full_url\@$r $uuid";
3829 $log_entry{svm_revision
} = $r;
3830 $email ||= "$author\@$uuid";
3831 $commit_email ||= "$author\@$uuid";
3832 } elsif ($self->use_svnsync_props) {
3833 my $full_url = $self->svnsync->{url
};
3834 $full_url .= "/$self->{path}" if length $self->{path
};
3835 remove_username
($full_url);
3836 my $uuid = $self->svnsync->{uuid
};
3837 $log_entry{metadata
} = "$full_url\@$rev $uuid";
3838 $email ||= "$author\@$uuid";
3839 $commit_email ||= "$author\@$uuid";
3841 my $url = $self->metadata_url;
3842 remove_username
($url);
3843 my $uuid = $self->rewrite_uuid || $self->ra->get_uuid;
3844 $log_entry{metadata
} = "$url\@$rev " . $uuid;
3845 $email ||= "$author\@" . $uuid;
3846 $commit_email ||= "$author\@" . $uuid;
3848 $log_entry{name
} = $name;
3849 $log_entry{email
} = $email;
3850 $log_entry{commit_name
} = $commit_name;
3851 $log_entry{commit_email
} = $commit_email;
3856 my ($self, $min_rev, $max_rev, @parents) = @_;
3857 my ($last_rev, $last_commit) = $self->last_rev_commit;
3858 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
3859 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
3863 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
3864 $self->{inject_parents
} = { $rev => $tree };
3865 $self->fetch(undef, undef);
3869 my ($self, $tree) = (shift, shift);
3870 my $log_entry = ::get_commit_entry
($tree);
3871 unless ($self->{last_rev
}) {
3872 ::fatal
("Must have an existing revision to commit");
3874 my %ed_opts = ( r
=> $self->{last_rev
},
3875 log => $log_entry->{log},
3877 tree_a
=> $self->{last_commit
},
3880 $self->set_tree_cb($log_entry, $tree, @_) },
3881 svn_path
=> $self->{path
} );
3882 if (!SVN
::Git
::Editor
->new(\
%ed_opts)->apply_diff) {
3883 print "No changes\nr$self->{last_rev} = $tree\n";
3887 sub rebuild_from_rev_db
{
3888 my ($self, $path) = @_;
3890 open my $fh, '<', $path or croak
"open: $!";
3891 binmode $fh or croak
"binmode: $!";
3893 length($_) == 41 or croak
"inconsistent size in ($_) != 41";
3896 next if $_ eq ('0' x
40);
3897 $self->rev_map_set($r, $_);
3900 close $fh or croak
"close: $!";
3901 unlink $path or croak
"unlink: $!";
3906 my $map_path = $self->map_path;
3907 my $partial = (-e
$map_path && ! -z
$map_path);
3908 return unless ::verify_ref
($self->refname.'^0');
3909 if (!$partial && ($self->use_svm_props || $self->no_metadata)) {
3910 my $rev_db = $self->rev_db_path;
3911 $self->rebuild_from_rev_db($rev_db);
3912 if ($self->use_svm_props) {
3913 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
3914 $self->rebuild_from_rev_db($svm_rev_db);
3916 $self->unlink_rev_db_symlink;
3919 print "Rebuilding $map_path ...\n" if (!$partial);
3920 my ($base_rev, $head) = ($partial ?
$self->rev_map_max_norebuild(1) :
3923 command_output_pipe
(qw
/rev-list --pretty=raw --no-color --reverse/,
3924 ($head ?
"$head.." : "") . $self->refname,
3926 my $metadata_url = $self->metadata_url;
3927 remove_username
($metadata_url);
3928 my $svn_uuid = $self->rewrite_uuid || $self->ra_uuid;
3931 if ( m{^commit ($::sha1)$} ) {
3935 next unless s{^\s*(git-svn-id:)}{$1};
3936 my ($url, $rev, $uuid) = ::extract_metadata
($_);
3937 remove_username
($url);
3939 # ignore merges (from set-tree)
3940 next if (!defined $rev || !$uuid);
3942 # if we merged or otherwise started elsewhere, this is
3943 # how we break out of it
3944 if (($uuid ne $svn_uuid) ||
3945 ($metadata_url && $url && ($url ne $metadata_url))) {
3948 if ($partial && $head) {
3949 print "Partial-rebuilding $map_path ...\n";
3950 print "Currently at $base_rev = $head\n";
3954 $self->rev_map_set($rev, $c);
3955 print "r$rev = $c\n";
3957 command_close_pipe
($log, $ctx);
3958 print "Done rebuilding $map_path\n" if (!$partial || !$head);
3959 my $rev_db_path = $self->rev_db_path;
3960 if (-f
$self->rev_db_path) {
3961 unlink $self->rev_db_path or croak
"unlink: $!";
3963 $self->unlink_rev_db_symlink;
3967 # Tie::File seems to be prone to offset errors if revisions get sparse,
3968 # it's not that fast, either. Tie::File is also not in Perl 5.6. So
3969 # one of my favorite modules is out :< Next up would be one of the DBM
3970 # modules, but I'm not sure which is most portable...
3972 # This is the replacement for the rev_db format, which was too big
3973 # and inefficient for large repositories with a lot of sparse history
3976 # The format is this:
3977 # - 24 bytes for every record,
3978 # * 4 bytes for the integer representing an SVN revision number
3979 # * 20 bytes representing the sha1 of a git commit
3980 # - No empty padding records like the old format
3981 # (except the last record, which can be overwritten)
3982 # - new records are written append-only since SVN revision numbers
3983 # increase monotonically
3984 # - lookups on SVN revision number are done via a binary search
3985 # - Piping the file to xxd -c24 is a good way of dumping it for
3986 # viewing or editing (piped back through xxd -r), should the need
3988 # - The last record can be padding revision with an all-zero sha1
3989 # This is used to optimize fetch performance when using multiple
3990 # "fetch" directives in .git/config
3992 # These files are disposable unless noMetadata or useSvmProps is set
3995 my ($fh, $rev, $commit) = @_;
3997 binmode $fh or croak
"binmode: $!";
3998 my $size = (stat($fh))[7];
3999 ($size % 24) == 0 or croak
"inconsistent size: $size";
4003 sysseek($fh, -24, SEEK_END
) or croak
"seek: $!";
4004 my $read = sysread($fh, my $buf, 24) or croak
"read: $!";
4005 $read == 24 or croak
"read only $read bytes (!= 24)";
4006 my ($last_rev, $last_commit) = unpack(rev_map_fmt
, $buf);
4007 if ($last_commit eq ('0' x40
)) {
4009 sysseek($fh, -48, SEEK_END
) or croak
"seek: $!";
4010 $read = sysread($fh, $buf, 24) or
4013 croak
"read only $read bytes (!= 24)";
4014 ($last_rev, $last_commit) =
4015 unpack(rev_map_fmt
, $buf);
4016 if ($last_commit eq ('0' x40
)) {
4017 croak
"inconsistent .rev_map\n";
4020 if ($last_rev >= $rev) {
4021 croak
"last_rev is higher!: $last_rev >= $rev";
4026 sysseek($fh, $wr_offset, SEEK_END
) or croak
"seek: $!";
4027 syswrite($fh, pack(rev_map_fmt
, $rev, $commit), 24) == 24 or
4031 sub _rev_map_reset
{
4032 my ($fh, $rev, $commit) = @_;
4033 my $c = _rev_map_get
($fh, $rev);
4034 $c eq $commit or die "_rev_map_reset(@_) commit $c does not match!\n";
4035 my $offset = sysseek($fh, 0, SEEK_CUR
) or croak
"seek: $!";
4036 truncate $fh, $offset or croak
"truncate: $!";
4042 my ($dir, $base) = ($path =~ m
#^(.*?)/?([^/]+)$#);
4043 mkpath
([$dir]) unless -d
$dir;
4044 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
4045 close $fh or die "Couldn't close (create) $path: $!\n";
4050 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
4051 defined $commit or die "missing arg3\n";
4052 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
4053 my $db = $self->map_path($uuid);
4054 my $db_lock = "$db.lock";
4058 $SIG{INT
} = $SIG{HUP
} = $SIG{TERM
} = $SIG{ALRM
} = $SIG{PIPE
} =
4059 $SIG{USR1
} = $SIG{USR2
} = sub { $sig = $_[0] };
4063 $LOCKFILES{$db_lock} = 1;
4065 # both of these options make our .rev_db file very, very important
4066 # and we can't afford to lose it because rebuild() won't work
4067 if ($self->use_svm_props || $self->no_metadata) {
4069 copy
($db, $db_lock) or die "rev_map_set(@_): ",
4071 "$db => $db_lock ($!)\n";
4073 rename $db, $db_lock or die "rev_map_set(@_): ",
4074 "Failed to rename: ",
4075 "$db => $db_lock ($!)\n";
4078 sysopen(my $fh, $db_lock, O_RDWR
| O_CREAT
)
4079 or croak
"Couldn't open $db_lock: $!\n";
4080 $update_ref eq 'reset' ? _rev_map_reset
($fh, $rev, $commit) :
4081 _rev_map_set
($fh, $rev, $commit);
4083 $fh->flush or die "Couldn't flush $db_lock: $!\n";
4084 $fh->sync or die "Couldn't sync $db_lock: $!\n";
4086 close $fh or croak
$!;
4090 $note = " ($update_ref)" if ($update_ref !~ /^\d*$/);
4091 command_noisy
('update-ref', '-m', "r$rev$note",
4092 $self->refname, $commit);
4094 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
4095 "$db_lock => $db ($!)\n";
4096 delete $LOCKFILES{$db_lock};
4098 $SIG{INT
} = $SIG{HUP
} = $SIG{TERM
} = $SIG{ALRM
} = $SIG{PIPE
} =
4099 $SIG{USR1
} = $SIG{USR2
} = 'DEFAULT';
4100 kill $sig, $$ if defined $sig;
4104 # If want_commit, this will return an array of (rev, commit) where
4105 # commit _must_ be a valid commit in the archive.
4106 # Otherwise, it'll return the max revision (whether or not the
4107 # commit is valid or just a 0x40 placeholder).
4109 my ($self, $want_commit) = @_;
4111 my ($r, $c) = $self->rev_map_max_norebuild($want_commit);
4112 $want_commit ?
($r, $c) : $r;
4115 sub rev_map_max_norebuild
{
4116 my ($self, $want_commit) = @_;
4117 my $map_path = $self->map_path;
4118 stat $map_path or return $want_commit ?
(0, undef) : 0;
4119 sysopen(my $fh, $map_path, O_RDONLY
) or croak
"open: $!";
4120 binmode $fh or croak
"binmode: $!";
4121 my $size = (stat($fh))[7];
4122 ($size % 24) == 0 or croak
"inconsistent size: $size";
4125 close $fh or croak
"close: $!";
4126 return $want_commit ?
(0, undef) : 0;
4129 sysseek($fh, -24, SEEK_END
) or croak
"seek: $!";
4130 sysread($fh, my $buf, 24) == 24 or croak
"read: $!";
4131 my ($r, $c) = unpack(rev_map_fmt
, $buf);
4132 if ($want_commit && $c eq ('0' x40
)) {
4134 return $want_commit ?
(0, undef) : 0;
4136 sysseek($fh, -48, SEEK_END
) or croak
"seek: $!";
4137 sysread($fh, $buf, 24) == 24 or croak
"read: $!";
4138 ($r, $c) = unpack(rev_map_fmt
, $buf);
4139 if ($c eq ('0'x40
)) {
4140 croak
"Penultimate record is all-zeroes in $map_path";
4143 close $fh or croak
"close: $!";
4144 $want_commit ?
($r, $c) : $r;
4148 my ($self, $rev, $uuid) = @_;
4149 my $map_path = $self->map_path($uuid);
4150 return undef unless -e
$map_path;
4152 sysopen(my $fh, $map_path, O_RDONLY
) or croak
"open: $!";
4153 my $c = _rev_map_get
($fh, $rev);
4154 close($fh) or croak
"close: $!";
4159 my ($fh, $rev) = @_;
4161 binmode $fh or croak
"binmode: $!";
4162 my $size = (stat($fh))[7];
4163 ($size % 24) == 0 or croak
"inconsistent size: $size";
4169 my ($l, $u) = (0, $size - 24);
4173 my $i = int(($l/24 + $u/24) / 2) * 24;
4174 sysseek($fh, $i, SEEK_SET
) or croak
"seek: $!";
4175 sysread($fh, my $buf, 24) == 24 or croak
"read: $!";
4176 my ($r, $c) = unpack(rev_map_fmt
, $buf);
4180 } elsif ($r > $rev) {
4182 } else { # $r == $rev
4183 return $c eq ('0' x
40) ?
undef : $c;
4189 # Finds the first svn revision that exists on (if $eq_ok is true) or
4190 # before $rev for the current branch. It will not search any lower
4191 # than $min_rev. Returns the git commit hash and svn revision number
4192 # if found, else (undef, undef).
4193 sub find_rev_before
{
4194 my ($self, $rev, $eq_ok, $min_rev) = @_;
4195 --$rev unless $eq_ok;
4197 my $max_rev = $self->rev_map_max;
4198 $rev = $max_rev if ($rev > $max_rev);
4199 while ($rev >= $min_rev) {
4200 if (my $c = $self->rev_map_get($rev)) {
4205 return (undef, undef);
4208 # Finds the first svn revision that exists on (if $eq_ok is true) or
4209 # after $rev for the current branch. It will not search any higher
4210 # than $max_rev. Returns the git commit hash and svn revision number
4211 # if found, else (undef, undef).
4212 sub find_rev_after
{
4213 my ($self, $rev, $eq_ok, $max_rev) = @_;
4214 ++$rev unless $eq_ok;
4215 $max_rev ||= $self->rev_map_max;
4216 while ($rev <= $max_rev) {
4217 if (my $c = $self->rev_map_get($rev)) {
4222 return (undef, undef);
4226 my ($class, $repo_id, $ref_id, $path) = @_;
4227 unless (defined $repo_id && length $repo_id) {
4228 $repo_id = $Git::SVN
::default_repo_id
;
4230 unless (defined $ref_id && length $ref_id) {
4231 $_prefix = '' unless defined($_prefix);
4233 "refs/remotes/$_prefix$Git::SVN::default_ref_id";
4236 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
4238 # Older repos imported by us used $GIT_DIR/svn/foo instead of
4239 # $GIT_DIR/svn/refs/remotes/foo when tracking refs/remotes/foo
4240 if ($ref_id =~ m{^refs/remotes/(.*)}) {
4241 my $old_dir = "$ENV{GIT_DIR}/svn/$1";
4242 if (-d
$old_dir && ! -d
$dir) {
4247 $_[3] = $path = '' unless (defined $path);
4250 ref_id
=> $ref_id, dir
=> $dir, index => "$dir/index",
4251 path
=> $path, config
=> "$ENV{GIT_DIR}/svn/config",
4252 map_root
=> "$dir/.rev_map", repo_id
=> $repo_id }, $class;
4255 # for read-only access of old .rev_db formats
4256 sub unlink_rev_db_symlink
{
4258 my $link = $self->rev_db_path;
4259 $link =~ s/\.[\w-]+$// or croak
"missing UUID at the end of $link";
4261 unlink $link or croak
"unlink: $link failed!";
4266 my ($self, $uuid) = @_;
4267 my $db_path = $self->map_path($uuid);
4268 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
4269 or croak
"map_path: $db_path does not contain '/.rev_map.' !";
4273 # the new replacement for .rev_db
4275 my ($self, $uuid) = @_;
4276 $uuid ||= $self->ra_uuid;
4277 "$self->{map_root}.$uuid";
4282 $f =~ s
#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
4288 $f =~ s
#%([0-9a-fA-F]{2})#chr(hex($1))#eg;
4292 sub remove_username
{
4293 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
4296 package Git
::SVN
::Prompt
;
4300 use vars qw
/$_no_auth_cache $_username/;
4303 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
4304 $may_save = undef if $_no_auth_cache;
4305 $default_username = $_username if defined $_username;
4306 if (defined $default_username && length $default_username) {
4307 if (defined $realm && length $realm) {
4308 print STDERR
"Authentication realm: $realm\n";
4311 $cred->username($default_username);
4313 username
($cred, $realm, $may_save, $pool);
4315 $cred->password(_read_password
("Password for '" .
4316 $cred->username . "': ", $realm));
4317 $cred->may_save($may_save);
4318 $SVN::_Core
::SVN_NO_ERROR
;
4321 sub ssl_server_trust
{
4322 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
4323 $may_save = undef if $_no_auth_cache;
4324 print STDERR
"Error validating server certificate for '$realm':\n";
4327 # All variables SVN::Auth::SSL::* are used only once,
4328 # so we're shutting up Perl warnings about this.
4329 if ($failures & $SVN::Auth
::SSL
::UNKNOWNCA
) {
4330 print STDERR
" - The certificate is not issued ",
4331 "by a trusted authority. Use the\n",
4332 " fingerprint to validate ",
4333 "the certificate manually!\n";
4335 if ($failures & $SVN::Auth
::SSL
::CNMISMATCH
) {
4336 print STDERR
" - The certificate hostname ",
4337 "does not match.\n";
4339 if ($failures & $SVN::Auth
::SSL
::NOTYETVALID
) {
4340 print STDERR
" - The certificate is not yet valid.\n";
4342 if ($failures & $SVN::Auth
::SSL
::EXPIRED
) {
4343 print STDERR
" - The certificate has expired.\n";
4345 if ($failures & $SVN::Auth
::SSL
::OTHER
) {
4346 print STDERR
" - The certificate has ",
4347 "an unknown error.\n";
4349 } # no warnings 'once'
4351 "Certificate information:\n".
4352 " - Hostname: %s\n".
4353 " - Valid: from %s until %s\n".
4355 " - Fingerprint: %s\n",
4356 map $cert_info->$_, qw(hostname valid_from valid_until
4357 issuer_dname fingerprint);
4360 print STDERR
$may_save ?
4361 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
4362 "(R)eject or accept (t)emporarily? ";
4364 $choice = lc(substr(<STDIN
> || 'R', 0, 1));
4365 if ($choice =~ /^t$/i) {
4366 $cred->may_save(undef);
4367 } elsif ($choice =~ /^r$/i) {
4369 } elsif ($may_save && $choice =~ /^p$/i) {
4370 $cred->may_save($may_save);
4374 $cred->accepted_failures($failures);
4375 $SVN::_Core
::SVN_NO_ERROR
;
4378 sub ssl_client_cert
{
4379 my ($cred, $realm, $may_save, $pool) = @_;
4380 $may_save = undef if $_no_auth_cache;
4381 print STDERR
"Client certificate filename: ";
4383 chomp(my $filename = <STDIN
>);
4384 $cred->cert_file($filename);
4385 $cred->may_save($may_save);
4386 $SVN::_Core
::SVN_NO_ERROR
;
4389 sub ssl_client_cert_pw
{
4390 my ($cred, $realm, $may_save, $pool) = @_;
4391 $may_save = undef if $_no_auth_cache;
4392 $cred->password(_read_password
("Password: ", $realm));
4393 $cred->may_save($may_save);
4394 $SVN::_Core
::SVN_NO_ERROR
;
4398 my ($cred, $realm, $may_save, $pool) = @_;
4399 $may_save = undef if $_no_auth_cache;
4400 if (defined $realm && length $realm) {
4401 print STDERR
"Authentication realm: $realm\n";
4404 if (defined $_username) {
4405 $username = $_username;
4407 print STDERR
"Username: ";
4409 chomp($username = <STDIN
>);
4411 $cred->username($username);
4412 $cred->may_save($may_save);
4413 $SVN::_Core
::SVN_NO_ERROR
;
4416 sub _read_password
{
4417 my ($prompt, $realm) = @_;
4418 my $password = Git
::prompt
($prompt);
4422 package SVN
::Git
::Fetcher
;
4423 use vars qw
/@ISA $_ignore_regex $_preserve_empty_dirs $_placeholder_filename
4424 @deleted_gpath %added_placeholder $repo_id/;
4428 use File
::Basename qw
/dirname/;
4431 # file baton members: path, mode_a, mode_b, pool, fh, blob, base
4433 my ($class, $git_svn, $switch_path) = @_;
4434 my $self = SVN
::Delta
::Editor
->new;
4435 bless $self, $class;
4436 if (exists $git_svn->{last_commit
}) {
4437 $self->{c
} = $git_svn->{last_commit
};
4438 $self->{empty_symlinks
} =
4439 _mark_empty_symlinks
($git_svn, $switch_path);
4442 # some options are read globally, but can be overridden locally
4443 # per [svn-remote "..."] section. Command-line options will *NOT*
4444 # override options set in an [svn-remote "..."] section
4445 $repo_id = $git_svn->{repo_id
};
4446 my $k = "svn-remote.$repo_id.ignore-paths";
4447 my $v = eval { command_oneline
('config', '--get', $k) };
4448 $self->{ignore_regex
} = $v;
4450 $k = "svn-remote.$repo_id.preserve-empty-dirs";
4451 $v = eval { command_oneline
('config', '--get', '--bool', $k) };
4452 if ($v && $v eq 'true') {
4453 $_preserve_empty_dirs = 1;
4454 $k = "svn-remote.$repo_id.placeholder-filename";
4455 $v = eval { command_oneline
('config', '--get', $k) };
4456 $_placeholder_filename = $v;
4459 # Load the list of placeholder files added during previous invocations.
4460 $k = "svn-remote.$repo_id.added-placeholder";
4461 $v = eval { command_oneline
('config', '--get-all', $k) };
4462 if ($_preserve_empty_dirs && $v) {
4463 # command() prints errors to stderr, so we only call it if
4464 # command_oneline() succeeded.
4465 my @v = command
('config', '--get-all', $k);
4466 $added_placeholder{ dirname
($_) } = $_ foreach @v;
4469 $self->{empty
} = {};
4470 $self->{dir_prop
} = {};
4471 $self->{file_prop
} = {};
4472 $self->{absent_dir
} = {};
4473 $self->{absent_file
} = {};
4474 $self->{gii
} = $git_svn->tmp_index_do(sub { Git
::IndexInfo
->new });
4475 $self->{pathnameencoding
} = Git
::config
('svn.pathnameencoding');
4479 # this uses the Ra object, so it must be called before do_{switch,update},
4480 # not inside them (when the Git::SVN::Fetcher object is passed) to
4481 # do_{switch,update}
4482 sub _mark_empty_symlinks
{
4483 my ($git_svn, $switch_path) = @_;
4484 my $bool = Git
::config_bool
('svn.brokenSymlinkWorkaround');
4485 return {} if (!defined($bool)) || (defined($bool) && ! $bool);
4488 my ($rev, $cmt) = $git_svn->last_rev_commit;
4489 return {} unless ($rev && $cmt);
4491 # allow the warning to be printed for each revision we fetch to
4492 # ensure the user sees it. The user can also disable the workaround
4493 # on the repository even while git svn is running and the next
4494 # revision fetched will skip this expensive function.
4495 my $printed_warning;
4496 chomp(my $empty_blob = `git hash-object -t blob --stdin < /dev/null`);
4497 my ($ls, $ctx) = command_output_pipe
(qw
/ls-tree -r -z/, $cmt);
4499 my $pfx = defined($switch_path) ?
$switch_path : $git_svn->{path
};
4500 $pfx .= '/' if length($pfx);
4503 s/\A100644 blob $empty_blob\t//o or next;
4504 unless ($printed_warning) {
4505 print STDERR
"Scanning for empty symlinks, ",
4506 "this may take a while if you have ",
4507 "many empty files\n",
4508 "You may disable this with `",
4509 "git config svn.brokenSymlinkWorkaround ",
4511 "This may be done in a different ",
4512 "terminal without restarting ",
4514 $printed_warning = 1;
4517 my (undef, $props) =
4518 $git_svn->ra->get_file($pfx.$path, $rev, undef);
4519 if ($props->{'svn:special'}) {
4523 command_close_pipe
($ls, $ctx);
4527 # returns true if a given path is inside a ".git" directory
4529 $_[0] =~ m{(?:^|/)\.git(?:/|$)};
4532 # return value: 0 -- don't ignore, 1 -- ignore
4533 sub is_path_ignored
{
4534 my ($self, $path) = @_;
4535 return 1 if in_dot_git
($path);
4536 return 1 if defined($self->{ignore_regex
}) &&
4537 $path =~ m!$self->{ignore_regex}!;
4538 return 0 unless defined($_ignore_regex);
4539 return 1 if $path =~ m!$_ignore_regex!o;
4543 sub set_path_strip
{
4544 my ($self, $path) = @_;
4545 $self->{path_strip
} = qr/^\Q$path\E(\/|$)/ if length $path;
4552 sub open_directory
{
4553 my ($self, $path, $pb, $rev) = @_;
4558 my ($self, $path) = @_;
4559 if (my $enc = $self->{pathnameencoding
}) {
4561 Encode
::from_to
($path, 'UTF-8', $enc);
4563 if ($self->{path_strip
}) {
4564 $path =~ s!$self->{path_strip}!! or
4565 die "Failed to strip path '$path' ($self->{path_strip})\n";
4571 my ($self, $path, $rev, $pb) = @_;
4572 return undef if $self->is_path_ignored($path);
4574 my $gpath = $self->git_path($path);
4575 return undef if ($gpath eq '');
4577 # remove entire directories.
4578 my ($tree) = (command
('ls-tree', '-z', $self->{c
}, "./$gpath")
4579 =~ /\A040000 tree ([a-f\d]{40})\t\Q$gpath\E\0/);
4581 my ($ls, $ctx) = command_output_pipe
(qw
/ls
-tree
4587 my $rmpath = "$gpath/$_";
4588 $self->{gii
}->remove($rmpath);
4589 print "\tD\t$rmpath\n" unless $::_q
;
4591 print "\tD\t$gpath/\n" unless $::_q
;
4592 command_close_pipe
($ls, $ctx);
4594 $self->{gii
}->remove($gpath);
4595 print "\tD\t$gpath\n" unless $::_q
;
4597 # Don't add to @deleted_gpath if we're deleting a placeholder file.
4598 push @deleted_gpath, $gpath unless $added_placeholder{dirname
($path)};
4599 $self->{empty
}->{$path} = 0;
4604 my ($self, $path, $pb, $rev) = @_;
4607 goto out
if $self->is_path_ignored($path);
4609 my $gpath = $self->git_path($path);
4610 ($mode, $blob) = (command
('ls-tree', '-z', $self->{c
}, "./$gpath")
4611 =~ /\A(\d{6}) blob ([a-f\d]{40})\t\Q$gpath\E\0/);
4612 unless (defined $mode && defined $blob) {
4613 die "$path was not found in commit $self->{c} (r$rev)\n";
4615 if ($mode eq '100644' && $self->{empty_symlinks
}->{$path}) {
4619 { path
=> $path, mode_a
=> $mode, mode_b
=> $mode, blob
=> $blob,
4620 pool
=> SVN
::Pool
->new, action
=> 'M' };
4624 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
4627 if (!$self->is_path_ignored($path)) {
4628 my ($dir, $file) = ($path =~ m
#^(.*?)/?([^/]+)$#);
4629 delete $self->{empty
}->{$dir};
4632 if ($added_placeholder{$dir}) {
4633 # Remove our placeholder file, if we created one.
4634 delete_entry
($self, $added_placeholder{$dir})
4635 unless $path eq $added_placeholder{$dir};
4636 delete $added_placeholder{$dir}
4640 { path
=> $path, mode_a
=> $mode, mode_b
=> $mode,
4641 pool
=> SVN
::Pool
->new, action
=> 'A' };
4645 my ($self, $path, $cp_path, $cp_rev) = @_;
4646 goto out
if $self->is_path_ignored($path);
4647 my $gpath = $self->git_path($path);
4649 my ($ls, $ctx) = command_output_pipe
(qw
/ls
-tree
4655 $self->{gii
}->remove($_);
4656 print "\tD\t$_\n" unless $::_q
;
4657 push @deleted_gpath, $gpath;
4659 command_close_pipe
($ls, $ctx);
4660 $self->{empty
}->{$path} = 0;
4662 my ($dir, $file) = ($path =~ m
#^(.*?)/?([^/]+)$#);
4663 delete $self->{empty
}->{$dir};
4664 $self->{empty
}->{$path} = 1;
4666 if ($added_placeholder{$dir}) {
4667 # Remove our placeholder file, if we created one.
4668 delete_entry
($self, $added_placeholder{$dir});
4669 delete $added_placeholder{$dir}
4676 sub change_dir_prop
{
4677 my ($self, $db, $prop, $value) = @_;
4678 return undef if $self->is_path_ignored($db->{path
});
4679 $self->{dir_prop
}->{$db->{path
}} ||= {};
4680 $self->{dir_prop
}->{$db->{path
}}->{$prop} = $value;
4684 sub absent_directory
{
4685 my ($self, $path, $pb) = @_;
4686 return undef if $self->is_path_ignored($path);
4687 $self->{absent_dir
}->{$pb->{path
}} ||= [];
4688 push @
{$self->{absent_dir
}->{$pb->{path
}}}, $path;
4693 my ($self, $path, $pb) = @_;
4694 return undef if $self->is_path_ignored($path);
4695 $self->{absent_file
}->{$pb->{path
}} ||= [];
4696 push @
{$self->{absent_file
}->{$pb->{path
}}}, $path;
4700 sub change_file_prop
{
4701 my ($self, $fb, $prop, $value) = @_;
4702 return undef if $self->is_path_ignored($fb->{path
});
4703 if ($prop eq 'svn:executable') {
4704 if ($fb->{mode_b
} != 120000) {
4705 $fb->{mode_b
} = defined $value ?
100755 : 100644;
4707 } elsif ($prop eq 'svn:special') {
4708 $fb->{mode_b
} = defined $value ?
120000 : 100644;
4710 $self->{file_prop
}->{$fb->{path
}} ||= {};
4711 $self->{file_prop
}->{$fb->{path
}}->{$prop} = $value;
4716 sub apply_textdelta
{
4717 my ($self, $fb, $exp) = @_;
4718 return undef if $self->is_path_ignored($fb->{path
});
4719 my $fh = $::_repository
->temp_acquire('svn_delta');
4720 # $fh gets auto-closed() by SVN::TxDelta::apply(),
4721 # (but $base does not,) so dup() it for reading in close_file
4722 open my $dup, '<&', $fh or croak
$!;
4723 my $base = $::_repository
->temp_acquire('git_blob');
4726 my ($base_is_link, $size);
4728 if ($fb->{mode_a
} eq '120000' &&
4729 ! $self->{empty_symlinks
}->{$fb->{path
}}) {
4730 print $base 'link ' or die "print $!\n";
4734 $size = $::_repository
->cat_blob($fb->{blob
}, $base);
4735 die "Failed to read object $fb->{blob}" if ($size < 0);
4738 seek $base, 0, 0 or croak
$!;
4739 my $got = ::md5sum
($base);
4741 my $err = "Checksum mismatch: ".
4742 "$fb->{path} $fb->{blob}\n" .
4743 "expected: $exp\n" .
4745 if ($base_is_link) {
4747 "Retrying... (possibly ",
4748 "a bad symlink from SVN)\n";
4749 $::_repository
->temp_reset($base);
4757 seek $base, 0, 0 or croak
$!;
4759 $fb->{base
} = $base;
4760 [ SVN
::TxDelta
::apply
($base, $dup, undef, $fb->{path
}, $fb->{pool
}) ];
4764 my ($self, $fb, $exp) = @_;
4765 return undef if $self->is_path_ignored($fb->{path
});
4768 my $path = $self->git_path($fb->{path
});
4769 if (my $fh = $fb->{fh
}) {
4771 seek($fh, 0, 0) or croak
$!;
4772 my $got = ::md5sum
($fh);
4774 die "Checksum mismatch: $path\n",
4775 "expected: $exp\n got: $got\n";
4778 if ($fb->{mode_b
} == 120000) {
4779 sysseek($fh, 0, 0) or croak
$!;
4780 my $rd = sysread($fh, my $buf, 5);
4783 croak
"sysread: $!\n";
4784 } elsif ($rd == 0) {
4785 warn "$path has mode 120000",
4786 " but it points to nothing\n",
4787 "converting to an empty file with mode",
4789 $fb->{mode_b
} = '100644';
4790 } elsif ($buf ne 'link ') {
4791 warn "$path has mode 120000",
4792 " but is not a link\n";
4794 my $tmp_fh = $::_repository
->temp_acquire(
4797 while ($res = sysread($fh, my $str, 1024)) {
4798 my $out = syswrite($tmp_fh, $str, $res);
4799 defined($out) && $out == $res
4801 Git
::temp_path
($tmp_fh),
4804 defined $res or croak
$!;
4806 ($fh, $tmp_fh) = ($tmp_fh, $fh);
4807 Git
::temp_release
($tmp_fh, 1);
4811 $hash = $::_repository
->hash_and_insert_object(
4812 Git
::temp_path
($fh));
4813 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
4815 Git
::temp_release
($fb->{base
}, 1);
4816 Git
::temp_release
($fh, 1);
4818 $hash = $fb->{blob
} or die "no blob information\n";
4821 $self->{gii
}->update($fb->{mode_b
}, $hash, $path) or croak
$!;
4822 print "\t$fb->{action}\t$path\n" if $fb->{action
} && ! $::_q
;
4828 $self->{nr
} = $self->{gii
}->{nr
};
4829 delete $self->{gii
};
4830 $self->SUPER::abort_edit
(@_);
4836 if ($_preserve_empty_dirs) {
4839 # Any entry flagged as empty that also has an associated
4840 # dir_prop represents a newly created empty directory.
4841 foreach my $i (keys %{$self->{empty
}}) {
4842 push @empty_dirs, $i if exists $self->{dir_prop
}->{$i};
4845 # Search for directories that have become empty due subsequent
4847 push @empty_dirs, $self->find_empty_directories();
4849 # Finally, add a placeholder file to each empty directory.
4850 $self->add_placeholder_file($_) foreach (@empty_dirs);
4852 $self->stash_placeholder_list();
4855 $self->{git_commit_ok
} = 1;
4856 $self->{nr
} = $self->{gii
}->{nr
};
4857 delete $self->{gii
};
4858 $self->SUPER::close_edit
(@_);
4861 sub find_empty_directories
{
4864 my %dirs = map { dirname
($_) => 1 } @deleted_gpath;
4866 foreach my $dir (sort keys %dirs) {
4867 next if $dir eq ".";
4869 # If there have been any additions to this directory, there is
4870 # no reason to check if it is empty.
4872 foreach my $t (qw
/dir_prop file_prop/) {
4873 foreach my $path (keys %{ $self->{$t} }) {
4874 if (exists $self->{$t}->{dirname
($path)}) {
4879 last if $skip_added;
4881 next if $skip_added;
4883 # Use `git ls-tree` to get the filenames of this directory
4884 # that existed prior to this particular commit.
4885 my $ls = command
('ls-tree', '-z', '--name-only',
4886 $self->{c
}, "$dir/");
4887 my %files = map { $_ => 1 } split(/\0/, $ls);
4889 # Remove the filenames that were deleted during this commit.
4890 delete $files{$_} foreach (@deleted_gpath);
4892 # Report the directory if there are no filenames left.
4893 push @empty_dirs, $dir unless (scalar %files);
4898 sub add_placeholder_file
{
4899 my ($self, $dir) = @_;
4900 my $path = "$dir/$_placeholder_filename";
4901 my $gpath = $self->git_path($path);
4903 my $fh = $::_repository
->temp_acquire($gpath);
4904 my $hash = $::_repository
->hash_and_insert_object(Git
::temp_path
($fh));
4905 Git
::temp_release
($fh, 1);
4906 $self->{gii
}->update('100644', $hash, $gpath) or croak
$!;
4908 # The directory should no longer be considered empty.
4909 delete $self->{empty
}->{$dir} if exists $self->{empty
}->{$dir};
4911 # Keep track of any placeholder files we create.
4912 $added_placeholder{$dir} = $path;
4915 sub stash_placeholder_list
{
4917 my $k = "svn-remote.$repo_id.added-placeholder";
4918 my $v = eval { command_oneline
('config', '--get-all', $k) };
4919 command_noisy
('config', '--unset-all', $k) if $v;
4920 foreach (values %added_placeholder) {
4921 command_noisy
('config', '--add', $k, $_);
4925 package SVN
::Git
::Editor
;
4926 use vars qw
/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
4933 my ($class, $opts) = @_;
4934 foreach (qw
/svn_path r ra tree_a tree_b log editor_cb/) {
4935 die "$_ required!\n" unless (defined $opts->{$_});
4938 my $pool = SVN
::Pool
->new;
4939 my $mods = generate_diff
($opts->{tree_a
}, $opts->{tree_b
});
4940 my $types = check_diff_paths
($opts->{ra
}, $opts->{svn_path
},
4943 # $opts->{ra} functions should not be used after this:
4944 my @ce = $opts->{ra
}->get_commit_editor($opts->{log},
4945 $opts->{editor_cb
}, $pool);
4946 my $self = SVN
::Delta
::Editor
->new(@ce, $pool);
4947 bless $self, $class;
4948 foreach (qw
/svn_path r tree_a tree_b/) {
4949 $self->{$_} = $opts->{$_};
4951 $self->{url
} = $opts->{ra
}->{url
};
4952 $self->{mods
} = $mods;
4953 $self->{types
} = $types;
4954 $self->{pool
} = $pool;
4955 $self->{bat
} = { '' => $self->open_root($self->{r
}, $self->{pool
}) };
4957 $self->{path_prefix
} = length $self->{svn_path
} ?
4958 "$self->{svn_path}/" : '';
4959 $self->{config
} = $opts->{config
};
4960 $self->{mergeinfo
} = $opts->{mergeinfo
};
4965 my ($tree_a, $tree_b) = @_;
4966 my @diff_tree = qw(diff-tree -z -r);
4967 if ($_cp_similarity) {
4968 push @diff_tree, "-C$_cp_similarity";
4970 push @diff_tree, '-C';
4972 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
4973 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
4974 push @diff_tree, $tree_a, $tree_b;
4975 my ($diff_fh, $ctx) = command_output_pipe
(@diff_tree);
4979 while (<$diff_fh>) {
4980 chomp $_; # this gets rid of the trailing "\0"
4981 if ($state eq 'meta' && /^:(\d
{6})\s
(\d
{6})\s
4982 ($::sha1
)\s
($::sha1
)\s
4983 ([MTCRAD
])\d
*$/xo
) {
4984 push @mods, { mode_a
=> $1, mode_b
=> $2,
4985 sha1_a
=> $3, sha1_b
=> $4,
4987 if ($5 =~ /^(?:C|R)$/) {
4992 } elsif ($state eq 'file_a') {
4993 my $x = $mods[$#mods] or croak
"Empty array\n";
4994 if ($x->{chg
} !~ /^(?:C|R)$/) {
4995 croak
"Error parsing $_, $x->{chg}\n";
4999 } elsif ($state eq 'file_b') {
5000 my $x = $mods[$#mods] or croak
"Empty array\n";
5001 if (exists $x->{file_a
} && $x->{chg
} !~ /^(?:C|R)$/) {
5002 croak
"Error parsing $_, $x->{chg}\n";
5004 if (!exists $x->{file_a
} && $x->{chg
} =~ /^(?:C|R)$/) {
5005 croak
"Error parsing $_, $x->{chg}\n";
5010 croak
"Error parsing $_\n";
5013 command_close_pipe
($diff_fh, $ctx);
5017 sub check_diff_paths
{
5018 my ($ra, $pfx, $rev, $mods) = @_;
5020 $pfx .= '/' if length $pfx;
5022 sub type_diff_paths
{
5023 my ($ra, $types, $path, $rev) = @_;
5024 my @p = split m
#/+#, $path;
5026 unless (defined $types->{$c}) {
5027 $types->{$c} = $ra->check_path($c, $rev);
5030 $c .= '/' . shift @p;
5031 next if defined $types->{$c};
5032 $types->{$c} = $ra->check_path($c, $rev);
5036 foreach my $m (@
$mods) {
5037 foreach my $f (qw
/file_a file_b/) {
5038 next unless defined $m->{$f};
5039 my ($dir) = ($m->{$f} =~ m
#^(.*?)/?(?:[^/]+)$#);
5040 if (length $pfx.$dir && ! defined $types{$dir}) {
5041 type_diff_paths
($ra, \
%types, $pfx.$dir, $rev);
5049 return ($_[0] =~ m
#^(.*?)/?([^/]+)$#);
5053 my ($self, $path) = @_;
5054 if (my $enc = $self->{pathnameencoding
}) {
5056 Encode
::from_to
($path, $enc, 'UTF-8');
5058 $self->{path_prefix
}.(defined $path ?
$path : '');
5062 my ($self, $path) = @_;
5063 if ($self->{url
} =~ m
#^https?://#) {
5064 $path =~ s!([^~a-zA-Z0-9_./-])!uc sprintf("%%%02x",ord($1))!eg;
5066 $self->{url
} . '/' . $self->repo_path($path);
5071 my $rm = $self->{rm
};
5072 delete $rm->{''}; # we never delete the url we're tracking
5075 foreach (keys %$rm) {
5076 my @d = split m
#/#, $_;
5080 $c .= '/' . shift @d;
5084 delete $rm->{$self->{svn_path
}};
5085 delete $rm->{''}; # we never delete the url we're tracking
5088 my ($fh, $ctx) = command_output_pipe
(qw
/ls-tree --name-only -r -z/,
5093 my @dn = split m
#/#, $_;
5095 delete $rm->{join '/', @dn};
5102 command_close_pipe
($fh, $ctx);
5104 my ($r, $p, $bat) = ($self->{r
}, $self->{pool
}, $self->{bat
});
5105 foreach my $d (sort { $b =~ tr
#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
5106 $self->close_directory($bat->{$d}, $p);
5107 my ($dn) = ($d =~ m
#^(.*?)/?(?:[^/]+)$#);
5108 print "\tD+\t$d/\n" unless $::_q
;
5109 $self->SUPER::delete_entry
($d, $r, $bat->{$dn}, $p);
5114 sub open_or_add_dir
{
5115 my ($self, $full_path, $baton) = @_;
5116 my $t = $self->{types
}->{$full_path};
5118 die "$full_path not known in r$self->{r} or we have a bug!\n";
5122 # SVN::Node::none and SVN::Node::file are used only once,
5123 # so we're shutting up Perl's warnings about them.
5124 if ($t == $SVN::Node
::none
) {
5125 return $self->add_directory($full_path, $baton,
5126 undef, -1, $self->{pool
});
5127 } elsif ($t == $SVN::Node
::dir
) {
5128 return $self->open_directory($full_path, $baton,
5129 $self->{r
}, $self->{pool
});
5130 } # no warnings 'once'
5131 print STDERR
"$full_path already exists in repository at ",
5132 "r$self->{r} and it is not a directory (",
5133 ($t == $SVN::Node
::file ?
'file' : 'unknown'),"/$t)\n";
5134 } # no warnings 'once'
5139 my ($self, $path) = @_;
5140 my $bat = $self->{bat
};
5141 my $repo_path = $self->repo_path($path);
5142 return $bat->{''} unless (length $repo_path);
5143 my @p = split m
#/+#, $repo_path;
5145 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
5148 $c .= '/' . shift @p;
5149 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
5154 # Subroutine to convert a globbing pattern to a regular expression.
5155 # From perl cookbook.
5157 my $globstr = shift;
5158 my %patmap = ('*' => '.*', '?' => '.', '[' => '[', ']' => ']');
5159 $globstr =~ s{(.)} { $patmap{$1} || "\Q$1" }ge;
5160 return '^' . $globstr . '$';
5163 sub check_autoprop
{
5164 my ($self, $pattern, $properties, $file, $fbat) = @_;
5165 # Convert the globbing pattern to a regular expression.
5166 my $regex = glob2pat
($pattern);
5167 # Check if the pattern matches the file name.
5168 if($file =~ m/($regex)/) {
5169 # Parse the list of properties to set.
5170 my @props = split(/;/, $properties);
5171 foreach my $prop (@props) {
5172 # Parse 'name=value' syntax and set the property.
5173 if ($prop =~ /([^=]+)=(.*)/) {
5174 my ($n,$v) = ($1,$2);
5178 $self->change_file_prop($fbat, $n, $v);
5184 sub apply_autoprops
{
5185 my ($self, $file, $fbat) = @_;
5186 my $conf_t = ${$self->{config
}}{'config'};
5188 # Check [miscellany]/enable-auto-props in svn configuration.
5189 if (SVN
::_Core
::svn_config_get_bool
(
5191 $SVN::_Core
::SVN_CONFIG_SECTION_MISCELLANY
,
5192 $SVN::_Core
::SVN_CONFIG_OPTION_ENABLE_AUTO_PROPS
,
5194 # Auto-props are enabled. Enumerate them to look for matches.
5195 my $callback = sub {
5196 $self->check_autoprop($_[0], $_[1], $file, $fbat);
5198 SVN
::_Core
::svn_config_enumerate
(
5200 $SVN::_Core
::SVN_CONFIG_SECTION_AUTO_PROPS
,
5206 my ($self, $m) = @_;
5207 my ($dir, $file) = split_path
($m->{file_b
});
5208 my $pbat = $self->ensure_path($dir);
5209 my $fbat = $self->add_file($self->repo_path($m->{file_b
}), $pbat,
5211 print "\tA\t$m->{file_b}\n" unless $::_q
;
5212 $self->apply_autoprops($file, $fbat);
5213 $self->chg_file($fbat, $m);
5214 $self->close_file($fbat,undef,$self->{pool
});
5218 my ($self, $m) = @_;
5219 my ($dir, $file) = split_path
($m->{file_b
});
5220 my $pbat = $self->ensure_path($dir);
5221 my $fbat = $self->add_file($self->repo_path($m->{file_b
}), $pbat,
5222 $self->url_path($m->{file_a
}), $self->{r
});
5223 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q
;
5224 $self->chg_file($fbat, $m);
5225 $self->close_file($fbat,undef,$self->{pool
});
5229 my ($self, $path, $pbat) = @_;
5230 my $rpath = $self->repo_path($path);
5231 my ($dir, $file) = split_path
($rpath);
5232 $self->{rm
}->{$dir} = 1;
5233 $self->SUPER::delete_entry
($rpath, $self->{r
}, $pbat, $self->{pool
});
5237 my ($self, $m) = @_;
5238 my ($dir, $file) = split_path
($m->{file_b
});
5239 my $pbat = $self->ensure_path($dir);
5240 my $fbat = $self->add_file($self->repo_path($m->{file_b
}), $pbat,
5241 $self->url_path($m->{file_a
}), $self->{r
});
5242 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q
;
5243 $self->apply_autoprops($file, $fbat);
5244 $self->chg_file($fbat, $m);
5245 $self->close_file($fbat,undef,$self->{pool
});
5247 ($dir, $file) = split_path
($m->{file_a
});
5248 $pbat = $self->ensure_path($dir);
5249 $self->delete_entry($m->{file_a
}, $pbat);
5253 my ($self, $m) = @_;
5254 my ($dir, $file) = split_path
($m->{file_b
});
5255 my $pbat = $self->ensure_path($dir);
5256 my $fbat = $self->open_file($self->repo_path($m->{file_b
}),
5257 $pbat,$self->{r
},$self->{pool
});
5258 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q
;
5259 $self->chg_file($fbat, $m);
5260 $self->close_file($fbat,undef,$self->{pool
});
5263 sub T
{ shift->M(@_) }
5265 sub change_file_prop
{
5266 my ($self, $fbat, $pname, $pval) = @_;
5267 $self->SUPER::change_file_prop
($fbat, $pname, $pval, $self->{pool
});
5270 sub change_dir_prop
{
5271 my ($self, $pbat, $pname, $pval) = @_;
5272 $self->SUPER::change_dir_prop
($pbat, $pname, $pval, $self->{pool
});
5275 sub _chg_file_get_blob
($$$$) {
5276 my ($self, $fbat, $m, $which) = @_;
5277 my $fh = $::_repository
->temp_acquire("git_blob_$which");
5278 if ($m->{"mode_$which"} =~ /^120/) {
5279 print $fh 'link ' or croak
$!;
5280 $self->change_file_prop($fbat,'svn:special','*');
5281 } elsif ($m->{mode_a
} =~ /^120/ && $m->{"mode_$which"} !~ /^120/) {
5282 $self->change_file_prop($fbat,'svn:special',undef);
5284 my $blob = $m->{"sha1_$which"};
5285 return ($fh,) if ($blob =~ /^0{40}$/);
5286 my $size = $::_repository
->cat_blob($blob, $fh);
5287 croak
"Failed to read object $blob" if ($size < 0);
5288 $fh->flush == 0 or croak
$!;
5289 seek $fh, 0, 0 or croak
$!;
5291 my $exp = ::md5sum
($fh);
5292 seek $fh, 0, 0 or croak
$!;
5297 my ($self, $fbat, $m) = @_;
5298 if ($m->{mode_b
} =~ /755$/ && $m->{mode_a
} !~ /755$/) {
5299 $self->change_file_prop($fbat,'svn:executable','*');
5300 } elsif ($m->{mode_b
} !~ /755$/ && $m->{mode_a
} =~ /755$/) {
5301 $self->change_file_prop($fbat,'svn:executable',undef);
5303 my ($fh_a, $exp_a) = _chg_file_get_blob
$self, $fbat, $m, 'a';
5304 my ($fh_b, $exp_b) = _chg_file_get_blob
$self, $fbat, $m, 'b';
5305 my $pool = SVN
::Pool
->new;
5306 my $atd = $self->apply_textdelta($fbat, $exp_a, $pool);
5308 my $txstream = SVN
::TxDelta
::new
($fh_a, $fh_b, $pool);
5309 my $res = SVN
::TxDelta
::send_txstream
($txstream, @
$atd, $pool);
5311 die "Unexpected result from send_txstream: $res\n",
5312 "(SVN::Core::VERSION: $SVN::Core::VERSION)\n";
5315 my $got = SVN
::TxDelta
::send_stream
($fh_b, @
$atd, $pool);
5316 die "Checksum mismatch\nexpected: $exp_b\ngot: $got\n"
5317 if ($got ne $exp_b);
5319 Git
::temp_release
($fh_b, 1);
5320 Git
::temp_release
($fh_a, 1);
5325 my ($self, $m) = @_;
5326 my ($dir, $file) = split_path
($m->{file_b
});
5327 my $pbat = $self->ensure_path($dir);
5328 print "\tD\t$m->{file_b}\n" unless $::_q
;
5329 $self->delete_entry($m->{file_b
}, $pbat);
5334 my ($p,$bat) = ($self->{pool
}, $self->{bat
});
5335 foreach (sort { $b =~ tr
#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
5337 $self->close_directory($bat->{$_}, $p);
5339 $self->close_directory($bat->{''}, $p);
5340 $self->SUPER::close_edit
($p);
5346 $self->SUPER::abort_edit
($self->{pool
});
5351 $self->SUPER::DESTROY
(@_);
5352 $self->{pool
}->clear;
5355 # this drives the editor
5358 my $mods = $self->{mods
};
5359 my %o = ( D
=> 1, R
=> 0, C
=> -1, A
=> 3, M
=> 3, T
=> 3 );
5360 foreach my $m (sort { $o{$a->{chg
}} <=> $o{$b->{chg
}} } @
$mods) {
5362 if (defined $o{$f}) {
5365 fatal
("Invalid change type: $f");
5369 if (defined($self->{mergeinfo
})) {
5370 $self->change_dir_prop($self->{bat
}{''}, "svn:mergeinfo",
5371 $self->{mergeinfo
});
5373 $self->rmdirs if $_rmdir;
5374 if (@
$mods == 0 && !defined($self->{mergeinfo
})) {
5379 return scalar @
$mods;
5382 package Git
::SVN
::Ra
;
5383 use vars qw
/@ISA $config_dir $_ignore_refs_regex $_log_window_size/;
5386 my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
5389 # enforce temporary pool usage for some simple functions
5391 for my $f (qw
/rev_proplist get_latest_revnum get_uuid get_repos_root
5393 my $SUPER = "SUPER::$f";
5396 my $pool = SVN
::Pool
->new;
5397 my @ret = $self->$SUPER(@_,$pool);
5399 wantarray ?
@ret : $ret[0];
5404 sub _auth_providers
() {
5406 SVN
::Client
::get_simple_provider
(),
5407 SVN
::Client
::get_ssl_server_trust_file_provider
(),
5408 SVN
::Client
::get_simple_prompt_provider
(
5409 \
&Git
::SVN
::Prompt
::simple
, 2),
5410 SVN
::Client
::get_ssl_client_cert_file_provider
(),
5411 SVN
::Client
::get_ssl_client_cert_prompt_provider
(
5412 \
&Git
::SVN
::Prompt
::ssl_client_cert
, 2),
5413 SVN
::Client
::get_ssl_client_cert_pw_file_provider
(),
5414 SVN
::Client
::get_ssl_client_cert_pw_prompt_provider
(
5415 \
&Git
::SVN
::Prompt
::ssl_client_cert_pw
, 2),
5416 SVN
::Client
::get_username_provider
(),
5417 SVN
::Client
::get_ssl_server_trust_prompt_provider
(
5418 \
&Git
::SVN
::Prompt
::ssl_server_trust
),
5419 SVN
::Client
::get_username_prompt_provider
(
5420 \
&Git
::SVN
::Prompt
::username
, 2)
5424 sub escape_uri_only
{
5427 foreach (split m{/}, $uri) {
5428 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
5436 if ($url =~ m
#^(https?)://([^/]+)(.*)$#) {
5437 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only
($3));
5438 $url = "$scheme://$domain$uri";
5444 my ($class, $url) = @_;
5446 return $RA if ($RA && $RA->{url
} eq $url);
5450 SVN
::_Core
::svn_config_ensure
($config_dir, undef);
5451 my ($baton, $callbacks) = SVN
::Core
::auth_open_helper
(_auth_providers
);
5452 my $config = SVN
::Core
::config_get_config
($config_dir);
5454 my $dont_store_passwords = 1;
5455 my $conf_t = ${$config}{'config'};
5458 # The usage of $SVN::_Core::SVN_CONFIG_* variables
5459 # produces warnings that variables are used only once.
5460 # I had not found the better way to shut them up, so
5461 # the warnings of type 'once' are disabled in this block.
5462 if (SVN
::_Core
::svn_config_get_bool
($conf_t,
5463 $SVN::_Core
::SVN_CONFIG_SECTION_AUTH
,
5464 $SVN::_Core
::SVN_CONFIG_OPTION_STORE_PASSWORDS
,
5466 SVN
::_Core
::svn_auth_set_parameter
($baton,
5467 $SVN::_Core
::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS
,
5468 bless (\
$dont_store_passwords, "_p_void"));
5470 if (SVN
::_Core
::svn_config_get_bool
($conf_t,
5471 $SVN::_Core
::SVN_CONFIG_SECTION_AUTH
,
5472 $SVN::_Core
::SVN_CONFIG_OPTION_STORE_AUTH_CREDS
,
5474 $Git::SVN
::Prompt
::_no_auth_cache
= 1;
5476 } # no warnings 'once'
5477 my $self = SVN
::Ra
->new(url
=> escape_url
($url), auth
=> $baton,
5479 pool
=> SVN
::Pool
->new,
5480 auth_provider_callbacks
=> $callbacks);
5481 $self->{url
} = $url;
5482 $self->{svn_path
} = $url;
5483 $self->{repos_root
} = $self->get_repos_root;
5484 $self->{svn_path
} =~ s
#^\Q$self->{repos_root}\E(/|$)##;
5485 $self->{cache
} = { check_path
=> { r
=> 0, data
=> {} },
5486 get_dir
=> { r
=> 0, data
=> {} } };
5487 $RA = bless $self, $class;
5491 my ($self, $path, $r) = @_;
5492 my $cache = $self->{cache
}->{check_path
};
5493 if ($r == $cache->{r
} && exists $cache->{data
}->{$path}) {
5494 return $cache->{data
}->{$path};
5496 my $pool = SVN
::Pool
->new;
5497 my $t = $self->SUPER::check_path
($path, $r, $pool);
5499 if ($r != $cache->{r
}) {
5500 %{$cache->{data
}} = ();
5503 $cache->{data
}->{$path} = $t;
5507 my ($self, $dir, $r) = @_;
5508 my $cache = $self->{cache
}->{get_dir
};
5509 if ($r == $cache->{r
}) {
5510 if (my $x = $cache->{data
}->{$dir}) {
5511 return wantarray ? @
$x : $x->[0];
5514 my $pool = SVN
::Pool
->new;
5515 my ($d, undef, $props) = $self->SUPER::get_dir
($dir, $r, $pool);
5516 my %dirents = map { $_ => { kind
=> $d->{$_}->kind } } keys %$d;
5518 if ($r != $cache->{r
}) {
5519 %{$cache->{data
}} = ();
5522 $cache->{data
}->{$dir} = [ \
%dirents, $r, $props ];
5523 wantarray ?
(\
%dirents, $r, $props) : \
%dirents;
5527 # do not call the real DESTROY since we store ourselves in $RA
5530 # get_log(paths, start, end, limit,
5531 # discover_changed_paths, strict_node_history, receiver)
5533 my ($self, @args) = @_;
5534 my $pool = SVN
::Pool
->new;
5536 # svn_log_changed_path_t objects passed to get_log are likely to be
5537 # overwritten even if only the refs are copied to an external variable,
5538 # so we should dup the structures in their entirety. Using an
5539 # externally passed pool (instead of our temporary and quickly cleared
5540 # pool in Git::SVN::Ra) does not help matters at all...
5541 my $receiver = pop @args;
5542 my $prefix = "/".$self->{svn_path
};
5543 $prefix =~ s
#/+($)##;
5544 my $prefix_regex = qr
#^\Q$prefix\E#;
5546 my ($paths) = $_[0];
5547 return &$receiver(@_) unless $paths;
5549 foreach my $p (keys %$paths) {
5550 my $i = $paths->{$p};
5551 # Make path relative to our url, not repos_root
5552 $p =~ s/$prefix_regex//;
5553 my %s = map { $_ => $i->$_; }
5554 qw
/copyfrom_path copyfrom_rev action/;
5555 if ($s{'copyfrom_path'}) {
5556 $s{'copyfrom_path'} =~ s/$prefix_regex//;
5564 # the limit parameter was not supported in SVN 1.1.x, so we
5565 # drop it. Therefore, the receiver callback passed to it
5566 # is made aware of this limitation by being wrapped if
5567 # the limit passed to is being wrapped.
5568 if ($SVN::Core
::VERSION
le '1.2.0') {
5569 my $limit = splice(@args, 3, 1);
5571 my $receiver = pop @args;
5572 push(@args, sub { &$receiver(@_) if (--$limit >= 0) });
5575 my $ret = $self->SUPER::get_log
(@args, $pool);
5581 my ($self, $url1, $rev1, $url2, $rev2) = @_;
5582 my $ctx = SVN
::Client
->new(auth
=> _auth_providers
);
5583 my $out = IO
::File
->new_tmpfile;
5585 # older SVN (1.1.x) doesn't take $pool as the last parameter for
5586 # $ctx->diff(), so we'll create a default one
5587 my $pool = SVN
::Pool
->new_default_sub;
5589 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
5590 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
5592 my $ret = (($out->stat)[7] == 0);
5593 close $out or croak
$!;
5598 sub get_commit_editor
{
5599 my ($self, $log, $cb, $pool) = @_;
5600 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef, 0) : ();
5601 $self->SUPER::get_commit_editor
($log, $cb, @lock, $pool);
5605 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
5606 my $new = ($rev_a == $rev_b);
5607 my $path = $gs->{path
};
5609 if ($new && -e
$gs->{index}) {
5610 unlink $gs->{index} or die
5611 "Couldn't unlink index: $gs->{index}: $!\n";
5613 my $pool = SVN
::Pool
->new;
5614 $editor->set_path_strip($path);
5615 my (@pc) = split m
#/#, $path;
5616 my $reporter = $self->do_update($rev_b, (@pc ?
shift @pc : ''),
5618 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef) : ();
5620 # Since we can't rely on svn_ra_reparent being available, we'll
5621 # just have to do some magic with set_path to make it so
5622 # we only want a partial path.
5624 my $final = join('/', @pc);
5626 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
5627 $sp .= '/' if length $sp;
5630 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
5632 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
5634 $reporter->finish_report($pool);
5636 $editor->{git_commit_ok
};
5639 # this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
5640 # svn_ra_reparent didn't work before 1.4)
5642 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
5643 my $path = $gs->{path
};
5644 my $pool = SVN
::Pool
->new;
5646 my $full_url = $self->{url
};
5647 my $old_url = $full_url;
5648 $full_url .= '/' . $path if length $path;
5649 my ($ra, $reparented);
5651 if ($old_url =~ m
#^svn(\+ssh)?://# ||
5652 ($full_url =~ m
#^https?://# &&
5653 escape_url
($full_url) ne $full_url)) {
5657 $ra = Git
::SVN
::Ra
->new($full_url);
5659 } elsif ($old_url ne $full_url) {
5660 SVN
::_Ra
::svn_ra_reparent
($self->{session
}, $full_url, $pool);
5661 $self->{url
} = $full_url;
5666 $url_b = escape_url
($url_b);
5667 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
5668 my @lock = $SVN::Core
::VERSION
ge '1.2.0' ?
(undef) : ();
5669 $reporter->set_path('', $rev_a, 0, @lock, $pool);
5670 $reporter->finish_report($pool);
5673 SVN
::_Ra
::svn_ra_reparent
($self->{session
}, $old_url, $pool);
5674 $self->{url
} = $old_url;
5678 $editor->{git_commit_ok
};
5681 sub longest_common_path
{
5682 my ($gsv, $globs) = @_;
5684 my $common_max = scalar @
$gsv;
5686 foreach my $gs (@
$gsv) {
5687 my @tmp = split m
#/#, $gs->{path};
5690 $p .= length($p) ?
"/$_" : $_;
5696 $common_max += scalar @
$globs;
5697 foreach my $glob (@
$globs) {
5698 my @tmp = split m
#/#, $glob->{path}->{left};
5701 $p .= length($p) ?
"/$_" : $_;
5707 my $longest_path = '';
5708 foreach (sort {length $b <=> length $a} keys %common) {
5709 if ($common{$_} == $common_max) {
5717 sub gs_fetch_loop_common
{
5718 my ($self, $base, $head, $gsv, $globs) = @_;
5719 return if ($base > $head);
5720 my $inc = $_log_window_size;
5721 my ($min, $max) = ($base, $head < $base + $inc ?
$head : $base + $inc);
5722 my $longest_path = longest_common_path
($gsv, $globs);
5723 my $ra_url = $self->{url
};
5724 my $find_trailing_edge;
5728 my $err_handler = $SVN::Error
::handler
;
5729 $SVN::Error
::handler
= sub {
5731 skip_unknown_revs
($err);
5734 my ($paths, $r, $author, $date, $log) = @_;
5736 { author
=> $author, date
=> $date, log => $log } ];
5738 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
5739 sub { $revs{$_[1]} = _cb
(@_) });
5741 print "Checked through r$max\r";
5743 $find_trailing_edge = 1;
5745 if ($err and $find_trailing_edge) {
5746 print STDERR
"Path '$longest_path' ",
5747 "was probably deleted:\n",
5748 $err->expanded_message,
5749 "\nWill attempt to follow ",
5750 "revisions r$min .. r$max ",
5751 "committed before the deletion\n";
5753 while (--$hi >= $min) {
5755 $self->get_log([$longest_path], $min, $hi,
5758 $revs{$_[1]} = _cb
(@_) });
5760 print STDERR
"r$min .. r$ok OK\n";
5764 $find_trailing_edge = 0;
5766 $SVN::Error
::handler
= $err_handler;
5768 my %exists = map { $_->{path
} => $_ } @
$gsv;
5769 foreach my $r (sort {$a <=> $b} keys %revs) {
5770 my ($paths, $logged) = @
{$revs{$r}};
5772 foreach my $gs ($self->match_globs(\
%exists, $paths,
5774 if ($gs->rev_map_max >= $r) {
5777 next unless $gs->match_paths($paths, $r);
5778 $gs->{logged_rev_props
} = $logged;
5779 if (my $last_commit = $gs->last_commit) {
5780 $gs->assert_index_clean($last_commit);
5782 my $log_entry = $gs->do_fetch($paths, $r);
5784 $gs->do_git_commit($log_entry);
5786 $INDEX_FILES{$gs->{index}} = 1;
5788 foreach my $g (@
$globs) {
5789 my $k = "svn-remote.$g->{remote}." .
5791 Git
::SVN
::tmp_config
($k, $r);
5797 $self = Git
::SVN
::Ra
->new($ra_url);
5798 $ra_invalid = undef;
5801 # pre-fill the .rev_db since it'll eventually get filled in
5802 # with '0' x40 if something new gets committed
5803 foreach my $gs (@
$gsv) {
5804 next if $gs->rev_map_max >= $max;
5805 next if defined $gs->rev_map_get($max);
5806 $gs->rev_map_set($max, 0 x40
);
5808 foreach my $g (@
$globs) {
5809 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
5810 Git
::SVN
::tmp_config
($k, $max);
5812 last if $max >= $head;
5815 $max = $head if ($max > $head);
5820 sub get_dir_globbed
{
5821 my ($self, $left, $depth, $r) = @_;
5823 my @x = eval { $self->get_dir($left, $r) };
5824 return unless scalar @x == 3;
5825 my $dirents = $x[0];
5827 foreach my $de (keys %$dirents) {
5828 next if $dirents->{$de}->{kind
} != $SVN::Node
::dir
;
5830 my @args = ("$left/$de", $depth - 1, $r);
5831 foreach my $dir ($self->get_dir_globbed(@args)) {
5832 push @finalents, "$de/$dir";
5835 push @finalents, $de;
5841 # return value: 0 -- don't ignore, 1 -- ignore
5842 sub is_ref_ignored
{
5844 my $refname = $g->{ref}->full_path($p);
5845 return 1 if defined($g->{ignore_refs_regex
}) &&
5846 $refname =~ m!$g->{ignore_refs_regex}!;
5847 return 0 unless defined($_ignore_refs_regex);
5848 return 1 if $refname =~ m!$_ignore_refs_regex!o;
5853 my ($self, $exists, $paths, $globs, $r) = @_;
5856 my ($self, $exists, $g, $r) = @_;
5858 my @dirs = $self->get_dir_globbed($g->{path
}->{left
},
5859 $g->{path
}->{depth
},
5862 foreach my $de (@dirs) {
5863 my $p = $g->{path
}->full_path($de);
5864 next if $exists->{$p};
5865 next if (length $g->{path
}->{right
} &&
5866 ($self->check_path($p, $r) !=
5868 next unless $p =~ /$g->{path}->{regex}/;
5869 $exists->{$p} = Git
::SVN
->init($self->{url
}, $p, undef,
5870 $g->{ref}->full_path($de), 1);
5873 foreach my $g (@
$globs) {
5874 if (my $path = $paths->{"/$g->{path}->{left}"}) {
5875 if ($path->{action
} =~ /^[AR]$/) {
5876 get_dir_check
($self, $exists, $g, $r);
5879 foreach (keys %$paths) {
5880 if (/$g->{path}->{left_regex}/ &&
5881 !/$g->{path}->{regex}/) {
5882 next if $paths->{$_}->{action
} !~ /^[AR]$/;
5883 get_dir_check
($self, $exists, $g, $r);
5885 next unless /$g->{path}->{regex}/;
5887 my $pathname = $g->{path
}->full_path($p);
5888 next if is_ref_ignored
($g, $p);
5889 next if $exists->{$pathname};
5890 next if ($self->check_path($pathname, $r) !=
5892 $exists->{$pathname} = Git
::SVN
->init(
5893 $self->{url
}, $pathname, undef,
5894 $g->{ref}->full_path($p), 1);
5897 foreach (split m
#/#, $g->{path}->{left}) {
5899 next unless ($paths->{$c} &&
5900 ($paths->{$c}->{action
} =~ /^[AR]$/));
5901 get_dir_check
($self, $exists, $g, $r);
5909 return $self->{url
} if ($self->{url
} eq $self->{repos_root
});
5910 my $url = $self->{repos_root
};
5911 my @components = split(m!/!, $self->{svn_path
});
5914 $url .= "/$c" if length $c;
5916 my $ra = (ref $self)->new($url);
5917 my $latest = $ra->get_latest_revnum;
5918 $ra->get_log("", $latest, 0, 1, 0, 1, sub {});
5920 } while ($@
&& ($c = shift @components));
5926 unless (defined $can_do_switch) {
5927 my $pool = SVN
::Pool
->new;
5929 $self->do_switch(1, '', 0, $self->{url
},
5930 SVN
::Delta
::Editor
->new, $pool);
5935 $rep->abort_report($pool);
5943 sub skip_unknown_revs
{
5945 my $errno = $err->apr_err();
5946 # Maybe the branch we're tracking didn't
5947 # exist when the repo started, so it's
5948 # not an error if it doesn't, just continue
5950 # Wonderfully consistent library, eh?
5951 # 160013 - svn:// and file://
5952 # 175002 - http(s)://
5953 # 175007 - http(s):// (this repo required authorization, too...)
5954 # More codes may be discovered later...
5955 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
5956 my $err_key = $err->expanded_message;
5957 # revision numbers change every time, filter them out
5958 $err_key =~ s/\d+/\0/g;
5959 $err_key = "$errno\0$err_key";
5960 unless ($ignored_err{$err_key}) {
5961 warn "W: Ignoring error from SVN, path probably ",
5962 "does not exist: ($errno): ",
5963 $err->expanded_message,"\n";
5964 warn "W: Do not be alarmed at the above message ",
5965 "git-svn is just searching aggressively for ",
5967 "This may take a while on large repositories\n";
5968 $ignored_err{$err_key} = 1;
5972 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
5975 package Git
::SVN
::Log
;
5978 use POSIX qw
/strftime/;
5980 use constant commit_log_separator
=> ('-' x
72) . "\n";
5981 use vars qw
/$TZ $limit $color $pager $non_recursive $verbose $oneline
5982 %rusers $show_commit $incremental/;
5987 return 1 if defined $c->{r
};
5989 # big commit message got truncated by the 16k pretty buffer in rev-list
5990 if ($c->{l
} && $c->{l
}->[-1] eq "...\n" &&
5991 $c->{a_raw
} =~ /\@([a-f\d\-]+)>$/) {
5993 my @log = command
(qw
/cat-file commit/, $c->{c
});
5995 # shift off the headers
5996 shift @log while ($log[0] ne '');
5999 # TODO: make $c->{l} not have a trailing newline in the future
6000 @
{$c->{l
}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
6002 (undef, $c->{r
}, undef) = ::extract_metadata
(
6003 (grep(/^git-svn-id: /, @log))[-1]);
6005 return defined $c->{r
};
6009 return $color || Git
->repository->get_colorbool('color.diff');
6012 sub git_svn_log_cmd
{
6013 my ($r_min, $r_max, @args) = @_;
6015 my (@files, @log_opts);
6016 foreach my $x (@args) {
6017 if ($x eq '--' || @files) {
6020 if (::verify_ref
("$x^0")) {
6028 my ($url, $rev, $uuid, $gs) = ::working_head_info
($head);
6029 $gs ||= Git
::SVN
->_new;
6030 my @cmd = (qw
/log --abbrev-commit --pretty=raw --default/,
6032 push @cmd, '-r' unless $non_recursive;
6033 push @cmd, qw
/--raw --name-status/ if $verbose;
6034 push @cmd, '--color' if log_use_color
();
6035 push @cmd, @log_opts;
6036 if (defined $r_max && $r_max == $r_min) {
6037 push @cmd, '--max-count=1';
6038 if (my $c = $gs->rev_map_get($r_max)) {
6041 } elsif (defined $r_max) {
6042 if ($r_max < $r_min) {
6043 ($r_min, $r_max) = ($r_max, $r_min);
6045 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
6046 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
6047 # If there are no commits in the range, both $c_max and $c_min
6048 # will be undefined. If there is at least 1 commit in the
6049 # range, both will be defined.
6050 return () if !defined $c_min || !defined $c_max;
6051 if ($c_min eq $c_max) {
6052 push @cmd, '--max-count=1', $c_min;
6054 push @cmd, '--boundary', "$c_min..$c_max";
6057 return (@cmd, @files);
6060 # adapted from pager.c
6063 $ENV{GIT_PAGER_IN_USE
} = 'false';
6067 chomp($pager = command_oneline
(qw(var GIT_PAGER)));
6068 if ($pager eq 'cat') {
6071 $ENV{GIT_PAGER_IN_USE
} = defined($pager);
6075 return unless defined $pager;
6076 pipe my ($rfd, $wfd) or return;
6077 defined(my $pid = fork) or ::fatal
"Can't fork: $!";
6079 open STDOUT
, '>&', $wfd or
6080 ::fatal
"Can't redirect to stdout: $!";
6083 open STDIN
, '<&', $rfd or ::fatal
"Can't redirect stdin: $!";
6084 $ENV{LESS
} ||= 'FRSX';
6085 exec $pager or ::fatal
"Can't run pager: $! ($pager)";
6088 sub format_svn_date
{
6089 # some systmes don't handle or mishandle %z, so be creative.
6090 my $t = shift || time;
6091 my $gm = timelocal
(gmtime($t));
6092 my $sign = qw( + + - )[ $t <=> $gm ];
6093 my $gmoff = sprintf("%s%02d%02d", $sign, (gmtime(abs($t - $gm)))[2,1]);
6094 return strftime
("%Y-%m-%d %H:%M:%S $gmoff (%a, %d %b %Y)", localtime($t));
6097 sub parse_git_date
{
6099 # Date::Parse isn't in the standard Perl distro :(
6100 if ($tz =~ s/^\+//) {
6101 $t += tz_to_s_offset
($tz);
6102 } elsif ($tz =~ s/^\-//) {
6103 $t -= tz_to_s_offset
($tz);
6108 sub set_local_timezone
{
6116 sub tz_to_s_offset
{
6119 return ($1 * 60) + ($tz * 3600);
6122 sub get_author_info
{
6123 my ($dest, $author, $t, $tz) = @_;
6124 $author =~ s/(?:^\s*|\s*$)//g;
6125 $dest->{a_raw
} = $author;
6128 $au = $rusers{$author} || undef;
6131 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
6136 $dest->{t_utc
} = parse_git_date
($t, $tz);
6139 sub process_commit
{
6140 my ($c, $r_min, $r_max, $defer) = @_;
6141 if (defined $r_min && defined $r_max) {
6142 if ($r_min == $c->{r
} && $r_min == $r_max) {
6146 return 1 if $r_min == $r_max;
6147 if ($r_min < $r_max) {
6148 # we need to reverse the print order
6149 return 0 if (defined $limit && --$limit < 0);
6153 if ($r_min != $r_max) {
6154 return 1 if ($r_min < $c->{r
});
6155 return 1 if ($r_max > $c->{r
});
6158 return 0 if (defined $limit && --$limit < 0);
6167 if (my $l = $c->{l
}) {
6168 while ($l->[0] =~ /^\s*$/) { shift @
$l }
6171 $l_fmt ||= 'A' . length($c->{r
});
6172 print 'r',pack($l_fmt, $c->{r
}),' | ';
6173 print "$c->{c} | " if $show_commit;
6176 show_commit_normal
($c);
6180 sub show_commit_changed_paths
{
6182 return unless $c->{changed
};
6183 print "Changed paths:\n", @
{$c->{changed
}};
6186 sub show_commit_normal
{
6188 print commit_log_separator
, "r$c->{r} | ";
6189 print "$c->{c} | " if $show_commit;
6190 print "$c->{a} | ", format_svn_date
($c->{t_utc
}), ' | ';
6193 if (my $l = $c->{l
}) {
6194 while ($l->[$#$l] eq "\n" && $#$l > 0
6195 && $l->[($#$l - 1)] eq "\n") {
6198 $nr_line = scalar @
$l;
6200 print "1 line\n\n\n";
6202 if ($nr_line == 1) {
6203 $nr_line = '1 line';
6205 $nr_line .= ' lines';
6207 print $nr_line, "\n";
6208 show_commit_changed_paths
($c);
6210 print $_ foreach @
$l;
6214 show_commit_changed_paths
($c);
6218 foreach my $x (qw
/raw stat diff/) {
6221 print $_ foreach @
{$c->{$x}}
6228 my ($r_min, $r_max);
6229 my $r_last = -1; # prevent dupes
6230 set_local_timezone
();
6231 if (defined $::_revision
) {
6232 if ($::_revision
=~ /^(\d+):(\d+)$/) {
6233 ($r_min, $r_max) = ($1, $2);
6234 } elsif ($::_revision
=~ /^\d+$/) {
6235 $r_min = $r_max = $::_revision
;
6237 ::fatal
"-r$::_revision is not supported, use ",
6238 "standard 'git log' arguments instead";
6243 @args = git_svn_log_cmd
($r_min, $r_max, @args);
6245 print commit_log_separator
unless $incremental || $oneline;
6248 my $log = command_output_pipe
(@args);
6250 my (@k, $c, $d, $stat);
6251 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
6253 if (/^${esc_color}commit (?:- )?($::sha1_short)/o) {
6255 if ($c && cmt_showable
($c) && $c->{r
} != $r_last) {
6257 process_commit
($c, $r_min, $r_max, \
@k) or
6262 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
6263 get_author_info
($c, $1, $2, $3);
6264 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
6266 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
6267 push @
{$c->{raw
}}, $_;
6268 } elsif (/^${esc_color}[ACRMDT]\t/) {
6269 # we could add $SVN->{svn_path} here, but that requires
6270 # remote access at the moment (repo_path_split)...
6271 s
#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
6272 push @
{$c->{changed
}}, $_;
6273 } elsif (/^${esc_color}diff /o) {
6275 push @
{$c->{diff
}}, $_;
6277 push @
{$c->{diff
}}, $_;
6278 } elsif (/^\
.+\ \
|\s
*\d
+\
$esc_color[\
+\
-]*
6279 $esc_color*[\
+\
-]*$esc_color$/x
) {
6281 push @
{$c->{stat}}, $_;
6282 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
6283 push @
{$c->{stat}}, $_;
6285 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
6286 ($c->{url
}, $c->{r
}, undef) = ::extract_metadata
($1);
6287 } elsif (s/^${esc_color} //o) {
6288 push @
{$c->{l
}}, $_;
6291 if ($c && defined $c->{r
} && $c->{r
} != $r_last) {
6293 process_commit
($c, $r_min, $r_max, \
@k);
6296 ($r_min, $r_max) = ($r_max, $r_min);
6297 process_commit
($_, $r_min, $r_max) foreach reverse @k;
6301 print commit_log_separator
unless $incremental || $oneline;
6310 my ($fh, $ctx, $rev);
6313 ($fh, $ctx) = command_output_pipe
('blame', @_, $path);
6314 while (my $line = <$fh>) {
6315 if ($line =~ /^\^?([[:xdigit:]]+)\s/) {
6316 # Uncommitted edits show up as a rev ID of
6317 # all zeros, which we can't look up with
6320 (undef, $rev, undef) =
6322 $rev = '0' if (!$rev);
6326 $rev = sprintf('%-10s', $rev);
6327 $line =~ s/^\^?[[:xdigit:]]+(\s)/$rev$1/;
6332 ($fh, $ctx) = command_output_pipe
('blame', '-p', @_, 'HEAD',
6337 my %dsha; #distinct sha keys
6339 while (my $line = <$fh>) {
6340 push @buffer, $line;
6341 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
6346 my $s2r = ::cmt_sha2rev_batch
([keys %dsha]);
6348 foreach my $line (@buffer) {
6349 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
6351 $rev = '0' if (!$rev)
6353 elsif ($line =~ /^author (.*)/) {
6354 $authors{$rev} = $1;
6355 $authors{$rev} =~ s/\s/_/g;
6357 elsif ($line =~ /^\t(.*)$/) {
6358 printf("%6s %10s %s\n", $rev, $authors{$rev}, $1);
6362 command_close_pipe
($fh, $ctx);
6365 package Git
::SVN
::Migration
;
6366 # these version numbers do NOT correspond to actual version numbers
6367 # of git nor git-svn. They are just relative.
6369 # v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
6371 # v1 layout: .git/$id/info/url, refs/remotes/$id
6373 # v2 layout: .git/svn/$id/info/url, refs/remotes/$id
6375 # v3 layout: .git/svn/$id, refs/remotes/$id
6376 # - info/url may remain for backwards compatibility
6377 # - this is what we migrate up to this layout automatically,
6378 # - this will be used by git svn init on single branches
6379 # v3.1 layout (auto migrated):
6380 # - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
6381 # for backwards compatibility
6383 # v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
6384 # - this is only created for newly multi-init-ed
6385 # repositories. Similar in spirit to the
6386 # --use-separate-remotes option in git-clone (now default)
6387 # - we do not automatically migrate to this (following
6388 # the example set by core git)
6390 # v5 layout: .rev_db.$UUID => .rev_map.$UUID
6391 # - newer, more-efficient format that uses 24-bytes per record
6392 # with no filler space.
6393 # - use xxd -c24 < .rev_map.$UUID to view and debug
6394 # - This is a one-way migration, repositories updated to the
6395 # new format will not be able to use old git-svn without
6396 # rebuilding the .rev_db. Rebuilding the rev_db is not
6397 # possible if noMetadata or useSvmProps are set; but should
6398 # be no problem for users that use the (sensible) defaults.
6402 use File
::Path qw
/mkpath/;
6403 use File
::Basename qw
/dirname basename/;
6404 use vars qw
/$_minimize/;
6406 sub migrate_from_v0
{
6407 my $git_dir = $ENV{GIT_DIR
};
6408 return undef unless -d
$git_dir;
6409 my ($fh, $ctx) = command_output_pipe
(qw
/rev-parse --symbolic --all/);
6413 my ($id, $orig_ref) = ($_, $_);
6414 next unless $id =~ s
#^refs/heads/(.+)-HEAD$#$1#;
6415 next unless -f
"$git_dir/$id/info/url";
6416 my $new_ref = "refs/remotes/$id";
6417 if (::verify_ref
("$new_ref^0")) {
6418 print STDERR
"W: $orig_ref is probably an old ",
6419 "branch used by an ancient version of ",
6421 "However, $new_ref also exists.\n",
6422 "We will not be able ",
6423 "to use this branch until this ",
6424 "ambiguity is resolved.\n";
6427 print STDERR
"Migrating from v0 layout...\n" if !$migrated;
6428 print STDERR
"Renaming ref: $orig_ref => $new_ref\n";
6429 command_noisy
('update-ref', $new_ref, $orig_ref);
6430 command_noisy
('update-ref', '-d', $orig_ref, $orig_ref);
6433 command_close_pipe
($fh, $ctx);
6434 print STDERR
"Done migrating from v0 layout...\n" if $migrated;
6438 sub migrate_from_v1
{
6439 my $git_dir = $ENV{GIT_DIR
};
6441 return $migrated unless -d
$git_dir;
6442 my $svn_dir = "$git_dir/svn";
6444 # just in case somebody used 'svn' as their $id at some point...
6445 return $migrated if -d
$svn_dir && ! -f
"$svn_dir/info/url";
6447 print STDERR
"Migrating from a git-svn v1 layout...\n";
6449 print STDERR
"Data from a previous version of git-svn exists, but\n\t",
6450 "$svn_dir\n\t(required for this version ",
6451 "($::VERSION) of git-svn) does not exist.\n";
6452 my ($fh, $ctx) = command_output_pipe
(qw
/rev-parse --symbolic --all/);
6455 next unless $x =~ s
#^refs/remotes/##;
6457 next unless -f
"$git_dir/$x/info/url";
6458 my $u = eval { ::file_to_s
("$git_dir/$x/info/url") };
6460 my $dn = dirname
("$git_dir/svn/$x");
6461 mkpath
([$dn]) unless -d
$dn;
6462 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
6463 mkpath
(["$git_dir/svn/svn"]);
6464 print STDERR
" - $git_dir/$x/info => ",
6465 "$git_dir/svn/$x/info\n";
6466 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
6468 # don't worry too much about these, they probably
6469 # don't exist with repos this old (save for index,
6470 # and we can easily regenerate that)
6471 foreach my $f (qw
/unhandled.log index .rev_db/) {
6472 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
6475 print STDERR
" - $git_dir/$x => $git_dir/svn/$x\n";
6476 rename "$git_dir/$x", "$git_dir/svn/$x" or
6481 command_close_pipe
($fh, $ctx);
6482 print STDERR
"Done migrating from a git-svn v1 layout\n";
6487 my ($l_map, $pfx, $path) = @_;
6489 foreach (<$path/*>) {
6490 if (-r
"$_/info/url") {
6491 $pfx .= '/' if $pfx && $pfx !~ m
!/$!;
6492 my $ref_id = $pfx . basename
$_;
6493 my $url = ::file_to_s
("$_/info/url");
6494 $l_map->{$ref_id} = $url;
6501 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
6502 read_old_urls
($l_map, $x, $_);
6506 sub migrate_from_v2
{
6507 my @cfg = command
(qw
/config -l/);
6508 return if grep /^svn-remote\..+\.url=/, @cfg;
6510 read_old_urls
(\
%l_map, '', "$ENV{GIT_DIR}/svn");
6513 foreach my $ref_id (sort keys %l_map) {
6514 eval { Git
::SVN
->init($l_map{$ref_id}, '', undef, $ref_id) };
6516 Git
::SVN
->init($l_map{$ref_id}, '', $ref_id, $ref_id);
6523 sub minimize_connections
{
6524 my $r = Git
::SVN
::read_all_remotes
();
6526 my $root_repos = {};
6527 foreach my $repo_id (keys %$r) {
6528 my $url = $r->{$repo_id}->{url
} or next;
6529 my $fetch = $r->{$repo_id}->{fetch
} or next;
6530 my $ra = Git
::SVN
::Ra
->new($url);
6532 # skip existing cases where we already connect to the root
6533 if (($ra->{url
} eq $ra->{repos_root
}) ||
6534 ($ra->{repos_root
} eq $repo_id)) {
6535 $root_repos->{$ra->{url
}} = $repo_id;
6539 my $root_ra = Git
::SVN
::Ra
->new($ra->{repos_root
});
6540 my $root_path = $ra->{url
};
6541 $root_path =~ s
#^\Q$ra->{repos_root}\E(/|$)##;
6542 foreach my $path (keys %$fetch) {
6543 my $ref_id = $fetch->{$path};
6544 my $gs = Git
::SVN
->new($ref_id, $repo_id, $path);
6546 # make sure we can read when connecting to
6547 # a higher level of a repository
6548 my ($last_rev, undef) = $gs->last_rev_commit;
6549 if (!defined $last_rev) {
6551 $root_ra->get_latest_revnum;
6555 my $new = $root_path;
6556 $new .= length $path ?
"/$path" : '';
6558 $root_ra->get_log([$new], $last_rev, $last_rev,
6562 $new_urls->{$ra->{repos_root
}}->{$new} =
6563 { ref_id
=> $ref_id,
6564 old_repo_id
=> $repo_id,
6565 old_path
=> $path };
6570 foreach my $url (keys %$new_urls) {
6571 # see if we can re-use an existing [svn-remote "repo_id"]
6572 # instead of creating a(n ugly) new section:
6573 my $repo_id = $root_repos->{$url} || $url;
6575 my $fetch = $new_urls->{$url};
6576 foreach my $path (keys %$fetch) {
6577 my $x = $fetch->{$path};
6578 Git
::SVN
->init($url, $path, $repo_id, $x->{ref_id
});
6579 my $pfx = "svn-remote.$x->{old_repo_id}";
6581 my $old_fetch = quotemeta("$x->{old_path}:".
6583 command_noisy
(qw
/config --unset/,
6584 "$pfx.fetch", '^'. $old_fetch . '$');
6585 delete $r->{$x->{old_repo_id
}}->
6586 {fetch
}->{$x->{old_path
}};
6587 if (!keys %{$r->{$x->{old_repo_id
}}->{fetch
}}) {
6588 command_noisy
(qw
/config --unset/,
6590 push @emptied, $x->{old_repo_id
}
6595 my $file = $ENV{GIT_CONFIG
} || "$ENV{GIT_DIR}/config";
6597 The following [svn-remote] sections in your config file ($file) are empty
6598 and can be safely removed:
6600 print STDERR
"[svn-remote \"$_\"]\n" foreach @emptied;
6604 sub migration_check
{
6608 minimize_connections
() if $_minimize;
6611 package Git
::IndexInfo
;
6614 use Git qw
/command_input_pipe command_close_pipe/;
6618 my ($gui, $ctx) = command_input_pipe
(qw
/update-index -z --index-info/);
6619 bless { gui
=> $gui, ctx
=> $ctx, nr
=> 0}, $class;
6623 my ($self, $path) = @_;
6624 if (print { $self->{gui
} } '0 ', 0 x
40, "\t", $path, "\0") {
6625 return ++$self->{nr
};
6631 my ($self, $mode, $hash, $path) = @_;
6632 if (print { $self->{gui
} } $mode, ' ', $hash, "\t", $path, "\0") {
6633 return ++$self->{nr
};
6640 command_close_pipe
($self->{gui
}, $self->{ctx
});
6643 package Git
::SVN
::GlobSpec
;
6648 my ($class, $glob, $pattern_ok) = @_;
6650 $re =~ s!/+$!!g; # no need for trailing slashes
6651 my (@left, @right, @patterns);
6653 my $die_msg = "Only one set of wildcard directories " .
6654 "(e.g. '*' or '*/*/*') is supported: '$glob'\n";
6655 for my $part (split(m
|/|, $glob)) {
6656 if ($part =~ /\*/ && $part ne "*") {
6657 die "Invalid pattern in '$glob': $part\n";
6658 } elsif ($pattern_ok && $part =~ /[{}]/ &&
6659 $part !~ /^\{[^{}]+\}/) {
6660 die "Invalid pattern in '$glob': $part\n";
6663 die $die_msg if $state eq "right";
6665 push(@patterns, "[^/]*");
6666 } elsif ($pattern_ok && $part =~ /^\{(.*)\}$/) {
6667 die $die_msg if $state eq "right";
6669 my $p = quotemeta($1);
6671 push(@patterns, "(?:$p)");
6673 if ($state eq "left") {
6676 push(@right, $part);
6681 my $depth = @patterns;
6683 die "One '*' is needed in glob: '$glob'\n";
6685 my $left = join('/', @left);
6686 my $right = join('/', @right);
6687 $re = join('/', @patterns);
6689 grep(length, quotemeta($left), "($re)", quotemeta($right)));
6690 my $left_re = qr/^\/\Q
$left\E
(\
/|$)/;
6691 bless { left
=> $left, right
=> $right, left_regex
=> $left_re,
6692 regex
=> qr/$re/, glob => $glob, depth
=> $depth }, $class;
6696 my ($self, $path) = @_;
6697 return (length $self->{left
} ?
"$self->{left}/" : '') .
6698 $path . (length $self->{right
} ?
"/$self->{right}" : '');
6706 $remotes = { # returned by read_all_remotes()
6708 # svn-remote.svn.url=https://svn.musicpd.org
6709 url
=> 'https://svn.musicpd.org',
6710 # svn-remote.svn.fetch=mpd/trunk:trunk
6712 'mpd/trunk' => 'trunk',
6714 # svn-remote.svn.tags=mpd/tags/*:tags/*
6719 regex
=> qr!mpd/tags/([^/]+)$!,
6725 regex
=> qr!tags/([^/]+)$!,
6732 $log_entry hashref as returned by libsvn_log_entry
()
6734 log => 'whitespace-formatted log entry
6735 ', # trailing newline is preserved
6736 revision
=> '8', # integer
6737 date
=> '2004-02-24T17:01:44.108345Z', # commit date
6738 author
=> 'committer name'
6742 # this is generated by generate_diff();
6743 @mods = array of diff
-index line hashes
, each element represents one line
6744 of diff
-index output
6746 diff
-index line
($m hash
)
6748 mode_a
=> first column of diff
-index output
, no leading
':',
6749 mode_b
=> second column of diff
-index output
,
6750 sha1_b
=> sha1sum of the final blob
,
6751 chg
=> change type
[MCRADT
],
6752 file_a
=> original file name of a file
(iff chg is
'C' or 'R')
6753 file_b
=> new
/current file name of a file
(any chg
)
6757 # retval of read_url_paths{,_all}();
6759 # repository root url
6760 'https://svn.musicpd.org' => {
6761 # repository path # GIT_SVN_ID
6762 'mpd/trunk' => 'trunk',
6763 'mpd/tags/0.11.5' => 'tags/0.11.5',
6768 I don
't trust the each() function on unless I created %hash myself
6769 because the internal iterator may not have started at base.