]> git.ipfire.org Git - thirdparty/git.git/blame - git-svn.perl
git-svn: canonicalize newly-minted URLs
[thirdparty/git.git] / git-svn.perl
CommitLineData
0754e089 1#!/usr/bin/perl
551ce28f
EW
2# Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3# License: GPL v2 or later
d48b2841 4use 5.008;
3397f9df
EW
5use warnings;
6use strict;
7use vars qw/ $AUTHOR $VERSION
ffe256f9 8 $sha1 $sha1_short $_revision $_repository
36db1edd 9 $_q $_authors $_authors_prog %users/;
3397f9df 10$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
60d02ccc 11$VERSION = '@@GIT_VERSION@@';
13ccd6d4 12
e96cdba1
MS
13use Carp qw/croak/;
14use Digest::MD5;
15use IO::File qw//;
16use File::Basename qw/dirname basename/;
17use File::Path qw/mkpath/;
18use File::Spec;
19use File::Find;
20use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
21use IPC::Open3;
22use Memoize;
23
29499c0b 24use Git::SVN;
e96cdba1
MS
25use Git::SVN::Editor;
26use Git::SVN::Fetcher;
27use Git::SVN::Ra;
28use Git::SVN::Prompt;
b74fda1c 29use Git::SVN::Log;
b772cb99 30use Git::SVN::Migration;
c2768fa1 31
91e6e0c5
MS
32use Git::SVN::Utils qw(
33 fatal
34 can_compress
35 canonicalize_path
36 canonicalize_url
ca475a61 37 join_paths
d2fd119c 38 add_path_to_url
91e6e0c5
MS
39);
40
b0e75250
MS
41use Git qw(
42 git_cmd_try
43 command
44 command_oneline
45 command_noisy
46 command_output_pipe
47 command_close_pipe
48 command_bidi_pipe
49 command_close_bidi_pipe
50);
51
e96cdba1
MS
52BEGIN {
53 Memoize::memoize 'Git::config';
54 Memoize::memoize 'Git::config_bool';
55}
56
b0e75250 57
15153451
BS
58# From which subdir have we been invoked?
59my $cmd_dir_prefix = eval {
60 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
61} || '';
62
5253dc33 63my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
706587fc 64$ENV{GIT_DIR} ||= '.git';
6af1db44 65$Git::SVN::Ra::_log_window_size = 100;
13ccd6d4 66
184892fb
SS
67if (! exists $ENV{SVN_SSH} && exists $ENV{GIT_SSH}) {
68 $ENV{SVN_SSH} = $ENV{GIT_SSH};
69}
70
71if (exists $ENV{SVN_SSH} && $^O eq 'msys') {
72 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
73 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
f3a87d92
K
74}
75
f8c9d1d2 76$Git::SVN::Log::TZ = $ENV{TZ};
3397f9df 77$ENV{TZ} = 'UTC';
a00439ac 78$| = 1; # unbuffer STDOUT
3397f9df 79
6ade9bda
RK
80# All SVN commands do it. Otherwise we may die on SIGPIPE when the remote
81# repository decides to close the connection which we expect to be kept alive.
82$SIG{PIPE} = 'IGNORE';
83
f760c903
JH
84# Given a dot separated version number, "subtract" it from
85# the SVN::Core::VERSION; non-negaitive return means the SVN::Core
86# is at least at the version the caller asked for.
87sub compare_svn_version {
88 my (@ours) = split(/\./, $SVN::Core::VERSION);
89 my (@theirs) = split(/\./, $_[0]);
90 my ($i, $diff);
91
92 for ($i = 0; $i < @ours && $i < @theirs; $i++) {
93 $diff = $ours[$i] - $theirs[$i];
94 return $diff if ($diff);
95 }
96 return 1 if ($i < @ours);
97 return -1 if ($i < @theirs);
98 return 0;
99}
100
d32fad2b 101sub _req_svn {
102 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
103 require SVN::Ra;
104 require SVN::Delta;
f760c903 105 if (::compare_svn_version('1.1.0') < 0) {
d32fad2b 106 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
107 }
b9c85187 108}
c2768fa1 109
f8c9d1d2
EW
110$sha1 = qr/[a-f\d]{40}/;
111$sha1_short = qr/[a-f\d]{4,40}/;
44320b9e 112my ($_stdin, $_help, $_edit,
62244069 113 $_message, $_file, $_branch_dest,
d05d72e0 114 $_template, $_shared,
c2abd83f 115 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
b64e1f58 116 $_merge, $_strategy, $_preserve_merges, $_dry_run, $_local,
4be40381 117 $_prefix, $_no_checkout, $_url, $_verbose,
2c96a6c3 118 $_commit_url, $_tag, $_merge_info, $_interactive);
0f80aa03
MS
119
120# This is a refactoring artifact so Git::SVN can get at this git-svn switch.
121sub opt_prefix { return $_prefix || '' }
122
72827aa4 123$Git::SVN::Fetcher::_placeholder_filename = ".gitignore";
49750f30 124$_q ||= 0;
706587fc
EW
125my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
126 'config-dir=s' => \$Git::SVN::Ra::config_dir,
edc662f9 127 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
72827aa4 128 'ignore-paths=s' => \$Git::SVN::Fetcher::_ignore_regex,
cdb51a13 129 'ignore-refs=s' => \$Git::SVN::Ra::_ignore_refs_regex );
0bed5eaa 130my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
dc5869c0 131 'authors-file|A=s' => \$_authors,
36db1edd 132 'authors-prog=s' => \$_authors_prog,
ecc712dd 133 'repack:i' => \$Git::SVN::_repack,
97ae0911
EW
134 'noMetadata' => \$Git::SVN::_no_metadata,
135 'useSvmProps' => \$Git::SVN::_use_svm_props,
62e349d2 136 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
6af1db44 137 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
1e889ef3 138 'no-checkout' => \$_no_checkout,
49750f30 139 'quiet|q+' => \$_q,
ecc712dd
EW
140 'repack-flags|repack-args|repack-opts=s' =>
141 \$Git::SVN::_repack_flags,
70ae04e4 142 'use-log-author' => \$Git::SVN::_use_log_author,
6aa9ba14 143 'add-author-from' => \$Git::SVN::_add_author_from,
e82f0d73 144 'localtime' => \$Git::SVN::_localtime,
706587fc 145 %remote_opts );
36f5b1f0 146
62244069 147my ($_trunk, @_tags, @_branches, $_stdlayout);
0dfaf0a4 148my %icv;
dadc6d2a 149my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
62244069
MB
150 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
151 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
8f728fb9 152 'stdlayout|s' => \$_stdlayout,
6b48829d 153 'minimize-url|m!' => \$Git::SVN::_minimize_url,
0dfaf0a4
EW
154 'no-metadata' => sub { $icv{noMetadata} = 1 },
155 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
156 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
157 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
3e18ce1a 158 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
dadc6d2a 159 %remote_opts );
27e9fb8d 160my %cmt_opts = ( 'edit|e' => \$_edit,
72827aa4
JN
161 'rmdir' => \$Git::SVN::Editor::_rmdir,
162 'find-copies-harder' => \$Git::SVN::Editor::_find_copies_harder,
163 'l=i' => \$Git::SVN::Editor::_rename_limit,
164 'copy-similarity|C=i'=> \$Git::SVN::Editor::_cp_similarity
27e9fb8d 165);
9d55b41a 166
3397f9df 167my %cmd = (
2a3240be 168 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
e98671e5 169 { 'revision|r=s' => \$_revision,
905f8b7d 170 'fetch-all|all' => \$_fetch_all,
c2abd83f 171 'parent|p' => \$_fetch_parent,
e98671e5 172 %fc_opts } ],
0425ea90
EW
173 clone => [ \&cmd_clone, "Initialize and fetch revisions",
174 { 'revision|r=s' => \$_revision,
40a1530c 175 'preserve-empty-dirs' =>
72827aa4 176 \$Git::SVN::Fetcher::_preserve_empty_dirs,
40a1530c 177 'placeholder-filename=s' =>
72827aa4 178 \$Git::SVN::Fetcher::_placeholder_filename,
0425ea90 179 %fc_opts, %init_opts } ],
d2866f9e 180 init => [ \&cmd_init, "Initialize a repo for tracking" .
f8ab6b73 181 " (requires URL argument)",
9d55b41a 182 \%init_opts ],
dadc6d2a
EW
183 'multi-init' => [ \&cmd_multi_init,
184 "Deprecated alias for ".
185 "'$0 init -T<trunk> -b<branches> -t<tags>'",
186 \%init_opts ],
d7ad3bed
EW
187 dcommit => [ \&cmd_dcommit,
188 'Commit several diffs to merge with upstream',
3289e86e
EW
189 { 'merge|m|M' => \$_merge,
190 'strategy|s=s' => \$_strategy,
905f8b7d 191 'verbose|v' => \$_verbose,
3289e86e 192 'dry-run|n' => \$_dry_run,
905f8b7d 193 'fetch-all|all' => \$_fetch_all,
ba24e745
EW
194 'commit-url=s' => \$_commit_url,
195 'revision|r=i' => \$_revision,
171af110 196 'no-rebase' => \$_no_rebase,
6abd9332 197 'mergeinfo=s' => \$_merge_info,
afd7f1eb 198 'interactive|i' => \$_interactive,
4b155223 199 %cmt_opts, %fc_opts } ],
5de70efb
FR
200 branch => [ \&cmd_branch,
201 'Create a branch in the SVN repository',
202 { 'message|m=s' => \$_message,
62244069 203 'destination|d=s' => \$_branch_dest,
5de70efb 204 'dry-run|n' => \$_dry_run,
6594f0b7
IM
205 'tag|t' => \$_tag,
206 'username=s' => \$Git::SVN::Prompt::_username,
207 'commit-url=s' => \$_commit_url } ],
5de70efb
FR
208 tag => [ sub { $_tag = 1; cmd_branch(@_) },
209 'Create a tag in the SVN repository',
210 { 'message|m=s' => \$_message,
62244069 211 'destination|d=s' => \$_branch_dest,
6594f0b7
IM
212 'dry-run|n' => \$_dry_run,
213 'username=s' => \$Git::SVN::Prompt::_username,
214 'commit-url=s' => \$_commit_url } ],
1ce255dc
EW
215 'set-tree' => [ \&cmd_set_tree,
216 "Set an SVN repository to a git tree-ish",
e84dc6df 217 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
d05ddec5
BS
218 'create-ignore' => [ \&cmd_create_ignore,
219 'Create a .gitignore per svn:ignore',
220 { 'revision|r=i' => \$_revision
221 } ],
6111b934
EW
222 'mkdirs' => [ \&cmd_mkdirs ,
223 "recreate empty directories after a checkout",
224 { 'revision|r=i' => \$_revision } ],
15153451
BS
225 'propget' => [ \&cmd_propget,
226 'Print the value of a property on a file or directory',
227 { 'revision|r=i' => \$_revision } ],
51e057cf
BS
228 'proplist' => [ \&cmd_proplist,
229 'List all properties of a file or directory',
230 { 'revision|r=i' => \$_revision } ],
5969cbe1 231 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
4dbfe2e9 232 { 'revision|r=i' => \$_revision
05b4df31 233 } ],
2d879792
VK
234 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
235 { 'revision|r=i' => \$_revision
236 } ],
1c8443b0 237 'multi-fetch' => [ \&cmd_multi_fetch,
e98671e5
EW
238 "Deprecated alias for $0 fetch --all",
239 { 'revision|r=s' => \$_revision, %fc_opts } ],
706587fc
EW
240 'migrate' => [ sub { },
241 # no-op, we automatically run this anyways,
706587fc
EW
242 'Migrate configuration/metadata/layout from
243 previous versions of git-svn',
a836a0e1
EW
244 { 'minimize' => \$Git::SVN::Migration::_minimize,
245 %remote_opts } ],
f8c9d1d2
EW
246 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
247 { 'limit=i' => \$Git::SVN::Log::limit,
79bb8d88 248 'revision|r=s' => \$_revision,
f8c9d1d2
EW
249 'verbose|v' => \$Git::SVN::Log::verbose,
250 'incremental' => \$Git::SVN::Log::incremental,
251 'oneline' => \$Git::SVN::Log::oneline,
252 'show-commit' => \$Git::SVN::Log::show_commit,
253 'non-recursive' => \$Git::SVN::Log::non_recursive,
79bb8d88 254 'authors-file|A=s' => \$_authors,
f8c9d1d2 255 'color' => \$Git::SVN::Log::color,
4dbfe2e9 256 'pager=s' => \$Git::SVN::Log::pager
79bb8d88 257 } ],
222566e4
EW
258 'find-rev' => [ \&cmd_find_rev,
259 "Translate between SVN revision numbers and tree-ish",
4dbfe2e9 260 {} ],
905f8b7d
EW
261 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
262 { 'merge|m|M' => \$_merge,
263 'verbose|v' => \$_verbose,
264 'strategy|s=s' => \$_strategy,
dee41f3e 265 'local|l' => \$_local,
905f8b7d 266 'fetch-all|all' => \$_fetch_all,
7d45e146 267 'dry-run|n' => \$_dry_run,
b64e1f58 268 'preserve-merges|p' => \$_preserve_merges,
905f8b7d 269 %fc_opts } ],
44320b9e
EW
270 'commit-diff' => [ \&cmd_commit_diff,
271 'Commit a diff between two trees',
27e9fb8d
EW
272 { 'message|m=s' => \$_message,
273 'file|F=s' => \$_file,
45bf473a 274 'revision|r=s' => \$_revision,
27e9fb8d 275 %cmt_opts } ],
e6fefa92
DK
276 'info' => [ \&cmd_info,
277 "Show info about the latest SVN revision
278 on the current branch",
8b014d71 279 { 'url' => \$_url, } ],
6fb5375e
TS
280 'blame' => [ \&Git::SVN::Log::cmd_blame,
281 "Show what revision and author last modified each line of a file",
2c96a6c3 282 { 'git-format' => \$Git::SVN::Log::_git_format } ],
195643f2
BJ
283 'reset' => [ \&cmd_reset,
284 "Undo fetches back to the specified SVN revision",
285 { 'revision|r=s' => \$_revision,
286 'parent|p' => \$_fetch_parent } ],
2da9ee08
RZ
287 'gc' => [ \&cmd_gc,
288 "Compress unhandled.log files in .git/svn and remove " .
289 "index files in .git/svn",
290 {} ],
3397f9df 291);
9d55b41a 292
afd7f1eb
FH
293use Term::ReadLine;
294package FakeTerm;
295sub new {
296 my ($class, $reason) = @_;
297 return bless \$reason, shift;
298}
299sub readline {
300 my $self = shift;
301 die "Cannot use readline on FakeTerm: $$self";
302}
303package main;
304
305my $term = eval {
306 $ENV{"GIT_SVN_NOTTY"}
307 ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT
308 : new Term::ReadLine 'git-svn';
309};
310if ($@) {
311 $term = new FakeTerm "$@: going non-interactive";
312}
313
3397f9df
EW
314my $cmd;
315for (my $i = 0; $i < @ARGV; $i++) {
316 if (defined $cmd{$ARGV[$i]}) {
317 $cmd = $ARGV[$i];
318 splice @ARGV, $i, 1;
319 last;
9a8c92ac
BJ
320 } elsif ($ARGV[$i] eq 'help') {
321 $cmd = $ARGV[$i+1];
322 usage(0);
3397f9df
EW
323 }
324};
325
540424b2
EW
326# make sure we're always running at the top-level working directory
327unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
5253dc33
EW
328 unless (-d $ENV{GIT_DIR}) {
329 if ($git_dir_user_set) {
330 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
331 "but it is not a directory\n";
332 }
333 my $git_dir = delete $ENV{GIT_DIR};
fe4003f6
DM
334 my $cdup = undef;
335 git_cmd_try {
336 $cdup = command_oneline(qw/rev-parse --show-cdup/);
337 $git_dir = '.' unless ($cdup);
338 chomp $cdup if ($cdup);
339 $cdup = "." unless ($cdup && length $cdup);
340 } "Already at toplevel, but $git_dir not found\n";
5253dc33
EW
341 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
342 unless (-d $git_dir) {
343 die "$git_dir still not found after going to ",
344 "'$cdup'\n";
345 }
346 $ENV{GIT_DIR} = $git_dir;
347 }
ffe256f9 348 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
5253dc33 349}
f4dd334b
GH
350
351my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
352
1a30582b 353read_git_config(\%opts);
222566e4
EW
354if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
355 Getopt::Long::Configure('pass_through');
356}
87182b17 357my $rv = GetOptions(%opts, 'h|H' => \$_help, 'version|V' => \$_version,
f4dd334b
GH
358 'minimize-connections' => \$Git::SVN::Migration::_minimize,
359 'id|i=s' => \$Git::SVN::default_ref_id,
360 'svn-remote|remote|R=s' => sub {
361 $Git::SVN::no_reuse_existing = 1;
362 $Git::SVN::default_repo_id = $_[1] });
363exit 1 if (!$rv && $cmd && $cmd ne 'log');
364
365usage(0) if $_help;
366version() if $_version;
367usage(1) unless defined $cmd;
368load_authors() if $_authors;
36db1edd
ML
369if (defined $_authors_prog) {
370 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
371}
f4dd334b 372
0425ea90 373unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
706587fc
EW
374 Git::SVN::Migration::migration_check();
375}
ecc712dd 376Git::SVN::init_vars();
b805b44a
EW
377eval {
378 Git::SVN::verify_remotes_sanity();
379 $cmd{$cmd}->[0]->(@ARGV);
e3bd4dda 380 post_fetch_checkout();
b805b44a
EW
381};
382fatal $@ if $@;
3397f9df
EW
383exit 0;
384
385####################### primary functions ######################
386sub usage {
387 my $exit = shift || 0;
388 my $fd = $exit ? \*STDERR : \*STDOUT;
389 print $fd <<"";
390git-svn - bidirectional operations between a single Subversion tree and git
1b1dd23f 391Usage: git svn <command> [options] [arguments]\n
448c81b4
EW
392
393 print $fd "Available commands:\n" unless $cmd;
3397f9df
EW
394
395 foreach (sort keys %cmd) {
448c81b4 396 next if $cmd && $cmd ne $_;
a836a0e1 397 next if /^multi-/; # don't show deprecated commands
b203b769 398 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
aa807bc2 399 foreach (sort keys %{$cmd{$_}->[2]}) {
512b620b
EW
400 # mixed-case options are for .git/config only
401 next if /[A-Z]/ && /^[a-z]+$/i;
448c81b4 402 # prints out arguments as they should be passed:
b8c92cad 403 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
b203b769 404 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
448c81b4
EW
405 "--$_" : "-$_" }
406 split /\|/,$_)," $x\n";
407 }
3397f9df
EW
408 }
409 print $fd <<"";
448c81b4
EW
410\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
411arbitrary identifier if you're tracking multiple SVN branches/repositories in
412one git repository and want to keep them separate. See git-svn(1) for more
413information.
3397f9df
EW
414
415 exit $exit;
416}
417
551ce28f 418sub version {
b0779246 419 ::_req_svn();
7d60ab2c 420 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
551ce28f
EW
421 exit 0;
422}
423
afd7f1eb
FH
424sub ask {
425 my ($prompt, %arg) = @_;
426 my $valid_re = $arg{valid_re};
427 my $default = $arg{default};
428 my $resp;
429 my $i = 0;
430
431 if ( !( defined($term->IN)
432 && defined( fileno($term->IN) )
433 && defined( $term->OUT )
434 && defined( fileno($term->OUT) ) ) ){
435 return defined($default) ? $default : undef;
436 }
437
438 while ($i++ < 10) {
439 $resp = $term->readline($prompt);
440 if (!defined $resp) { # EOF
441 print "\n";
442 return defined $default ? $default : undef;
443 }
444 if ($resp eq '' and defined $default) {
445 return $default;
446 }
447 if (!defined $valid_re or $resp =~ /$valid_re/) {
448 return $resp;
449 }
450 }
451 return undef;
452}
453
8164b652
EW
454sub do_git_init_db {
455 unless (-d $ENV{GIT_DIR}) {
456 my @init_db = ('init');
457 push @init_db, "--template=$_template" if defined $_template;
dadc6d2a
EW
458 if (defined $_shared) {
459 if ($_shared =~ /[a-z]/) {
460 push @init_db, "--shared=$_shared";
461 } else {
462 push @init_db, "--shared";
463 }
464 }
8164b652 465 command_noisy(@init_db);
ffe256f9 466 $_repository = Git->repository(Repository => ".git");
8164b652 467 }
0dfaf0a4
EW
468 my $set;
469 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
470 foreach my $i (keys %icv) {
471 die "'$set' and '$i' cannot both be set\n" if $set;
472 next unless defined $icv{$i};
473 command_noisy('config', "$pfx.$i", $icv{$i});
474 $set = $i;
475 }
72827aa4 476 my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex;
cdb51a13
MO
477 command_noisy('config', "$pfx.ignore-paths", $$ignore_paths_regex)
478 if defined $$ignore_paths_regex;
479 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
480 command_noisy('config', "$pfx.ignore-refs", $$ignore_refs_regex)
481 if defined $$ignore_refs_regex;
40a1530c 482
72827aa4
JN
483 if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) {
484 my $fname = \$Git::SVN::Fetcher::_placeholder_filename;
40a1530c
RC
485 command_noisy('config', "$pfx.preserve-empty-dirs", 'true');
486 command_noisy('config', "$pfx.placeholder-filename", $$fname);
487 }
8164b652
EW
488}
489
dadc6d2a
EW
490sub init_subdir {
491 my $repo_path = shift or return;
492 mkpath([$repo_path]) unless -d $repo_path;
493 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
f30603fc 494 $ENV{GIT_DIR} = '.git';
ffe256f9 495 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
dadc6d2a
EW
496}
497
0425ea90
EW
498sub cmd_clone {
499 my ($url, $path) = @_;
500 if (!defined $path &&
62244069 501 (defined $_trunk || @_branches || @_tags ||
8f728fb9 502 defined $_stdlayout) &&
0425ea90
EW
503 $url !~ m#^[a-z\+]+://#) {
504 $path = $url;
505 }
0425ea90 506 $path = basename($url) if !defined $path || !length $path;
2bc35dcb 507 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
f30603fc 508 cmd_init($url, $path);
2bc35dcb
AV
509 command_oneline('config', 'svn.authorsfile', $authors_absolute)
510 if $_authors;
f5841509 511 Git::SVN::fetch_all($Git::SVN::default_repo_id);
0425ea90
EW
512}
513
d2866f9e 514sub cmd_init {
8f728fb9 515 if (defined $_stdlayout) {
516 $_trunk = 'trunk' if (!defined $_trunk);
62244069
MB
517 @_tags = 'tags' if (! @_tags);
518 @_branches = 'branches' if (! @_branches);
8f728fb9 519 }
62244069 520 if (defined $_trunk || @_branches || @_tags) {
dadc6d2a 521 return cmd_multi_init(@_);
03e0ea87 522 }
dadc6d2a
EW
523 my $url = shift or die "SVN repository location required ",
524 "as a command-line argument\n";
50ff2366 525 $url = canonicalize_url($url);
dadc6d2a 526 init_subdir(@_);
8164b652 527 do_git_init_db();
03e0ea87 528
6b48829d
EW
529 if ($Git::SVN::_minimize_url eq 'unset') {
530 $Git::SVN::_minimize_url = 0;
531 }
532
706587fc 533 Git::SVN->init($url);
3397f9df
EW
534}
535
2a3240be 536sub cmd_fetch {
e98671e5
EW
537 if (grep /^\d+=./, @_) {
538 die "'<rev>=<commit>' fetch arguments are ",
539 "no longer supported.\n";
07a1c950 540 }
e98671e5
EW
541 my ($remote) = @_;
542 if (@_ > 1) {
c2abd83f 543 die "Usage: $0 fetch [--all] [--parent] [svn-remote]\n";
e98671e5 544 }
4d0157d6 545 $Git::SVN::no_reuse_existing = undef;
c2abd83f
JM
546 if ($_fetch_parent) {
547 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
548 unless ($gs) {
549 die "Unable to determine upstream SVN information from ",
550 "working tree history\n";
551 }
552 # just fetch, don't checkout.
553 $_no_checkout = 'true';
554 $_fetch_all ? $gs->fetch_all : $gs->fetch;
555 } elsif ($_fetch_all) {
e98671e5
EW
556 cmd_multi_fetch();
557 } else {
c2abd83f 558 $remote ||= $Git::SVN::default_repo_id;
e98671e5 559 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
1c8443b0 560 }
2a3240be
EW
561}
562
1ce255dc 563sub cmd_set_tree {
3397f9df
EW
564 my (@commits) = @_;
565 if ($_stdin || !@commits) {
566 print "Reading from stdin...\n";
567 @commits = ();
568 while (<STDIN>) {
1ca72aef 569 if (/\b($sha1_short)\b/o) {
3397f9df
EW
570 unshift @commits, $1;
571 }
572 }
573 }
574 my @revs;
8de010ad 575 foreach my $c (@commits) {
aef4e921 576 my @tmp = command('rev-parse',$c);
8de010ad
EW
577 if (scalar @tmp == 1) {
578 push @revs, $tmp[0];
579 } elsif (scalar @tmp > 1) {
aef4e921 580 push @revs, reverse(command('rev-list',@tmp));
8de010ad 581 } else {
207f1a75 582 fatal "Failed to rev-parse $c";
8de010ad 583 }
3397f9df 584 }
1ce255dc
EW
585 my $gs = Git::SVN->new;
586 my ($r_last, $cmt_last) = $gs->last_rev_commit;
587 $gs->fetch;
97f6987a 588 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
1ce255dc
EW
589 fatal "There are new revisions that were fetched ",
590 "and need to be merged (or acknowledged) ",
591 "before committing.\nlast rev: $r_last\n",
207f1a75 592 " current: $gs->{last_rev}";
a5e0cedc 593 }
1ce255dc
EW
594 $gs->set_tree($_) foreach @revs;
595 print "Done committing ",scalar @revs," revisions to SVN\n";
3157dd9e 596 unlink $gs->{index};
a5e0cedc 597}
8f22562c 598
1e5814f3
BJ
599sub split_merge_info_range {
600 my ($range) = @_;
601 if ($range =~ /(\d+)-(\d+)/) {
602 return (int($1), int($2));
603 } else {
604 return (int($range), int($range));
605 }
606}
607
608sub combine_ranges {
609 my ($in) = @_;
610
611 my @fnums = ();
612 my @arr = split(/,/, $in);
613 for my $element (@arr) {
614 my ($start, $end) = split_merge_info_range($element);
615 push @fnums, $start;
616 }
617
618 my @sorted = @arr [ sort {
619 $fnums[$a] <=> $fnums[$b]
620 } 0..$#arr ];
621
622 my @return = ();
623 my $last = -1;
624 my $first = -1;
625 for my $element (@sorted) {
626 my ($start, $end) = split_merge_info_range($element);
627
628 if ($last == -1) {
629 $first = $start;
630 $last = $end;
631 next;
632 }
633 if ($start <= $last+1) {
634 if ($end > $last) {
635 $last = $end;
636 }
637 next;
638 }
639 if ($first == $last) {
640 push @return, "$first";
641 } else {
642 push @return, "$first-$last";
643 }
644 $first = $start;
645 $last = $end;
646 }
647
648 if ($first != -1) {
649 if ($first == $last) {
650 push @return, "$first";
651 } else {
652 push @return, "$first-$last";
653 }
654 }
655
656 return join(',', @return);
657}
658
659sub merge_revs_into_hash {
660 my ($hash, $minfo) = @_;
661 my @lines = split(' ', $minfo);
662
663 for my $line (@lines) {
664 my ($branchpath, $revs) = split(/:/, $line);
665
666 if (exists($hash->{$branchpath})) {
667 # Merge the two revision sets
668 my $combined = "$hash->{$branchpath},$revs";
669 $hash->{$branchpath} = combine_ranges($combined);
670 } else {
671 # Just do range combining for consolidation
672 $hash->{$branchpath} = combine_ranges($revs);
673 }
674 }
675}
676
677sub merge_merge_info {
678 my ($mergeinfo_one, $mergeinfo_two) = @_;
679 my %result_hash = ();
680
681 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
682 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
683
684 my $result = '';
685 # Sort below is for consistency's sake
686 for my $branchname (sort keys(%result_hash)) {
687 my $revlist = $result_hash{$branchname};
688 $result .= "$branchname:$revlist\n"
689 }
690 return $result;
691}
692
693sub populate_merge_info {
694 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
695
696 my %parentshash;
697 read_commit_parents(\%parentshash, $d);
698 my @parents = @{$parentshash{$d}};
699 if ($#parents > 0) {
700 # Merge commit
701 my $all_parents_ok = 1;
702 my $aggregate_mergeinfo = '';
703 my $rooturl = $gs->repos_root;
704
705 if (defined($rewritten_parent)) {
706 # Replace first parent with newly-rewritten version
707 shift @parents;
708 unshift @parents, $rewritten_parent;
709 }
710
711 foreach my $parent (@parents) {
712 my ($branchurl, $svnrev, $paruuid) =
713 cmt_metadata($parent);
714
715 unless (defined($svnrev)) {
716 # Should have been caught be preflight check
717 fatal "merge commit $d has ancestor $parent, but that change "
718 ."does not have git-svn metadata!";
719 }
0e7e30f5 720 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
1e5814f3
BJ
721 fatal "commit $parent git-svn metadata changed mid-run!";
722 }
723 my $branchpath = $1;
724
725 my $ra = Git::SVN::Ra->new($branchurl);
726 my (undef, undef, $props) =
727 $ra->get_dir(canonicalize_path("."), $svnrev);
728 my $par_mergeinfo = $props->{'svn:mergeinfo'};
729 unless (defined $par_mergeinfo) {
730 $par_mergeinfo = '';
731 }
732 # Merge previous mergeinfo values
733 $aggregate_mergeinfo =
734 merge_merge_info($aggregate_mergeinfo,
735 $par_mergeinfo, 0);
736
737 next if $parent eq $parents[0]; # Skip first parent
738 # Add new changes being placed in tree by merge
739 my @cmd = (qw/rev-list --reverse/,
740 $parent, qw/--not/);
741 foreach my $par (@parents) {
742 unless ($par eq $parent) {
743 push @cmd, $par;
744 }
745 }
746 my @revsin = ();
747 my ($revlist, $ctx) = command_output_pipe(@cmd);
748 while (<$revlist>) {
749 my $irev = $_;
750 chomp $irev;
751 my (undef, $csvnrev, undef) =
752 cmt_metadata($irev);
753 unless (defined $csvnrev) {
754 # A child is missing SVN annotations...
755 # this might be OK, or might not be.
756 warn "W:child $irev is merged into revision "
757 ."$d but does not have git-svn metadata. "
758 ."This means git-svn cannot determine the "
759 ."svn revision numbers to place into the "
760 ."svn:mergeinfo property. You must ensure "
761 ."a branch is entirely committed to "
762 ."SVN before merging it in order for "
763 ."svn:mergeinfo population to function "
764 ."properly";
765 }
766 push @revsin, $csvnrev;
767 }
768 command_close_pipe($revlist, $ctx);
769
770 last unless $all_parents_ok;
771
772 # We now have a list of all SVN revnos which are
773 # merged by this particular parent. Integrate them.
774 next if $#revsin == -1;
775 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
776 $aggregate_mergeinfo =
777 merge_merge_info($aggregate_mergeinfo,
778 $newmergeinfo, 1);
779 }
780 if ($all_parents_ok and $aggregate_mergeinfo) {
781 return $aggregate_mergeinfo;
782 }
783 }
784
785 return undef;
786}
787
d7ad3bed
EW
788sub cmd_dcommit {
789 my $head = shift;
181264ad 790 command_noisy(qw/update-index --refresh/);
c8cfa3e4 791 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
826a9339 792 'Cannot dcommit with a dirty index. Commit your changes first, '
c8cfa3e4 793 . "or stash them with `git stash'.\n";
d7ad3bed 794 $head ||= 'HEAD';
5eec27e3
TR
795
796 my $old_head;
797 if ($head ne 'HEAD') {
798 $old_head = eval {
799 command_oneline([qw/symbolic-ref -q HEAD/])
800 };
801 if ($old_head) {
802 $old_head =~ s{^refs/heads/}{};
803 } else {
804 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
805 }
806 command(['checkout', $head], STDERR => 0);
807 }
808
a8ae2623 809 my @refs;
5eec27e3 810 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
2cb61105
TR
811 unless ($gs) {
812 die "Unable to determine upstream SVN information from ",
813 "$head history.\nPerhaps the repository is empty.";
814 }
0df84059
PO
815
816 if (defined $_commit_url) {
817 $url = $_commit_url;
818 } else {
819 $url = eval { command_oneline('config', '--get',
820 "svn-remote.$gs->{repo_id}.commiturl") };
821 if (!$url) {
12a296bc 822 $url = $gs->full_pushurl
0df84059
PO
823 }
824 }
825
ba24e745 826 my $last_rev = $_revision if defined $_revision;
59b0c24d
MM
827 if ($url) {
828 print "Committing to $url ...\n";
829 }
733a65aa 830 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
751eb395
EW
831 if ($_no_rebase && scalar(@$linear_refs) > 1) {
832 warn "Attempting to commit more than one change while ",
833 "--no-rebase is enabled.\n",
834 "If these changes depend on each other, re-running ",
7dfa16b9 835 "without --no-rebase may be required."
751eb395 836 }
afd7f1eb
FH
837
838 if (defined $_interactive){
839 my $ask_default = "y";
840 foreach my $d (@$linear_refs){
841 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
842 while (<$fh>){
843 print $_;
844 }
845 command_close_pipe($fh, $ctx);
846 $_ = ask("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
847 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
848 default => $ask_default);
849 die "Commit this patch reply required" unless defined $_;
850 if (/^[nq]/i) {
851 exit(0);
852 } elsif (/^a/i) {
853 last;
854 }
855 }
856 }
857
711521e2 858 my $expect_url = $url;
1e5814f3
BJ
859
860 my $push_merge_info = eval {
861 command_oneline(qw/config --get svn.pushmergeinfo/)
862 };
863 if (not defined($push_merge_info)
864 or $push_merge_info eq "false"
865 or $push_merge_info eq "no"
866 or $push_merge_info eq "never") {
867 $push_merge_info = 0;
868 }
869
870 unless (defined($_merge_info) || ! $push_merge_info) {
871 # Preflight check of changes to ensure no issues with mergeinfo
872 # This includes check for uncommitted-to-SVN parents
873 # (other than the first parent, which we will handle),
874 # information from different SVN repos, and paths
875 # which are not underneath this repository root.
876 my $rooturl = $gs->repos_root;
877 foreach my $d (@$linear_refs) {
878 my %parentshash;
879 read_commit_parents(\%parentshash, $d);
880 my @realparents = @{$parentshash{$d}};
881 if ($#realparents > 0) {
882 # Merge commit
883 shift @realparents; # Remove/ignore first parent
884 foreach my $parent (@realparents) {
885 my ($branchurl, $svnrev, $paruuid) = cmt_metadata($parent);
886 unless (defined $paruuid) {
887 # A parent is missing SVN annotations...
888 # abort the whole operation.
889 fatal "$parent is merged into revision $d, "
890 ."but does not have git-svn metadata. "
891 ."Either dcommit the branch or use a "
892 ."local cherry-pick, FF merge, or rebase "
893 ."instead of an explicit merge commit.";
894 }
895
896 unless ($paruuid eq $uuid) {
897 # Parent has SVN metadata from different repository
898 fatal "merge parent $parent for change $d has "
899 ."git-svn uuid $paruuid, while current change "
900 ."has uuid $uuid!";
901 }
902
0e7e30f5 903 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
1e5814f3
BJ
904 # This branch is very strange indeed.
905 fatal "merge parent $parent for $d is on branch "
906 ."$branchurl, which is not under the "
907 ."git-svn root $rooturl!";
908 }
909 }
910 }
911 }
912 }
913
914 my $rewritten_parent;
711521e2 915 Git::SVN::remove_username($expect_url);
98c4ab32
BJ
916 if (defined($_merge_info)) {
917 $_merge_info =~ tr{ }{\n};
918 }
c74d9acf
EW
919 while (1) {
920 my $d = shift @$linear_refs or last;
45bf473a
EW
921 unless (defined $last_rev) {
922 (undef, $last_rev, undef) = cmt_metadata("$d~1");
923 unless (defined $last_rev) {
d7ad3bed 924 fatal "Unable to extract revision information ",
207f1a75 925 "from commit $d~1";
45bf473a
EW
926 }
927 }
b22d4497
EW
928 if ($_dry_run) {
929 print "diff-tree $d~1 $d\n";
930 } else {
751eb395 931 my $cmt_rev;
1e5814f3
BJ
932
933 unless (defined($_merge_info) || ! $push_merge_info) {
934 $_merge_info = populate_merge_info($d, $gs,
935 $uuid,
936 $linear_refs,
937 $rewritten_parent);
938 }
939
d7ad3bed 940 my %ed_opts = ( r => $last_rev,
61395354 941 log => get_commit_entry($d)->{log},
ba24e745 942 ra => Git::SVN::Ra->new($url),
3caf320b
KA
943 config => SVN::Core::config_get_config(
944 $Git::SVN::Ra::config_dir
945 ),
61395354
EW
946 tree_a => "$d~1",
947 tree_b => $d,
948 editor_cb => sub {
949 print "Committed r$_[0]\n";
751eb395
EW
950 $cmt_rev = $_[0];
951 },
6abd9332 952 mergeinfo => $_merge_info,
a8ae2623 953 svn_path => '');
72827aa4 954 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
d7ad3bed 955 print "No changes\n$d~1 == $d\n";
733a65aa 956 } elsif ($parents->{$d} && @{$parents->{$d}}) {
751eb395 957 $gs->{inject_parents_dcommit}->{$cmt_rev} =
733a65aa 958 $parents->{$d};
d7ad3bed 959 }
751eb395 960 $_fetch_all ? $gs->fetch_all : $gs->fetch;
7dfa16b9 961 $last_rev = $cmt_rev;
751eb395
EW
962 next if $_no_rebase;
963
964 # we always want to rebase against the current HEAD,
965 # not any head that was passed to us
c74d9acf 966 my @diff = command('diff-tree', $d,
751eb395
EW
967 $gs->refname, '--');
968 my @finish;
969 if (@diff) {
970 @finish = rebase_cmd();
c74d9acf 971 print STDERR "W: $d and ", $gs->refname,
751eb395 972 " differ, using @finish:\n",
c74d9acf 973 join("\n", @diff), "\n";
751eb395
EW
974 } else {
975 print "No changes between current HEAD and ",
976 $gs->refname,
977 "\nResetting to the latest ",
978 $gs->refname, "\n";
979 @finish = qw/reset --mixed/;
980 }
981 command_noisy(@finish, $gs->refname);
1e5814f3
BJ
982
983 $rewritten_parent = command_oneline(qw/rev-parse HEAD/);
984
c74d9acf
EW
985 if (@diff) {
986 @refs = ();
987 my ($url_, $rev_, $uuid_, $gs_) =
5eec27e3 988 working_head_info('HEAD', \@refs);
c74d9acf
EW
989 my ($linear_refs_, $parents_) =
990 linearize_history($gs_, \@refs);
991 if (scalar(@$linear_refs) !=
992 scalar(@$linear_refs_)) {
993 fatal "# of revisions changed ",
994 "\nbefore:\n",
995 join("\n", @$linear_refs),
996 "\n\nafter:\n",
997 join("\n", @$linear_refs_), "\n",
998 'If you are attempting to commit ',
999 "merges, try running:\n\t",
1000 'git rebase --interactive',
1001 '--preserve-merges ',
1002 $gs->refname,
1003 "\nBefore dcommitting";
1004 }
711521e2 1005 if ($url_ ne $expect_url) {
c03c1f79
AG
1006 if ($url_ eq $gs->metadata_url) {
1007 print
1008 "Accepting rewritten URL:",
1009 " $url_\n";
1010 } else {
1011 fatal
1012 "URL mismatch after rebase:",
1013 " $url_ != $expect_url";
1014 }
c74d9acf
EW
1015 }
1016 if ($uuid_ ne $uuid) {
1017 fatal "uuid mismatch after rebase: ",
1018 "$uuid_ != $uuid";
1019 }
1020 # remap parents
1021 my (%p, @l, $i);
1022 for ($i = 0; $i < scalar @$linear_refs; $i++) {
1023 my $new = $linear_refs_->[$i] or next;
1024 $p{$new} =
1025 $parents->{$linear_refs->[$i]};
1026 push @l, $new;
1027 }
1028 $parents = \%p;
1029 $linear_refs = \@l;
1030 }
b22d4497
EW
1031 }
1032 }
5eec27e3
TR
1033
1034 if ($old_head) {
1035 my $new_head = command_oneline(qw/rev-parse HEAD/);
1036 my $new_is_symbolic = eval {
1037 command_oneline(qw/symbolic-ref -q HEAD/);
1038 };
1039 if ($new_is_symbolic) {
1040 print "dcommitted the branch ", $head, "\n";
1041 } else {
1042 print "dcommitted on a detached HEAD because you gave ",
1043 "a revision argument.\n",
1044 "The rewritten commit is: ", $new_head, "\n";
1045 }
1046 command(['checkout', $old_head], STDERR => 0);
1047 }
1048
3157dd9e 1049 unlink $gs->{index};
b22d4497
EW
1050}
1051
5de70efb
FR
1052sub cmd_branch {
1053 my ($branch_name, $head) = @_;
1054
1055 unless (defined $branch_name && length $branch_name) {
1056 die(($_tag ? "tag" : "branch") . " name required\n");
1057 }
1058 $head ||= 'HEAD';
1059
150d38c4 1060 my (undef, $rev, undef, $gs) = working_head_info($head);
12a296bc 1061 my $src = $gs->full_pushurl;
5de70efb 1062
a0fbc87c 1063 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
62244069
MB
1064 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
1065 my $glob;
1066 if ($#{$allglobs} == 0) {
1067 $glob = $allglobs->[0];
1068 } else {
1069 unless(defined $_branch_dest) {
1070 die "Multiple ",
1071 $_tag ? "tag" : "branch",
1072 " paths defined for Subversion repository.\n",
1073 "You must specify where you want to create the ",
1074 $_tag ? "tag" : "branch",
1075 " with the --destination argument.\n";
1076 }
1077 foreach my $g (@{$allglobs}) {
72827aa4 1078 my $re = Git::SVN::Editor::glob2pat($g->{path}->{left});
f7050599 1079 if ($_branch_dest =~ /$re/) {
62244069
MB
1080 $glob = $g;
1081 last;
1082 }
1083 }
1084 unless (defined $glob) {
eaa14ff8
EW
1085 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1086 foreach my $g (@{$allglobs}) {
1087 $g->{path}->{left} =~ /$dest_re/ or next;
1088 if (defined $glob) {
1089 die "Ambiguous destination: ",
1090 $_branch_dest, "\nmatches both '",
1091 $glob->{path}->{left}, "' and '",
1092 $g->{path}->{left}, "'\n";
1093 }
1094 $glob = $g;
1095 }
1096 unless (defined $glob) {
1097 die "Unknown ",
1098 $_tag ? "tag" : "branch",
1099 " destination $_branch_dest\n";
1100 }
62244069
MB
1101 }
1102 }
5de70efb 1103 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
99bacd6c
IM
1104 my $url;
1105 if (defined $_commit_url) {
1106 $url = $_commit_url;
1107 } else {
1108 $url = eval { command_oneline('config', '--get',
1109 "svn-remote.$gs->{repo_id}.commiturl") };
1110 if (!$url) {
12a296bc 1111 $url = $remote->{pushurl} || $remote->{url};
99bacd6c
IM
1112 }
1113 }
1114 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
5de70efb 1115
a83b91e7
IM
1116 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1117 $src=~s/^http:/https:/;
1118 }
1119
d32fad2b 1120 ::_req_svn();
1121
5de70efb
FR
1122 my $ctx = SVN::Client->new(
1123 auth => Git::SVN::Ra::_auth_providers(),
1124 log_msg => sub {
1125 ${ $_[0] } = defined $_message
1126 ? $_message
1127 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
1128 . $branch_name;
1129 },
1130 );
1131
1132 eval {
1133 $ctx->ls($dst, 'HEAD', 0);
1134 } and die "branch ${branch_name} already exists\n";
1135
1136 print "Copying ${src} at r${rev} to ${dst}...\n";
1137 $ctx->copy($src, $rev, $dst)
1138 unless $_dry_run;
1139
1140 $gs->fetch_all;
1141}
1142
26e60160 1143sub cmd_find_rev {
ea14e6c5
MAL
1144 my $revision_or_hash = shift or die "SVN or git revision required ",
1145 "as a command-line argument\n";
26e60160
AR
1146 my $result;
1147 if ($revision_or_hash =~ /^r\d+$/) {
b3cb7e45
AR
1148 my $head = shift;
1149 $head ||= 'HEAD';
1150 my @refs;
63c56022 1151 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
b3cb7e45
AR
1152 unless ($gs) {
1153 die "Unable to determine upstream SVN information from ",
1154 "$head history\n";
26e60160 1155 }
b3cb7e45 1156 my $desired_revision = substr($revision_or_hash, 1);
63c56022 1157 $result = $gs->rev_map_get($desired_revision, $uuid);
26e60160
AR
1158 } else {
1159 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
1160 $result = $rev;
1161 }
1162 print "$result\n" if $result;
1163}
1164
55f9d7a7
MH
1165sub auto_create_empty_directories {
1166 my ($gs) = @_;
1167 my $var = eval { command_oneline('config', '--get', '--bool',
1168 "svn-remote.$gs->{repo_id}.automkdirs") };
1169 # By default, create empty directories by consulting the unhandled log,
1170 # but allow setting it to 'false' to skip it.
1171 return !($var && $var eq 'false');
1172}
1173
905f8b7d
EW
1174sub cmd_rebase {
1175 command_noisy(qw/update-index --refresh/);
13c823fb
EW
1176 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1177 unless ($gs) {
905f8b7d
EW
1178 die "Unable to determine upstream SVN information from ",
1179 "working tree history\n";
1180 }
7d45e146
SF
1181 if ($_dry_run) {
1182 print "Remote Branch: " . $gs->refname . "\n";
1183 print "SVN URL: " . $url . "\n";
1184 return;
1185 }
905f8b7d
EW
1186 if (command(qw/diff-index HEAD --/)) {
1187 print STDERR "Cannot rebase with uncommited changes:\n";
1188 command_noisy('status');
1189 exit 1;
1190 }
dee41f3e 1191 unless ($_local) {
cec0d5a3
SG
1192 # rebase will checkout for us, so no need to do it explicitly
1193 $_no_checkout = 'true';
dee41f3e
EW
1194 $_fetch_all ? $gs->fetch_all : $gs->fetch;
1195 }
905f8b7d 1196 command_noisy(rebase_cmd(), $gs->refname);
55f9d7a7
MH
1197 if (auto_create_empty_directories($gs)) {
1198 $gs->mkemptydirs;
1199 }
905f8b7d
EW
1200}
1201
5969cbe1 1202sub cmd_show_ignore {
13c823fb
EW
1203 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1204 $gs ||= Git::SVN->new;
5969cbe1 1205 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
6a8d999e 1206 $gs->prop_walk($gs->path, $r, sub {
01bdab84
BS
1207 my ($gs, $path, $props) = @_;
1208 print STDOUT "\n# $path\n";
1209 my $s = $props->{'svn:ignore'} or return;
1210 $s =~ s/[\r\n]+/\n/g;
a7d72544 1211 $s =~ s/^\n+//;
01bdab84
BS
1212 chomp $s;
1213 $s =~ s#^#$path#gm;
1214 print STDOUT "$s\n";
1215 });
a5e0cedc
EW
1216}
1217
2d879792
VK
1218sub cmd_show_externals {
1219 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1220 $gs ||= Git::SVN->new;
1221 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
6a8d999e 1222 $gs->prop_walk($gs->path, $r, sub {
2d879792
VK
1223 my ($gs, $path, $props) = @_;
1224 print STDOUT "\n# $path\n";
1225 my $s = $props->{'svn:externals'} or return;
1226 $s =~ s/[\r\n]+/\n/g;
1227 chomp $s;
1228 $s =~ s#^#$path#gm;
1229 print STDOUT "$s\n";
1230 });
1231}
1232
d05ddec5
BS
1233sub cmd_create_ignore {
1234 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1235 $gs ||= Git::SVN->new;
1236 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
6a8d999e 1237 $gs->prop_walk($gs->path, $r, sub {
d05ddec5
BS
1238 my ($gs, $path, $props) = @_;
1239 # $path is of the form /path/to/dir/
7d9fd459
BG
1240 $path = '.' . $path;
1241 # SVN can have attributes on empty directories,
1242 # which git won't track
1243 mkpath([$path]) unless -d $path;
1244 my $ignore = $path . '.gitignore';
d05ddec5
BS
1245 my $s = $props->{'svn:ignore'} or return;
1246 open(GITIGNORE, '>', $ignore)
207f1a75 1247 or fatal("Failed to open `$ignore' for writing: $!");
d05ddec5 1248 $s =~ s/[\r\n]+/\n/g;
a7d72544 1249 $s =~ s/^\n+//;
d05ddec5
BS
1250 chomp $s;
1251 # Prefix all patterns so that the ignore doesn't apply
1252 # to sub-directories.
1253 $s =~ s#^#/#gm;
1254 print GITIGNORE "$s\n";
1255 close(GITIGNORE)
207f1a75 1256 or fatal("Failed to close `$ignore': $!");
c4c66b26 1257 command_noisy('add', '-f', $ignore);
d05ddec5
BS
1258 });
1259}
1260
6111b934
EW
1261sub cmd_mkdirs {
1262 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1263 $gs ||= Git::SVN->new;
1264 $gs->mkemptydirs($_revision);
1265}
1266
15153451
BS
1267# get_svnprops(PATH)
1268# ------------------
51e057cf 1269# Helper for cmd_propget and cmd_proplist below.
15153451
BS
1270sub get_svnprops {
1271 my $path = shift;
1272 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1273 $gs ||= Git::SVN->new;
1274
1275 # prefix THE PATH by the sub-directory from which the user
1276 # invoked us.
1277 $path = $cmd_dir_prefix . $path;
207f1a75 1278 fatal("No such file or directory: $path") unless -e $path;
15153451 1279 my $is_dir = -d $path ? 1 : 0;
ca475a61 1280 $path = join_paths($gs->{path}, $path);
15153451
BS
1281
1282 # canonicalize the path (otherwise libsvn will abort or fail to
1283 # find the file)
b2b3ada7 1284 $path = canonicalize_path($path);
15153451
BS
1285
1286 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1287 my $props;
1288 if ($is_dir) {
1289 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1290 }
1291 else {
1292 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1293 }
1294 return $props;
1295}
1296
1297# cmd_propget (PROP, PATH)
1298# ------------------------
1299# Print the SVN property PROP for PATH.
1300sub cmd_propget {
1301 my ($prop, $path) = @_;
1302 $path = '.' if not defined $path;
1303 usage(1) if not defined $prop;
1304 my $props = get_svnprops($path);
1305 if (not defined $props->{$prop}) {
207f1a75 1306 fatal("`$path' does not have a `$prop' SVN property.");
15153451
BS
1307 }
1308 print $props->{$prop} . "\n";
1309}
1310
51e057cf
BS
1311# cmd_proplist (PATH)
1312# -------------------
1313# Print the list of SVN properties for PATH.
1314sub cmd_proplist {
1315 my $path = shift;
1316 $path = '.' if not defined $path;
1317 my $props = get_svnprops($path);
1318 print "Properties on '$path':\n";
1319 foreach (sort keys %{$props}) {
1320 print " $_\n";
1321 }
1322}
1323
8164b652 1324sub cmd_multi_init {
9d55b41a 1325 my $url = shift;
62244069 1326 unless (defined $_trunk || @_branches || @_tags) {
98327e58 1327 usage(1);
9d55b41a 1328 }
dc431666 1329
8164b652 1330 $_prefix = '' unless defined $_prefix;
dadc6d2a 1331 if (defined $url) {
50ff2366 1332 $url = canonicalize_url($url);
dadc6d2a
EW
1333 init_subdir(@_);
1334 }
f30603fc 1335 do_git_init_db();
98327e58 1336 if (defined $_trunk) {
b4b33600 1337 $_trunk =~ s#^/+##;
6f5748e1 1338 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
706587fc
EW
1339 # try both old-style and new-style lookups:
1340 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
8164b652 1341 unless ($gs_trunk) {
706587fc
EW
1342 my ($trunk_url, $trunk_path) =
1343 complete_svn_url($url, $_trunk);
1344 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
1345 undef, $trunk_ref);
98327e58 1346 }
c35b96e7 1347 }
62244069 1348 return unless @_branches || @_tags;
e7db67e6 1349 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
62244069
MB
1350 foreach my $path (@_branches) {
1351 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
1352 }
1353 foreach my $path (@_tags) {
1354 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
1355 }
9d55b41a
EW
1356}
1357
1c8443b0 1358sub cmd_multi_fetch {
4d0157d6 1359 $Git::SVN::no_reuse_existing = undef;
0af9c9f9
EW
1360 my $remotes = Git::SVN::read_all_remotes();
1361 foreach my $repo_id (sort keys %$remotes) {
db03cd24 1362 if ($remotes->{$repo_id}->{url}) {
4bb9ed04
EW
1363 Git::SVN::fetch_all($repo_id, $remotes);
1364 }
9d55b41a 1365 }
9d55b41a
EW
1366}
1367
44320b9e
EW
1368# this command is special because it requires no metadata
1369sub cmd_commit_diff {
1370 my ($ta, $tb, $url) = @_;
1371 my $usage = "Usage: $0 commit-diff -r<revision> ".
207f1a75 1372 "<tree-ish> <tree-ish> [<URL>]";
44320b9e 1373 fatal($usage) if (!defined $ta || !defined $tb);
d72ab8c8 1374 my $svn_path = '';
44320b9e
EW
1375 if (!defined $url) {
1376 my $gs = eval { Git::SVN->new };
1377 if (!$gs) {
1378 fatal("Needed URL or usable git-svn --id in ",
1379 "the command-line\n", $usage);
1380 }
b1ea6c38 1381 $url = $gs->url;
6a8d999e 1382 $svn_path = $gs->path;
44320b9e
EW
1383 }
1384 unless (defined $_revision) {
1385 fatal("-r|--revision is a required argument\n", $usage);
1386 }
1387 if (defined $_message && defined $_file) {
1388 fatal("Both --message/-m and --file/-F specified ",
1389 "for the commit message.\n",
207f1a75 1390 "I have no idea what you mean");
44320b9e
EW
1391 }
1392 if (defined $_file) {
1393 $_message = file_to_s($_file);
1394 } else {
1395 $_message ||= get_commit_entry($tb)->{log};
1396 }
1397 my $ra ||= Git::SVN::Ra->new($url);
1398 my $r = $_revision;
1399 if ($r eq 'HEAD') {
1400 $r = $ra->get_latest_revnum;
1401 } elsif ($r !~ /^\d+$/) {
1402 die "revision argument: $r not understood by git-svn\n";
1403 }
61395354
EW
1404 my %ed_opts = ( r => $r,
1405 log => $_message,
1406 ra => $ra,
1407 tree_a => $ta,
1408 tree_b => $tb,
1409 editor_cb => sub { print "Committed r$_[0]\n" },
1410 svn_path => $svn_path );
72827aa4 1411 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
44320b9e
EW
1412 print "No changes\n$ta == $tb\n";
1413 }
44320b9e
EW
1414}
1415
05427b91 1416
e6fefa92 1417sub cmd_info {
bd2d4f96 1418 my $path = canonicalize_path(defined($_[0]) ? $_[0] : ".");
edde9112 1419 my $fullpath = canonicalize_path($cmd_dir_prefix . $path);
bd2d4f96 1420 if (exists $_[1]) {
e6fefa92
DK
1421 die "Too many arguments specified\n";
1422 }
1423
1424 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1425
1426 if (!$file_type && !$diff_status) {
2cf3e3ac
TR
1427 print STDERR "svn: '$path' is not under version control\n";
1428 exit 1;
e6fefa92
DK
1429 }
1430
1431 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1432 unless ($gs) {
1433 die "Unable to determine upstream SVN information from ",
1434 "working tree history\n";
1435 }
bd2d4f96
EW
1436
1437 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1438 $path = "." if $path eq "";
1439
d2fd119c 1440 my $full_url = canonicalize_url( add_path_to_url( $url, $fullpath ) );
e6fefa92 1441
8b014d71 1442 if ($_url) {
8266fc8b 1443 print "$full_url\n";
8b014d71
DK
1444 return;
1445 }
1446
e6fefa92
DK
1447 my $result = "Path: $path\n";
1448 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
8266fc8b 1449 $result .= "URL: $full_url\n";
e6fefa92 1450
a5460eb7
EW
1451 eval {
1452 my $repos_root = $gs->repos_root;
1453 Git::SVN::remove_username($repos_root);
9c27a57b 1454 $result .= "Repository Root: " . canonicalize_url($repos_root) . "\n";
a5460eb7
EW
1455 };
1456 if ($@) {
1457 $result .= "Repository Root: (offline)\n";
1458 }
b91a8a3e 1459 ::_req_svn();
22ba47f5 1460 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
f760c903 1461 (::compare_svn_version('1.5.4') <= 0 || $file_type ne "dir");
e6fefa92
DK
1462 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1463
1464 $result .= "Node Kind: " .
1465 ($file_type eq "dir" ? "directory" : "file") . "\n";
1466
1467 my $schedule = $diff_status eq "A"
1468 ? "add"
1469 : ($diff_status eq "D" ? "delete" : "normal");
1470 $result .= "Schedule: $schedule\n";
1471
1472 if ($diff_status eq "A") {
1473 print $result, "\n";
1474 return;
1475 }
1476
1477 my ($lc_author, $lc_rev, $lc_date_utc);
edde9112 1478 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath);
e6fefa92
DK
1479 my $log = command_output_pipe(@args);
1480 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1481 while (<$log>) {
1482 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1483 $lc_author = $1;
1484 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1485 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1486 (undef, $lc_rev, undef) = ::extract_metadata($1);
1487 }
1488 }
1489 close $log;
1490
1491 Git::SVN::Log::set_local_timezone();
1492
1493 $result .= "Last Changed Author: $lc_author\n";
1494 $result .= "Last Changed Rev: $lc_rev\n";
1495 $result .= "Last Changed Date: " .
1496 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1497
1498 if ($file_type ne "dir") {
1499 my $text_last_updated_date =
1500 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1501 $result .=
1502 "Text Last Updated: " .
1503 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1504 "\n";
1505 my $checksum;
1506 if ($diff_status eq "D") {
1507 my ($fh, $ctx) =
1508 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1509 if ($file_type eq "link") {
1510 my $file_name = <$fh>;
8d7c4fad 1511 $checksum = md5sum("link $file_name");
e6fefa92 1512 } else {
8d7c4fad 1513 $checksum = md5sum($fh);
e6fefa92
DK
1514 }
1515 command_close_pipe($fh, $ctx);
1516 } elsif ($file_type eq "link") {
1517 my $file_name =
1518 command(qw(cat-file blob), "HEAD:$path");
1519 $checksum =
8d7c4fad 1520 md5sum("link " . $file_name);
e6fefa92
DK
1521 } else {
1522 open FILE, "<", $path or die $!;
8d7c4fad 1523 $checksum = md5sum(\*FILE);
e6fefa92
DK
1524 close FILE or die $!;
1525 }
1526 $result .= "Checksum: " . $checksum . "\n";
1527 }
1528
1529 print $result, "\n";
1530}
1531
195643f2
BJ
1532sub cmd_reset {
1533 my $target = shift || $_revision or die "SVN revision required\n";
1534 $target = $1 if $target =~ /^r(\d+)$/;
1535 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1536 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1537 unless ($gs) {
1538 die "Unable to determine upstream SVN information from ".
1539 "history\n";
1540 }
1541 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
70ee0b77 1542 die "Cannot find SVN revision $target\n" unless defined($c);
195643f2
BJ
1543 $gs->rev_map_set($r, $c, 'reset', $uuid);
1544 print "r$r = $c ($gs->{ref_id})\n";
1545}
1546
2da9ee08 1547sub cmd_gc {
c2768fa1 1548 if (!can_compress()) {
2da9ee08
RZ
1549 warn "Compress::Zlib could not be found; unhandled.log " .
1550 "files will not be compressed.\n";
1551 }
1552 find({ wanted => \&gc_directory, no_chdir => 1}, "$ENV{GIT_DIR}/svn");
1553}
1554
3397f9df
EW
1555########################### utility functions #########################
1556
905f8b7d
EW
1557sub rebase_cmd {
1558 my @cmd = qw/rebase/;
1559 push @cmd, '-v' if $_verbose;
1560 push @cmd, qw/--merge/ if $_merge;
1561 push @cmd, "--strategy=$_strategy" if $_strategy;
b64e1f58 1562 push @cmd, "--preserve-merges" if $_preserve_merges;
905f8b7d
EW
1563 @cmd;
1564}
1565
1e889ef3
EW
1566sub post_fetch_checkout {
1567 return if $_no_checkout;
e3bd4dda 1568 return if verify_ref('HEAD^0');
1e889ef3 1569 my $gs = $Git::SVN::_head or return;
1e889ef3 1570
b186a261
EW
1571 # look for "trunk" ref if it exists
1572 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1573 my $fetch = $remote->{fetch};
1574 if ($fetch) {
1575 foreach my $p (keys %$fetch) {
1576 basename($fetch->{$p}) eq 'trunk' or next;
1577 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1578 last;
1579 }
1580 }
1581
e3bd4dda
MO
1582 command_noisy(qw(update-ref HEAD), $gs->refname);
1583 return unless verify_ref('HEAD^0');
1e889ef3
EW
1584
1585 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1586 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1587 return if -f $index;
1588
7ae3df8c 1589 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
1e889ef3
EW
1590 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1591 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1592 print STDERR "Checked out HEAD:\n ",
1593 $gs->full_url, " r", $gs->last_rev, "\n";
55f9d7a7
MH
1594 if (auto_create_empty_directories($gs)) {
1595 $gs->mkemptydirs($gs->last_rev);
1596 }
1e889ef3
EW
1597}
1598
98327e58
EW
1599sub complete_svn_url {
1600 my ($url, $path) = @_;
1601 $path =~ s#/+$##;
6a8d999e
MS
1602
1603 # If the path is not a URL...
98327e58 1604 if ($path !~ m#^[a-z\+]+://#) {
98327e58
EW
1605 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1606 fatal("E: '$path' is not a complete URL ",
207f1a75 1607 "and a separate URL is not specified");
98327e58 1608 }
706587fc 1609 return ($url, $path);
98327e58 1610 }
706587fc 1611 return ($path, '');
98327e58
EW
1612}
1613
9d55b41a 1614sub complete_url_ls_init {
706587fc
EW
1615 my ($ra, $repo_path, $switch, $pfx) = @_;
1616 unless ($repo_path) {
9d55b41a
EW
1617 print STDERR "W: $switch not specified\n";
1618 return;
1619 }
706587fc
EW
1620 $repo_path =~ s#/+$##;
1621 if ($repo_path =~ m#^[a-z\+]+://#) {
1622 $ra = Git::SVN::Ra->new($repo_path);
1623 $repo_path = '';
e7db67e6 1624 } else {
706587fc 1625 $repo_path =~ s#^/+##;
e7db67e6 1626 unless ($ra) {
706587fc 1627 fatal("E: '$repo_path' is not a complete URL ",
207f1a75 1628 "and a separate URL is not specified");
8164b652 1629 }
e7db67e6 1630 }
b1ea6c38 1631 my $url = $ra->url;
b4d57e5e
EW
1632 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1633 my $k = "svn-remote.$gs->{repo_id}.url";
1634 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
b1ea6c38 1635 if ($orig_url && ($orig_url ne $gs->url)) {
b4d57e5e 1636 die "$k already set: $orig_url\n",
b1ea6c38 1637 "wanted to set to: $gs->url\n";
88cf4107 1638 }
b1ea6c38
MS
1639 command_oneline('config', $k, $gs->url) unless $orig_url;
1640
6a8d999e 1641 my $remote_path = $gs->path . "/$repo_path";
5268f9ed 1642 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
b4d57e5e
EW
1643 $remote_path =~ s#/+#/#g;
1644 $remote_path =~ s#^/##g;
ed0b9d43 1645 $remote_path .= "/*" if $remote_path !~ /\*/;
b4d57e5e
EW
1646 my ($n) = ($switch =~ /^--(\w+)/);
1647 if (length $pfx && $pfx !~ m#/$#) {
1648 die "--prefix='$pfx' must have a trailing slash '/'\n";
9d55b41a 1649 }
570d35c2 1650 command_noisy('config',
62244069 1651 '--add',
570d35c2
MG
1652 "svn-remote.$gs->{repo_id}.$n",
1653 "$remote_path:refs/remotes/$pfx*" .
1654 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
9d55b41a
EW
1655}
1656
aef4e921
EW
1657sub verify_ref {
1658 my ($ref) = @_;
2c5c1d53
EW
1659 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1660 { STDERR => 0 }); };
aef4e921
EW
1661}
1662
a5e0cedc 1663sub get_tree_from_treeish {
cf52b8f0 1664 my ($treeish) = @_;
44320b9e 1665 # $treeish can be a symbolic ref, too:
aef4e921 1666 my $type = command_oneline(qw/cat-file -t/, $treeish);
cf52b8f0
EW
1667 my $expected;
1668 while ($type eq 'tag') {
aef4e921 1669 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
cf52b8f0
EW
1670 }
1671 if ($type eq 'commit') {
aef4e921
EW
1672 $expected = (grep /^tree /, command(qw/cat-file commit/,
1673 $treeish))[0];
44320b9e 1674 ($expected) = ($expected =~ /^tree ($sha1)$/o);
cf52b8f0
EW
1675 die "Unable to get tree from $treeish\n" unless $expected;
1676 } elsif ($type eq 'tree') {
1677 $expected = $treeish;
1678 } else {
1679 die "$treeish is a $type, expected tree, tag or commit\n";
1680 }
a5e0cedc
EW
1681 return $expected;
1682}
1683
44320b9e
EW
1684sub get_commit_entry {
1685 my ($treeish) = shift;
1686 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1687 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1688 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1689 open my $log_fh, '>', $commit_editmsg or croak $!;
3397f9df 1690
44320b9e 1691 my $type = command_oneline(qw/cat-file -t/, $treeish);
4ad4515d 1692 if ($type eq 'commit' || $type eq 'tag') {
aef4e921 1693 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
44320b9e 1694 $type, $treeish);
3397f9df 1695 my $in_msg = 0;
6aa9ba14
AP
1696 my $author;
1697 my $saw_from = 0;
328eb9b3 1698 my $msgbuf = "";
3397f9df
EW
1699 while (<$msg_fh>) {
1700 if (!$in_msg) {
1701 $in_msg = 1 if (/^\s*$/);
6aa9ba14 1702 $author = $1 if (/^author (.*>)/);
df746c5a 1703 } elsif (/^git-svn-id: /) {
44320b9e
EW
1704 # skip this for now, we regenerate the
1705 # correct one on re-fetch anyways
1706 # TODO: set *:merge properties or like...
3397f9df 1707 } else {
6aa9ba14
AP
1708 if (/^From:/ || /^Signed-off-by:/) {
1709 $saw_from = 1;
1710 }
328eb9b3 1711 $msgbuf .= $_;
3397f9df
EW
1712 }
1713 }
328eb9b3 1714 $msgbuf =~ s/\s+$//s;
6aa9ba14
AP
1715 if ($Git::SVN::_add_author_from && defined($author)
1716 && !$saw_from) {
328eb9b3 1717 $msgbuf .= "\n\nFrom: $author";
6aa9ba14 1718 }
328eb9b3 1719 print $log_fh $msgbuf or croak $!;
aef4e921 1720 command_close_pipe($msg_fh, $ctx);
3397f9df 1721 }
44320b9e 1722 close $log_fh or croak $!;
3397f9df
EW
1723
1724 if ($_edit || ($type eq 'tree')) {
b4479f07
JN
1725 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1726 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
3397f9df 1727 }
44320b9e 1728 rename $commit_editmsg, $commit_msg or croak $!;
16fc08e2 1729 {
b510df8a 1730 require Encode;
16fc08e2
EW
1731 # SVN requires messages to be UTF-8 when entering the repo
1732 local $/;
1733 open $log_fh, '<', $commit_msg or croak $!;
1734 binmode $log_fh;
1735 chomp($log_entry{log} = <$log_fh>);
1736
b510df8a
EW
1737 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1738 my $msg = $log_entry{log};
1739
1740 eval { $msg = Encode::decode($enc, $msg, 1) };
1741 if ($@) {
1742 die "Could not decode as $enc:\n", $msg,
1743 "\nPerhaps you need to set i18n.commitencoding\n";
16fc08e2 1744 }
b510df8a
EW
1745
1746 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1747 die "Could not encode as UTF-8:\n$msg\n" if $@;
1748
1749 $log_entry{log} = $msg;
1750
16fc08e2
EW
1751 close $log_fh or croak $!;
1752 }
44320b9e
EW
1753 unlink $commit_msg;
1754 \%log_entry;
a5e0cedc
EW
1755}
1756
3397f9df
EW
1757sub s_to_file {
1758 my ($str, $file, $mode) = @_;
1759 open my $fd,'>',$file or croak $!;
1760 print $fd $str,"\n" or croak $!;
1761 close $fd or croak $!;
1762 chmod ($mode &~ umask, $file) if (defined $mode);
1763}
1764
1765sub file_to_s {
1766 my $file = shift;
1767 open my $fd,'<',$file or croak "$!: file: $file\n";
1768 local $/;
1769 my $ret = <$fd>;
1770 close $fd or croak $!;
1771 $ret =~ s/\s*$//s;
1772 return $ret;
1773}
1774
eeb0abe0
EW
1775# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1776sub load_authors {
1777 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
f8c9d1d2 1778 my $log = $cmd eq 'log';
eeb0abe0
EW
1779 while (<$authors>) {
1780 chomp;
575d025c 1781 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
eeb0abe0 1782 my ($user, $name, $email) = ($1, $2, $3);
f8c9d1d2
EW
1783 if ($log) {
1784 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1785 } else {
1786 $users{$user} = [$name, $email];
1787 }
79bb8d88
EW
1788 }
1789 close $authors or croak $!;
1790}
1791
e0d10e1c 1792# convert GetOpt::Long specs for use by git-config
1a30582b 1793sub read_git_config {
b8c92cad 1794 my $opts = shift;
97ae0911 1795 my @config_only;
b8c92cad 1796 foreach my $o (keys %$opts) {
97ae0911
EW
1797 # if we have mixedCase and a long option-only, then
1798 # it's a config-only variable that we don't need for
1799 # the command-line.
1800 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
b8c92cad 1801 my $v = $opts->{$o};
97ae0911 1802 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
b8c92cad 1803 $key =~ s/-//g;
225f1d0c 1804 my $arg = 'git config';
b8c92cad
EW
1805 $arg .= ' --int' if ($o =~ /[:=]i$/);
1806 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1807 if (ref $v eq 'ARRAY') {
1808 chomp(my @tmp = `$arg --get-all svn.$key`);
1809 @$v = @tmp if @tmp;
1810 } else {
1811 chomp(my $tmp = `$arg --get svn.$key`);
7774284a 1812 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
b8c92cad
EW
1813 $$v = $tmp;
1814 }
1815 }
1816 }
97ae0911 1817 delete @$opts{@config_only} if @config_only;
b8c92cad
EW
1818}
1819
79bb8d88 1820sub extract_metadata {
c1927a85 1821 my $id = shift or return (undef, undef, undef);
3dfab993 1822 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
b3e95936 1823 \s([a-f\d\-]+)$/ix);
e70dc780 1824 if (!defined $rev || !$uuid || !$url) {
79bb8d88 1825 # some of the original repositories I made had
82e5a82f 1826 # identifiers like this:
b3e95936 1827 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
79bb8d88
EW
1828 }
1829 return ($url, $rev, $uuid);
1830}
1831
c1927a85
EW
1832sub cmt_metadata {
1833 return extract_metadata((grep(/^git-svn-id: /,
aef4e921 1834 command(qw/cat-file commit/, shift)))[-1]);
c1927a85
EW
1835}
1836
6ea42032
BB
1837sub cmt_sha2rev_batch {
1838 my %s2r;
1839 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1840 my $list = shift;
1841
1842 foreach my $sha (@{$list}) {
1843 my $first = 1;
1844 my $size = 0;
1845 print $out $sha, "\n";
1846
1847 while (my $line = <$in>) {
1848 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1849 last;
1850 } elsif ($first &&
1851 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1852 $first = 0;
1853 $size = $1;
1854 next;
1855 } elsif ($line =~ /^(git-svn-id: )/) {
1856 my (undef, $rev, undef) =
1857 extract_metadata($line);
1858 $s2r{$sha} = $rev;
1859 }
1860
1861 $size -= length($line);
1862 last if ($size == 0);
1863 }
1864 }
1865
1866 command_close_bidi_pipe($pid, $in, $out, $ctx);
1867
1868 return \%s2r;
1869}
1870
905f8b7d
EW
1871sub working_head_info {
1872 my ($head, $refs) = @_;
83cf21f9 1873 my @args = qw/rev-list --first-parent --pretty=medium/;
05b4df31 1874 my ($fh, $ctx) = command_output_pipe(@args, $head);
3dfab993 1875 my $hash;
40cb8f8f 1876 my %max;
3dfab993
SV
1877 while (<$fh>) {
1878 if ( m{^commit ($::sha1)$} ) {
1879 unshift @$refs, $hash if $hash and $refs;
1880 $hash = $1;
1881 next;
1882 }
1883 next unless s{^\s*(git-svn-id:)}{$1};
1884 my ($url, $rev, $uuid) = extract_metadata($_);
13c823fb 1885 if (defined $url && defined $rev) {
40cb8f8f 1886 next if $max{$url} and $max{$url} < $rev;
13c823fb 1887 if (my $gs = Git::SVN->find_by_url($url)) {
63c56022 1888 my $c = $gs->rev_map_get($rev, $uuid);
b03c7a63 1889 if ($c && $c eq $hash) {
13c823fb
EW
1890 close $fh; # break the pipe
1891 return ($url, $rev, $uuid, $gs);
40cb8f8f 1892 } else {
060610c5 1893 $max{$url} ||= $gs->rev_map_max;
13c823fb
EW
1894 }
1895 }
1896 }
905f8b7d 1897 }
13c823fb
EW
1898 command_close_pipe($fh, $ctx);
1899 (undef, undef, undef, undef);
905f8b7d
EW
1900}
1901
733a65aa
EW
1902sub read_commit_parents {
1903 my ($parents, $c) = @_;
7b02b85a
EW
1904 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1905 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1906 @{$parents->{$c}} = split(/ /, $p);
733a65aa
EW
1907}
1908
1909sub linearize_history {
1910 my ($gs, $refs) = @_;
1911 my %parents;
1912 foreach my $c (@$refs) {
1913 read_commit_parents(\%parents, $c);
1914 }
1915
1916 my @linear_refs;
1917 my %skip = ();
1918 my $last_svn_commit = $gs->last_commit;
1919 foreach my $c (reverse @$refs) {
1920 next if $c eq $last_svn_commit;
1921 last if $skip{$c};
1922
1923 unshift @linear_refs, $c;
1924 $skip{$c} = 1;
1925
1926 # we only want the first parent to diff against for linear
1927 # history, we save the rest to inject when we finalize the
1928 # svn commit
1929 my $fp_a = verify_ref("$c~1");
1930 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1931 if (!$fp_a || !$fp_b) {
1932 die "Commit $c\n",
1933 "has no parent commit, and therefore ",
1934 "nothing to diff against.\n",
1935 "You should be working from a repository ",
1936 "originally created by git-svn\n";
1937 }
1938 if ($fp_a ne $fp_b) {
1939 die "$c~1 = $fp_a, however parsing commit $c ",
1940 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1941 }
1942
1943 foreach my $p (@{$parents{$c}}) {
1944 $skip{$p} = 1;
1945 }
1946 }
1947 (\@linear_refs, \%parents);
1948}
1949
e6fefa92
DK
1950sub find_file_type_and_diff_status {
1951 my ($path) = @_;
107cee50 1952 return ('dir', '') if $path eq '';
e6fefa92
DK
1953
1954 my $diff_output =
1955 command_oneline(qw(diff --cached --name-status --), $path) || "";
1956 my $diff_status = (split(' ', $diff_output))[0] || "";
1957
1958 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1959
1960 return (undef, undef) if !$diff_status && !$ls_tree;
1961
1962 if ($diff_status eq "A") {
1963 return ("link", $diff_status) if -l $path;
1964 return ("dir", $diff_status) if -d $path;
1965 return ("file", $diff_status);
1966 }
1967
1968 my $mode = (split(' ', $ls_tree))[0] || "";
1969
1970 return ("link", $diff_status) if $mode eq "120000";
1971 return ("dir", $diff_status) if $mode eq "040000";
1972 return ("file", $diff_status);
1973}
1974
b2b3ada7
DK
1975sub md5sum {
1976 my $arg = shift;
1977 my $ref = ref $arg;
1978 my $md5 = Digest::MD5->new();
0b19138b 1979 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
b2b3ada7
DK
1980 $md5->addfile($arg) or croak $!;
1981 } elsif ($ref eq 'SCALAR') {
1982 $md5->add($$arg) or croak $!;
1983 } elsif (!$ref) {
1984 $md5->add($arg) or croak $!;
1985 } else {
c2768fa1 1986 fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
b2b3ada7
DK
1987 }
1988 return $md5->hexdigest();
1989}
1990
2da9ee08 1991sub gc_directory {
c2768fa1 1992 if (can_compress() && -f $_ && basename($_) eq "unhandled.log") {
2da9ee08
RZ
1993 my $out_filename = $_ . ".gz";
1994 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
1995 binmode $in_fh;
1996 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
1997 die "Unable to open $out_filename: $!\n";
1998
1999 my $res;
2000 while ($res = sysread($in_fh, my $str, 1024)) {
2001 $gz->gzwrite($str) or
2002 die "Unable to write: ".$gz->gzerror()."!\n";
2003 }
2004 unlink $_ or die "unlink $File::Find::name: $!\n";
2005 } elsif (-f $_ && basename($_) eq "index") {
2006 unlink $_ or die "unlink $_: $!\n";
2007 }
2008}
2009
3397f9df
EW
2010__END__
2011
2012Data structures:
2013
4bb9ed04
EW
2014
2015$remotes = { # returned by read_all_remotes()
2016 'svn' => {
2017 # svn-remote.svn.url=https://svn.musicpd.org
2018 url => 'https://svn.musicpd.org',
2019 # svn-remote.svn.fetch=mpd/trunk:trunk
2020 fetch => {
2021 'mpd/trunk' => 'trunk',
2022 },
2023 # svn-remote.svn.tags=mpd/tags/*:tags/*
2024 tags => {
2025 path => {
2026 left => 'mpd/tags',
2027 right => '',
2028 regex => qr!mpd/tags/([^/]+)$!,
2029 glob => 'tags/*',
2030 },
2031 ref => {
2032 left => 'tags',
2033 right => '',
2034 regex => qr!tags/([^/]+)$!,
2035 glob => 'tags/*',
2036 },
2037 }
2038 }
2039};
2040
44320b9e 2041$log_entry hashref as returned by libsvn_log_entry()
3397f9df 2042{
44320b9e 2043 log => 'whitespace-formatted log entry
3397f9df
EW
2044', # trailing newline is preserved
2045 revision => '8', # integer
2046 date => '2004-02-24T17:01:44.108345Z', # commit date
2047 author => 'committer name'
2048};
2049
6e8548cc
EW
2050
2051# this is generated by generate_diff();
3397f9df
EW
2052@mods = array of diff-index line hashes, each element represents one line
2053 of diff-index output
2054
2055diff-index line ($m hash)
2056{
2057 mode_a => first column of diff-index output, no leading ':',
2058 mode_b => second column of diff-index output,
2059 sha1_b => sha1sum of the final blob,
ac8e0b91 2060 chg => change type [MCRADT],
3397f9df
EW
2061 file_a => original file name of a file (iff chg is 'C' or 'R')
2062 file_b => new/current file name of a file (any chg)
2063}
2064;
a5e0cedc 2065
a00439ac
EW
2066# retval of read_url_paths{,_all}();
2067$l_map = {
2068 # repository root url
2069 'https://svn.musicpd.org' => {
2070 # repository path # GIT_SVN_ID
2071 'mpd/trunk' => 'trunk',
2072 'mpd/tags/0.11.5' => 'tags/0.11.5',
2073 },
2074}
2075
a5e0cedc
EW
2076Notes:
2077 I don't trust the each() function on unless I created %hash myself
2078 because the internal iterator may not have started at base.