git-svn: control destruction order to avoid segfault
[git.git] / git-svn.perl
blobb0129802465265e82037ad58e921465f4b951ab1
1 #!/usr/bin/perl
2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
4 use 5.008;
5 use warnings;
6 use strict;
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 use Carp qw/croak/;
14 use File::Basename qw/dirname basename/;
15 use File::Path qw/mkpath/;
16 use File::Spec;
17 use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
18 use Memoize;
20 use Git::SVN;
21 use Git::SVN::Editor;
22 use Git::SVN::Fetcher;
23 use Git::SVN::Ra;
24 use Git::SVN::Prompt;
25 use Git::SVN::Log;
26 use Git::SVN::Migration;
28 use Git::SVN::Utils qw(
29 fatal
30 can_compress
31 canonicalize_path
32 canonicalize_url
33 join_paths
34 add_path_to_url
35 join_paths
38 use Git qw(
39 git_cmd_try
40 command
41 command_oneline
42 command_noisy
43 command_output_pipe
44 command_close_pipe
45 command_bidi_pipe
46 command_close_bidi_pipe
47 get_record
50 BEGIN {
51 Memoize::memoize 'Git::config';
52 Memoize::memoize 'Git::config_bool';
56 # From which subdir have we been invoked?
57 my $cmd_dir_prefix = eval {
58 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
59 } || '';
61 $Git::SVN::Ra::_log_window_size = 100;
63 if (! exists $ENV{SVN_SSH} && exists $ENV{GIT_SSH}) {
64 $ENV{SVN_SSH} = $ENV{GIT_SSH};
67 if (exists $ENV{SVN_SSH} && $^O eq 'msys') {
68 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
69 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
72 $Git::SVN::Log::TZ = $ENV{TZ};
73 $ENV{TZ} = 'UTC';
74 $| = 1; # unbuffer STDOUT
76 # All SVN commands do it. Otherwise we may die on SIGPIPE when the remote
77 # repository decides to close the connection which we expect to be kept alive.
78 $SIG{PIPE} = 'IGNORE';
80 # Given a dot separated version number, "subtract" it from
81 # the SVN::Core::VERSION; non-negaitive return means the SVN::Core
82 # is at least at the version the caller asked for.
83 sub compare_svn_version {
84 my (@ours) = split(/\./, $SVN::Core::VERSION);
85 my (@theirs) = split(/\./, $_[0]);
86 my ($i, $diff);
88 for ($i = 0; $i < @ours && $i < @theirs; $i++) {
89 $diff = $ours[$i] - $theirs[$i];
90 return $diff if ($diff);
92 return 1 if ($i < @ours);
93 return -1 if ($i < @theirs);
94 return 0;
97 sub _req_svn {
98 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
99 require SVN::Ra;
100 require SVN::Delta;
101 if (::compare_svn_version('1.1.0') < 0) {
102 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
106 $sha1 = qr/[a-f\d]{40}/;
107 $sha1_short = qr/[a-f\d]{4,40}/;
108 my ($_stdin, $_help, $_edit,
109 $_message, $_file, $_branch_dest,
110 $_template, $_shared,
111 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
112 $_before, $_after,
113 $_merge, $_strategy, $_preserve_merges, $_dry_run, $_parents, $_local,
114 $_prefix, $_no_checkout, $_url, $_verbose,
115 $_commit_url, $_tag, $_merge_info, $_interactive, $_set_svn_props);
117 # This is a refactoring artifact so Git::SVN can get at this git-svn switch.
118 sub opt_prefix { return $_prefix || '' }
120 $Git::SVN::Fetcher::_placeholder_filename = ".gitignore";
121 $_q ||= 0;
122 my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
123 'config-dir=s' => \$Git::SVN::Ra::config_dir,
124 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
125 'ignore-paths=s' => \$Git::SVN::Fetcher::_ignore_regex,
126 'include-paths=s' => \$Git::SVN::Fetcher::_include_regex,
127 'ignore-refs=s' => \$Git::SVN::Ra::_ignore_refs_regex );
128 my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
129 'authors-file|A=s' => \$_authors,
130 'authors-prog=s' => \$_authors_prog,
131 'repack:i' => \$Git::SVN::_repack,
132 'noMetadata' => \$Git::SVN::_no_metadata,
133 'useSvmProps' => \$Git::SVN::_use_svm_props,
134 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
135 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
136 'no-checkout' => \$_no_checkout,
137 'quiet|q+' => \$_q,
138 'repack-flags|repack-args|repack-opts=s' =>
139 \$Git::SVN::_repack_flags,
140 'use-log-author' => \$Git::SVN::_use_log_author,
141 'add-author-from' => \$Git::SVN::_add_author_from,
142 'localtime' => \$Git::SVN::_localtime,
143 %remote_opts );
145 my ($_trunk, @_tags, @_branches, $_stdlayout);
146 my %icv;
147 my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
148 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
149 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
150 'stdlayout|s' => \$_stdlayout,
151 'minimize-url|m!' => \$Git::SVN::_minimize_url,
152 'no-metadata' => sub { $icv{noMetadata} = 1 },
153 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
154 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
155 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
156 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
157 %remote_opts );
158 my %cmt_opts = ( 'edit|e' => \$_edit,
159 'rmdir' => \$Git::SVN::Editor::_rmdir,
160 'find-copies-harder' => \$Git::SVN::Editor::_find_copies_harder,
161 'l=i' => \$Git::SVN::Editor::_rename_limit,
162 'copy-similarity|C=i'=> \$Git::SVN::Editor::_cp_similarity
165 my %cmd = (
166 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
167 { 'revision|r=s' => \$_revision,
168 'fetch-all|all' => \$_fetch_all,
169 'parent|p' => \$_fetch_parent,
170 %fc_opts } ],
171 clone => [ \&cmd_clone, "Initialize and fetch revisions",
172 { 'revision|r=s' => \$_revision,
173 'preserve-empty-dirs' =>
174 \$Git::SVN::Fetcher::_preserve_empty_dirs,
175 'placeholder-filename=s' =>
176 \$Git::SVN::Fetcher::_placeholder_filename,
177 %fc_opts, %init_opts } ],
178 init => [ \&cmd_init, "Initialize a repo for tracking" .
179 " (requires URL argument)",
180 \%init_opts ],
181 'multi-init' => [ \&cmd_multi_init,
182 "Deprecated alias for ".
183 "'$0 init -T<trunk> -b<branches> -t<tags>'",
184 \%init_opts ],
185 dcommit => [ \&cmd_dcommit,
186 'Commit several diffs to merge with upstream',
187 { 'merge|m|M' => \$_merge,
188 'strategy|s=s' => \$_strategy,
189 'verbose|v' => \$_verbose,
190 'dry-run|n' => \$_dry_run,
191 'fetch-all|all' => \$_fetch_all,
192 'commit-url=s' => \$_commit_url,
193 'set-svn-props=s' => \$_set_svn_props,
194 'revision|r=i' => \$_revision,
195 'no-rebase' => \$_no_rebase,
196 'mergeinfo=s' => \$_merge_info,
197 'interactive|i' => \$_interactive,
198 %cmt_opts, %fc_opts } ],
199 branch => [ \&cmd_branch,
200 'Create a branch in the SVN repository',
201 { 'message|m=s' => \$_message,
202 'destination|d=s' => \$_branch_dest,
203 'dry-run|n' => \$_dry_run,
204 'parents' => \$_parents,
205 'tag|t' => \$_tag,
206 'username=s' => \$Git::SVN::Prompt::_username,
207 'commit-url=s' => \$_commit_url } ],
208 tag => [ sub { $_tag = 1; cmd_branch(@_) },
209 'Create a tag in the SVN repository',
210 { 'message|m=s' => \$_message,
211 'destination|d=s' => \$_branch_dest,
212 'dry-run|n' => \$_dry_run,
213 'parents' => \$_parents,
214 'username=s' => \$Git::SVN::Prompt::_username,
215 'commit-url=s' => \$_commit_url } ],
216 'set-tree' => [ \&cmd_set_tree,
217 "Set an SVN repository to a git tree-ish",
218 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
219 'create-ignore' => [ \&cmd_create_ignore,
220 'Create a .gitignore per svn:ignore',
221 { 'revision|r=i' => \$_revision
222 } ],
223 'mkdirs' => [ \&cmd_mkdirs ,
224 "recreate empty directories after a checkout",
225 { 'revision|r=i' => \$_revision } ],
226 'propget' => [ \&cmd_propget,
227 'Print the value of a property on a file or directory',
228 { 'revision|r=i' => \$_revision } ],
229 'propset' => [ \&cmd_propset,
230 'Set the value of a property on a file or directory - will be set on commit',
231 {} ],
232 'proplist' => [ \&cmd_proplist,
233 'List all properties of a file or directory',
234 { 'revision|r=i' => \$_revision } ],
235 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
236 { 'revision|r=i' => \$_revision
237 } ],
238 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
239 { 'revision|r=i' => \$_revision
240 } ],
241 'multi-fetch' => [ \&cmd_multi_fetch,
242 "Deprecated alias for $0 fetch --all",
243 { 'revision|r=s' => \$_revision, %fc_opts } ],
244 'migrate' => [ sub { },
245 # no-op, we automatically run this anyways,
246 'Migrate configuration/metadata/layout from
247 previous versions of git-svn',
248 { 'minimize' => \$Git::SVN::Migration::_minimize,
249 %remote_opts } ],
250 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
251 { 'limit=i' => \$Git::SVN::Log::limit,
252 'revision|r=s' => \$_revision,
253 'verbose|v' => \$Git::SVN::Log::verbose,
254 'incremental' => \$Git::SVN::Log::incremental,
255 'oneline' => \$Git::SVN::Log::oneline,
256 'show-commit' => \$Git::SVN::Log::show_commit,
257 'non-recursive' => \$Git::SVN::Log::non_recursive,
258 'authors-file|A=s' => \$_authors,
259 'color' => \$Git::SVN::Log::color,
260 'pager=s' => \$Git::SVN::Log::pager
261 } ],
262 'find-rev' => [ \&cmd_find_rev,
263 "Translate between SVN revision numbers and tree-ish",
264 { 'B|before' => \$_before,
265 'A|after' => \$_after } ],
266 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
267 { 'merge|m|M' => \$_merge,
268 'verbose|v' => \$_verbose,
269 'strategy|s=s' => \$_strategy,
270 'local|l' => \$_local,
271 'fetch-all|all' => \$_fetch_all,
272 'dry-run|n' => \$_dry_run,
273 'preserve-merges|p' => \$_preserve_merges,
274 %fc_opts } ],
275 'commit-diff' => [ \&cmd_commit_diff,
276 'Commit a diff between two trees',
277 { 'message|m=s' => \$_message,
278 'file|F=s' => \$_file,
279 'revision|r=s' => \$_revision,
280 %cmt_opts } ],
281 'info' => [ \&cmd_info,
282 "Show info about the latest SVN revision
283 on the current branch",
284 { 'url' => \$_url, } ],
285 'blame' => [ \&Git::SVN::Log::cmd_blame,
286 "Show what revision and author last modified each line of a file",
287 { 'git-format' => \$Git::SVN::Log::_git_format } ],
288 'reset' => [ \&cmd_reset,
289 "Undo fetches back to the specified SVN revision",
290 { 'revision|r=s' => \$_revision,
291 'parent|p' => \$_fetch_parent } ],
292 'gc' => [ \&cmd_gc,
293 "Compress unhandled.log files in .git/svn and remove " .
294 "index files in .git/svn",
295 {} ],
298 package FakeTerm;
299 sub new {
300 my ($class, $reason) = @_;
301 return bless \$reason, shift;
303 sub readline {
304 my $self = shift;
305 die "Cannot use readline on FakeTerm: $$self";
307 package main;
309 my $term;
310 sub term_init {
311 $term = eval {
312 require Term::ReadLine;
313 $ENV{"GIT_SVN_NOTTY"}
314 ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT
315 : new Term::ReadLine 'git-svn';
317 if ($@) {
318 $term = new FakeTerm "$@: going non-interactive";
322 my $cmd;
323 for (my $i = 0; $i < @ARGV; $i++) {
324 if (defined $cmd{$ARGV[$i]}) {
325 $cmd = $ARGV[$i];
326 splice @ARGV, $i, 1;
327 last;
328 } elsif ($ARGV[$i] eq 'help') {
329 $cmd = $ARGV[$i+1];
330 usage(0);
334 # make sure we're always running at the top-level working directory
335 if ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
336 $ENV{GIT_DIR} ||= ".git";
337 # catch the submodule case
338 if (-f $ENV{GIT_DIR}) {
339 open(my $fh, '<', $ENV{GIT_DIR}) or
340 die "failed to open $ENV{GIT_DIR}: $!\n";
341 $ENV{GIT_DIR} = $1 if <$fh> =~ /^gitdir: (.+)$/;
343 } elsif ($cmd) {
344 my ($git_dir, $cdup);
345 git_cmd_try {
346 $git_dir = command_oneline([qw/rev-parse --git-dir/]);
347 } "Unable to find .git directory\n";
348 git_cmd_try {
349 $cdup = command_oneline(qw/rev-parse --show-cdup/);
350 chomp $cdup if ($cdup);
351 $cdup = "." unless ($cdup && length $cdup);
352 } "Already at toplevel, but $git_dir not found\n";
353 $ENV{GIT_DIR} = $git_dir;
354 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
355 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
358 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
360 read_git_config(\%opts) if $ENV{GIT_DIR};
361 if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
362 Getopt::Long::Configure('pass_through');
364 my $rv = GetOptions(%opts, 'h|H' => \$_help, 'version|V' => \$_version,
365 'minimize-connections' => \$Git::SVN::Migration::_minimize,
366 'id|i=s' => \$Git::SVN::default_ref_id,
367 'svn-remote|remote|R=s' => sub {
368 $Git::SVN::no_reuse_existing = 1;
369 $Git::SVN::default_repo_id = $_[1] });
370 exit 1 if (!$rv && $cmd && $cmd ne 'log');
372 usage(0) if $_help;
373 version() if $_version;
374 usage(1) unless defined $cmd;
375 load_authors() if $_authors;
376 if (defined $_authors_prog) {
377 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
380 unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
381 Git::SVN::Migration::migration_check();
383 Git::SVN::init_vars();
384 eval {
385 Git::SVN::verify_remotes_sanity();
386 $cmd{$cmd}->[0]->(@ARGV);
387 post_fetch_checkout();
389 fatal $@ if $@;
390 exit 0;
392 ####################### primary functions ######################
393 sub usage {
394 my $exit = shift || 0;
395 my $fd = $exit ? \*STDERR : \*STDOUT;
396 print $fd <<"";
397 git-svn - bidirectional operations between a single Subversion tree and git
398 usage: git svn <command> [options] [arguments]\n
400 print $fd "Available commands:\n" unless $cmd;
402 foreach (sort keys %cmd) {
403 next if $cmd && $cmd ne $_;
404 next if /^multi-/; # don't show deprecated commands
405 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
406 foreach (sort keys %{$cmd{$_}->[2]}) {
407 # mixed-case options are for .git/config only
408 next if /[A-Z]/ && /^[a-z]+$/i;
409 # prints out arguments as they should be passed:
410 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
411 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
412 "--$_" : "-$_" }
413 split /\|/,$_)," $x\n";
416 print $fd <<"";
417 \nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
418 arbitrary identifier if you're tracking multiple SVN branches/repositories in
419 one git repository and want to keep them separate. See git-svn(1) for more
420 information.
422 exit $exit;
425 sub version {
426 ::_req_svn();
427 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
428 exit 0;
431 sub ask {
432 my ($prompt, %arg) = @_;
433 my $valid_re = $arg{valid_re};
434 my $default = $arg{default};
435 my $resp;
436 my $i = 0;
437 term_init() unless $term;
439 if ( !( defined($term->IN)
440 && defined( fileno($term->IN) )
441 && defined( $term->OUT )
442 && defined( fileno($term->OUT) ) ) ){
443 return defined($default) ? $default : undef;
446 while ($i++ < 10) {
447 $resp = $term->readline($prompt);
448 if (!defined $resp) { # EOF
449 print "\n";
450 return defined $default ? $default : undef;
452 if ($resp eq '' and defined $default) {
453 return $default;
455 if (!defined $valid_re or $resp =~ /$valid_re/) {
456 return $resp;
459 return undef;
462 sub do_git_init_db {
463 unless (-d $ENV{GIT_DIR}) {
464 my @init_db = ('init');
465 push @init_db, "--template=$_template" if defined $_template;
466 if (defined $_shared) {
467 if ($_shared =~ /[a-z]/) {
468 push @init_db, "--shared=$_shared";
469 } else {
470 push @init_db, "--shared";
473 command_noisy(@init_db);
474 $_repository = Git->repository(Repository => ".git");
476 my $set;
477 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
478 foreach my $i (keys %icv) {
479 die "'$set' and '$i' cannot both be set\n" if $set;
480 next unless defined $icv{$i};
481 command_noisy('config', "$pfx.$i", $icv{$i});
482 $set = $i;
484 my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex;
485 command_noisy('config', "$pfx.ignore-paths", $$ignore_paths_regex)
486 if defined $$ignore_paths_regex;
487 my $include_paths_regex = \$Git::SVN::Fetcher::_include_regex;
488 command_noisy('config', "$pfx.include-paths", $$include_paths_regex)
489 if defined $$include_paths_regex;
490 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
491 command_noisy('config', "$pfx.ignore-refs", $$ignore_refs_regex)
492 if defined $$ignore_refs_regex;
494 if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) {
495 my $fname = \$Git::SVN::Fetcher::_placeholder_filename;
496 command_noisy('config', "$pfx.preserve-empty-dirs", 'true');
497 command_noisy('config', "$pfx.placeholder-filename", $$fname);
501 sub init_subdir {
502 my $repo_path = shift or return;
503 mkpath([$repo_path]) unless -d $repo_path;
504 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
505 $ENV{GIT_DIR} = '.git';
506 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
509 sub cmd_clone {
510 my ($url, $path) = @_;
511 if (!$url) {
512 die "SVN repository location required ",
513 "as a command-line argument\n";
514 } elsif (!defined $path &&
515 (defined $_trunk || @_branches || @_tags ||
516 defined $_stdlayout) &&
517 $url !~ m#^[a-z\+]+://#) {
518 $path = $url;
520 $path = basename($url) if !defined $path || !length $path;
521 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
522 cmd_init($url, $path);
523 command_oneline('config', 'svn.authorsfile', $authors_absolute)
524 if $_authors;
525 Git::SVN::fetch_all($Git::SVN::default_repo_id);
528 sub cmd_init {
529 if (defined $_stdlayout) {
530 $_trunk = 'trunk' if (!defined $_trunk);
531 @_tags = 'tags' if (! @_tags);
532 @_branches = 'branches' if (! @_branches);
534 if (defined $_trunk || @_branches || @_tags) {
535 return cmd_multi_init(@_);
537 my $url = shift or die "SVN repository location required ",
538 "as a command-line argument\n";
539 $url = canonicalize_url($url);
540 init_subdir(@_);
541 do_git_init_db();
543 if ($Git::SVN::_minimize_url eq 'unset') {
544 $Git::SVN::_minimize_url = 0;
547 Git::SVN->init($url);
550 sub cmd_fetch {
551 if (grep /^\d+=./, @_) {
552 die "'<rev>=<commit>' fetch arguments are ",
553 "no longer supported.\n";
555 my ($remote) = @_;
556 if (@_ > 1) {
557 die "usage: $0 fetch [--all] [--parent] [svn-remote]\n";
559 $Git::SVN::no_reuse_existing = undef;
560 if ($_fetch_parent) {
561 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
562 unless ($gs) {
563 die "Unable to determine upstream SVN information from ",
564 "working tree history\n";
566 # just fetch, don't checkout.
567 $_no_checkout = 'true';
568 $_fetch_all ? $gs->fetch_all : $gs->fetch;
569 } elsif ($_fetch_all) {
570 cmd_multi_fetch();
571 } else {
572 $remote ||= $Git::SVN::default_repo_id;
573 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
577 sub cmd_set_tree {
578 my (@commits) = @_;
579 if ($_stdin || !@commits) {
580 print "Reading from stdin...\n";
581 @commits = ();
582 while (<STDIN>) {
583 if (/\b($sha1_short)\b/o) {
584 unshift @commits, $1;
588 my @revs;
589 foreach my $c (@commits) {
590 my @tmp = command('rev-parse',$c);
591 if (scalar @tmp == 1) {
592 push @revs, $tmp[0];
593 } elsif (scalar @tmp > 1) {
594 push @revs, reverse(command('rev-list',@tmp));
595 } else {
596 fatal "Failed to rev-parse $c";
599 my $gs = Git::SVN->new;
600 my ($r_last, $cmt_last) = $gs->last_rev_commit;
601 $gs->fetch;
602 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
603 fatal "There are new revisions that were fetched ",
604 "and need to be merged (or acknowledged) ",
605 "before committing.\nlast rev: $r_last\n",
606 " current: $gs->{last_rev}";
608 $gs->set_tree($_) foreach @revs;
609 print "Done committing ",scalar @revs," revisions to SVN\n";
610 unlink $gs->{index};
613 sub split_merge_info_range {
614 my ($range) = @_;
615 if ($range =~ /(\d+)-(\d+)/) {
616 return (int($1), int($2));
617 } else {
618 return (int($range), int($range));
622 sub combine_ranges {
623 my ($in) = @_;
625 my @fnums = ();
626 my @arr = split(/,/, $in);
627 for my $element (@arr) {
628 my ($start, $end) = split_merge_info_range($element);
629 push @fnums, $start;
632 my @sorted = @arr [ sort {
633 $fnums[$a] <=> $fnums[$b]
634 } 0..$#arr ];
636 my @return = ();
637 my $last = -1;
638 my $first = -1;
639 for my $element (@sorted) {
640 my ($start, $end) = split_merge_info_range($element);
642 if ($last == -1) {
643 $first = $start;
644 $last = $end;
645 next;
647 if ($start <= $last+1) {
648 if ($end > $last) {
649 $last = $end;
651 next;
653 if ($first == $last) {
654 push @return, "$first";
655 } else {
656 push @return, "$first-$last";
658 $first = $start;
659 $last = $end;
662 if ($first != -1) {
663 if ($first == $last) {
664 push @return, "$first";
665 } else {
666 push @return, "$first-$last";
670 return join(',', @return);
673 sub merge_revs_into_hash {
674 my ($hash, $minfo) = @_;
675 my @lines = split(' ', $minfo);
677 for my $line (@lines) {
678 my ($branchpath, $revs) = split(/:/, $line);
680 if (exists($hash->{$branchpath})) {
681 # Merge the two revision sets
682 my $combined = "$hash->{$branchpath},$revs";
683 $hash->{$branchpath} = combine_ranges($combined);
684 } else {
685 # Just do range combining for consolidation
686 $hash->{$branchpath} = combine_ranges($revs);
691 sub merge_merge_info {
692 my ($mergeinfo_one, $mergeinfo_two, $ignore_branch) = @_;
693 my %result_hash = ();
695 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
696 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
698 delete $result_hash{$ignore_branch} if $ignore_branch;
700 my $result = '';
701 # Sort below is for consistency's sake
702 for my $branchname (sort keys(%result_hash)) {
703 my $revlist = $result_hash{$branchname};
704 $result .= "$branchname:$revlist\n"
706 return $result;
709 sub populate_merge_info {
710 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
712 my %parentshash;
713 read_commit_parents(\%parentshash, $d);
714 my @parents = @{$parentshash{$d}};
715 if ($#parents > 0) {
716 # Merge commit
717 my $all_parents_ok = 1;
718 my $aggregate_mergeinfo = '';
719 my $rooturl = $gs->repos_root;
720 my ($target_branch) = $gs->full_pushurl =~ /^\Q$rooturl\E(.*)/;
722 if (defined($rewritten_parent)) {
723 # Replace first parent with newly-rewritten version
724 shift @parents;
725 unshift @parents, $rewritten_parent;
728 foreach my $parent (@parents) {
729 my ($branchurl, $svnrev, $paruuid) =
730 cmt_metadata($parent);
732 unless (defined($svnrev)) {
733 # Should have been caught be preflight check
734 fatal "merge commit $d has ancestor $parent, but that change "
735 ."does not have git-svn metadata!";
737 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
738 fatal "commit $parent git-svn metadata changed mid-run!";
740 my $branchpath = $1;
742 my $ra = Git::SVN::Ra->new($branchurl);
743 my (undef, undef, $props) =
744 $ra->get_dir(canonicalize_path("."), $svnrev);
745 my $par_mergeinfo = $props->{'svn:mergeinfo'};
746 unless (defined $par_mergeinfo) {
747 $par_mergeinfo = '';
749 # Merge previous mergeinfo values
750 $aggregate_mergeinfo =
751 merge_merge_info($aggregate_mergeinfo,
752 $par_mergeinfo,
753 $target_branch);
755 next if $parent eq $parents[0]; # Skip first parent
756 # Add new changes being placed in tree by merge
757 my @cmd = (qw/rev-list --reverse/,
758 $parent, qw/--not/);
759 foreach my $par (@parents) {
760 unless ($par eq $parent) {
761 push @cmd, $par;
764 my @revsin = ();
765 my ($revlist, $ctx) = command_output_pipe(@cmd);
766 while (<$revlist>) {
767 my $irev = $_;
768 chomp $irev;
769 my (undef, $csvnrev, undef) =
770 cmt_metadata($irev);
771 unless (defined $csvnrev) {
772 # A child is missing SVN annotations...
773 # this might be OK, or might not be.
774 warn "W:child $irev is merged into revision "
775 ."$d but does not have git-svn metadata. "
776 ."This means git-svn cannot determine the "
777 ."svn revision numbers to place into the "
778 ."svn:mergeinfo property. You must ensure "
779 ."a branch is entirely committed to "
780 ."SVN before merging it in order for "
781 ."svn:mergeinfo population to function "
782 ."properly";
784 push @revsin, $csvnrev;
786 command_close_pipe($revlist, $ctx);
788 last unless $all_parents_ok;
790 # We now have a list of all SVN revnos which are
791 # merged by this particular parent. Integrate them.
792 next if $#revsin == -1;
793 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
794 $aggregate_mergeinfo =
795 merge_merge_info($aggregate_mergeinfo,
796 $newmergeinfo,
797 $target_branch);
799 if ($all_parents_ok and $aggregate_mergeinfo) {
800 return $aggregate_mergeinfo;
804 return undef;
807 sub dcommit_rebase {
808 my ($is_last, $current, $fetched_ref, $svn_error) = @_;
809 my @diff;
811 if ($svn_error) {
812 print STDERR "\nERROR from SVN:\n",
813 $svn_error->expanded_message, "\n";
815 unless ($_no_rebase) {
816 # we always want to rebase against the current HEAD,
817 # not any head that was passed to us
818 @diff = command('diff-tree', $current,
819 $fetched_ref, '--');
820 my @finish;
821 if (@diff) {
822 @finish = rebase_cmd();
823 print STDERR "W: $current and ", $fetched_ref,
824 " differ, using @finish:\n",
825 join("\n", @diff), "\n";
826 } elsif ($is_last) {
827 print "No changes between ", $current, " and ",
828 $fetched_ref,
829 "\nResetting to the latest ",
830 $fetched_ref, "\n";
831 @finish = qw/reset --mixed/;
833 command_noisy(@finish, $fetched_ref) if @finish;
835 if ($svn_error) {
836 die "ERROR: Not all changes have been committed into SVN"
837 .($_no_rebase ? ".\n" : ", however the committed\n"
838 ."ones (if any) seem to be successfully integrated "
839 ."into the working tree.\n")
840 ."Please see the above messages for details.\n";
842 return @diff;
845 sub cmd_dcommit {
846 my $head = shift;
847 command_noisy(qw/update-index --refresh/);
848 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD --/) }
849 'Cannot dcommit with a dirty index. Commit your changes first, '
850 . "or stash them with `git stash'.\n";
851 $head ||= 'HEAD';
853 my $old_head;
854 if ($head ne 'HEAD') {
855 $old_head = eval {
856 command_oneline([qw/symbolic-ref -q HEAD/])
858 if ($old_head) {
859 $old_head =~ s{^refs/heads/}{};
860 } else {
861 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
863 command(['checkout', $head], STDERR => 0);
866 my @refs;
867 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
868 unless ($gs) {
869 die "Unable to determine upstream SVN information from ",
870 "$head history.\nPerhaps the repository is empty.";
873 if (defined $_commit_url) {
874 $url = $_commit_url;
875 } else {
876 $url = eval { command_oneline('config', '--get',
877 "svn-remote.$gs->{repo_id}.commiturl") };
878 if (!$url) {
879 $url = $gs->full_pushurl
883 my $last_rev = $_revision if defined $_revision;
884 if ($url) {
885 print "Committing to $url ...\n";
887 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
888 if ($_no_rebase && scalar(@$linear_refs) > 1) {
889 warn "Attempting to commit more than one change while ",
890 "--no-rebase is enabled.\n",
891 "If these changes depend on each other, re-running ",
892 "without --no-rebase may be required."
895 if (defined $_interactive){
896 my $ask_default = "y";
897 foreach my $d (@$linear_refs){
898 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
899 while (<$fh>){
900 print $_;
902 command_close_pipe($fh, $ctx);
903 $_ = ask("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
904 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
905 default => $ask_default);
906 die "Commit this patch reply required" unless defined $_;
907 if (/^[nq]/i) {
908 exit(0);
909 } elsif (/^a/i) {
910 last;
915 my $expect_url = $url;
917 my $push_merge_info = eval {
918 command_oneline(qw/config --get svn.pushmergeinfo/)
920 if (not defined($push_merge_info)
921 or $push_merge_info eq "false"
922 or $push_merge_info eq "no"
923 or $push_merge_info eq "never") {
924 $push_merge_info = 0;
927 unless (defined($_merge_info) || ! $push_merge_info) {
928 # Preflight check of changes to ensure no issues with mergeinfo
929 # This includes check for uncommitted-to-SVN parents
930 # (other than the first parent, which we will handle),
931 # information from different SVN repos, and paths
932 # which are not underneath this repository root.
933 my $rooturl = $gs->repos_root;
934 foreach my $d (@$linear_refs) {
935 my %parentshash;
936 read_commit_parents(\%parentshash, $d);
937 my @realparents = @{$parentshash{$d}};
938 if ($#realparents > 0) {
939 # Merge commit
940 shift @realparents; # Remove/ignore first parent
941 foreach my $parent (@realparents) {
942 my ($branchurl, $svnrev, $paruuid) = cmt_metadata($parent);
943 unless (defined $paruuid) {
944 # A parent is missing SVN annotations...
945 # abort the whole operation.
946 fatal "$parent is merged into revision $d, "
947 ."but does not have git-svn metadata. "
948 ."Either dcommit the branch or use a "
949 ."local cherry-pick, FF merge, or rebase "
950 ."instead of an explicit merge commit.";
953 unless ($paruuid eq $uuid) {
954 # Parent has SVN metadata from different repository
955 fatal "merge parent $parent for change $d has "
956 ."git-svn uuid $paruuid, while current change "
957 ."has uuid $uuid!";
960 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
961 # This branch is very strange indeed.
962 fatal "merge parent $parent for $d is on branch "
963 ."$branchurl, which is not under the "
964 ."git-svn root $rooturl!";
971 my $rewritten_parent;
972 my $current_head = command_oneline(qw/rev-parse HEAD/);
973 Git::SVN::remove_username($expect_url);
974 if (defined($_merge_info)) {
975 $_merge_info =~ tr{ }{\n};
977 while (1) {
978 my $d = shift @$linear_refs or last;
979 unless (defined $last_rev) {
980 (undef, $last_rev, undef) = cmt_metadata("$d~1");
981 unless (defined $last_rev) {
982 fatal "Unable to extract revision information ",
983 "from commit $d~1";
986 if ($_dry_run) {
987 print "diff-tree $d~1 $d\n";
988 } else {
989 my $cmt_rev;
991 unless (defined($_merge_info) || ! $push_merge_info) {
992 $_merge_info = populate_merge_info($d, $gs,
993 $uuid,
994 $linear_refs,
995 $rewritten_parent);
998 my %ed_opts = ( r => $last_rev,
999 log => get_commit_entry($d)->{log},
1000 ra => Git::SVN::Ra->new($url),
1001 config => SVN::Core::config_get_config(
1002 $Git::SVN::Ra::config_dir
1004 tree_a => "$d~1",
1005 tree_b => $d,
1006 editor_cb => sub {
1007 print "Committed r$_[0]\n";
1008 $cmt_rev = $_[0];
1010 mergeinfo => $_merge_info,
1011 svn_path => '');
1013 my $err_handler = $SVN::Error::handler;
1014 $SVN::Error::handler = sub {
1015 my $err = shift;
1016 dcommit_rebase(1, $current_head, $gs->refname,
1017 $err);
1020 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
1021 print "No changes\n$d~1 == $d\n";
1022 } elsif ($parents->{$d} && @{$parents->{$d}}) {
1023 $gs->{inject_parents_dcommit}->{$cmt_rev} =
1024 $parents->{$d};
1026 $_fetch_all ? $gs->fetch_all : $gs->fetch;
1027 $SVN::Error::handler = $err_handler;
1028 $last_rev = $cmt_rev;
1029 next if $_no_rebase;
1031 my @diff = dcommit_rebase(@$linear_refs == 0, $d,
1032 $gs->refname, undef);
1034 $rewritten_parent = command_oneline(qw/rev-parse/,
1035 $gs->refname);
1037 if (@diff) {
1038 $current_head = command_oneline(qw/rev-parse
1039 HEAD/);
1040 @refs = ();
1041 my ($url_, $rev_, $uuid_, $gs_) =
1042 working_head_info('HEAD', \@refs);
1043 my ($linear_refs_, $parents_) =
1044 linearize_history($gs_, \@refs);
1045 if (scalar(@$linear_refs) !=
1046 scalar(@$linear_refs_)) {
1047 fatal "# of revisions changed ",
1048 "\nbefore:\n",
1049 join("\n", @$linear_refs),
1050 "\n\nafter:\n",
1051 join("\n", @$linear_refs_), "\n",
1052 'If you are attempting to commit ',
1053 "merges, try running:\n\t",
1054 'git rebase --interactive',
1055 '--preserve-merges ',
1056 $gs->refname,
1057 "\nBefore dcommitting";
1059 if ($url_ ne $expect_url) {
1060 if ($url_ eq $gs->metadata_url) {
1061 print
1062 "Accepting rewritten URL:",
1063 " $url_\n";
1064 } else {
1065 fatal
1066 "URL mismatch after rebase:",
1067 " $url_ != $expect_url";
1070 if ($uuid_ ne $uuid) {
1071 fatal "uuid mismatch after rebase: ",
1072 "$uuid_ != $uuid";
1074 # remap parents
1075 my (%p, @l, $i);
1076 for ($i = 0; $i < scalar @$linear_refs; $i++) {
1077 my $new = $linear_refs_->[$i] or next;
1078 $p{$new} =
1079 $parents->{$linear_refs->[$i]};
1080 push @l, $new;
1082 $parents = \%p;
1083 $linear_refs = \@l;
1084 undef $last_rev;
1089 if ($old_head) {
1090 my $new_head = command_oneline(qw/rev-parse HEAD/);
1091 my $new_is_symbolic = eval {
1092 command_oneline(qw/symbolic-ref -q HEAD/);
1094 if ($new_is_symbolic) {
1095 print "dcommitted the branch ", $head, "\n";
1096 } else {
1097 print "dcommitted on a detached HEAD because you gave ",
1098 "a revision argument.\n",
1099 "The rewritten commit is: ", $new_head, "\n";
1101 command(['checkout', $old_head], STDERR => 0);
1104 unlink $gs->{index};
1107 sub cmd_branch {
1108 my ($branch_name, $head) = @_;
1110 unless (defined $branch_name && length $branch_name) {
1111 die(($_tag ? "tag" : "branch") . " name required\n");
1113 $head ||= 'HEAD';
1115 my (undef, $rev, undef, $gs) = working_head_info($head);
1116 my $src = $gs->full_pushurl;
1118 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1119 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
1120 my $glob;
1121 if ($#{$allglobs} == 0) {
1122 $glob = $allglobs->[0];
1123 } else {
1124 unless(defined $_branch_dest) {
1125 die "Multiple ",
1126 $_tag ? "tag" : "branch",
1127 " paths defined for Subversion repository.\n",
1128 "You must specify where you want to create the ",
1129 $_tag ? "tag" : "branch",
1130 " with the --destination argument.\n";
1132 foreach my $g (@{$allglobs}) {
1133 my $re = Git::SVN::Editor::glob2pat($g->{path}->{left});
1134 if ($_branch_dest =~ /$re/) {
1135 $glob = $g;
1136 last;
1139 unless (defined $glob) {
1140 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1141 foreach my $g (@{$allglobs}) {
1142 $g->{path}->{left} =~ /$dest_re/ or next;
1143 if (defined $glob) {
1144 die "Ambiguous destination: ",
1145 $_branch_dest, "\nmatches both '",
1146 $glob->{path}->{left}, "' and '",
1147 $g->{path}->{left}, "'\n";
1149 $glob = $g;
1151 unless (defined $glob) {
1152 die "Unknown ",
1153 $_tag ? "tag" : "branch",
1154 " destination $_branch_dest\n";
1158 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
1159 my $url;
1160 if (defined $_commit_url) {
1161 $url = $_commit_url;
1162 } else {
1163 $url = eval { command_oneline('config', '--get',
1164 "svn-remote.$gs->{repo_id}.commiturl") };
1165 if (!$url) {
1166 $url = $remote->{pushurl} || $remote->{url};
1169 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
1171 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1172 $src=~s/^http:/https:/;
1175 ::_req_svn();
1176 require SVN::Client;
1178 my ($config, $baton, undef) = Git::SVN::Ra::prepare_config_once();
1179 my $ctx = SVN::Client->new(
1180 auth => $baton,
1181 config => $config,
1182 log_msg => sub {
1183 ${ $_[0] } = defined $_message
1184 ? $_message
1185 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
1186 . $branch_name;
1190 eval {
1191 $ctx->ls($dst, 'HEAD', 0);
1192 } and die "branch ${branch_name} already exists\n";
1194 if ($_parents) {
1195 mk_parent_dirs($ctx, $dst);
1198 print "Copying ${src} at r${rev} to ${dst}...\n";
1199 $ctx->copy($src, $rev, $dst)
1200 unless $_dry_run;
1202 # Release resources held by ctx before creating another SVN::Ra
1203 # so destruction is orderly. This seems necessary with SVN 1.9.5
1204 # to avoid segfaults.
1205 $ctx = undef;
1207 $gs->fetch_all;
1210 sub mk_parent_dirs {
1211 my ($ctx, $parent) = @_;
1212 $parent =~ s{/[^/]*$}{};
1214 if (!eval{$ctx->ls($parent, 'HEAD', 0)}) {
1215 mk_parent_dirs($ctx, $parent);
1216 print "Creating parent folder ${parent} ...\n";
1217 $ctx->mkdir($parent) unless $_dry_run;
1221 sub cmd_find_rev {
1222 my $revision_or_hash = shift or die "SVN or git revision required ",
1223 "as a command-line argument\n";
1224 my $result;
1225 if ($revision_or_hash =~ /^r\d+$/) {
1226 my $head = shift;
1227 $head ||= 'HEAD';
1228 my @refs;
1229 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
1230 unless ($gs) {
1231 die "Unable to determine upstream SVN information from ",
1232 "$head history\n";
1234 my $desired_revision = substr($revision_or_hash, 1);
1235 if ($_before) {
1236 $result = $gs->find_rev_before($desired_revision, 1);
1237 } elsif ($_after) {
1238 $result = $gs->find_rev_after($desired_revision, 1);
1239 } else {
1240 $result = $gs->rev_map_get($desired_revision, $uuid);
1242 } else {
1243 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
1244 $result = $rev;
1246 print "$result\n" if $result;
1249 sub auto_create_empty_directories {
1250 my ($gs) = @_;
1251 my $var = eval { command_oneline('config', '--get', '--bool',
1252 "svn-remote.$gs->{repo_id}.automkdirs") };
1253 # By default, create empty directories by consulting the unhandled log,
1254 # but allow setting it to 'false' to skip it.
1255 return !($var && $var eq 'false');
1258 sub cmd_rebase {
1259 command_noisy(qw/update-index --refresh/);
1260 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1261 unless ($gs) {
1262 die "Unable to determine upstream SVN information from ",
1263 "working tree history\n";
1265 if ($_dry_run) {
1266 print "Remote Branch: " . $gs->refname . "\n";
1267 print "SVN URL: " . $url . "\n";
1268 return;
1270 if (command(qw/diff-index HEAD --/)) {
1271 print STDERR "Cannot rebase with uncommitted changes:\n";
1272 command_noisy('status');
1273 exit 1;
1275 unless ($_local) {
1276 # rebase will checkout for us, so no need to do it explicitly
1277 $_no_checkout = 'true';
1278 $_fetch_all ? $gs->fetch_all : $gs->fetch;
1280 command_noisy(rebase_cmd(), $gs->refname);
1281 if (auto_create_empty_directories($gs)) {
1282 $gs->mkemptydirs;
1286 sub cmd_show_ignore {
1287 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1288 $gs ||= Git::SVN->new;
1289 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1290 $gs->prop_walk($gs->path, $r, sub {
1291 my ($gs, $path, $props) = @_;
1292 print STDOUT "\n# $path\n";
1293 my $s = $props->{'svn:ignore'} or return;
1294 $s =~ s/[\r\n]+/\n/g;
1295 $s =~ s/^\n+//;
1296 chomp $s;
1297 $s =~ s#^#$path#gm;
1298 print STDOUT "$s\n";
1302 sub cmd_show_externals {
1303 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1304 $gs ||= Git::SVN->new;
1305 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1306 $gs->prop_walk($gs->path, $r, sub {
1307 my ($gs, $path, $props) = @_;
1308 print STDOUT "\n# $path\n";
1309 my $s = $props->{'svn:externals'} or return;
1310 $s =~ s/[\r\n]+/\n/g;
1311 chomp $s;
1312 $s =~ s#^#$path#gm;
1313 print STDOUT "$s\n";
1317 sub cmd_create_ignore {
1318 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1319 $gs ||= Git::SVN->new;
1320 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1321 $gs->prop_walk($gs->path, $r, sub {
1322 my ($gs, $path, $props) = @_;
1323 # $path is of the form /path/to/dir/
1324 $path = '.' . $path;
1325 # SVN can have attributes on empty directories,
1326 # which git won't track
1327 mkpath([$path]) unless -d $path;
1328 my $ignore = $path . '.gitignore';
1329 my $s = $props->{'svn:ignore'} or return;
1330 open(GITIGNORE, '>', $ignore)
1331 or fatal("Failed to open `$ignore' for writing: $!");
1332 $s =~ s/[\r\n]+/\n/g;
1333 $s =~ s/^\n+//;
1334 chomp $s;
1335 # Prefix all patterns so that the ignore doesn't apply
1336 # to sub-directories.
1337 $s =~ s#^#/#gm;
1338 print GITIGNORE "$s\n";
1339 close(GITIGNORE)
1340 or fatal("Failed to close `$ignore': $!");
1341 command_noisy('add', '-f', $ignore);
1345 sub cmd_mkdirs {
1346 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1347 $gs ||= Git::SVN->new;
1348 $gs->mkemptydirs($_revision);
1351 # get_svnprops(PATH)
1352 # ------------------
1353 # Helper for cmd_propget and cmd_proplist below.
1354 sub get_svnprops {
1355 my $path = shift;
1356 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1357 $gs ||= Git::SVN->new;
1359 # prefix THE PATH by the sub-directory from which the user
1360 # invoked us.
1361 $path = $cmd_dir_prefix . $path;
1362 fatal("No such file or directory: $path") unless -e $path;
1363 my $is_dir = -d $path ? 1 : 0;
1364 $path = join_paths($gs->path, $path);
1366 # canonicalize the path (otherwise libsvn will abort or fail to
1367 # find the file)
1368 $path = canonicalize_path($path);
1370 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1371 my $props;
1372 if ($is_dir) {
1373 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1375 else {
1376 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1378 return $props;
1381 # cmd_propget (PROP, PATH)
1382 # ------------------------
1383 # Print the SVN property PROP for PATH.
1384 sub cmd_propget {
1385 my ($prop, $path) = @_;
1386 $path = '.' if not defined $path;
1387 usage(1) if not defined $prop;
1388 my $props = get_svnprops($path);
1389 if (not defined $props->{$prop}) {
1390 fatal("`$path' does not have a `$prop' SVN property.");
1392 print $props->{$prop} . "\n";
1395 # cmd_propset (PROPNAME, PROPVAL, PATH)
1396 # ------------------------
1397 # Adjust the SVN property PROPNAME to PROPVAL for PATH.
1398 sub cmd_propset {
1399 my ($propname, $propval, $path) = @_;
1400 $path = '.' if not defined $path;
1401 $path = $cmd_dir_prefix . $path;
1402 usage(1) if not defined $propname;
1403 usage(1) if not defined $propval;
1404 my $file = basename($path);
1405 my $dn = dirname($path);
1406 my $cur_props = Git::SVN::Editor::check_attr( "svn-properties", $path );
1407 my @new_props;
1408 if (!$cur_props || $cur_props eq "unset" || $cur_props eq "" || $cur_props eq "set") {
1409 push @new_props, "$propname=$propval";
1410 } else {
1411 # TODO: handle combining properties better
1412 my @props = split(/;/, $cur_props);
1413 my $replaced_prop;
1414 foreach my $prop (@props) {
1415 # Parse 'name=value' syntax and set the property.
1416 if ($prop =~ /([^=]+)=(.*)/) {
1417 my ($n,$v) = ($1,$2);
1418 if ($n eq $propname) {
1419 $v = $propval;
1420 $replaced_prop = 1;
1422 push @new_props, "$n=$v";
1425 if (!$replaced_prop) {
1426 push @new_props, "$propname=$propval";
1429 my $attrfile = "$dn/.gitattributes";
1430 open my $attrfh, '>>', $attrfile or die "Can't open $attrfile: $!\n";
1431 # TODO: don't simply append here if $file already has svn-properties
1432 my $new_props = join(';', @new_props);
1433 print $attrfh "$file svn-properties=$new_props\n" or
1434 die "write to $attrfile: $!\n";
1435 close $attrfh or die "close $attrfile: $!\n";
1438 # cmd_proplist (PATH)
1439 # -------------------
1440 # Print the list of SVN properties for PATH.
1441 sub cmd_proplist {
1442 my $path = shift;
1443 $path = '.' if not defined $path;
1444 my $props = get_svnprops($path);
1445 print "Properties on '$path':\n";
1446 foreach (sort keys %{$props}) {
1447 print " $_\n";
1451 sub cmd_multi_init {
1452 my $url = shift;
1453 unless (defined $_trunk || @_branches || @_tags) {
1454 usage(1);
1457 $_prefix = 'origin/' unless defined $_prefix;
1458 if (defined $url) {
1459 $url = canonicalize_url($url);
1460 init_subdir(@_);
1462 do_git_init_db();
1463 if (defined $_trunk) {
1464 $_trunk =~ s#^/+##;
1465 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
1466 # try both old-style and new-style lookups:
1467 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
1468 unless ($gs_trunk) {
1469 my ($trunk_url, $trunk_path) =
1470 complete_svn_url($url, $_trunk);
1471 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
1472 undef, $trunk_ref);
1475 return unless @_branches || @_tags;
1476 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
1477 foreach my $path (@_branches) {
1478 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
1480 foreach my $path (@_tags) {
1481 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
1485 sub cmd_multi_fetch {
1486 $Git::SVN::no_reuse_existing = undef;
1487 my $remotes = Git::SVN::read_all_remotes();
1488 foreach my $repo_id (sort keys %$remotes) {
1489 if ($remotes->{$repo_id}->{url}) {
1490 Git::SVN::fetch_all($repo_id, $remotes);
1495 # this command is special because it requires no metadata
1496 sub cmd_commit_diff {
1497 my ($ta, $tb, $url) = @_;
1498 my $usage = "usage: $0 commit-diff -r<revision> ".
1499 "<tree-ish> <tree-ish> [<URL>]";
1500 fatal($usage) if (!defined $ta || !defined $tb);
1501 my $svn_path = '';
1502 if (!defined $url) {
1503 my $gs = eval { Git::SVN->new };
1504 if (!$gs) {
1505 fatal("Needed URL or usable git-svn --id in ",
1506 "the command-line\n", $usage);
1508 $url = $gs->url;
1509 $svn_path = $gs->path;
1511 unless (defined $_revision) {
1512 fatal("-r|--revision is a required argument\n", $usage);
1514 if (defined $_message && defined $_file) {
1515 fatal("Both --message/-m and --file/-F specified ",
1516 "for the commit message.\n",
1517 "I have no idea what you mean");
1519 if (defined $_file) {
1520 $_message = file_to_s($_file);
1521 } else {
1522 $_message ||= get_commit_entry($tb)->{log};
1524 my $ra ||= Git::SVN::Ra->new($url);
1525 my $r = $_revision;
1526 if ($r eq 'HEAD') {
1527 $r = $ra->get_latest_revnum;
1528 } elsif ($r !~ /^\d+$/) {
1529 die "revision argument: $r not understood by git-svn\n";
1531 my %ed_opts = ( r => $r,
1532 log => $_message,
1533 ra => $ra,
1534 tree_a => $ta,
1535 tree_b => $tb,
1536 editor_cb => sub { print "Committed r$_[0]\n" },
1537 svn_path => $svn_path );
1538 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
1539 print "No changes\n$ta == $tb\n";
1543 sub cmd_info {
1544 my $path_arg = defined($_[0]) ? $_[0] : '.';
1545 my $path = $path_arg;
1546 if (File::Spec->file_name_is_absolute($path)) {
1547 $path = canonicalize_path($path);
1549 my $toplevel = eval {
1550 my @cmd = qw/rev-parse --show-toplevel/;
1551 command_oneline(\@cmd, STDERR => 0);
1554 # remove $toplevel from the absolute path:
1555 my ($vol, $dirs, $file) = File::Spec->splitpath($path);
1556 my (undef, $tdirs, $tfile) = File::Spec->splitpath($toplevel);
1557 my @dirs = File::Spec->splitdir($dirs);
1558 my @tdirs = File::Spec->splitdir($tdirs);
1559 pop @dirs if $dirs[-1] eq '';
1560 pop @tdirs if $tdirs[-1] eq '';
1561 push @dirs, $file;
1562 push @tdirs, $tfile;
1563 while (@tdirs && @dirs && $tdirs[0] eq $dirs[0]) {
1564 shift @dirs;
1565 shift @tdirs;
1567 $dirs = File::Spec->catdir(@dirs);
1568 $path = File::Spec->catpath($vol, $dirs);
1570 $path = canonicalize_path($path);
1571 } else {
1572 $path = canonicalize_path($cmd_dir_prefix . $path);
1574 if (exists $_[1]) {
1575 die "Too many arguments specified\n";
1578 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1580 if (!$file_type && !$diff_status) {
1581 print STDERR "svn: '$path' is not under version control\n";
1582 exit 1;
1585 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1586 unless ($gs) {
1587 die "Unable to determine upstream SVN information from ",
1588 "working tree history\n";
1591 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1592 $path = "." if $path eq "";
1594 my $full_url = canonicalize_url( add_path_to_url( $url, $path ) );
1596 if ($_url) {
1597 print "$full_url\n";
1598 return;
1601 my $result = "Path: $path_arg\n";
1602 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
1603 $result .= "URL: $full_url\n";
1605 eval {
1606 my $repos_root = $gs->repos_root;
1607 Git::SVN::remove_username($repos_root);
1608 $result .= "Repository Root: " . canonicalize_url($repos_root) . "\n";
1610 if ($@) {
1611 $result .= "Repository Root: (offline)\n";
1613 ::_req_svn();
1614 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
1615 (::compare_svn_version('1.5.4') <= 0 || $file_type ne "dir");
1616 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1618 $result .= "Node Kind: " .
1619 ($file_type eq "dir" ? "directory" : "file") . "\n";
1621 my $schedule = $diff_status eq "A"
1622 ? "add"
1623 : ($diff_status eq "D" ? "delete" : "normal");
1624 $result .= "Schedule: $schedule\n";
1626 if ($diff_status eq "A") {
1627 print $result, "\n";
1628 return;
1631 my ($lc_author, $lc_rev, $lc_date_utc);
1632 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $path);
1633 my $log = command_output_pipe(@args);
1634 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1635 while (<$log>) {
1636 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1637 $lc_author = $1;
1638 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1639 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1640 (undef, $lc_rev, undef) = ::extract_metadata($1);
1643 close $log;
1645 Git::SVN::Log::set_local_timezone();
1647 $result .= "Last Changed Author: $lc_author\n";
1648 $result .= "Last Changed Rev: $lc_rev\n";
1649 $result .= "Last Changed Date: " .
1650 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1652 if ($file_type ne "dir") {
1653 my $text_last_updated_date =
1654 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1655 $result .=
1656 "Text Last Updated: " .
1657 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1658 "\n";
1659 my $checksum;
1660 if ($diff_status eq "D") {
1661 my ($fh, $ctx) =
1662 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1663 if ($file_type eq "link") {
1664 my $file_name = <$fh>;
1665 $checksum = md5sum("link $file_name");
1666 } else {
1667 $checksum = md5sum($fh);
1669 command_close_pipe($fh, $ctx);
1670 } elsif ($file_type eq "link") {
1671 my $file_name =
1672 command(qw(cat-file blob), "HEAD:$path");
1673 $checksum =
1674 md5sum("link " . $file_name);
1675 } else {
1676 open FILE, "<", $path or die $!;
1677 $checksum = md5sum(\*FILE);
1678 close FILE or die $!;
1680 $result .= "Checksum: " . $checksum . "\n";
1683 print $result, "\n";
1686 sub cmd_reset {
1687 my $target = shift || $_revision or die "SVN revision required\n";
1688 $target = $1 if $target =~ /^r(\d+)$/;
1689 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1690 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1691 unless ($gs) {
1692 die "Unable to determine upstream SVN information from ".
1693 "history\n";
1695 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
1696 die "Cannot find SVN revision $target\n" unless defined($c);
1697 $gs->rev_map_set($r, $c, 'reset', $uuid);
1698 print "r$r = $c ($gs->{ref_id})\n";
1701 sub cmd_gc {
1702 require File::Find;
1703 if (!can_compress()) {
1704 warn "Compress::Zlib could not be found; unhandled.log " .
1705 "files will not be compressed.\n";
1707 File::Find::find({ wanted => \&gc_directory, no_chdir => 1},
1708 Git::SVN::svn_dir());
1711 ########################### utility functions #########################
1713 sub rebase_cmd {
1714 my @cmd = qw/rebase/;
1715 push @cmd, '-v' if $_verbose;
1716 push @cmd, qw/--merge/ if $_merge;
1717 push @cmd, "--strategy=$_strategy" if $_strategy;
1718 push @cmd, "--preserve-merges" if $_preserve_merges;
1719 @cmd;
1722 sub post_fetch_checkout {
1723 return if $_no_checkout;
1724 return if verify_ref('HEAD^0');
1725 my $gs = $Git::SVN::_head or return;
1727 # look for "trunk" ref if it exists
1728 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1729 my $fetch = $remote->{fetch};
1730 if ($fetch) {
1731 foreach my $p (keys %$fetch) {
1732 basename($fetch->{$p}) eq 'trunk' or next;
1733 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1734 last;
1738 command_noisy(qw(update-ref HEAD), $gs->refname);
1739 return unless verify_ref('HEAD^0');
1741 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1742 my $index = command_oneline(qw(rev-parse --git-path index));
1743 return if -f $index;
1745 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
1746 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1747 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1748 print STDERR "Checked out HEAD:\n ",
1749 $gs->full_url, " r", $gs->last_rev, "\n";
1750 if (auto_create_empty_directories($gs)) {
1751 $gs->mkemptydirs($gs->last_rev);
1755 sub complete_svn_url {
1756 my ($url, $path) = @_;
1758 if ($path =~ m#^[a-z\+]+://#i) { # path is a URL
1759 $path = canonicalize_url($path);
1760 } else {
1761 $path = canonicalize_path($path);
1762 if (!defined $url || $url !~ m#^[a-z\+]+://#i) {
1763 fatal("E: '$path' is not a complete URL ",
1764 "and a separate URL is not specified");
1766 return ($url, $path);
1768 return ($path, '');
1771 sub complete_url_ls_init {
1772 my ($ra, $repo_path, $switch, $pfx) = @_;
1773 unless ($repo_path) {
1774 print STDERR "W: $switch not specified\n";
1775 return;
1777 if ($repo_path =~ m#^[a-z\+]+://#i) {
1778 $repo_path = canonicalize_url($repo_path);
1779 $ra = Git::SVN::Ra->new($repo_path);
1780 $repo_path = '';
1781 } else {
1782 $repo_path = canonicalize_path($repo_path);
1783 $repo_path =~ s#^/+##;
1784 unless ($ra) {
1785 fatal("E: '$repo_path' is not a complete URL ",
1786 "and a separate URL is not specified");
1789 my $url = $ra->url;
1790 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1791 my $k = "svn-remote.$gs->{repo_id}.url";
1792 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
1793 if ($orig_url && ($orig_url ne $gs->url)) {
1794 die "$k already set: $orig_url\n",
1795 "wanted to set to: $gs->url\n";
1797 command_oneline('config', $k, $gs->url) unless $orig_url;
1799 my $remote_path = join_paths( $gs->path, $repo_path );
1800 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
1801 $remote_path =~ s#^/##g;
1802 $remote_path .= "/*" if $remote_path !~ /\*/;
1803 my ($n) = ($switch =~ /^--(\w+)/);
1804 if (length $pfx && $pfx !~ m#/$#) {
1805 die "--prefix='$pfx' must have a trailing slash '/'\n";
1807 command_noisy('config',
1808 '--add',
1809 "svn-remote.$gs->{repo_id}.$n",
1810 "$remote_path:refs/remotes/$pfx*" .
1811 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
1814 sub verify_ref {
1815 my ($ref) = @_;
1816 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1817 { STDERR => 0 }); };
1820 sub get_tree_from_treeish {
1821 my ($treeish) = @_;
1822 # $treeish can be a symbolic ref, too:
1823 my $type = command_oneline(qw/cat-file -t/, $treeish);
1824 my $expected;
1825 while ($type eq 'tag') {
1826 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
1828 if ($type eq 'commit') {
1829 $expected = (grep /^tree /, command(qw/cat-file commit/,
1830 $treeish))[0];
1831 ($expected) = ($expected =~ /^tree ($sha1)$/o);
1832 die "Unable to get tree from $treeish\n" unless $expected;
1833 } elsif ($type eq 'tree') {
1834 $expected = $treeish;
1835 } else {
1836 die "$treeish is a $type, expected tree, tag or commit\n";
1838 return $expected;
1841 sub get_commit_entry {
1842 my ($treeish) = shift;
1843 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1844 my @git_path = qw(rev-parse --git-path);
1845 my $commit_editmsg = command_oneline(@git_path, 'COMMIT_EDITMSG');
1846 my $commit_msg = command_oneline(@git_path, 'COMMIT_MSG');
1847 open my $log_fh, '>', $commit_editmsg or croak $!;
1849 my $type = command_oneline(qw/cat-file -t/, $treeish);
1850 if ($type eq 'commit' || $type eq 'tag') {
1851 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
1852 $type, $treeish);
1853 my $in_msg = 0;
1854 my $author;
1855 my $saw_from = 0;
1856 my $msgbuf = "";
1857 while (<$msg_fh>) {
1858 if (!$in_msg) {
1859 $in_msg = 1 if (/^$/);
1860 $author = $1 if (/^author (.*>)/);
1861 } elsif (/^git-svn-id: /) {
1862 # skip this for now, we regenerate the
1863 # correct one on re-fetch anyways
1864 # TODO: set *:merge properties or like...
1865 } else {
1866 if (/^From:/ || /^Signed-off-by:/) {
1867 $saw_from = 1;
1869 $msgbuf .= $_;
1872 $msgbuf =~ s/\s+$//s;
1873 $msgbuf =~ s/\r\n/\n/sg; # SVN 1.6+ disallows CRLF
1874 if ($Git::SVN::_add_author_from && defined($author)
1875 && !$saw_from) {
1876 $msgbuf .= "\n\nFrom: $author";
1878 print $log_fh $msgbuf or croak $!;
1879 command_close_pipe($msg_fh, $ctx);
1881 close $log_fh or croak $!;
1883 if ($_edit || ($type eq 'tree')) {
1884 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1885 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
1887 rename $commit_editmsg, $commit_msg or croak $!;
1889 require Encode;
1890 # SVN requires messages to be UTF-8 when entering the repo
1891 open $log_fh, '<', $commit_msg or croak $!;
1892 binmode $log_fh;
1893 chomp($log_entry{log} = get_record($log_fh, undef));
1895 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1896 my $msg = $log_entry{log};
1898 eval { $msg = Encode::decode($enc, $msg, 1) };
1899 if ($@) {
1900 die "Could not decode as $enc:\n", $msg,
1901 "\nPerhaps you need to set i18n.commitencoding\n";
1904 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1905 die "Could not encode as UTF-8:\n$msg\n" if $@;
1907 $log_entry{log} = $msg;
1909 close $log_fh or croak $!;
1911 unlink $commit_msg;
1912 \%log_entry;
1915 sub s_to_file {
1916 my ($str, $file, $mode) = @_;
1917 open my $fd,'>',$file or croak $!;
1918 print $fd $str,"\n" or croak $!;
1919 close $fd or croak $!;
1920 chmod ($mode &~ umask, $file) if (defined $mode);
1923 sub file_to_s {
1924 my $file = shift;
1925 open my $fd,'<',$file or croak "$!: file: $file\n";
1926 local $/;
1927 my $ret = <$fd>;
1928 close $fd or croak $!;
1929 $ret =~ s/\s*$//s;
1930 return $ret;
1933 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1934 sub load_authors {
1935 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
1936 my $log = $cmd eq 'log';
1937 while (<$authors>) {
1938 chomp;
1939 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.*)>\s*$/;
1940 my ($user, $name, $email) = ($1, $2, $3);
1941 if ($log) {
1942 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1943 } else {
1944 $users{$user} = [$name, $email];
1947 close $authors or croak $!;
1950 # convert GetOpt::Long specs for use by git-config
1951 sub read_git_config {
1952 my $opts = shift;
1953 my @config_only;
1954 foreach my $o (keys %$opts) {
1955 # if we have mixedCase and a long option-only, then
1956 # it's a config-only variable that we don't need for
1957 # the command-line.
1958 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
1959 my $v = $opts->{$o};
1960 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
1961 $key =~ s/-//g;
1962 my $arg = 'git config';
1963 $arg .= ' --int' if ($o =~ /[:=]i$/);
1964 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1965 if (ref $v eq 'ARRAY') {
1966 chomp(my @tmp = `$arg --get-all svn.$key`);
1967 @$v = @tmp if @tmp;
1968 } else {
1969 chomp(my $tmp = `$arg --get svn.$key`);
1970 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
1971 $$v = $tmp;
1975 delete @$opts{@config_only} if @config_only;
1978 sub extract_metadata {
1979 my $id = shift or return (undef, undef, undef);
1980 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
1981 \s([a-f\d\-]+)$/ix);
1982 if (!defined $rev || !$uuid || !$url) {
1983 # some of the original repositories I made had
1984 # identifiers like this:
1985 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
1987 return ($url, $rev, $uuid);
1990 sub cmt_metadata {
1991 return extract_metadata((grep(/^git-svn-id: /,
1992 command(qw/cat-file commit/, shift)))[-1]);
1995 sub cmt_sha2rev_batch {
1996 my %s2r;
1997 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1998 my $list = shift;
2000 foreach my $sha (@{$list}) {
2001 my $first = 1;
2002 my $size = 0;
2003 print $out $sha, "\n";
2005 while (my $line = <$in>) {
2006 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
2007 last;
2008 } elsif ($first &&
2009 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
2010 $first = 0;
2011 $size = $1;
2012 next;
2013 } elsif ($line =~ /^(git-svn-id: )/) {
2014 my (undef, $rev, undef) =
2015 extract_metadata($line);
2016 $s2r{$sha} = $rev;
2019 $size -= length($line);
2020 last if ($size == 0);
2024 command_close_bidi_pipe($pid, $in, $out, $ctx);
2026 return \%s2r;
2029 sub working_head_info {
2030 my ($head, $refs) = @_;
2031 my @args = qw/rev-list --first-parent --pretty=medium/;
2032 my ($fh, $ctx) = command_output_pipe(@args, $head, "--");
2033 my $hash;
2034 my %max;
2035 while (<$fh>) {
2036 if ( m{^commit ($::sha1)$} ) {
2037 unshift @$refs, $hash if $hash and $refs;
2038 $hash = $1;
2039 next;
2041 next unless s{^\s*(git-svn-id:)}{$1};
2042 my ($url, $rev, $uuid) = extract_metadata($_);
2043 if (defined $url && defined $rev) {
2044 next if $max{$url} and $max{$url} < $rev;
2045 if (my $gs = Git::SVN->find_by_url($url)) {
2046 my $c = $gs->rev_map_get($rev, $uuid);
2047 if ($c && $c eq $hash) {
2048 close $fh; # break the pipe
2049 return ($url, $rev, $uuid, $gs);
2050 } else {
2051 $max{$url} ||= $gs->rev_map_max;
2056 command_close_pipe($fh, $ctx);
2057 (undef, undef, undef, undef);
2060 sub read_commit_parents {
2061 my ($parents, $c) = @_;
2062 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
2063 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
2064 @{$parents->{$c}} = split(/ /, $p);
2067 sub linearize_history {
2068 my ($gs, $refs) = @_;
2069 my %parents;
2070 foreach my $c (@$refs) {
2071 read_commit_parents(\%parents, $c);
2074 my @linear_refs;
2075 my %skip = ();
2076 my $last_svn_commit = $gs->last_commit;
2077 foreach my $c (reverse @$refs) {
2078 next if $c eq $last_svn_commit;
2079 last if $skip{$c};
2081 unshift @linear_refs, $c;
2082 $skip{$c} = 1;
2084 # we only want the first parent to diff against for linear
2085 # history, we save the rest to inject when we finalize the
2086 # svn commit
2087 my $fp_a = verify_ref("$c~1");
2088 my $fp_b = shift @{$parents{$c}} if $parents{$c};
2089 if (!$fp_a || !$fp_b) {
2090 die "Commit $c\n",
2091 "has no parent commit, and therefore ",
2092 "nothing to diff against.\n",
2093 "You should be working from a repository ",
2094 "originally created by git-svn\n";
2096 if ($fp_a ne $fp_b) {
2097 die "$c~1 = $fp_a, however parsing commit $c ",
2098 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
2101 foreach my $p (@{$parents{$c}}) {
2102 $skip{$p} = 1;
2105 (\@linear_refs, \%parents);
2108 sub find_file_type_and_diff_status {
2109 my ($path) = @_;
2110 return ('dir', '') if $path eq '';
2112 my $diff_output =
2113 command_oneline(qw(diff --cached --name-status --), $path) || "";
2114 my $diff_status = (split(' ', $diff_output))[0] || "";
2116 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
2118 return (undef, undef) if !$diff_status && !$ls_tree;
2120 if ($diff_status eq "A") {
2121 return ("link", $diff_status) if -l $path;
2122 return ("dir", $diff_status) if -d $path;
2123 return ("file", $diff_status);
2126 my $mode = (split(' ', $ls_tree))[0] || "";
2128 return ("link", $diff_status) if $mode eq "120000";
2129 return ("dir", $diff_status) if $mode eq "040000";
2130 return ("file", $diff_status);
2133 sub md5sum {
2134 my $arg = shift;
2135 my $ref = ref $arg;
2136 require Digest::MD5;
2137 my $md5 = Digest::MD5->new();
2138 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
2139 $md5->addfile($arg) or croak $!;
2140 } elsif ($ref eq 'SCALAR') {
2141 $md5->add($$arg) or croak $!;
2142 } elsif (!$ref) {
2143 $md5->add($arg) or croak $!;
2144 } else {
2145 fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
2147 return $md5->hexdigest();
2150 sub gc_directory {
2151 if (can_compress() && -f $_ && basename($_) eq "unhandled.log") {
2152 my $out_filename = $_ . ".gz";
2153 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
2154 binmode $in_fh;
2155 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
2156 die "Unable to open $out_filename: $!\n";
2158 my $res;
2159 while ($res = sysread($in_fh, my $str, 1024)) {
2160 $gz->gzwrite($str) or
2161 die "Unable to write: ".$gz->gzerror()."!\n";
2163 no warnings 'once'; # $File::Find::name would warn
2164 unlink $_ or die "unlink $File::Find::name: $!\n";
2165 } elsif (-f $_ && basename($_) eq "index") {
2166 unlink $_ or die "unlink $_: $!\n";
2170 __END__
2172 Data structures:
2175 $remotes = { # returned by read_all_remotes()
2176 'svn' => {
2177 # svn-remote.svn.url=https://svn.musicpd.org
2178 url => 'https://svn.musicpd.org',
2179 # svn-remote.svn.fetch=mpd/trunk:trunk
2180 fetch => {
2181 'mpd/trunk' => 'trunk',
2183 # svn-remote.svn.tags=mpd/tags/*:tags/*
2184 tags => {
2185 path => {
2186 left => 'mpd/tags',
2187 right => '',
2188 regex => qr!mpd/tags/([^/]+)$!,
2189 glob => 'tags/*',
2191 ref => {
2192 left => 'tags',
2193 right => '',
2194 regex => qr!tags/([^/]+)$!,
2195 glob => 'tags/*',
2201 $log_entry hashref as returned by libsvn_log_entry()
2203 log => 'whitespace-formatted log entry
2204 ', # trailing newline is preserved
2205 revision => '8', # integer
2206 date => '2004-02-24T17:01:44.108345Z', # commit date
2207 author => 'committer name'
2211 # this is generated by generate_diff();
2212 @mods = array of diff-index line hashes, each element represents one line
2213 of diff-index output
2215 diff-index line ($m hash)
2217 mode_a => first column of diff-index output, no leading ':',
2218 mode_b => second column of diff-index output,
2219 sha1_b => sha1sum of the final blob,
2220 chg => change type [MCRADT],
2221 file_a => original file name of a file (iff chg is 'C' or 'R')
2222 file_b => new/current file name of a file (any chg)
2226 # retval of read_url_paths{,_all}();
2227 $l_map = {
2228 # repository root url
2229 'https://svn.musicpd.org' => {
2230 # repository path # GIT_SVN_ID
2231 'mpd/trunk' => 'trunk',
2232 'mpd/tags/0.11.5' => 'tags/0.11.5',
2236 Notes:
2237 I don't trust the each() function on unless I created %hash myself
2238 because the internal iterator may not have started at base.