Commit | Line | Data |
---|---|---|
0754e089 | 1 | #!/usr/bin/perl |
551ce28f EW |
2 | # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net> |
3 | # License: GPL v2 or later | |
d48b2841 | 4 | use 5.008; |
3397f9df EW |
5 | use warnings; |
6 | use strict; | |
7 | use 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 | |
15153451 BS |
13 | # From which subdir have we been invoked? |
14 | my $cmd_dir_prefix = eval { | |
15 | command_oneline([qw/rev-parse --show-prefix/], STDERR => 0) | |
16 | } || ''; | |
17 | ||
5253dc33 | 18 | my $git_dir_user_set = 1 if defined $ENV{GIT_DIR}; |
706587fc | 19 | $ENV{GIT_DIR} ||= '.git'; |
9fa00b65 | 20 | $Git::SVN::default_repo_id = 'svn'; |
8b8fc068 | 21 | $Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn'; |
6af1db44 | 22 | $Git::SVN::Ra::_log_window_size = 100; |
6b48829d | 23 | $Git::SVN::_minimize_url = 'unset'; |
13ccd6d4 | 24 | |
184892fb SS |
25 | if (! exists $ENV{SVN_SSH} && exists $ENV{GIT_SSH}) { |
26 | $ENV{SVN_SSH} = $ENV{GIT_SSH}; | |
27 | } | |
28 | ||
29 | if (exists $ENV{SVN_SSH} && $^O eq 'msys') { | |
30 | $ENV{SVN_SSH} =~ s/\\/\\\\/g; | |
31 | $ENV{SVN_SSH} =~ s/(.*)/"$1"/; | |
f3a87d92 K |
32 | } |
33 | ||
f8c9d1d2 | 34 | $Git::SVN::Log::TZ = $ENV{TZ}; |
3397f9df | 35 | $ENV{TZ} = 'UTC'; |
a00439ac | 36 | $| = 1; # unbuffer STDOUT |
3397f9df | 37 | |
207f1a75 | 38 | sub fatal (@) { print STDERR "@_\n"; exit 1 } |
6ade9bda RK |
39 | |
40 | # All SVN commands do it. Otherwise we may die on SIGPIPE when the remote | |
41 | # repository decides to close the connection which we expect to be kept alive. | |
42 | $SIG{PIPE} = 'IGNORE'; | |
43 | ||
f760c903 JH |
44 | # Given a dot separated version number, "subtract" it from |
45 | # the SVN::Core::VERSION; non-negaitive return means the SVN::Core | |
46 | # is at least at the version the caller asked for. | |
47 | sub compare_svn_version { | |
48 | my (@ours) = split(/\./, $SVN::Core::VERSION); | |
49 | my (@theirs) = split(/\./, $_[0]); | |
50 | my ($i, $diff); | |
51 | ||
52 | for ($i = 0; $i < @ours && $i < @theirs; $i++) { | |
53 | $diff = $ours[$i] - $theirs[$i]; | |
54 | return $diff if ($diff); | |
55 | } | |
56 | return 1 if ($i < @ours); | |
57 | return -1 if ($i < @theirs); | |
58 | return 0; | |
59 | } | |
60 | ||
d32fad2b | 61 | sub _req_svn { |
62 | require SVN::Core; # use()-ing this causes segfaults for me... *shrug* | |
63 | require SVN::Ra; | |
64 | require SVN::Delta; | |
f760c903 | 65 | if (::compare_svn_version('1.1.0') < 0) { |
d32fad2b | 66 | fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)"; |
67 | } | |
b9c85187 | 68 | } |
2da9ee08 | 69 | my $can_compress = eval { require Compress::Zlib; 1}; |
3397f9df | 70 | use Carp qw/croak/; |
8d7c4fad | 71 | use Digest::MD5; |
3397f9df EW |
72 | use IO::File qw//; |
73 | use File::Basename qw/dirname basename/; | |
74 | use File::Path qw/mkpath/; | |
36db1edd | 75 | use File::Spec; |
2da9ee08 | 76 | use File::Find; |
512b620b | 77 | use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/; |
968bdf1f | 78 | use IPC::Open3; |
336f1714 | 79 | use Git; |
8f9facfe | 80 | use Git::SVN::Editor qw//; |
a6180325 | 81 | use Git::SVN::Fetcher qw//; |
9f7ad147 | 82 | use Git::SVN::Ra qw//; |
c102f4cf | 83 | use Git::SVN::Prompt qw//; |
f5549afd | 84 | use Memoize; # core since 5.8.0, Jul 2002 |
a5e0cedc | 85 | |
336f1714 | 86 | BEGIN { |
c5f71ad0 SV |
87 | # import functions from Git into our packages, en masse |
88 | no strict 'refs'; | |
336f1714 | 89 | foreach (qw/command command_oneline command_noisy command_output_pipe |
6ea42032 BB |
90 | command_input_pipe command_close_pipe |
91 | command_bidi_pipe command_close_bidi_pipe/) { | |
8f9facfe | 92 | for my $package ( qw(Git::SVN::Migration Git::SVN::Log Git::SVN), |
c5f71ad0 SV |
93 | __PACKAGE__) { |
94 | *{"${package}::$_"} = \&{"Git::$_"}; | |
95 | } | |
336f1714 | 96 | } |
f5549afd JK |
97 | Memoize::memoize 'Git::config'; |
98 | Memoize::memoize 'Git::config_bool'; | |
336f1714 EW |
99 | } |
100 | ||
b9c85187 | 101 | my ($SVN); |
83e9940a | 102 | |
f8c9d1d2 EW |
103 | $sha1 = qr/[a-f\d]{40}/; |
104 | $sha1_short = qr/[a-f\d]{4,40}/; | |
44320b9e | 105 | my ($_stdin, $_help, $_edit, |
62244069 | 106 | $_message, $_file, $_branch_dest, |
d05d72e0 | 107 | $_template, $_shared, |
c2abd83f | 108 | $_version, $_fetch_all, $_no_rebase, $_fetch_parent, |
b64e1f58 | 109 | $_merge, $_strategy, $_preserve_merges, $_dry_run, $_local, |
4be40381 | 110 | $_prefix, $_no_checkout, $_url, $_verbose, |
afd7f1eb | 111 | $_git_format, $_commit_url, $_tag, $_merge_info, $_interactive); |
0bed5eaa | 112 | $Git::SVN::_follow_parent = 1; |
72827aa4 | 113 | $Git::SVN::Fetcher::_placeholder_filename = ".gitignore"; |
49750f30 | 114 | $_q ||= 0; |
706587fc EW |
115 | my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username, |
116 | 'config-dir=s' => \$Git::SVN::Ra::config_dir, | |
edc662f9 | 117 | 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache, |
72827aa4 | 118 | 'ignore-paths=s' => \$Git::SVN::Fetcher::_ignore_regex, |
cdb51a13 | 119 | 'ignore-refs=s' => \$Git::SVN::Ra::_ignore_refs_regex ); |
0bed5eaa | 120 | my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent, |
dc5869c0 | 121 | 'authors-file|A=s' => \$_authors, |
36db1edd | 122 | 'authors-prog=s' => \$_authors_prog, |
ecc712dd | 123 | 'repack:i' => \$Git::SVN::_repack, |
97ae0911 EW |
124 | 'noMetadata' => \$Git::SVN::_no_metadata, |
125 | 'useSvmProps' => \$Git::SVN::_use_svm_props, | |
62e349d2 | 126 | 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props, |
6af1db44 | 127 | 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size, |
1e889ef3 | 128 | 'no-checkout' => \$_no_checkout, |
49750f30 | 129 | 'quiet|q+' => \$_q, |
ecc712dd EW |
130 | 'repack-flags|repack-args|repack-opts=s' => |
131 | \$Git::SVN::_repack_flags, | |
70ae04e4 | 132 | 'use-log-author' => \$Git::SVN::_use_log_author, |
6aa9ba14 | 133 | 'add-author-from' => \$Git::SVN::_add_author_from, |
e82f0d73 | 134 | 'localtime' => \$Git::SVN::_localtime, |
706587fc | 135 | %remote_opts ); |
36f5b1f0 | 136 | |
62244069 | 137 | my ($_trunk, @_tags, @_branches, $_stdlayout); |
0dfaf0a4 | 138 | my %icv; |
dadc6d2a | 139 | my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared, |
62244069 MB |
140 | 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags, |
141 | 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix, | |
8f728fb9 | 142 | 'stdlayout|s' => \$_stdlayout, |
6b48829d | 143 | 'minimize-url|m!' => \$Git::SVN::_minimize_url, |
0dfaf0a4 EW |
144 | 'no-metadata' => sub { $icv{noMetadata} = 1 }, |
145 | 'use-svm-props' => sub { $icv{useSvmProps} = 1 }, | |
146 | 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 }, | |
147 | 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] }, | |
3e18ce1a | 148 | 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] }, |
dadc6d2a | 149 | %remote_opts ); |
27e9fb8d | 150 | my %cmt_opts = ( 'edit|e' => \$_edit, |
72827aa4 JN |
151 | 'rmdir' => \$Git::SVN::Editor::_rmdir, |
152 | 'find-copies-harder' => \$Git::SVN::Editor::_find_copies_harder, | |
153 | 'l=i' => \$Git::SVN::Editor::_rename_limit, | |
154 | 'copy-similarity|C=i'=> \$Git::SVN::Editor::_cp_similarity | |
27e9fb8d | 155 | ); |
9d55b41a | 156 | |
3397f9df | 157 | my %cmd = ( |
2a3240be | 158 | fetch => [ \&cmd_fetch, "Download new revisions from SVN", |
e98671e5 | 159 | { 'revision|r=s' => \$_revision, |
905f8b7d | 160 | 'fetch-all|all' => \$_fetch_all, |
c2abd83f | 161 | 'parent|p' => \$_fetch_parent, |
e98671e5 | 162 | %fc_opts } ], |
0425ea90 EW |
163 | clone => [ \&cmd_clone, "Initialize and fetch revisions", |
164 | { 'revision|r=s' => \$_revision, | |
40a1530c | 165 | 'preserve-empty-dirs' => |
72827aa4 | 166 | \$Git::SVN::Fetcher::_preserve_empty_dirs, |
40a1530c | 167 | 'placeholder-filename=s' => |
72827aa4 | 168 | \$Git::SVN::Fetcher::_placeholder_filename, |
0425ea90 | 169 | %fc_opts, %init_opts } ], |
d2866f9e | 170 | init => [ \&cmd_init, "Initialize a repo for tracking" . |
f8ab6b73 | 171 | " (requires URL argument)", |
9d55b41a | 172 | \%init_opts ], |
dadc6d2a EW |
173 | 'multi-init' => [ \&cmd_multi_init, |
174 | "Deprecated alias for ". | |
175 | "'$0 init -T<trunk> -b<branches> -t<tags>'", | |
176 | \%init_opts ], | |
d7ad3bed EW |
177 | dcommit => [ \&cmd_dcommit, |
178 | 'Commit several diffs to merge with upstream', | |
3289e86e EW |
179 | { 'merge|m|M' => \$_merge, |
180 | 'strategy|s=s' => \$_strategy, | |
905f8b7d | 181 | 'verbose|v' => \$_verbose, |
3289e86e | 182 | 'dry-run|n' => \$_dry_run, |
905f8b7d | 183 | 'fetch-all|all' => \$_fetch_all, |
ba24e745 EW |
184 | 'commit-url=s' => \$_commit_url, |
185 | 'revision|r=i' => \$_revision, | |
171af110 | 186 | 'no-rebase' => \$_no_rebase, |
6abd9332 | 187 | 'mergeinfo=s' => \$_merge_info, |
afd7f1eb | 188 | 'interactive|i' => \$_interactive, |
4b155223 | 189 | %cmt_opts, %fc_opts } ], |
5de70efb FR |
190 | branch => [ \&cmd_branch, |
191 | 'Create a branch in the SVN repository', | |
192 | { 'message|m=s' => \$_message, | |
62244069 | 193 | 'destination|d=s' => \$_branch_dest, |
5de70efb | 194 | 'dry-run|n' => \$_dry_run, |
6594f0b7 IM |
195 | 'tag|t' => \$_tag, |
196 | 'username=s' => \$Git::SVN::Prompt::_username, | |
197 | 'commit-url=s' => \$_commit_url } ], | |
5de70efb FR |
198 | tag => [ sub { $_tag = 1; cmd_branch(@_) }, |
199 | 'Create a tag in the SVN repository', | |
200 | { 'message|m=s' => \$_message, | |
62244069 | 201 | 'destination|d=s' => \$_branch_dest, |
6594f0b7 IM |
202 | 'dry-run|n' => \$_dry_run, |
203 | 'username=s' => \$Git::SVN::Prompt::_username, | |
204 | 'commit-url=s' => \$_commit_url } ], | |
1ce255dc EW |
205 | 'set-tree' => [ \&cmd_set_tree, |
206 | "Set an SVN repository to a git tree-ish", | |
e84dc6df | 207 | { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ], |
d05ddec5 BS |
208 | 'create-ignore' => [ \&cmd_create_ignore, |
209 | 'Create a .gitignore per svn:ignore', | |
210 | { 'revision|r=i' => \$_revision | |
211 | } ], | |
6111b934 EW |
212 | 'mkdirs' => [ \&cmd_mkdirs , |
213 | "recreate empty directories after a checkout", | |
214 | { 'revision|r=i' => \$_revision } ], | |
15153451 BS |
215 | 'propget' => [ \&cmd_propget, |
216 | 'Print the value of a property on a file or directory', | |
217 | { 'revision|r=i' => \$_revision } ], | |
51e057cf BS |
218 | 'proplist' => [ \&cmd_proplist, |
219 | 'List all properties of a file or directory', | |
220 | { 'revision|r=i' => \$_revision } ], | |
5969cbe1 | 221 | 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings", |
4dbfe2e9 | 222 | { 'revision|r=i' => \$_revision |
05b4df31 | 223 | } ], |
2d879792 VK |
224 | 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings", |
225 | { 'revision|r=i' => \$_revision | |
226 | } ], | |
1c8443b0 | 227 | 'multi-fetch' => [ \&cmd_multi_fetch, |
e98671e5 EW |
228 | "Deprecated alias for $0 fetch --all", |
229 | { 'revision|r=s' => \$_revision, %fc_opts } ], | |
706587fc EW |
230 | 'migrate' => [ sub { }, |
231 | # no-op, we automatically run this anyways, | |
706587fc EW |
232 | 'Migrate configuration/metadata/layout from |
233 | previous versions of git-svn', | |
a836a0e1 EW |
234 | { 'minimize' => \$Git::SVN::Migration::_minimize, |
235 | %remote_opts } ], | |
f8c9d1d2 EW |
236 | 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs', |
237 | { 'limit=i' => \$Git::SVN::Log::limit, | |
79bb8d88 | 238 | 'revision|r=s' => \$_revision, |
f8c9d1d2 EW |
239 | 'verbose|v' => \$Git::SVN::Log::verbose, |
240 | 'incremental' => \$Git::SVN::Log::incremental, | |
241 | 'oneline' => \$Git::SVN::Log::oneline, | |
242 | 'show-commit' => \$Git::SVN::Log::show_commit, | |
243 | 'non-recursive' => \$Git::SVN::Log::non_recursive, | |
79bb8d88 | 244 | 'authors-file|A=s' => \$_authors, |
f8c9d1d2 | 245 | 'color' => \$Git::SVN::Log::color, |
4dbfe2e9 | 246 | 'pager=s' => \$Git::SVN::Log::pager |
79bb8d88 | 247 | } ], |
222566e4 EW |
248 | 'find-rev' => [ \&cmd_find_rev, |
249 | "Translate between SVN revision numbers and tree-ish", | |
4dbfe2e9 | 250 | {} ], |
905f8b7d EW |
251 | 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory", |
252 | { 'merge|m|M' => \$_merge, | |
253 | 'verbose|v' => \$_verbose, | |
254 | 'strategy|s=s' => \$_strategy, | |
dee41f3e | 255 | 'local|l' => \$_local, |
905f8b7d | 256 | 'fetch-all|all' => \$_fetch_all, |
7d45e146 | 257 | 'dry-run|n' => \$_dry_run, |
b64e1f58 | 258 | 'preserve-merges|p' => \$_preserve_merges, |
905f8b7d | 259 | %fc_opts } ], |
44320b9e EW |
260 | 'commit-diff' => [ \&cmd_commit_diff, |
261 | 'Commit a diff between two trees', | |
27e9fb8d EW |
262 | { 'message|m=s' => \$_message, |
263 | 'file|F=s' => \$_file, | |
45bf473a | 264 | 'revision|r=s' => \$_revision, |
27e9fb8d | 265 | %cmt_opts } ], |
e6fefa92 DK |
266 | 'info' => [ \&cmd_info, |
267 | "Show info about the latest SVN revision | |
268 | on the current branch", | |
8b014d71 | 269 | { 'url' => \$_url, } ], |
6fb5375e TS |
270 | 'blame' => [ \&Git::SVN::Log::cmd_blame, |
271 | "Show what revision and author last modified each line of a file", | |
4be40381 | 272 | { 'git-format' => \$_git_format } ], |
195643f2 BJ |
273 | 'reset' => [ \&cmd_reset, |
274 | "Undo fetches back to the specified SVN revision", | |
275 | { 'revision|r=s' => \$_revision, | |
276 | 'parent|p' => \$_fetch_parent } ], | |
2da9ee08 RZ |
277 | 'gc' => [ \&cmd_gc, |
278 | "Compress unhandled.log files in .git/svn and remove " . | |
279 | "index files in .git/svn", | |
280 | {} ], | |
3397f9df | 281 | ); |
9d55b41a | 282 | |
afd7f1eb FH |
283 | use Term::ReadLine; |
284 | package FakeTerm; | |
285 | sub new { | |
286 | my ($class, $reason) = @_; | |
287 | return bless \$reason, shift; | |
288 | } | |
289 | sub readline { | |
290 | my $self = shift; | |
291 | die "Cannot use readline on FakeTerm: $$self"; | |
292 | } | |
293 | package main; | |
294 | ||
295 | my $term = eval { | |
296 | $ENV{"GIT_SVN_NOTTY"} | |
297 | ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT | |
298 | : new Term::ReadLine 'git-svn'; | |
299 | }; | |
300 | if ($@) { | |
301 | $term = new FakeTerm "$@: going non-interactive"; | |
302 | } | |
303 | ||
3397f9df EW |
304 | my $cmd; |
305 | for (my $i = 0; $i < @ARGV; $i++) { | |
306 | if (defined $cmd{$ARGV[$i]}) { | |
307 | $cmd = $ARGV[$i]; | |
308 | splice @ARGV, $i, 1; | |
309 | last; | |
9a8c92ac BJ |
310 | } elsif ($ARGV[$i] eq 'help') { |
311 | $cmd = $ARGV[$i+1]; | |
312 | usage(0); | |
3397f9df EW |
313 | } |
314 | }; | |
315 | ||
540424b2 EW |
316 | # make sure we're always running at the top-level working directory |
317 | unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) { | |
5253dc33 EW |
318 | unless (-d $ENV{GIT_DIR}) { |
319 | if ($git_dir_user_set) { | |
320 | die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ", | |
321 | "but it is not a directory\n"; | |
322 | } | |
323 | my $git_dir = delete $ENV{GIT_DIR}; | |
fe4003f6 DM |
324 | my $cdup = undef; |
325 | git_cmd_try { | |
326 | $cdup = command_oneline(qw/rev-parse --show-cdup/); | |
327 | $git_dir = '.' unless ($cdup); | |
328 | chomp $cdup if ($cdup); | |
329 | $cdup = "." unless ($cdup && length $cdup); | |
330 | } "Already at toplevel, but $git_dir not found\n"; | |
5253dc33 EW |
331 | chdir $cdup or die "Unable to chdir up to '$cdup'\n"; |
332 | unless (-d $git_dir) { | |
333 | die "$git_dir still not found after going to ", | |
334 | "'$cdup'\n"; | |
335 | } | |
336 | $ENV{GIT_DIR} = $git_dir; | |
337 | } | |
ffe256f9 | 338 | $_repository = Git->repository(Repository => $ENV{GIT_DIR}); |
5253dc33 | 339 | } |
f4dd334b GH |
340 | |
341 | my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd); | |
342 | ||
1a30582b | 343 | read_git_config(\%opts); |
222566e4 EW |
344 | if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) { |
345 | Getopt::Long::Configure('pass_through'); | |
346 | } | |
87182b17 | 347 | my $rv = GetOptions(%opts, 'h|H' => \$_help, 'version|V' => \$_version, |
f4dd334b GH |
348 | 'minimize-connections' => \$Git::SVN::Migration::_minimize, |
349 | 'id|i=s' => \$Git::SVN::default_ref_id, | |
350 | 'svn-remote|remote|R=s' => sub { | |
351 | $Git::SVN::no_reuse_existing = 1; | |
352 | $Git::SVN::default_repo_id = $_[1] }); | |
353 | exit 1 if (!$rv && $cmd && $cmd ne 'log'); | |
354 | ||
355 | usage(0) if $_help; | |
356 | version() if $_version; | |
357 | usage(1) unless defined $cmd; | |
358 | load_authors() if $_authors; | |
36db1edd ML |
359 | if (defined $_authors_prog) { |
360 | $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'"; | |
361 | } | |
f4dd334b | 362 | |
0425ea90 | 363 | unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) { |
706587fc EW |
364 | Git::SVN::Migration::migration_check(); |
365 | } | |
ecc712dd | 366 | Git::SVN::init_vars(); |
b805b44a EW |
367 | eval { |
368 | Git::SVN::verify_remotes_sanity(); | |
369 | $cmd{$cmd}->[0]->(@ARGV); | |
370 | }; | |
371 | fatal $@ if $@; | |
1e889ef3 | 372 | post_fetch_checkout(); |
3397f9df EW |
373 | exit 0; |
374 | ||
375 | ####################### primary functions ###################### | |
376 | sub usage { | |
377 | my $exit = shift || 0; | |
378 | my $fd = $exit ? \*STDERR : \*STDOUT; | |
379 | print $fd <<""; | |
380 | git-svn - bidirectional operations between a single Subversion tree and git | |
1b1dd23f | 381 | Usage: git svn <command> [options] [arguments]\n |
448c81b4 EW |
382 | |
383 | print $fd "Available commands:\n" unless $cmd; | |
3397f9df EW |
384 | |
385 | foreach (sort keys %cmd) { | |
448c81b4 | 386 | next if $cmd && $cmd ne $_; |
a836a0e1 | 387 | next if /^multi-/; # don't show deprecated commands |
b203b769 | 388 | print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n"; |
aa807bc2 | 389 | foreach (sort keys %{$cmd{$_}->[2]}) { |
512b620b EW |
390 | # mixed-case options are for .git/config only |
391 | next if /[A-Z]/ && /^[a-z]+$/i; | |
448c81b4 | 392 | # prints out arguments as they should be passed: |
b8c92cad | 393 | my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : ''; |
b203b769 | 394 | print $fd ' ' x 21, join(', ', map { length $_ > 1 ? |
448c81b4 EW |
395 | "--$_" : "-$_" } |
396 | split /\|/,$_)," $x\n"; | |
397 | } | |
3397f9df EW |
398 | } |
399 | print $fd <<""; | |
448c81b4 EW |
400 | \nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an |
401 | arbitrary identifier if you're tracking multiple SVN branches/repositories in | |
402 | one git repository and want to keep them separate. See git-svn(1) for more | |
403 | information. | |
3397f9df EW |
404 | |
405 | exit $exit; | |
406 | } | |
407 | ||
551ce28f | 408 | sub version { |
b0779246 | 409 | ::_req_svn(); |
7d60ab2c | 410 | print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n"; |
551ce28f EW |
411 | exit 0; |
412 | } | |
413 | ||
afd7f1eb FH |
414 | sub ask { |
415 | my ($prompt, %arg) = @_; | |
416 | my $valid_re = $arg{valid_re}; | |
417 | my $default = $arg{default}; | |
418 | my $resp; | |
419 | my $i = 0; | |
420 | ||
421 | if ( !( defined($term->IN) | |
422 | && defined( fileno($term->IN) ) | |
423 | && defined( $term->OUT ) | |
424 | && defined( fileno($term->OUT) ) ) ){ | |
425 | return defined($default) ? $default : undef; | |
426 | } | |
427 | ||
428 | while ($i++ < 10) { | |
429 | $resp = $term->readline($prompt); | |
430 | if (!defined $resp) { # EOF | |
431 | print "\n"; | |
432 | return defined $default ? $default : undef; | |
433 | } | |
434 | if ($resp eq '' and defined $default) { | |
435 | return $default; | |
436 | } | |
437 | if (!defined $valid_re or $resp =~ /$valid_re/) { | |
438 | return $resp; | |
439 | } | |
440 | } | |
441 | return undef; | |
442 | } | |
443 | ||
8164b652 EW |
444 | sub do_git_init_db { |
445 | unless (-d $ENV{GIT_DIR}) { | |
446 | my @init_db = ('init'); | |
447 | push @init_db, "--template=$_template" if defined $_template; | |
dadc6d2a EW |
448 | if (defined $_shared) { |
449 | if ($_shared =~ /[a-z]/) { | |
450 | push @init_db, "--shared=$_shared"; | |
451 | } else { | |
452 | push @init_db, "--shared"; | |
453 | } | |
454 | } | |
8164b652 | 455 | command_noisy(@init_db); |
ffe256f9 | 456 | $_repository = Git->repository(Repository => ".git"); |
8164b652 | 457 | } |
0dfaf0a4 EW |
458 | my $set; |
459 | my $pfx = "svn-remote.$Git::SVN::default_repo_id"; | |
460 | foreach my $i (keys %icv) { | |
461 | die "'$set' and '$i' cannot both be set\n" if $set; | |
462 | next unless defined $icv{$i}; | |
463 | command_noisy('config', "$pfx.$i", $icv{$i}); | |
464 | $set = $i; | |
465 | } | |
72827aa4 | 466 | my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex; |
cdb51a13 MO |
467 | command_noisy('config', "$pfx.ignore-paths", $$ignore_paths_regex) |
468 | if defined $$ignore_paths_regex; | |
469 | my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex; | |
470 | command_noisy('config', "$pfx.ignore-refs", $$ignore_refs_regex) | |
471 | if defined $$ignore_refs_regex; | |
40a1530c | 472 | |
72827aa4 JN |
473 | if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) { |
474 | my $fname = \$Git::SVN::Fetcher::_placeholder_filename; | |
40a1530c RC |
475 | command_noisy('config', "$pfx.preserve-empty-dirs", 'true'); |
476 | command_noisy('config', "$pfx.placeholder-filename", $$fname); | |
477 | } | |
8164b652 EW |
478 | } |
479 | ||
dadc6d2a EW |
480 | sub init_subdir { |
481 | my $repo_path = shift or return; | |
482 | mkpath([$repo_path]) unless -d $repo_path; | |
483 | chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n"; | |
f30603fc | 484 | $ENV{GIT_DIR} = '.git'; |
ffe256f9 | 485 | $_repository = Git->repository(Repository => $ENV{GIT_DIR}); |
dadc6d2a EW |
486 | } |
487 | ||
0425ea90 EW |
488 | sub cmd_clone { |
489 | my ($url, $path) = @_; | |
490 | if (!defined $path && | |
62244069 | 491 | (defined $_trunk || @_branches || @_tags || |
8f728fb9 | 492 | defined $_stdlayout) && |
0425ea90 EW |
493 | $url !~ m#^[a-z\+]+://#) { |
494 | $path = $url; | |
495 | } | |
0425ea90 | 496 | $path = basename($url) if !defined $path || !length $path; |
2bc35dcb | 497 | my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : ""; |
f30603fc | 498 | cmd_init($url, $path); |
2bc35dcb AV |
499 | command_oneline('config', 'svn.authorsfile', $authors_absolute) |
500 | if $_authors; | |
f5841509 | 501 | Git::SVN::fetch_all($Git::SVN::default_repo_id); |
0425ea90 EW |
502 | } |
503 | ||
d2866f9e | 504 | sub cmd_init { |
8f728fb9 | 505 | if (defined $_stdlayout) { |
506 | $_trunk = 'trunk' if (!defined $_trunk); | |
62244069 MB |
507 | @_tags = 'tags' if (! @_tags); |
508 | @_branches = 'branches' if (! @_branches); | |
8f728fb9 | 509 | } |
62244069 | 510 | if (defined $_trunk || @_branches || @_tags) { |
dadc6d2a | 511 | return cmd_multi_init(@_); |
03e0ea87 | 512 | } |
dadc6d2a EW |
513 | my $url = shift or die "SVN repository location required ", |
514 | "as a command-line argument\n"; | |
50ff2366 | 515 | $url = canonicalize_url($url); |
dadc6d2a | 516 | init_subdir(@_); |
8164b652 | 517 | do_git_init_db(); |
03e0ea87 | 518 | |
6b48829d EW |
519 | if ($Git::SVN::_minimize_url eq 'unset') { |
520 | $Git::SVN::_minimize_url = 0; | |
521 | } | |
522 | ||
706587fc | 523 | Git::SVN->init($url); |
3397f9df EW |
524 | } |
525 | ||
2a3240be | 526 | sub cmd_fetch { |
e98671e5 EW |
527 | if (grep /^\d+=./, @_) { |
528 | die "'<rev>=<commit>' fetch arguments are ", | |
529 | "no longer supported.\n"; | |
07a1c950 | 530 | } |
e98671e5 EW |
531 | my ($remote) = @_; |
532 | if (@_ > 1) { | |
c2abd83f | 533 | die "Usage: $0 fetch [--all] [--parent] [svn-remote]\n"; |
e98671e5 | 534 | } |
4d0157d6 | 535 | $Git::SVN::no_reuse_existing = undef; |
c2abd83f JM |
536 | if ($_fetch_parent) { |
537 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); | |
538 | unless ($gs) { | |
539 | die "Unable to determine upstream SVN information from ", | |
540 | "working tree history\n"; | |
541 | } | |
542 | # just fetch, don't checkout. | |
543 | $_no_checkout = 'true'; | |
544 | $_fetch_all ? $gs->fetch_all : $gs->fetch; | |
545 | } elsif ($_fetch_all) { | |
e98671e5 EW |
546 | cmd_multi_fetch(); |
547 | } else { | |
c2abd83f | 548 | $remote ||= $Git::SVN::default_repo_id; |
e98671e5 | 549 | Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes()); |
1c8443b0 | 550 | } |
2a3240be EW |
551 | } |
552 | ||
1ce255dc | 553 | sub cmd_set_tree { |
3397f9df EW |
554 | my (@commits) = @_; |
555 | if ($_stdin || !@commits) { | |
556 | print "Reading from stdin...\n"; | |
557 | @commits = (); | |
558 | while (<STDIN>) { | |
1ca72aef | 559 | if (/\b($sha1_short)\b/o) { |
3397f9df EW |
560 | unshift @commits, $1; |
561 | } | |
562 | } | |
563 | } | |
564 | my @revs; | |
8de010ad | 565 | foreach my $c (@commits) { |
aef4e921 | 566 | my @tmp = command('rev-parse',$c); |
8de010ad EW |
567 | if (scalar @tmp == 1) { |
568 | push @revs, $tmp[0]; | |
569 | } elsif (scalar @tmp > 1) { | |
aef4e921 | 570 | push @revs, reverse(command('rev-list',@tmp)); |
8de010ad | 571 | } else { |
207f1a75 | 572 | fatal "Failed to rev-parse $c"; |
8de010ad | 573 | } |
3397f9df | 574 | } |
1ce255dc EW |
575 | my $gs = Git::SVN->new; |
576 | my ($r_last, $cmt_last) = $gs->last_rev_commit; | |
577 | $gs->fetch; | |
97f6987a | 578 | if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) { |
1ce255dc EW |
579 | fatal "There are new revisions that were fetched ", |
580 | "and need to be merged (or acknowledged) ", | |
581 | "before committing.\nlast rev: $r_last\n", | |
207f1a75 | 582 | " current: $gs->{last_rev}"; |
a5e0cedc | 583 | } |
1ce255dc EW |
584 | $gs->set_tree($_) foreach @revs; |
585 | print "Done committing ",scalar @revs," revisions to SVN\n"; | |
3157dd9e | 586 | unlink $gs->{index}; |
a5e0cedc | 587 | } |
8f22562c | 588 | |
1e5814f3 BJ |
589 | sub split_merge_info_range { |
590 | my ($range) = @_; | |
591 | if ($range =~ /(\d+)-(\d+)/) { | |
592 | return (int($1), int($2)); | |
593 | } else { | |
594 | return (int($range), int($range)); | |
595 | } | |
596 | } | |
597 | ||
598 | sub combine_ranges { | |
599 | my ($in) = @_; | |
600 | ||
601 | my @fnums = (); | |
602 | my @arr = split(/,/, $in); | |
603 | for my $element (@arr) { | |
604 | my ($start, $end) = split_merge_info_range($element); | |
605 | push @fnums, $start; | |
606 | } | |
607 | ||
608 | my @sorted = @arr [ sort { | |
609 | $fnums[$a] <=> $fnums[$b] | |
610 | } 0..$#arr ]; | |
611 | ||
612 | my @return = (); | |
613 | my $last = -1; | |
614 | my $first = -1; | |
615 | for my $element (@sorted) { | |
616 | my ($start, $end) = split_merge_info_range($element); | |
617 | ||
618 | if ($last == -1) { | |
619 | $first = $start; | |
620 | $last = $end; | |
621 | next; | |
622 | } | |
623 | if ($start <= $last+1) { | |
624 | if ($end > $last) { | |
625 | $last = $end; | |
626 | } | |
627 | next; | |
628 | } | |
629 | if ($first == $last) { | |
630 | push @return, "$first"; | |
631 | } else { | |
632 | push @return, "$first-$last"; | |
633 | } | |
634 | $first = $start; | |
635 | $last = $end; | |
636 | } | |
637 | ||
638 | if ($first != -1) { | |
639 | if ($first == $last) { | |
640 | push @return, "$first"; | |
641 | } else { | |
642 | push @return, "$first-$last"; | |
643 | } | |
644 | } | |
645 | ||
646 | return join(',', @return); | |
647 | } | |
648 | ||
649 | sub merge_revs_into_hash { | |
650 | my ($hash, $minfo) = @_; | |
651 | my @lines = split(' ', $minfo); | |
652 | ||
653 | for my $line (@lines) { | |
654 | my ($branchpath, $revs) = split(/:/, $line); | |
655 | ||
656 | if (exists($hash->{$branchpath})) { | |
657 | # Merge the two revision sets | |
658 | my $combined = "$hash->{$branchpath},$revs"; | |
659 | $hash->{$branchpath} = combine_ranges($combined); | |
660 | } else { | |
661 | # Just do range combining for consolidation | |
662 | $hash->{$branchpath} = combine_ranges($revs); | |
663 | } | |
664 | } | |
665 | } | |
666 | ||
667 | sub merge_merge_info { | |
668 | my ($mergeinfo_one, $mergeinfo_two) = @_; | |
669 | my %result_hash = (); | |
670 | ||
671 | merge_revs_into_hash(\%result_hash, $mergeinfo_one); | |
672 | merge_revs_into_hash(\%result_hash, $mergeinfo_two); | |
673 | ||
674 | my $result = ''; | |
675 | # Sort below is for consistency's sake | |
676 | for my $branchname (sort keys(%result_hash)) { | |
677 | my $revlist = $result_hash{$branchname}; | |
678 | $result .= "$branchname:$revlist\n" | |
679 | } | |
680 | return $result; | |
681 | } | |
682 | ||
683 | sub populate_merge_info { | |
684 | my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_; | |
685 | ||
686 | my %parentshash; | |
687 | read_commit_parents(\%parentshash, $d); | |
688 | my @parents = @{$parentshash{$d}}; | |
689 | if ($#parents > 0) { | |
690 | # Merge commit | |
691 | my $all_parents_ok = 1; | |
692 | my $aggregate_mergeinfo = ''; | |
693 | my $rooturl = $gs->repos_root; | |
694 | ||
695 | if (defined($rewritten_parent)) { | |
696 | # Replace first parent with newly-rewritten version | |
697 | shift @parents; | |
698 | unshift @parents, $rewritten_parent; | |
699 | } | |
700 | ||
701 | foreach my $parent (@parents) { | |
702 | my ($branchurl, $svnrev, $paruuid) = | |
703 | cmt_metadata($parent); | |
704 | ||
705 | unless (defined($svnrev)) { | |
706 | # Should have been caught be preflight check | |
707 | fatal "merge commit $d has ancestor $parent, but that change " | |
708 | ."does not have git-svn metadata!"; | |
709 | } | |
0e7e30f5 | 710 | unless ($branchurl =~ /^\Q$rooturl\E(.*)/) { |
1e5814f3 BJ |
711 | fatal "commit $parent git-svn metadata changed mid-run!"; |
712 | } | |
713 | my $branchpath = $1; | |
714 | ||
715 | my $ra = Git::SVN::Ra->new($branchurl); | |
716 | my (undef, undef, $props) = | |
717 | $ra->get_dir(canonicalize_path("."), $svnrev); | |
718 | my $par_mergeinfo = $props->{'svn:mergeinfo'}; | |
719 | unless (defined $par_mergeinfo) { | |
720 | $par_mergeinfo = ''; | |
721 | } | |
722 | # Merge previous mergeinfo values | |
723 | $aggregate_mergeinfo = | |
724 | merge_merge_info($aggregate_mergeinfo, | |
725 | $par_mergeinfo, 0); | |
726 | ||
727 | next if $parent eq $parents[0]; # Skip first parent | |
728 | # Add new changes being placed in tree by merge | |
729 | my @cmd = (qw/rev-list --reverse/, | |
730 | $parent, qw/--not/); | |
731 | foreach my $par (@parents) { | |
732 | unless ($par eq $parent) { | |
733 | push @cmd, $par; | |
734 | } | |
735 | } | |
736 | my @revsin = (); | |
737 | my ($revlist, $ctx) = command_output_pipe(@cmd); | |
738 | while (<$revlist>) { | |
739 | my $irev = $_; | |
740 | chomp $irev; | |
741 | my (undef, $csvnrev, undef) = | |
742 | cmt_metadata($irev); | |
743 | unless (defined $csvnrev) { | |
744 | # A child is missing SVN annotations... | |
745 | # this might be OK, or might not be. | |
746 | warn "W:child $irev is merged into revision " | |
747 | ."$d but does not have git-svn metadata. " | |
748 | ."This means git-svn cannot determine the " | |
749 | ."svn revision numbers to place into the " | |
750 | ."svn:mergeinfo property. You must ensure " | |
751 | ."a branch is entirely committed to " | |
752 | ."SVN before merging it in order for " | |
753 | ."svn:mergeinfo population to function " | |
754 | ."properly"; | |
755 | } | |
756 | push @revsin, $csvnrev; | |
757 | } | |
758 | command_close_pipe($revlist, $ctx); | |
759 | ||
760 | last unless $all_parents_ok; | |
761 | ||
762 | # We now have a list of all SVN revnos which are | |
763 | # merged by this particular parent. Integrate them. | |
764 | next if $#revsin == -1; | |
765 | my $newmergeinfo = "$branchpath:" . join(',', @revsin); | |
766 | $aggregate_mergeinfo = | |
767 | merge_merge_info($aggregate_mergeinfo, | |
768 | $newmergeinfo, 1); | |
769 | } | |
770 | if ($all_parents_ok and $aggregate_mergeinfo) { | |
771 | return $aggregate_mergeinfo; | |
772 | } | |
773 | } | |
774 | ||
775 | return undef; | |
776 | } | |
777 | ||
d7ad3bed EW |
778 | sub cmd_dcommit { |
779 | my $head = shift; | |
181264ad | 780 | command_noisy(qw/update-index --refresh/); |
c8cfa3e4 | 781 | git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) } |
826a9339 | 782 | 'Cannot dcommit with a dirty index. Commit your changes first, ' |
c8cfa3e4 | 783 | . "or stash them with `git stash'.\n"; |
d7ad3bed | 784 | $head ||= 'HEAD'; |
5eec27e3 TR |
785 | |
786 | my $old_head; | |
787 | if ($head ne 'HEAD') { | |
788 | $old_head = eval { | |
789 | command_oneline([qw/symbolic-ref -q HEAD/]) | |
790 | }; | |
791 | if ($old_head) { | |
792 | $old_head =~ s{^refs/heads/}{}; | |
793 | } else { | |
794 | $old_head = eval { command_oneline(qw/rev-parse HEAD/) }; | |
795 | } | |
796 | command(['checkout', $head], STDERR => 0); | |
797 | } | |
798 | ||
a8ae2623 | 799 | my @refs; |
5eec27e3 | 800 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs); |
2cb61105 TR |
801 | unless ($gs) { |
802 | die "Unable to determine upstream SVN information from ", | |
803 | "$head history.\nPerhaps the repository is empty."; | |
804 | } | |
0df84059 PO |
805 | |
806 | if (defined $_commit_url) { | |
807 | $url = $_commit_url; | |
808 | } else { | |
809 | $url = eval { command_oneline('config', '--get', | |
810 | "svn-remote.$gs->{repo_id}.commiturl") }; | |
811 | if (!$url) { | |
12a296bc | 812 | $url = $gs->full_pushurl |
0df84059 PO |
813 | } |
814 | } | |
815 | ||
ba24e745 | 816 | my $last_rev = $_revision if defined $_revision; |
59b0c24d MM |
817 | if ($url) { |
818 | print "Committing to $url ...\n"; | |
819 | } | |
733a65aa | 820 | my ($linear_refs, $parents) = linearize_history($gs, \@refs); |
751eb395 EW |
821 | if ($_no_rebase && scalar(@$linear_refs) > 1) { |
822 | warn "Attempting to commit more than one change while ", | |
823 | "--no-rebase is enabled.\n", | |
824 | "If these changes depend on each other, re-running ", | |
7dfa16b9 | 825 | "without --no-rebase may be required." |
751eb395 | 826 | } |
afd7f1eb FH |
827 | |
828 | if (defined $_interactive){ | |
829 | my $ask_default = "y"; | |
830 | foreach my $d (@$linear_refs){ | |
831 | my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d"); | |
832 | while (<$fh>){ | |
833 | print $_; | |
834 | } | |
835 | command_close_pipe($fh, $ctx); | |
836 | $_ = ask("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ", | |
837 | valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i, | |
838 | default => $ask_default); | |
839 | die "Commit this patch reply required" unless defined $_; | |
840 | if (/^[nq]/i) { | |
841 | exit(0); | |
842 | } elsif (/^a/i) { | |
843 | last; | |
844 | } | |
845 | } | |
846 | } | |
847 | ||
711521e2 | 848 | my $expect_url = $url; |
1e5814f3 BJ |
849 | |
850 | my $push_merge_info = eval { | |
851 | command_oneline(qw/config --get svn.pushmergeinfo/) | |
852 | }; | |
853 | if (not defined($push_merge_info) | |
854 | or $push_merge_info eq "false" | |
855 | or $push_merge_info eq "no" | |
856 | or $push_merge_info eq "never") { | |
857 | $push_merge_info = 0; | |
858 | } | |
859 | ||
860 | unless (defined($_merge_info) || ! $push_merge_info) { | |
861 | # Preflight check of changes to ensure no issues with mergeinfo | |
862 | # This includes check for uncommitted-to-SVN parents | |
863 | # (other than the first parent, which we will handle), | |
864 | # information from different SVN repos, and paths | |
865 | # which are not underneath this repository root. | |
866 | my $rooturl = $gs->repos_root; | |
867 | foreach my $d (@$linear_refs) { | |
868 | my %parentshash; | |
869 | read_commit_parents(\%parentshash, $d); | |
870 | my @realparents = @{$parentshash{$d}}; | |
871 | if ($#realparents > 0) { | |
872 | # Merge commit | |
873 | shift @realparents; # Remove/ignore first parent | |
874 | foreach my $parent (@realparents) { | |
875 | my ($branchurl, $svnrev, $paruuid) = cmt_metadata($parent); | |
876 | unless (defined $paruuid) { | |
877 | # A parent is missing SVN annotations... | |
878 | # abort the whole operation. | |
879 | fatal "$parent is merged into revision $d, " | |
880 | ."but does not have git-svn metadata. " | |
881 | ."Either dcommit the branch or use a " | |
882 | ."local cherry-pick, FF merge, or rebase " | |
883 | ."instead of an explicit merge commit."; | |
884 | } | |
885 | ||
886 | unless ($paruuid eq $uuid) { | |
887 | # Parent has SVN metadata from different repository | |
888 | fatal "merge parent $parent for change $d has " | |
889 | ."git-svn uuid $paruuid, while current change " | |
890 | ."has uuid $uuid!"; | |
891 | } | |
892 | ||
0e7e30f5 | 893 | unless ($branchurl =~ /^\Q$rooturl\E(.*)/) { |
1e5814f3 BJ |
894 | # This branch is very strange indeed. |
895 | fatal "merge parent $parent for $d is on branch " | |
896 | ."$branchurl, which is not under the " | |
897 | ."git-svn root $rooturl!"; | |
898 | } | |
899 | } | |
900 | } | |
901 | } | |
902 | } | |
903 | ||
904 | my $rewritten_parent; | |
711521e2 | 905 | Git::SVN::remove_username($expect_url); |
98c4ab32 BJ |
906 | if (defined($_merge_info)) { |
907 | $_merge_info =~ tr{ }{\n}; | |
908 | } | |
c74d9acf EW |
909 | while (1) { |
910 | my $d = shift @$linear_refs or last; | |
45bf473a EW |
911 | unless (defined $last_rev) { |
912 | (undef, $last_rev, undef) = cmt_metadata("$d~1"); | |
913 | unless (defined $last_rev) { | |
d7ad3bed | 914 | fatal "Unable to extract revision information ", |
207f1a75 | 915 | "from commit $d~1"; |
45bf473a EW |
916 | } |
917 | } | |
b22d4497 EW |
918 | if ($_dry_run) { |
919 | print "diff-tree $d~1 $d\n"; | |
920 | } else { | |
751eb395 | 921 | my $cmt_rev; |
1e5814f3 BJ |
922 | |
923 | unless (defined($_merge_info) || ! $push_merge_info) { | |
924 | $_merge_info = populate_merge_info($d, $gs, | |
925 | $uuid, | |
926 | $linear_refs, | |
927 | $rewritten_parent); | |
928 | } | |
929 | ||
d7ad3bed | 930 | my %ed_opts = ( r => $last_rev, |
61395354 | 931 | log => get_commit_entry($d)->{log}, |
ba24e745 | 932 | ra => Git::SVN::Ra->new($url), |
3caf320b KA |
933 | config => SVN::Core::config_get_config( |
934 | $Git::SVN::Ra::config_dir | |
935 | ), | |
61395354 EW |
936 | tree_a => "$d~1", |
937 | tree_b => $d, | |
938 | editor_cb => sub { | |
939 | print "Committed r$_[0]\n"; | |
751eb395 EW |
940 | $cmt_rev = $_[0]; |
941 | }, | |
6abd9332 | 942 | mergeinfo => $_merge_info, |
a8ae2623 | 943 | svn_path => ''); |
72827aa4 | 944 | if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) { |
d7ad3bed | 945 | print "No changes\n$d~1 == $d\n"; |
733a65aa | 946 | } elsif ($parents->{$d} && @{$parents->{$d}}) { |
751eb395 | 947 | $gs->{inject_parents_dcommit}->{$cmt_rev} = |
733a65aa | 948 | $parents->{$d}; |
d7ad3bed | 949 | } |
751eb395 | 950 | $_fetch_all ? $gs->fetch_all : $gs->fetch; |
7dfa16b9 | 951 | $last_rev = $cmt_rev; |
751eb395 EW |
952 | next if $_no_rebase; |
953 | ||
954 | # we always want to rebase against the current HEAD, | |
955 | # not any head that was passed to us | |
c74d9acf | 956 | my @diff = command('diff-tree', $d, |
751eb395 EW |
957 | $gs->refname, '--'); |
958 | my @finish; | |
959 | if (@diff) { | |
960 | @finish = rebase_cmd(); | |
c74d9acf | 961 | print STDERR "W: $d and ", $gs->refname, |
751eb395 | 962 | " differ, using @finish:\n", |
c74d9acf | 963 | join("\n", @diff), "\n"; |
751eb395 EW |
964 | } else { |
965 | print "No changes between current HEAD and ", | |
966 | $gs->refname, | |
967 | "\nResetting to the latest ", | |
968 | $gs->refname, "\n"; | |
969 | @finish = qw/reset --mixed/; | |
970 | } | |
971 | command_noisy(@finish, $gs->refname); | |
1e5814f3 BJ |
972 | |
973 | $rewritten_parent = command_oneline(qw/rev-parse HEAD/); | |
974 | ||
c74d9acf EW |
975 | if (@diff) { |
976 | @refs = (); | |
977 | my ($url_, $rev_, $uuid_, $gs_) = | |
5eec27e3 | 978 | working_head_info('HEAD', \@refs); |
c74d9acf EW |
979 | my ($linear_refs_, $parents_) = |
980 | linearize_history($gs_, \@refs); | |
981 | if (scalar(@$linear_refs) != | |
982 | scalar(@$linear_refs_)) { | |
983 | fatal "# of revisions changed ", | |
984 | "\nbefore:\n", | |
985 | join("\n", @$linear_refs), | |
986 | "\n\nafter:\n", | |
987 | join("\n", @$linear_refs_), "\n", | |
988 | 'If you are attempting to commit ', | |
989 | "merges, try running:\n\t", | |
990 | 'git rebase --interactive', | |
991 | '--preserve-merges ', | |
992 | $gs->refname, | |
993 | "\nBefore dcommitting"; | |
994 | } | |
711521e2 | 995 | if ($url_ ne $expect_url) { |
c03c1f79 AG |
996 | if ($url_ eq $gs->metadata_url) { |
997 | ||
998 | "Accepting rewritten URL:", | |
999 | " $url_\n"; | |
1000 | } else { | |
1001 | fatal | |
1002 | "URL mismatch after rebase:", | |
1003 | " $url_ != $expect_url"; | |
1004 | } | |
c74d9acf EW |
1005 | } |
1006 | if ($uuid_ ne $uuid) { | |
1007 | fatal "uuid mismatch after rebase: ", | |
1008 | "$uuid_ != $uuid"; | |
1009 | } | |
1010 | # remap parents | |
1011 | my (%p, @l, $i); | |
1012 | for ($i = 0; $i < scalar @$linear_refs; $i++) { | |
1013 | my $new = $linear_refs_->[$i] or next; | |
1014 | $p{$new} = | |
1015 | $parents->{$linear_refs->[$i]}; | |
1016 | push @l, $new; | |
1017 | } | |
1018 | $parents = \%p; | |
1019 | $linear_refs = \@l; | |
1020 | } | |
b22d4497 EW |
1021 | } |
1022 | } | |
5eec27e3 TR |
1023 | |
1024 | if ($old_head) { | |
1025 | my $new_head = command_oneline(qw/rev-parse HEAD/); | |
1026 | my $new_is_symbolic = eval { | |
1027 | command_oneline(qw/symbolic-ref -q HEAD/); | |
1028 | }; | |
1029 | if ($new_is_symbolic) { | |
1030 | print "dcommitted the branch ", $head, "\n"; | |
1031 | } else { | |
1032 | print "dcommitted on a detached HEAD because you gave ", | |
1033 | "a revision argument.\n", | |
1034 | "The rewritten commit is: ", $new_head, "\n"; | |
1035 | } | |
1036 | command(['checkout', $old_head], STDERR => 0); | |
1037 | } | |
1038 | ||
3157dd9e | 1039 | unlink $gs->{index}; |
b22d4497 EW |
1040 | } |
1041 | ||
5de70efb FR |
1042 | sub cmd_branch { |
1043 | my ($branch_name, $head) = @_; | |
1044 | ||
1045 | unless (defined $branch_name && length $branch_name) { | |
1046 | die(($_tag ? "tag" : "branch") . " name required\n"); | |
1047 | } | |
1048 | $head ||= 'HEAD'; | |
1049 | ||
150d38c4 | 1050 | my (undef, $rev, undef, $gs) = working_head_info($head); |
12a296bc | 1051 | my $src = $gs->full_pushurl; |
5de70efb | 1052 | |
a0fbc87c | 1053 | my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}}; |
62244069 MB |
1054 | my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' }; |
1055 | my $glob; | |
1056 | if ($#{$allglobs} == 0) { | |
1057 | $glob = $allglobs->[0]; | |
1058 | } else { | |
1059 | unless(defined $_branch_dest) { | |
1060 | die "Multiple ", | |
1061 | $_tag ? "tag" : "branch", | |
1062 | " paths defined for Subversion repository.\n", | |
1063 | "You must specify where you want to create the ", | |
1064 | $_tag ? "tag" : "branch", | |
1065 | " with the --destination argument.\n"; | |
1066 | } | |
1067 | foreach my $g (@{$allglobs}) { | |
72827aa4 | 1068 | my $re = Git::SVN::Editor::glob2pat($g->{path}->{left}); |
f7050599 | 1069 | if ($_branch_dest =~ /$re/) { |
62244069 MB |
1070 | $glob = $g; |
1071 | last; | |
1072 | } | |
1073 | } | |
1074 | unless (defined $glob) { | |
eaa14ff8 EW |
1075 | my $dest_re = qr/\b\Q$_branch_dest\E\b/; |
1076 | foreach my $g (@{$allglobs}) { | |
1077 | $g->{path}->{left} =~ /$dest_re/ or next; | |
1078 | if (defined $glob) { | |
1079 | die "Ambiguous destination: ", | |
1080 | $_branch_dest, "\nmatches both '", | |
1081 | $glob->{path}->{left}, "' and '", | |
1082 | $g->{path}->{left}, "'\n"; | |
1083 | } | |
1084 | $glob = $g; | |
1085 | } | |
1086 | unless (defined $glob) { | |
1087 | die "Unknown ", | |
1088 | $_tag ? "tag" : "branch", | |
1089 | " destination $_branch_dest\n"; | |
1090 | } | |
62244069 MB |
1091 | } |
1092 | } | |
5de70efb | 1093 | my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/}; |
99bacd6c IM |
1094 | my $url; |
1095 | if (defined $_commit_url) { | |
1096 | $url = $_commit_url; | |
1097 | } else { | |
1098 | $url = eval { command_oneline('config', '--get', | |
1099 | "svn-remote.$gs->{repo_id}.commiturl") }; | |
1100 | if (!$url) { | |
12a296bc | 1101 | $url = $remote->{pushurl} || $remote->{url}; |
99bacd6c IM |
1102 | } |
1103 | } | |
1104 | my $dst = join '/', $url, $lft, $branch_name, ($rgt || ()); | |
5de70efb | 1105 | |
a83b91e7 IM |
1106 | if ($dst =~ /^https:/ && $src =~ /^http:/) { |
1107 | $src=~s/^http:/https:/; | |
1108 | } | |
1109 | ||
d32fad2b | 1110 | ::_req_svn(); |
1111 | ||
5de70efb FR |
1112 | my $ctx = SVN::Client->new( |
1113 | auth => Git::SVN::Ra::_auth_providers(), | |
1114 | log_msg => sub { | |
1115 | ${ $_[0] } = defined $_message | |
1116 | ? $_message | |
1117 | : 'Create ' . ($_tag ? 'tag ' : 'branch ' ) | |
1118 | . $branch_name; | |
1119 | }, | |
1120 | ); | |
1121 | ||
1122 | eval { | |
1123 | $ctx->ls($dst, 'HEAD', 0); | |
1124 | } and die "branch ${branch_name} already exists\n"; | |
1125 | ||
1126 | print "Copying ${src} at r${rev} to ${dst}...\n"; | |
1127 | $ctx->copy($src, $rev, $dst) | |
1128 | unless $_dry_run; | |
1129 | ||
1130 | $gs->fetch_all; | |
1131 | } | |
1132 | ||
26e60160 | 1133 | sub cmd_find_rev { |
ea14e6c5 MAL |
1134 | my $revision_or_hash = shift or die "SVN or git revision required ", |
1135 | "as a command-line argument\n"; | |
26e60160 AR |
1136 | my $result; |
1137 | if ($revision_or_hash =~ /^r\d+$/) { | |
b3cb7e45 AR |
1138 | my $head = shift; |
1139 | $head ||= 'HEAD'; | |
1140 | my @refs; | |
63c56022 | 1141 | my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs); |
b3cb7e45 AR |
1142 | unless ($gs) { |
1143 | die "Unable to determine upstream SVN information from ", | |
1144 | "$head history\n"; | |
26e60160 | 1145 | } |
b3cb7e45 | 1146 | my $desired_revision = substr($revision_or_hash, 1); |
63c56022 | 1147 | $result = $gs->rev_map_get($desired_revision, $uuid); |
26e60160 AR |
1148 | } else { |
1149 | my (undef, $rev, undef) = cmt_metadata($revision_or_hash); | |
1150 | $result = $rev; | |
1151 | } | |
1152 | print "$result\n" if $result; | |
1153 | } | |
1154 | ||
55f9d7a7 MH |
1155 | sub auto_create_empty_directories { |
1156 | my ($gs) = @_; | |
1157 | my $var = eval { command_oneline('config', '--get', '--bool', | |
1158 | "svn-remote.$gs->{repo_id}.automkdirs") }; | |
1159 | # By default, create empty directories by consulting the unhandled log, | |
1160 | # but allow setting it to 'false' to skip it. | |
1161 | return !($var && $var eq 'false'); | |
1162 | } | |
1163 | ||
905f8b7d EW |
1164 | sub cmd_rebase { |
1165 | command_noisy(qw/update-index --refresh/); | |
13c823fb EW |
1166 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); |
1167 | unless ($gs) { | |
905f8b7d EW |
1168 | die "Unable to determine upstream SVN information from ", |
1169 | "working tree history\n"; | |
1170 | } | |
7d45e146 SF |
1171 | if ($_dry_run) { |
1172 | print "Remote Branch: " . $gs->refname . "\n"; | |
1173 | print "SVN URL: " . $url . "\n"; | |
1174 | return; | |
1175 | } | |
905f8b7d EW |
1176 | if (command(qw/diff-index HEAD --/)) { |
1177 | print STDERR "Cannot rebase with uncommited changes:\n"; | |
1178 | command_noisy('status'); | |
1179 | exit 1; | |
1180 | } | |
dee41f3e | 1181 | unless ($_local) { |
cec0d5a3 SG |
1182 | # rebase will checkout for us, so no need to do it explicitly |
1183 | $_no_checkout = 'true'; | |
dee41f3e EW |
1184 | $_fetch_all ? $gs->fetch_all : $gs->fetch; |
1185 | } | |
905f8b7d | 1186 | command_noisy(rebase_cmd(), $gs->refname); |
55f9d7a7 MH |
1187 | if (auto_create_empty_directories($gs)) { |
1188 | $gs->mkemptydirs; | |
1189 | } | |
905f8b7d EW |
1190 | } |
1191 | ||
5969cbe1 | 1192 | sub cmd_show_ignore { |
13c823fb EW |
1193 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); |
1194 | $gs ||= Git::SVN->new; | |
5969cbe1 | 1195 | my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum); |
01bdab84 BS |
1196 | $gs->prop_walk($gs->{path}, $r, sub { |
1197 | my ($gs, $path, $props) = @_; | |
1198 | print STDOUT "\n# $path\n"; | |
1199 | my $s = $props->{'svn:ignore'} or return; | |
1200 | $s =~ s/[\r\n]+/\n/g; | |
a7d72544 | 1201 | $s =~ s/^\n+//; |
01bdab84 BS |
1202 | chomp $s; |
1203 | $s =~ s#^#$path#gm; | |
1204 | print STDOUT "$s\n"; | |
1205 | }); | |
a5e0cedc EW |
1206 | } |
1207 | ||
2d879792 VK |
1208 | sub cmd_show_externals { |
1209 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); | |
1210 | $gs ||= Git::SVN->new; | |
1211 | my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum); | |
1212 | $gs->prop_walk($gs->{path}, $r, sub { | |
1213 | my ($gs, $path, $props) = @_; | |
1214 | print STDOUT "\n# $path\n"; | |
1215 | my $s = $props->{'svn:externals'} or return; | |
1216 | $s =~ s/[\r\n]+/\n/g; | |
1217 | chomp $s; | |
1218 | $s =~ s#^#$path#gm; | |
1219 | print STDOUT "$s\n"; | |
1220 | }); | |
1221 | } | |
1222 | ||
d05ddec5 BS |
1223 | sub cmd_create_ignore { |
1224 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); | |
1225 | $gs ||= Git::SVN->new; | |
1226 | my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum); | |
1227 | $gs->prop_walk($gs->{path}, $r, sub { | |
1228 | my ($gs, $path, $props) = @_; | |
1229 | # $path is of the form /path/to/dir/ | |
7d9fd459 BG |
1230 | $path = '.' . $path; |
1231 | # SVN can have attributes on empty directories, | |
1232 | # which git won't track | |
1233 | mkpath([$path]) unless -d $path; | |
1234 | my $ignore = $path . '.gitignore'; | |
d05ddec5 BS |
1235 | my $s = $props->{'svn:ignore'} or return; |
1236 | open(GITIGNORE, '>', $ignore) | |
207f1a75 | 1237 | or fatal("Failed to open `$ignore' for writing: $!"); |
d05ddec5 | 1238 | $s =~ s/[\r\n]+/\n/g; |
a7d72544 | 1239 | $s =~ s/^\n+//; |
d05ddec5 BS |
1240 | chomp $s; |
1241 | # Prefix all patterns so that the ignore doesn't apply | |
1242 | # to sub-directories. | |
1243 | $s =~ s#^#/#gm; | |
1244 | print GITIGNORE "$s\n"; | |
1245 | close(GITIGNORE) | |
207f1a75 | 1246 | or fatal("Failed to close `$ignore': $!"); |
c4c66b26 | 1247 | command_noisy('add', '-f', $ignore); |
d05ddec5 BS |
1248 | }); |
1249 | } | |
1250 | ||
6111b934 EW |
1251 | sub cmd_mkdirs { |
1252 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); | |
1253 | $gs ||= Git::SVN->new; | |
1254 | $gs->mkemptydirs($_revision); | |
1255 | } | |
1256 | ||
b2b3ada7 DK |
1257 | sub canonicalize_path { |
1258 | my ($path) = @_; | |
e6fefa92 DK |
1259 | my $dot_slash_added = 0; |
1260 | if (substr($path, 0, 1) ne "/") { | |
1261 | $path = "./" . $path; | |
1262 | $dot_slash_added = 1; | |
1263 | } | |
b2b3ada7 DK |
1264 | # File::Spec->canonpath doesn't collapse x/../y into y (for a |
1265 | # good reason), so let's do this manually. | |
1266 | $path =~ s#/+#/#g; | |
1267 | $path =~ s#/\.(?:/|$)#/#g; | |
1268 | $path =~ s#/[^/]+/\.\.##g; | |
1269 | $path =~ s#/$##g; | |
e6fefa92 | 1270 | $path =~ s#^\./## if $dot_slash_added; |
2fe403e7 GP |
1271 | $path =~ s#^/##; |
1272 | $path =~ s#^\.$##; | |
b2b3ada7 DK |
1273 | return $path; |
1274 | } | |
1275 | ||
50ff2366 UD |
1276 | sub canonicalize_url { |
1277 | my ($url) = @_; | |
1278 | $url =~ s#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e; | |
1279 | return $url; | |
1280 | } | |
1281 | ||
15153451 BS |
1282 | # get_svnprops(PATH) |
1283 | # ------------------ | |
51e057cf | 1284 | # Helper for cmd_propget and cmd_proplist below. |
15153451 BS |
1285 | sub get_svnprops { |
1286 | my $path = shift; | |
1287 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); | |
1288 | $gs ||= Git::SVN->new; | |
1289 | ||
1290 | # prefix THE PATH by the sub-directory from which the user | |
1291 | # invoked us. | |
1292 | $path = $cmd_dir_prefix . $path; | |
207f1a75 | 1293 | fatal("No such file or directory: $path") unless -e $path; |
15153451 BS |
1294 | my $is_dir = -d $path ? 1 : 0; |
1295 | $path = $gs->{path} . '/' . $path; | |
1296 | ||
1297 | # canonicalize the path (otherwise libsvn will abort or fail to | |
1298 | # find the file) | |
b2b3ada7 | 1299 | $path = canonicalize_path($path); |
15153451 BS |
1300 | |
1301 | my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum); | |
1302 | my $props; | |
1303 | if ($is_dir) { | |
1304 | (undef, undef, $props) = $gs->ra->get_dir($path, $r); | |
1305 | } | |
1306 | else { | |
1307 | (undef, $props) = $gs->ra->get_file($path, $r, undef); | |
1308 | } | |
1309 | return $props; | |
1310 | } | |
1311 | ||
1312 | # cmd_propget (PROP, PATH) | |
1313 | # ------------------------ | |
1314 | # Print the SVN property PROP for PATH. | |
1315 | sub cmd_propget { | |
1316 | my ($prop, $path) = @_; | |
1317 | $path = '.' if not defined $path; | |
1318 | usage(1) if not defined $prop; | |
1319 | my $props = get_svnprops($path); | |
1320 | if (not defined $props->{$prop}) { | |
207f1a75 | 1321 | fatal("`$path' does not have a `$prop' SVN property."); |
15153451 BS |
1322 | } |
1323 | print $props->{$prop} . "\n"; | |
1324 | } | |
1325 | ||
51e057cf BS |
1326 | # cmd_proplist (PATH) |
1327 | # ------------------- | |
1328 | # Print the list of SVN properties for PATH. | |
1329 | sub cmd_proplist { | |
1330 | my $path = shift; | |
1331 | $path = '.' if not defined $path; | |
1332 | my $props = get_svnprops($path); | |
1333 | print "Properties on '$path':\n"; | |
1334 | foreach (sort keys %{$props}) { | |
1335 | print " $_\n"; | |
1336 | } | |
1337 | } | |
1338 | ||
8164b652 | 1339 | sub cmd_multi_init { |
9d55b41a | 1340 | my $url = shift; |
62244069 | 1341 | unless (defined $_trunk || @_branches || @_tags) { |
98327e58 | 1342 | usage(1); |
9d55b41a | 1343 | } |
dc431666 | 1344 | |
8164b652 | 1345 | $_prefix = '' unless defined $_prefix; |
dadc6d2a | 1346 | if (defined $url) { |
50ff2366 | 1347 | $url = canonicalize_url($url); |
dadc6d2a EW |
1348 | init_subdir(@_); |
1349 | } | |
f30603fc | 1350 | do_git_init_db(); |
98327e58 | 1351 | if (defined $_trunk) { |
b4b33600 | 1352 | $_trunk =~ s#^/+##; |
6f5748e1 | 1353 | my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk'; |
706587fc EW |
1354 | # try both old-style and new-style lookups: |
1355 | my $gs_trunk = eval { Git::SVN->new($trunk_ref) }; | |
8164b652 | 1356 | unless ($gs_trunk) { |
706587fc EW |
1357 | my ($trunk_url, $trunk_path) = |
1358 | complete_svn_url($url, $_trunk); | |
1359 | $gs_trunk = Git::SVN->init($trunk_url, $trunk_path, | |
1360 | undef, $trunk_ref); | |
98327e58 | 1361 | } |
c35b96e7 | 1362 | } |
62244069 | 1363 | return unless @_branches || @_tags; |
e7db67e6 | 1364 | my $ra = $url ? Git::SVN::Ra->new($url) : undef; |
62244069 MB |
1365 | foreach my $path (@_branches) { |
1366 | complete_url_ls_init($ra, $path, '--branches/-b', $_prefix); | |
1367 | } | |
1368 | foreach my $path (@_tags) { | |
1369 | complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/'); | |
1370 | } | |
9d55b41a EW |
1371 | } |
1372 | ||
1c8443b0 | 1373 | sub cmd_multi_fetch { |
4d0157d6 | 1374 | $Git::SVN::no_reuse_existing = undef; |
0af9c9f9 EW |
1375 | my $remotes = Git::SVN::read_all_remotes(); |
1376 | foreach my $repo_id (sort keys %$remotes) { | |
db03cd24 | 1377 | if ($remotes->{$repo_id}->{url}) { |
4bb9ed04 EW |
1378 | Git::SVN::fetch_all($repo_id, $remotes); |
1379 | } | |
9d55b41a | 1380 | } |
9d55b41a EW |
1381 | } |
1382 | ||
44320b9e EW |
1383 | # this command is special because it requires no metadata |
1384 | sub cmd_commit_diff { | |
1385 | my ($ta, $tb, $url) = @_; | |
1386 | my $usage = "Usage: $0 commit-diff -r<revision> ". | |
207f1a75 | 1387 | "<tree-ish> <tree-ish> [<URL>]"; |
44320b9e | 1388 | fatal($usage) if (!defined $ta || !defined $tb); |
d72ab8c8 | 1389 | my $svn_path = ''; |
44320b9e EW |
1390 | if (!defined $url) { |
1391 | my $gs = eval { Git::SVN->new }; | |
1392 | if (!$gs) { | |
1393 | fatal("Needed URL or usable git-svn --id in ", | |
1394 | "the command-line\n", $usage); | |
1395 | } | |
1396 | $url = $gs->{url}; | |
d3a840dc | 1397 | $svn_path = $gs->{path}; |
44320b9e EW |
1398 | } |
1399 | unless (defined $_revision) { | |
1400 | fatal("-r|--revision is a required argument\n", $usage); | |
1401 | } | |
1402 | if (defined $_message && defined $_file) { | |
1403 | fatal("Both --message/-m and --file/-F specified ", | |
1404 | "for the commit message.\n", | |
207f1a75 | 1405 | "I have no idea what you mean"); |
44320b9e EW |
1406 | } |
1407 | if (defined $_file) { | |
1408 | $_message = file_to_s($_file); | |
1409 | } else { | |
1410 | $_message ||= get_commit_entry($tb)->{log}; | |
1411 | } | |
1412 | my $ra ||= Git::SVN::Ra->new($url); | |
1413 | my $r = $_revision; | |
1414 | if ($r eq 'HEAD') { | |
1415 | $r = $ra->get_latest_revnum; | |
1416 | } elsif ($r !~ /^\d+$/) { | |
1417 | die "revision argument: $r not understood by git-svn\n"; | |
1418 | } | |
61395354 EW |
1419 | my %ed_opts = ( r => $r, |
1420 | log => $_message, | |
1421 | ra => $ra, | |
1422 | tree_a => $ta, | |
1423 | tree_b => $tb, | |
1424 | editor_cb => sub { print "Committed r$_[0]\n" }, | |
1425 | svn_path => $svn_path ); | |
72827aa4 | 1426 | if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) { |
44320b9e EW |
1427 | print "No changes\n$ta == $tb\n"; |
1428 | } | |
44320b9e EW |
1429 | } |
1430 | ||
05427b91 TR |
1431 | sub escape_uri_only { |
1432 | my ($uri) = @_; | |
1433 | my @tmp; | |
1434 | foreach (split m{/}, $uri) { | |
6a004d3f | 1435 | s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg; |
05427b91 TR |
1436 | push @tmp, $_; |
1437 | } | |
1438 | join('/', @tmp); | |
1439 | } | |
1440 | ||
1441 | sub escape_url { | |
1442 | my ($url) = @_; | |
1443 | if ($url =~ m#^([^:]+)://([^/]*)(.*)$#) { | |
1444 | my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3)); | |
1445 | $url = "$scheme://$domain$uri"; | |
1446 | } | |
1447 | $url; | |
1448 | } | |
1449 | ||
e6fefa92 | 1450 | sub cmd_info { |
bd2d4f96 | 1451 | my $path = canonicalize_path(defined($_[0]) ? $_[0] : "."); |
edde9112 | 1452 | my $fullpath = canonicalize_path($cmd_dir_prefix . $path); |
bd2d4f96 | 1453 | if (exists $_[1]) { |
e6fefa92 DK |
1454 | die "Too many arguments specified\n"; |
1455 | } | |
1456 | ||
1457 | my ($file_type, $diff_status) = find_file_type_and_diff_status($path); | |
1458 | ||
1459 | if (!$file_type && !$diff_status) { | |
2cf3e3ac TR |
1460 | print STDERR "svn: '$path' is not under version control\n"; |
1461 | exit 1; | |
e6fefa92 DK |
1462 | } |
1463 | ||
1464 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); | |
1465 | unless ($gs) { | |
1466 | die "Unable to determine upstream SVN information from ", | |
1467 | "working tree history\n"; | |
1468 | } | |
bd2d4f96 EW |
1469 | |
1470 | # canonicalize_path() will return "" to make libsvn 1.5.x happy, | |
1471 | $path = "." if $path eq ""; | |
1472 | ||
edde9112 | 1473 | my $full_url = $url . ($fullpath eq "" ? "" : "/$fullpath"); |
e6fefa92 | 1474 | |
8b014d71 | 1475 | if ($_url) { |
05427b91 | 1476 | print escape_url($full_url), "\n"; |
8b014d71 DK |
1477 | return; |
1478 | } | |
1479 | ||
e6fefa92 DK |
1480 | my $result = "Path: $path\n"; |
1481 | $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir"; | |
05427b91 | 1482 | $result .= "URL: " . escape_url($full_url) . "\n"; |
e6fefa92 | 1483 | |
a5460eb7 EW |
1484 | eval { |
1485 | my $repos_root = $gs->repos_root; | |
1486 | Git::SVN::remove_username($repos_root); | |
05427b91 | 1487 | $result .= "Repository Root: " . escape_url($repos_root) . "\n"; |
a5460eb7 EW |
1488 | }; |
1489 | if ($@) { | |
1490 | $result .= "Repository Root: (offline)\n"; | |
1491 | } | |
b91a8a3e | 1492 | ::_req_svn(); |
22ba47f5 | 1493 | $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" && |
f760c903 | 1494 | (::compare_svn_version('1.5.4') <= 0 || $file_type ne "dir"); |
e6fefa92 DK |
1495 | $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n"; |
1496 | ||
1497 | $result .= "Node Kind: " . | |
1498 | ($file_type eq "dir" ? "directory" : "file") . "\n"; | |
1499 | ||
1500 | my $schedule = $diff_status eq "A" | |
1501 | ? "add" | |
1502 | : ($diff_status eq "D" ? "delete" : "normal"); | |
1503 | $result .= "Schedule: $schedule\n"; | |
1504 | ||
1505 | if ($diff_status eq "A") { | |
1506 | print $result, "\n"; | |
1507 | return; | |
1508 | } | |
1509 | ||
1510 | my ($lc_author, $lc_rev, $lc_date_utc); | |
edde9112 | 1511 | my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath); |
e6fefa92 DK |
1512 | my $log = command_output_pipe(@args); |
1513 | my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/; | |
1514 | while (<$log>) { | |
1515 | if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) { | |
1516 | $lc_author = $1; | |
1517 | $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3); | |
1518 | } elsif (/^${esc_color} (git-svn-id:.+)$/o) { | |
1519 | (undef, $lc_rev, undef) = ::extract_metadata($1); | |
1520 | } | |
1521 | } | |
1522 | close $log; | |
1523 | ||
1524 | Git::SVN::Log::set_local_timezone(); | |
1525 | ||
1526 | $result .= "Last Changed Author: $lc_author\n"; | |
1527 | $result .= "Last Changed Rev: $lc_rev\n"; | |
1528 | $result .= "Last Changed Date: " . | |
1529 | Git::SVN::Log::format_svn_date($lc_date_utc) . "\n"; | |
1530 | ||
1531 | if ($file_type ne "dir") { | |
1532 | my $text_last_updated_date = | |
1533 | ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]); | |
1534 | $result .= | |
1535 | "Text Last Updated: " . | |
1536 | Git::SVN::Log::format_svn_date($text_last_updated_date) . | |
1537 | "\n"; | |
1538 | my $checksum; | |
1539 | if ($diff_status eq "D") { | |
1540 | my ($fh, $ctx) = | |
1541 | command_output_pipe(qw(cat-file blob), "HEAD:$path"); | |
1542 | if ($file_type eq "link") { | |
1543 | my $file_name = <$fh>; | |
8d7c4fad | 1544 | $checksum = md5sum("link $file_name"); |
e6fefa92 | 1545 | } else { |
8d7c4fad | 1546 | $checksum = md5sum($fh); |
e6fefa92 DK |
1547 | } |
1548 | command_close_pipe($fh, $ctx); | |
1549 | } elsif ($file_type eq "link") { | |
1550 | my $file_name = | |
1551 | command(qw(cat-file blob), "HEAD:$path"); | |
1552 | $checksum = | |
8d7c4fad | 1553 | md5sum("link " . $file_name); |
e6fefa92 DK |
1554 | } else { |
1555 | open FILE, "<", $path or die $!; | |
8d7c4fad | 1556 | $checksum = md5sum(\*FILE); |
e6fefa92 DK |
1557 | close FILE or die $!; |
1558 | } | |
1559 | $result .= "Checksum: " . $checksum . "\n"; | |
1560 | } | |
1561 | ||
1562 | print $result, "\n"; | |
1563 | } | |
1564 | ||
195643f2 BJ |
1565 | sub cmd_reset { |
1566 | my $target = shift || $_revision or die "SVN revision required\n"; | |
1567 | $target = $1 if $target =~ /^r(\d+)$/; | |
1568 | $target =~ /^\d+$/ or die "Numeric SVN revision expected\n"; | |
1569 | my ($url, $rev, $uuid, $gs) = working_head_info('HEAD'); | |
1570 | unless ($gs) { | |
1571 | die "Unable to determine upstream SVN information from ". | |
1572 | "history\n"; | |
1573 | } | |
1574 | my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent); | |
70ee0b77 | 1575 | die "Cannot find SVN revision $target\n" unless defined($c); |
195643f2 BJ |
1576 | $gs->rev_map_set($r, $c, 'reset', $uuid); |
1577 | print "r$r = $c ($gs->{ref_id})\n"; | |
1578 | } | |
1579 | ||
2da9ee08 RZ |
1580 | sub cmd_gc { |
1581 | if (!$can_compress) { | |
1582 | warn "Compress::Zlib could not be found; unhandled.log " . | |
1583 | "files will not be compressed.\n"; | |
1584 | } | |
1585 | find({ wanted => \&gc_directory, no_chdir => 1}, "$ENV{GIT_DIR}/svn"); | |
1586 | } | |
1587 | ||
3397f9df EW |
1588 | ########################### utility functions ######################### |
1589 | ||
905f8b7d EW |
1590 | sub rebase_cmd { |
1591 | my @cmd = qw/rebase/; | |
1592 | push @cmd, '-v' if $_verbose; | |
1593 | push @cmd, qw/--merge/ if $_merge; | |
1594 | push @cmd, "--strategy=$_strategy" if $_strategy; | |
b64e1f58 | 1595 | push @cmd, "--preserve-merges" if $_preserve_merges; |
905f8b7d EW |
1596 | @cmd; |
1597 | } | |
1598 | ||
1e889ef3 EW |
1599 | sub post_fetch_checkout { |
1600 | return if $_no_checkout; | |
1601 | my $gs = $Git::SVN::_head or return; | |
1602 | return if verify_ref('refs/heads/master^0'); | |
1603 | ||
b186a261 EW |
1604 | # look for "trunk" ref if it exists |
1605 | my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}}; | |
1606 | my $fetch = $remote->{fetch}; | |
1607 | if ($fetch) { | |
1608 | foreach my $p (keys %$fetch) { | |
1609 | basename($fetch->{$p}) eq 'trunk' or next; | |
1610 | $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p); | |
1611 | last; | |
1612 | } | |
1613 | } | |
1614 | ||
1e889ef3 EW |
1615 | my $valid_head = verify_ref('HEAD^0'); |
1616 | command_noisy(qw(update-ref refs/heads/master), $gs->refname); | |
1617 | return if ($valid_head || !verify_ref('HEAD^0')); | |
1618 | ||
1619 | return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#; | |
1620 | my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index"; | |
1621 | return if -f $index; | |
1622 | ||
7ae3df8c | 1623 | return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false'; |
1e889ef3 EW |
1624 | return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true'; |
1625 | command_noisy(qw/read-tree -m -u -v HEAD HEAD/); | |
1626 | print STDERR "Checked out HEAD:\n ", | |
1627 | $gs->full_url, " r", $gs->last_rev, "\n"; | |
55f9d7a7 MH |
1628 | if (auto_create_empty_directories($gs)) { |
1629 | $gs->mkemptydirs($gs->last_rev); | |
1630 | } | |
1e889ef3 EW |
1631 | } |
1632 | ||
98327e58 EW |
1633 | sub complete_svn_url { |
1634 | my ($url, $path) = @_; | |
1635 | $path =~ s#/+$##; | |
98327e58 | 1636 | if ($path !~ m#^[a-z\+]+://#) { |
98327e58 EW |
1637 | if (!defined $url || $url !~ m#^[a-z\+]+://#) { |
1638 | fatal("E: '$path' is not a complete URL ", | |
207f1a75 | 1639 | "and a separate URL is not specified"); |
98327e58 | 1640 | } |
706587fc | 1641 | return ($url, $path); |
98327e58 | 1642 | } |
706587fc | 1643 | return ($path, ''); |
98327e58 EW |
1644 | } |
1645 | ||
9d55b41a | 1646 | sub complete_url_ls_init { |
706587fc EW |
1647 | my ($ra, $repo_path, $switch, $pfx) = @_; |
1648 | unless ($repo_path) { | |
9d55b41a EW |
1649 | print STDERR "W: $switch not specified\n"; |
1650 | return; | |
1651 | } | |
706587fc EW |
1652 | $repo_path =~ s#/+$##; |
1653 | if ($repo_path =~ m#^[a-z\+]+://#) { | |
1654 | $ra = Git::SVN::Ra->new($repo_path); | |
1655 | $repo_path = ''; | |
e7db67e6 | 1656 | } else { |
706587fc | 1657 | $repo_path =~ s#^/+##; |
e7db67e6 | 1658 | unless ($ra) { |
706587fc | 1659 | fatal("E: '$repo_path' is not a complete URL ", |
207f1a75 | 1660 | "and a separate URL is not specified"); |
8164b652 | 1661 | } |
e7db67e6 | 1662 | } |
706587fc | 1663 | my $url = $ra->{url}; |
b4d57e5e EW |
1664 | my $gs = Git::SVN->init($url, undef, undef, undef, 1); |
1665 | my $k = "svn-remote.$gs->{repo_id}.url"; | |
1666 | my $orig_url = eval { command_oneline(qw/config --get/, $k) }; | |
1667 | if ($orig_url && ($orig_url ne $gs->{url})) { | |
1668 | die "$k already set: $orig_url\n", | |
1669 | "wanted to set to: $gs->{url}\n"; | |
88cf4107 | 1670 | } |
b4d57e5e | 1671 | command_oneline('config', $k, $gs->{url}) unless $orig_url; |
0b2af457 | 1672 | my $remote_path = "$gs->{path}/$repo_path"; |
5268f9ed | 1673 | $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg; |
b4d57e5e EW |
1674 | $remote_path =~ s#/+#/#g; |
1675 | $remote_path =~ s#^/##g; | |
ed0b9d43 | 1676 | $remote_path .= "/*" if $remote_path !~ /\*/; |
b4d57e5e EW |
1677 | my ($n) = ($switch =~ /^--(\w+)/); |
1678 | if (length $pfx && $pfx !~ m#/$#) { | |
1679 | die "--prefix='$pfx' must have a trailing slash '/'\n"; | |
9d55b41a | 1680 | } |
570d35c2 | 1681 | command_noisy('config', |
62244069 | 1682 | '--add', |
570d35c2 MG |
1683 | "svn-remote.$gs->{repo_id}.$n", |
1684 | "$remote_path:refs/remotes/$pfx*" . | |
1685 | ('/*' x (($remote_path =~ tr/*/*/) - 1)) ); | |
9d55b41a EW |
1686 | } |
1687 | ||
aef4e921 EW |
1688 | sub verify_ref { |
1689 | my ($ref) = @_; | |
2c5c1d53 EW |
1690 | eval { command_oneline([ 'rev-parse', '--verify', $ref ], |
1691 | { STDERR => 0 }); }; | |
aef4e921 EW |
1692 | } |
1693 | ||
a5e0cedc | 1694 | sub get_tree_from_treeish { |
cf52b8f0 | 1695 | my ($treeish) = @_; |
44320b9e | 1696 | # $treeish can be a symbolic ref, too: |
aef4e921 | 1697 | my $type = command_oneline(qw/cat-file -t/, $treeish); |
cf52b8f0 EW |
1698 | my $expected; |
1699 | while ($type eq 'tag') { | |
aef4e921 | 1700 | ($treeish, $type) = command(qw/cat-file tag/, $treeish); |
cf52b8f0 EW |
1701 | } |
1702 | if ($type eq 'commit') { | |
aef4e921 EW |
1703 | $expected = (grep /^tree /, command(qw/cat-file commit/, |
1704 | $treeish))[0]; | |
44320b9e | 1705 | ($expected) = ($expected =~ /^tree ($sha1)$/o); |
cf52b8f0 EW |
1706 | die "Unable to get tree from $treeish\n" unless $expected; |
1707 | } elsif ($type eq 'tree') { | |
1708 | $expected = $treeish; | |
1709 | } else { | |
1710 | die "$treeish is a $type, expected tree, tag or commit\n"; | |
1711 | } | |
a5e0cedc EW |
1712 | return $expected; |
1713 | } | |
1714 | ||
44320b9e EW |
1715 | sub get_commit_entry { |
1716 | my ($treeish) = shift; | |
1717 | my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) ); | |
1718 | my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG"; | |
1719 | my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG"; | |
1720 | open my $log_fh, '>', $commit_editmsg or croak $!; | |
3397f9df | 1721 | |
44320b9e | 1722 | my $type = command_oneline(qw/cat-file -t/, $treeish); |
4ad4515d | 1723 | if ($type eq 'commit' || $type eq 'tag') { |
aef4e921 | 1724 | my ($msg_fh, $ctx) = command_output_pipe('cat-file', |
44320b9e | 1725 | $type, $treeish); |
3397f9df | 1726 | my $in_msg = 0; |
6aa9ba14 AP |
1727 | my $author; |
1728 | my $saw_from = 0; | |
328eb9b3 | 1729 | my $msgbuf = ""; |
3397f9df EW |
1730 | while (<$msg_fh>) { |
1731 | if (!$in_msg) { | |
1732 | $in_msg = 1 if (/^\s*$/); | |
6aa9ba14 | 1733 | $author = $1 if (/^author (.*>)/); |
df746c5a | 1734 | } elsif (/^git-svn-id: /) { |
44320b9e EW |
1735 | # skip this for now, we regenerate the |
1736 | # correct one on re-fetch anyways | |
1737 | # TODO: set *:merge properties or like... | |
3397f9df | 1738 | } else { |
6aa9ba14 AP |
1739 | if (/^From:/ || /^Signed-off-by:/) { |
1740 | $saw_from = 1; | |
1741 | } | |
328eb9b3 | 1742 | $msgbuf .= $_; |
3397f9df EW |
1743 | } |
1744 | } | |
328eb9b3 | 1745 | $msgbuf =~ s/\s+$//s; |
6aa9ba14 AP |
1746 | if ($Git::SVN::_add_author_from && defined($author) |
1747 | && !$saw_from) { | |
328eb9b3 | 1748 | $msgbuf .= "\n\nFrom: $author"; |
6aa9ba14 | 1749 | } |
328eb9b3 | 1750 | print $log_fh $msgbuf or croak $!; |
aef4e921 | 1751 | command_close_pipe($msg_fh, $ctx); |
3397f9df | 1752 | } |
44320b9e | 1753 | close $log_fh or croak $!; |
3397f9df EW |
1754 | |
1755 | if ($_edit || ($type eq 'tree')) { | |
b4479f07 JN |
1756 | chomp(my $editor = command_oneline(qw(var GIT_EDITOR))); |
1757 | system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg); | |
3397f9df | 1758 | } |
44320b9e | 1759 | rename $commit_editmsg, $commit_msg or croak $!; |
16fc08e2 | 1760 | { |
b510df8a | 1761 | require Encode; |
16fc08e2 EW |
1762 | # SVN requires messages to be UTF-8 when entering the repo |
1763 | local $/; | |
1764 | open $log_fh, '<', $commit_msg or croak $!; | |
1765 | binmode $log_fh; | |
1766 | chomp($log_entry{log} = <$log_fh>); | |
1767 | ||
b510df8a EW |
1768 | my $enc = Git::config('i18n.commitencoding') || 'UTF-8'; |
1769 | my $msg = $log_entry{log}; | |
1770 | ||
1771 | eval { $msg = Encode::decode($enc, $msg, 1) }; | |
1772 | if ($@) { | |
1773 | die "Could not decode as $enc:\n", $msg, | |
1774 | "\nPerhaps you need to set i18n.commitencoding\n"; | |
16fc08e2 | 1775 | } |
b510df8a EW |
1776 | |
1777 | eval { $msg = Encode::encode('UTF-8', $msg, 1) }; | |
1778 | die "Could not encode as UTF-8:\n$msg\n" if $@; | |
1779 | ||
1780 | $log_entry{log} = $msg; | |
1781 | ||
16fc08e2 EW |
1782 | close $log_fh or croak $!; |
1783 | } | |
44320b9e EW |
1784 | unlink $commit_msg; |
1785 | \%log_entry; | |
a5e0cedc EW |
1786 | } |
1787 | ||
3397f9df EW |
1788 | sub s_to_file { |
1789 | my ($str, $file, $mode) = @_; | |
1790 | open my $fd,'>',$file or croak $!; | |
1791 | print $fd $str,"\n" or croak $!; | |
1792 | close $fd or croak $!; | |
1793 | chmod ($mode &~ umask, $file) if (defined $mode); | |
1794 | } | |
1795 | ||
1796 | sub file_to_s { | |
1797 | my $file = shift; | |
1798 | open my $fd,'<',$file or croak "$!: file: $file\n"; | |
1799 | local $/; | |
1800 | my $ret = <$fd>; | |
1801 | close $fd or croak $!; | |
1802 | $ret =~ s/\s*$//s; | |
1803 | return $ret; | |
1804 | } | |
1805 | ||
eeb0abe0 EW |
1806 | # '<svn username> = real-name <email address>' mapping based on git-svnimport: |
1807 | sub load_authors { | |
1808 | open my $authors, '<', $_authors or die "Can't open $_authors $!\n"; | |
f8c9d1d2 | 1809 | my $log = $cmd eq 'log'; |
eeb0abe0 EW |
1810 | while (<$authors>) { |
1811 | chomp; | |
575d025c | 1812 | next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/; |
eeb0abe0 | 1813 | my ($user, $name, $email) = ($1, $2, $3); |
f8c9d1d2 EW |
1814 | if ($log) { |
1815 | $Git::SVN::Log::rusers{"$name <$email>"} = $user; | |
1816 | } else { | |
1817 | $users{$user} = [$name, $email]; | |
1818 | } | |
79bb8d88 EW |
1819 | } |
1820 | close $authors or croak $!; | |
1821 | } | |
1822 | ||
e0d10e1c | 1823 | # convert GetOpt::Long specs for use by git-config |
1a30582b | 1824 | sub read_git_config { |
b8c92cad | 1825 | my $opts = shift; |
97ae0911 | 1826 | my @config_only; |
b8c92cad | 1827 | foreach my $o (keys %$opts) { |
97ae0911 EW |
1828 | # if we have mixedCase and a long option-only, then |
1829 | # it's a config-only variable that we don't need for | |
1830 | # the command-line. | |
1831 | push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i); | |
b8c92cad | 1832 | my $v = $opts->{$o}; |
97ae0911 | 1833 | my ($key) = ($o =~ /^([a-zA-Z\-]+)/); |
b8c92cad | 1834 | $key =~ s/-//g; |
225f1d0c | 1835 | my $arg = 'git config'; |
b8c92cad EW |
1836 | $arg .= ' --int' if ($o =~ /[:=]i$/); |
1837 | $arg .= ' --bool' if ($o !~ /[:=][sfi]$/); | |
1838 | if (ref $v eq 'ARRAY') { | |
1839 | chomp(my @tmp = `$arg --get-all svn.$key`); | |
1840 | @$v = @tmp if @tmp; | |
1841 | } else { | |
1842 | chomp(my $tmp = `$arg --get svn.$key`); | |
7774284a | 1843 | if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) { |
b8c92cad EW |
1844 | $$v = $tmp; |
1845 | } | |
1846 | } | |
1847 | } | |
97ae0911 | 1848 | delete @$opts{@config_only} if @config_only; |
b8c92cad EW |
1849 | } |
1850 | ||
79bb8d88 | 1851 | sub extract_metadata { |
c1927a85 | 1852 | my $id = shift or return (undef, undef, undef); |
3dfab993 | 1853 | my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+) |
b3e95936 | 1854 | \s([a-f\d\-]+)$/ix); |
e70dc780 | 1855 | if (!defined $rev || !$uuid || !$url) { |
79bb8d88 | 1856 | # some of the original repositories I made had |
82e5a82f | 1857 | # identifiers like this: |
b3e95936 | 1858 | ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i); |
79bb8d88 EW |
1859 | } |
1860 | return ($url, $rev, $uuid); | |
1861 | } | |
1862 | ||
c1927a85 EW |
1863 | sub cmt_metadata { |
1864 | return extract_metadata((grep(/^git-svn-id: /, | |
aef4e921 | 1865 | command(qw/cat-file commit/, shift)))[-1]); |
c1927a85 EW |
1866 | } |
1867 | ||
6ea42032 BB |
1868 | sub cmt_sha2rev_batch { |
1869 | my %s2r; | |
1870 | my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/); | |
1871 | my $list = shift; | |
1872 | ||
1873 | foreach my $sha (@{$list}) { | |
1874 | my $first = 1; | |
1875 | my $size = 0; | |
1876 | print $out $sha, "\n"; | |
1877 | ||
1878 | while (my $line = <$in>) { | |
1879 | if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) { | |
1880 | last; | |
1881 | } elsif ($first && | |
1882 | $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) { | |
1883 | $first = 0; | |
1884 | $size = $1; | |
1885 | next; | |
1886 | } elsif ($line =~ /^(git-svn-id: )/) { | |
1887 | my (undef, $rev, undef) = | |
1888 | extract_metadata($line); | |
1889 | $s2r{$sha} = $rev; | |
1890 | } | |
1891 | ||
1892 | $size -= length($line); | |
1893 | last if ($size == 0); | |
1894 | } | |
1895 | } | |
1896 | ||
1897 | command_close_bidi_pipe($pid, $in, $out, $ctx); | |
1898 | ||
1899 | return \%s2r; | |
1900 | } | |
1901 | ||
905f8b7d EW |
1902 | sub working_head_info { |
1903 | my ($head, $refs) = @_; | |
83cf21f9 | 1904 | my @args = qw/rev-list --first-parent --pretty=medium/; |
05b4df31 | 1905 | my ($fh, $ctx) = command_output_pipe(@args, $head); |
3dfab993 | 1906 | my $hash; |
40cb8f8f | 1907 | my %max; |
3dfab993 SV |
1908 | while (<$fh>) { |
1909 | if ( m{^commit ($::sha1)$} ) { | |
1910 | unshift @$refs, $hash if $hash and $refs; | |
1911 | $hash = $1; | |
1912 | next; | |
1913 | } | |
1914 | next unless s{^\s*(git-svn-id:)}{$1}; | |
1915 | my ($url, $rev, $uuid) = extract_metadata($_); | |
13c823fb | 1916 | if (defined $url && defined $rev) { |
40cb8f8f | 1917 | next if $max{$url} and $max{$url} < $rev; |
13c823fb | 1918 | if (my $gs = Git::SVN->find_by_url($url)) { |
63c56022 | 1919 | my $c = $gs->rev_map_get($rev, $uuid); |
b03c7a63 | 1920 | if ($c && $c eq $hash) { |
13c823fb EW |
1921 | close $fh; # break the pipe |
1922 | return ($url, $rev, $uuid, $gs); | |
40cb8f8f | 1923 | } else { |
060610c5 | 1924 | $max{$url} ||= $gs->rev_map_max; |
13c823fb EW |
1925 | } |
1926 | } | |
1927 | } | |
905f8b7d | 1928 | } |
13c823fb EW |
1929 | command_close_pipe($fh, $ctx); |
1930 | (undef, undef, undef, undef); | |
905f8b7d EW |
1931 | } |
1932 | ||
733a65aa EW |
1933 | sub read_commit_parents { |
1934 | my ($parents, $c) = @_; | |
7b02b85a EW |
1935 | chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c)); |
1936 | $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n"; | |
1937 | @{$parents->{$c}} = split(/ /, $p); | |
733a65aa EW |
1938 | } |
1939 | ||
1940 | sub linearize_history { | |
1941 | my ($gs, $refs) = @_; | |
1942 | my %parents; | |
1943 | foreach my $c (@$refs) { | |
1944 | read_commit_parents(\%parents, $c); | |
1945 | } | |
1946 | ||
1947 | my @linear_refs; | |
1948 | my %skip = (); | |
1949 | my $last_svn_commit = $gs->last_commit; | |
1950 | foreach my $c (reverse @$refs) { | |
1951 | next if $c eq $last_svn_commit; | |
1952 | last if $skip{$c}; | |
1953 | ||
1954 | unshift @linear_refs, $c; | |
1955 | $skip{$c} = 1; | |
1956 | ||
1957 | # we only want the first parent to diff against for linear | |
1958 | # history, we save the rest to inject when we finalize the | |
1959 | # svn commit | |
1960 | my $fp_a = verify_ref("$c~1"); | |
1961 | my $fp_b = shift @{$parents{$c}} if $parents{$c}; | |
1962 | if (!$fp_a || !$fp_b) { | |
1963 | die "Commit $c\n", | |
1964 | "has no parent commit, and therefore ", | |
1965 | "nothing to diff against.\n", | |
1966 | "You should be working from a repository ", | |
1967 | "originally created by git-svn\n"; | |
1968 | } | |
1969 | if ($fp_a ne $fp_b) { | |
1970 | die "$c~1 = $fp_a, however parsing commit $c ", | |
1971 | "revealed that:\n$c~1 = $fp_b\nBUG!\n"; | |
1972 | } | |
1973 | ||
1974 | foreach my $p (@{$parents{$c}}) { | |
1975 | $skip{$p} = 1; | |
1976 | } | |
1977 | } | |
1978 | (\@linear_refs, \%parents); | |
1979 | } | |
1980 | ||
e6fefa92 DK |
1981 | sub find_file_type_and_diff_status { |
1982 | my ($path) = @_; | |
107cee50 | 1983 | return ('dir', '') if $path eq ''; |
e6fefa92 DK |
1984 | |
1985 | my $diff_output = | |
1986 | command_oneline(qw(diff --cached --name-status --), $path) || ""; | |
1987 | my $diff_status = (split(' ', $diff_output))[0] || ""; | |
1988 | ||
1989 | my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || ""; | |
1990 | ||
1991 | return (undef, undef) if !$diff_status && !$ls_tree; | |
1992 | ||
1993 | if ($diff_status eq "A") { | |
1994 | return ("link", $diff_status) if -l $path; | |
1995 | return ("dir", $diff_status) if -d $path; | |
1996 | return ("file", $diff_status); | |
1997 | } | |
1998 | ||
1999 | my $mode = (split(' ', $ls_tree))[0] || ""; | |
2000 | ||
2001 | return ("link", $diff_status) if $mode eq "120000"; | |
2002 | return ("dir", $diff_status) if $mode eq "040000"; | |
2003 | return ("file", $diff_status); | |
2004 | } | |
2005 | ||
b2b3ada7 DK |
2006 | sub md5sum { |
2007 | my $arg = shift; | |
2008 | my $ref = ref $arg; | |
2009 | my $md5 = Digest::MD5->new(); | |
0b19138b | 2010 | if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') { |
b2b3ada7 DK |
2011 | $md5->addfile($arg) or croak $!; |
2012 | } elsif ($ref eq 'SCALAR') { | |
2013 | $md5->add($$arg) or croak $!; | |
2014 | } elsif (!$ref) { | |
2015 | $md5->add($arg) or croak $!; | |
2016 | } else { | |
2017 | ::fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'"; | |
2018 | } | |
2019 | return $md5->hexdigest(); | |
2020 | } | |
2021 | ||
2da9ee08 RZ |
2022 | sub gc_directory { |
2023 | if ($can_compress && -f $_ && basename($_) eq "unhandled.log") { | |
2024 | my $out_filename = $_ . ".gz"; | |
2025 | open my $in_fh, "<", $_ or die "Unable to open $_: $!\n"; | |
2026 | binmode $in_fh; | |
2027 | my $gz = Compress::Zlib::gzopen($out_filename, "ab") or | |
2028 | die "Unable to open $out_filename: $!\n"; | |
2029 | ||
2030 | my $res; | |
2031 | while ($res = sysread($in_fh, my $str, 1024)) { | |
2032 | $gz->gzwrite($str) or | |
2033 | die "Unable to write: ".$gz->gzerror()."!\n"; | |
2034 | } | |
2035 | unlink $_ or die "unlink $File::Find::name: $!\n"; | |
2036 | } elsif (-f $_ && basename($_) eq "index") { | |
2037 | unlink $_ or die "unlink $_: $!\n"; | |
2038 | } | |
2039 | } | |
2040 | ||
9b981fc6 EW |
2041 | package Git::SVN; |
2042 | use strict; | |
2043 | use warnings; | |
060610c5 EW |
2044 | use Fcntl qw/:DEFAULT :seek/; |
2045 | use constant rev_map_fmt => 'NH40'; | |
ecc712dd | 2046 | use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent |
62e349d2 | 2047 | $_repack $_repack_flags $_use_svm_props $_head |
70ae04e4 | 2048 | $_use_svnsync_props $no_reuse_existing $_minimize_url |
e82f0d73 | 2049 | $_use_log_author $_add_author_from $_localtime/; |
9b981fc6 EW |
2050 | use Carp qw/croak/; |
2051 | use File::Path qw/mkpath/; | |
373274f9 | 2052 | use File::Copy qw/copy/; |
9b981fc6 | 2053 | use IPC::Open3; |
6aa17fc6 | 2054 | use Time::Local; |
7d944c33 | 2055 | use Memoize; # core since 5.8.0, Jul 2002 |
8bff7c53 | 2056 | use Memoize::Storable; |
037a98cd | 2057 | use POSIX qw(:signal_h); |
68f532f4 JN |
2058 | my $can_use_yaml; |
2059 | BEGIN { | |
2060 | $can_use_yaml = eval { require Git::SVN::Memoize::YAML; 1}; | |
2061 | } | |
9b981fc6 | 2062 | |
94bc914c KW |
2063 | my ($_gc_nr, $_gc_period); |
2064 | ||
9b981fc6 EW |
2065 | # properties that we do not log: |
2066 | my %SKIP_PROP; | |
2067 | BEGIN { | |
2068 | %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url | |
2069 | svn:special svn:executable | |
2070 | svn:entry:committed-rev | |
2071 | svn:entry:last-author | |
2072 | svn:entry:uuid | |
2073 | svn:entry:committed-date/; | |
91b03282 EW |
2074 | |
2075 | # some options are read globally, but can be overridden locally | |
2076 | # per [svn-remote "..."] section. Command-line options will *NOT* | |
2077 | # override options set in an [svn-remote "..."] section | |
c5f71ad0 SV |
2078 | no strict 'refs'; |
2079 | for my $option (qw/follow_parent no_metadata use_svm_props | |
2080 | use_svnsync_props/) { | |
2081 | my $key = $option; | |
91b03282 | 2082 | $key =~ tr/_//d; |
c5f71ad0 SV |
2083 | my $prop = "-$option"; |
2084 | *$option = sub { | |
2085 | my ($self) = @_; | |
2086 | return $self->{$prop} if exists $self->{$prop}; | |
2087 | my $k = "svn-remote.$self->{repo_id}.$key"; | |
2088 | eval { command_oneline(qw/config --get/, $k) }; | |
2089 | if ($@) { | |
2090 | $self->{$prop} = ${"Git::SVN::_$option"}; | |
91b03282 | 2091 | } else { |
c5f71ad0 SV |
2092 | my $v = command_oneline(qw/config --bool/,$k); |
2093 | $self->{$prop} = $v eq 'false' ? 0 : 1; | |
91b03282 | 2094 | } |
c5f71ad0 SV |
2095 | return $self->{$prop}; |
2096 | } | |
91b03282 | 2097 | } |
9b981fc6 EW |
2098 | } |
2099 | ||
0b19138b | 2100 | |
321b1842 EW |
2101 | my (%LOCKFILES, %INDEX_FILES); |
2102 | END { | |
2103 | unlink keys %LOCKFILES if %LOCKFILES; | |
2104 | unlink keys %INDEX_FILES if %INDEX_FILES; | |
2105 | } | |
373274f9 | 2106 | |
4bb9ed04 EW |
2107 | sub resolve_local_globs { |
2108 | my ($url, $fetch, $glob_spec) = @_; | |
2109 | return unless defined $glob_spec; | |
2110 | my $ref = $glob_spec->{ref}; | |
2111 | my $path = $glob_spec->{path}; | |
6f5748e1 AB |
2112 | foreach (command(qw#for-each-ref --format=%(refname) refs/#)) { |
2113 | next unless m#^$ref->{regex}$#; | |
4bb9ed04 | 2114 | my $p = $1; |
bf655fd7 RE |
2115 | my $pathname = desanitize_refname($path->full_path($p)); |
2116 | my $refname = desanitize_refname($ref->full_path($p)); | |
4bb9ed04 EW |
2117 | if (my $existing = $fetch->{$pathname}) { |
2118 | if ($existing ne $refname) { | |
2119 | die "Refspec conflict:\n", | |
6f5748e1 AB |
2120 | "existing: $existing\n", |
2121 | " globbed: $refname\n"; | |
4bb9ed04 | 2122 | } |
6f5748e1 | 2123 | my $u = (::cmt_metadata("$refname"))[0]; |
4e9f6cc7 | 2124 | $u =~ s!^\Q$url\E(/|$)!! or die |
6f5748e1 | 2125 | "$refname: '$url' not found in '$u'\n"; |
4bb9ed04 EW |
2126 | if ($pathname ne $u) { |
2127 | warn "W: Refspec glob conflict ", | |
6f5748e1 | 2128 | "(ref: $refname):\n", |
4bb9ed04 EW |
2129 | "expected path: $pathname\n", |
2130 | " real path: $u\n", | |
2131 | "Continuing ahead with $u\n"; | |
2132 | next; | |
2133 | } | |
2134 | } else { | |
4bb9ed04 EW |
2135 | $fetch->{$pathname} = $refname; |
2136 | } | |
2137 | } | |
2138 | } | |
2139 | ||
e98671e5 EW |
2140 | sub parse_revision_argument { |
2141 | my ($base, $head) = @_; | |
2142 | if (!defined $::_revision || $::_revision eq 'BASE:HEAD') { | |
2143 | return ($base, $head); | |
2144 | } | |
2145 | return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/); | |
2146 | return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/); | |
2147 | return ($head, $head) if ($::_revision eq 'HEAD'); | |
2148 | return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/); | |
2149 | return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/); | |
2150 | die "revision argument: $::_revision not understood by git-svn\n"; | |
2151 | } | |
2152 | ||
0af9c9f9 | 2153 | sub fetch_all { |
4bb9ed04 | 2154 | my ($repo_id, $remotes) = @_; |
905f8b7d EW |
2155 | if (ref $repo_id) { |
2156 | my $gs = $repo_id; | |
2157 | $repo_id = undef; | |
2158 | $repo_id = $gs->{repo_id}; | |
2159 | } | |
2160 | $remotes ||= read_all_remotes(); | |
7447b4bc EW |
2161 | my $remote = $remotes->{$repo_id} or |
2162 | die "[svn-remote \"$repo_id\"] unknown\n"; | |
e518192f | 2163 | my $fetch = $remote->{fetch}; |
7447b4bc | 2164 | my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n"; |
e518192f | 2165 | my (@gs, @globs); |
0af9c9f9 | 2166 | my $ra = Git::SVN::Ra->new($url); |
26a62d57 | 2167 | my $uuid = $ra->get_uuid; |
0af9c9f9 | 2168 | my $head = $ra->get_latest_revnum; |
577e9fca EW |
2169 | |
2170 | # ignore errors, $head revision may not even exist anymore | |
2171 | eval { $ra->get_log("", $head, 0, 1, 0, 1, sub { $head = $_[1] }) }; | |
2172 | warn "W: $@\n" if $@; | |
2173 | ||
28710f74 | 2174 | my $base = defined $fetch ? $head : 0; |
e518192f EW |
2175 | |
2176 | # read the max revs for wildcard expansion (branches/*, tags/*) | |
2177 | foreach my $t (qw/branches tags/) { | |
2178 | defined $remote->{$t} or next; | |
62244069 MB |
2179 | push @globs, @{$remote->{$t}}; |
2180 | ||
93f2689c EW |
2181 | my $max_rev = eval { tmp_config(qw/--int --get/, |
2182 | "svn-remote.$repo_id.${t}-maxRev") }; | |
2183 | if (defined $max_rev && ($max_rev < $base)) { | |
2184 | $base = $max_rev; | |
d6d3346b EW |
2185 | } elsif (!defined $max_rev) { |
2186 | $base = 0; | |
e518192f EW |
2187 | } |
2188 | } | |
2189 | ||
db03cd24 EW |
2190 | if ($fetch) { |
2191 | foreach my $p (sort keys %$fetch) { | |
2192 | my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p); | |
060610c5 | 2193 | my $lr = $gs->rev_map_max; |
db03cd24 EW |
2194 | if (defined $lr) { |
2195 | $base = $lr if ($lr < $base); | |
2196 | } | |
2197 | push @gs, $gs; | |
0af9c9f9 | 2198 | } |
0af9c9f9 | 2199 | } |
e98671e5 EW |
2200 | |
2201 | ($base, $head) = parse_revision_argument($base, $head); | |
e518192f | 2202 | $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs); |
0af9c9f9 EW |
2203 | } |
2204 | ||
47e39c55 EW |
2205 | sub read_all_remotes { |
2206 | my $r = {}; | |
63c56022 JA |
2207 | my $use_svm_props = eval { command_oneline(qw/config --bool |
2208 | svn.useSvmProps/) }; | |
2209 | $use_svm_props = $use_svm_props eq 'true' if $use_svm_props; | |
ffd5c8e4 | 2210 | my $svn_refspec = qr{\s*(.*?)\s*:\s*(.+?)\s*}; |
8b8fc068 | 2211 | foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) { |
6f5748e1 AB |
2212 | if (m!^(.+)\.fetch=$svn_refspec$!) { |
2213 | my ($remote, $local_ref, $remote_ref) = ($1, $2, $3); | |
2214 | die("svn-remote.$remote: remote ref '$remote_ref' " | |
2215 | . "must start with 'refs/'\n") | |
2216 | unless $remote_ref =~ m{^refs/}; | |
46cb16fb | 2217 | $local_ref = uri_decode($local_ref); |
46cf98ba | 2218 | $r->{$remote}->{fetch}->{$local_ref} = $remote_ref; |
63c56022 JA |
2219 | $r->{$remote}->{svm} = {} if $use_svm_props; |
2220 | } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) { | |
2221 | $r->{$1}->{svm} = {}; | |
47e39c55 EW |
2222 | } elsif (m!^(.+)\.url=\s*(.*)\s*$!) { |
2223 | $r->{$1}->{url} = $2; | |
12a296bc AS |
2224 | } elsif (m!^(.+)\.pushurl=\s*(.*)\s*$!) { |
2225 | $r->{$1}->{pushurl} = $2; | |
cdb51a13 MO |
2226 | } elsif (m!^(.+)\.ignore-refs=\s*(.*)\s*$!) { |
2227 | $r->{$1}->{ignore_refs_regex} = $2; | |
6f5748e1 AB |
2228 | } elsif (m!^(.+)\.(branches|tags)=$svn_refspec$!) { |
2229 | my ($remote, $t, $local_ref, $remote_ref) = | |
2230 | ($1, $2, $3, $4); | |
2231 | die("svn-remote.$remote: remote ref '$remote_ref' ($t) " | |
2232 | . "must start with 'refs/'\n") | |
2233 | unless $remote_ref =~ m{^refs/}; | |
46cb16fb | 2234 | $local_ref = uri_decode($local_ref); |
62244069 | 2235 | my $rs = { |
6f5748e1 AB |
2236 | t => $t, |
2237 | remote => $remote, | |
07576208 JS |
2238 | path => Git::SVN::GlobSpec->new($local_ref, 1), |
2239 | ref => Git::SVN::GlobSpec->new($remote_ref, 0) }; | |
4bb9ed04 EW |
2240 | if (length($rs->{ref}->{right}) != 0) { |
2241 | die "The '*' glob character must be the last ", | |
6f5748e1 | 2242 | "character of '$remote_ref'\n"; |
4bb9ed04 | 2243 | } |
6f5748e1 | 2244 | push @{ $r->{$remote}->{$t} }, $rs; |
47e39c55 EW |
2245 | } |
2246 | } | |
63c56022 JA |
2247 | |
2248 | map { | |
2249 | if (defined $r->{$_}->{svm}) { | |
2250 | my $svm; | |
2251 | eval { | |
2252 | my $section = "svn-remote.$_"; | |
2253 | $svm = { | |
2254 | source => tmp_config('--get', | |
2255 | "$section.svm-source"), | |
2256 | replace => tmp_config('--get', | |
2257 | "$section.svm-replace"), | |
2258 | } | |
2259 | }; | |
2260 | $r->{$_}->{svm} = $svm; | |
2261 | } | |
2262 | } keys %$r; | |
2263 | ||
cdb51a13 MO |
2264 | foreach my $remote (keys %$r) { |
2265 | foreach ( grep { defined $_ } | |
2266 | map { $r->{$remote}->{$_} } qw(branches tags) ) { | |
2267 | foreach my $rs ( @$_ ) { | |
2268 | $rs->{ignore_refs_regex} = | |
2269 | $r->{$remote}->{ignore_refs_regex}; | |
2270 | } | |
2271 | } | |
2272 | } | |
2273 | ||
47e39c55 EW |
2274 | $r; |
2275 | } | |
2276 | ||
ecc712dd | 2277 | sub init_vars { |
94bc914c | 2278 | $_gc_nr = $_gc_period = 1000; |
af788a6e KW |
2279 | if (defined $_repack || defined $_repack_flags) { |
2280 | warn "Repack options are obsolete; they have no effect.\n"; | |
2281 | } | |
ecc712dd EW |
2282 | } |
2283 | ||
b805b44a | 2284 | sub verify_remotes_sanity { |
536c4b09 | 2285 | return unless -d $ENV{GIT_DIR}; |
b805b44a EW |
2286 | my %seen; |
2287 | foreach (command(qw/config -l/)) { | |
2288 | if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) { | |
2289 | if ($seen{$1}) { | |
2290 | die "Remote ref refs/remote/$1 is tracked by", | |
2291 | "\n \"$_\"\nand\n \"$seen{$1}\"\n", | |
2292 | "Please resolve this ambiguity in ", | |
2293 | "your git configuration file before ", | |
2294 | "continuing\n"; | |
2295 | } | |
2296 | $seen{$1} = $_; | |
2297 | } | |
2298 | } | |
2299 | } | |
2300 | ||
e6434f87 EW |
2301 | sub find_existing_remote { |
2302 | my ($url, $remotes) = @_; | |
befc9adc | 2303 | return undef if $no_reuse_existing; |
e6434f87 EW |
2304 | my $existing; |
2305 | foreach my $repo_id (keys %$remotes) { | |
2306 | my $u = $remotes->{$repo_id}->{url} or next; | |
2307 | next if $u ne $url; | |
2308 | $existing = $repo_id; | |
2309 | last; | |
2310 | } | |
2311 | $existing; | |
2312 | } | |
b805b44a | 2313 | |
e6434f87 | 2314 | sub init_remote_config { |
d8115c51 | 2315 | my ($self, $url, $no_write) = @_; |
e6434f87 EW |
2316 | $url =~ s!/+$!!; # strip trailing slash |
2317 | my $r = read_all_remotes(); | |
2318 | my $existing = find_existing_remote($url, $r); | |
2319 | if ($existing) { | |
e518192f EW |
2320 | unless ($no_write) { |
2321 | print STDERR "Using existing ", | |
2322 | "[svn-remote \"$existing\"]\n"; | |
2323 | } | |
e6434f87 | 2324 | $self->{repo_id} = $existing; |
4a1bb4c3 | 2325 | } elsif ($_minimize_url) { |
e6434f87 EW |
2326 | my $min_url = Git::SVN::Ra->new($url)->minimize_url; |
2327 | $existing = find_existing_remote($min_url, $r); | |
2328 | if ($existing) { | |
e518192f EW |
2329 | unless ($no_write) { |
2330 | print STDERR "Using existing ", | |
2331 | "[svn-remote \"$existing\"]\n"; | |
2332 | } | |
e6434f87 EW |
2333 | $self->{repo_id} = $existing; |
2334 | } | |
2335 | if ($min_url ne $url) { | |
e518192f EW |
2336 | unless ($no_write) { |
2337 | print STDERR "Using higher level of URL: ", | |
2338 | "$url => $min_url\n"; | |
2339 | } | |
e6434f87 EW |
2340 | my $old_path = $self->{path}; |
2341 | $self->{path} = $url; | |
4e9f6cc7 | 2342 | $self->{path} =~ s!^\Q$min_url\E(/|$)!!; |
e6434f87 EW |
2343 | if (length $old_path) { |
2344 | $self->{path} .= "/$old_path"; | |
2345 | } | |
2346 | $url = $min_url; | |
2347 | } | |
2348 | } | |
2349 | my $orig_url; | |
2350 | if (!$existing) { | |
b805b44a | 2351 | # verify that we aren't overwriting anything: |
e6434f87 | 2352 | $orig_url = eval { |
706587fc | 2353 | command_oneline('config', '--get', |
e6434f87 | 2354 | "svn-remote.$self->{repo_id}.url") |
706587fc | 2355 | }; |
b805b44a | 2356 | if ($orig_url && ($orig_url ne $url)) { |
e6434f87 | 2357 | die "svn-remote.$self->{repo_id}.url already set: ", |
b805b44a EW |
2358 | "$orig_url\nwanted to set to: $url\n"; |
2359 | } | |
9b981fc6 | 2360 | } |
e6434f87 | 2361 | my ($xrepo_id, $xpath) = find_ref($self->refname); |
6f5748e1 | 2362 | if (!$no_write && defined $xpath) { |
e6434f87 | 2363 | die "svn-remote.$xrepo_id.fetch already set to track ", |
6f5748e1 | 2364 | "$xpath:", $self->refname, "\n"; |
e6434f87 | 2365 | } |
d8115c51 EW |
2366 | unless ($no_write) { |
2367 | command_noisy('config', | |
2368 | "svn-remote.$self->{repo_id}.url", $url); | |
46cf98ba | 2369 | $self->{path} =~ s{^/}{}; |
5268f9ed | 2370 | $self->{path} =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg; |
d8115c51 EW |
2371 | command_noisy('config', '--add', |
2372 | "svn-remote.$self->{repo_id}.fetch", | |
2373 | "$self->{path}:".$self->refname); | |
2374 | } | |
9b981fc6 | 2375 | $self->{url} = $url; |
e6434f87 EW |
2376 | } |
2377 | ||
a8ae2623 EW |
2378 | sub find_by_url { # repos_root and, path are optional |
2379 | my ($class, $full_url, $repos_root, $path) = @_; | |
56973d20 | 2380 | |
1a97a506 | 2381 | return undef unless defined $full_url; |
56973d20 AR |
2382 | remove_username($full_url); |
2383 | remove_username($repos_root) if defined $repos_root; | |
a8ae2623 EW |
2384 | my $remotes = read_all_remotes(); |
2385 | if (defined $full_url && defined $repos_root && !defined $path) { | |
2386 | $path = $full_url; | |
2387 | $path =~ s#^\Q$repos_root\E(?:/|$)##; | |
2388 | } | |
2389 | foreach my $repo_id (keys %$remotes) { | |
2390 | my $u = $remotes->{$repo_id}->{url} or next; | |
56973d20 | 2391 | remove_username($u); |
a8ae2623 EW |
2392 | next if defined $repos_root && $repos_root ne $u; |
2393 | ||
2394 | my $fetch = $remotes->{$repo_id}->{fetch} || {}; | |
62244069 MB |
2395 | foreach my $t (qw/branches tags/) { |
2396 | foreach my $globspec (@{$remotes->{$repo_id}->{$t}}) { | |
2397 | resolve_local_globs($u, $fetch, $globspec); | |
2398 | } | |
a8ae2623 EW |
2399 | } |
2400 | my $p = $path; | |
0bb91d9a | 2401 | my $rwr = rewrite_root({repo_id => $repo_id}); |
63c56022 JA |
2402 | my $svm = $remotes->{$repo_id}->{svm} |
2403 | if defined $remotes->{$repo_id}->{svm}; | |
a8ae2623 EW |
2404 | unless (defined $p) { |
2405 | $p = $full_url; | |
0bb91d9a | 2406 | my $z = $u; |
63c56022 | 2407 | my $prefix = ''; |
0bb91d9a JG |
2408 | if ($rwr) { |
2409 | $z = $rwr; | |
1b7e543a | 2410 | remove_username($z); |
63c56022 JA |
2411 | } elsif (defined $svm) { |
2412 | $z = $svm->{source}; | |
2413 | $prefix = $svm->{replace}; | |
2414 | $prefix =~ s#^\Q$u\E(?:/|$)##; | |
2415 | $prefix =~ s#/$##; | |
0bb91d9a | 2416 | } |
63c56022 | 2417 | $p =~ s#^\Q$z\E(?:/|$)#$prefix# or next; |
a8ae2623 EW |
2418 | } |
2419 | foreach my $f (keys %$fetch) { | |
2420 | next if $f ne $p; | |
2421 | return Git::SVN->new($fetch->{$f}, $repo_id, $f); | |
2422 | } | |
2423 | } | |
2424 | undef; | |
2425 | } | |
2426 | ||
e6434f87 | 2427 | sub init { |
d8115c51 | 2428 | my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_; |
e6434f87 EW |
2429 | my $self = _new($class, $repo_id, $ref_id, $path); |
2430 | if (defined $url) { | |
d8115c51 | 2431 | $self->init_remote_config($url, $no_write); |
e6434f87 | 2432 | } |
9b981fc6 EW |
2433 | $self; |
2434 | } | |
2435 | ||
706587fc EW |
2436 | sub find_ref { |
2437 | my ($ref_id) = @_; | |
2438 | foreach (command(qw/config -l/)) { | |
2439 | next unless m!^svn-remote\.(.+)\.fetch= | |
ffd5c8e4 | 2440 | \s*(.*?)\s*:\s*(.+?)\s*$!x; |
706587fc EW |
2441 | my ($repo_id, $path, $ref) = ($1, $2, $3); |
2442 | if ($ref eq $ref_id) { | |
2443 | $path = '' if ($path =~ m#^\./?#); | |
2444 | return ($repo_id, $path); | |
2445 | } | |
2446 | } | |
2447 | (undef, undef, undef); | |
2448 | } | |
2449 | ||
9b981fc6 | 2450 | sub new { |
706587fc EW |
2451 | my ($class, $ref_id, $repo_id, $path) = @_; |
2452 | if (defined $ref_id && !defined $repo_id && !defined $path) { | |
2453 | ($repo_id, $path) = find_ref($ref_id); | |
2454 | if (!defined $repo_id) { | |
2455 | die "Could not find a \"svn-remote.*.fetch\" key ", | |
2456 | "in the repository configuration matching: ", | |
6f5748e1 | 2457 | "$ref_id\n"; |
706587fc EW |
2458 | } |
2459 | } | |
2460 | my $self = _new($class, $repo_id, $ref_id, $path); | |
8b8fc068 EW |
2461 | if (!defined $self->{path} || !length $self->{path}) { |
2462 | my $fetch = command_oneline('config', '--get', | |
2463 | "svn-remote.$repo_id.fetch", | |
6f5748e1 | 2464 | ":$ref_id\$") or |
8b8fc068 | 2465 | die "Failed to read \"svn-remote.$repo_id.fetch\" ", |
6f5748e1 | 2466 | "\":$ref_id\$\" in config\n"; |
8b8fc068 EW |
2467 | ($self->{path}, undef) = split(/\s*:\s*/, $fetch); |
2468 | } | |
b1a954a3 EW |
2469 | $self->{path} =~ s{/+}{/}g; |
2470 | $self->{path} =~ s{\A/}{}; | |
2471 | $self->{path} =~ s{/\z}{}; | |
706587fc EW |
2472 | $self->{url} = command_oneline('config', '--get', |
2473 | "svn-remote.$repo_id.url") or | |
2474 | die "Failed to read \"svn-remote.$repo_id.url\" in config\n"; | |
12a296bc AS |
2475 | $self->{pushurl} = eval { command_oneline('config', '--get', |
2476 | "svn-remote.$repo_id.pushurl") }; | |
d6d3346b | 2477 | $self->rebuild; |
9b981fc6 EW |
2478 | $self; |
2479 | } | |
2480 | ||
bf655fd7 | 2481 | sub refname { |
6f5748e1 | 2482 | my ($refname) = $_[0]->{ref_id} ; |
bf655fd7 RE |
2483 | |
2484 | # It cannot end with a slash /, we'll throw up on this because | |
2485 | # SVN can't have directories with a slash in their name, either: | |
2486 | if ($refname =~ m{/$}) { | |
2487 | die "ref: '$refname' ends with a trailing slash, this is ", | |
2488 | "not permitted by git nor Subversion\n"; | |
2489 | } | |
2490 | ||
2491 | # It cannot have ASCII control character space, tilde ~, caret ^, | |
2492 | # colon :, question-mark ?, asterisk *, space, or open bracket [ | |
2493 | # anywhere. | |
2494 | # | |
2495 | # Additionally, % must be escaped because it is used for escaping | |
2496 | # and we want our escaped refname to be reversible | |
2497 | $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg; | |
2498 | ||
2499 | # no slash-separated component can begin with a dot . | |
2500 | # /.* becomes /%2E* | |
2501 | $refname =~ s{/\.}{/%2E}g; | |
2502 | ||
2503 | # It cannot have two consecutive dots .. anywhere | |
2504 | # .. becomes %2E%2E | |
2505 | $refname =~ s{\.\.}{%2E%2E}g; | |
2506 | ||
73d41955 TS |
2507 | # trailing dots and .lock are not allowed |
2508 | # .$ becomes %2E and .lock becomes %2Elock | |
2509 | $refname =~ s{\.(?=$|lock$)}{%2E}; | |
2510 | ||
2511 | # the sequence @{ is used to access the reflog | |
2512 | # @{ becomes %40{ | |
2513 | $refname =~ s{\@\{}{%40\{}g; | |
2514 | ||
bf655fd7 RE |
2515 | return $refname; |
2516 | } | |
2517 | ||
2518 | sub desanitize_refname { | |
2519 | my ($refname) = @_; | |
2520 | $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg; | |
2521 | return $refname; | |
2522 | } | |
9b981fc6 | 2523 | |
26a62d57 EW |
2524 | sub svm_uuid { |
2525 | my ($self) = @_; | |
2526 | return $self->{svm}->{uuid} if $self->svm; | |
2527 | $self->ra; | |
2528 | unless ($self->{svm}) { | |
2529 | die "SVM UUID not cached, and reading remotely failed\n"; | |
2530 | } | |
2531 | $self->{svm}->{uuid}; | |
2532 | } | |
8a49ee97 | 2533 | |
26a62d57 EW |
2534 | sub svm { |
2535 | my ($self) = @_; | |
2536 | return $self->{svm} if $self->{svm}; | |
2537 | my $svm; | |
8a49ee97 EW |
2538 | # see if we have it in our config, first: |
2539 | eval { | |
26a62d57 EW |
2540 | my $section = "svn-remote.$self->{repo_id}"; |
2541 | $svm = { | |
93f2689c EW |
2542 | source => tmp_config('--get', "$section.svm-source"), |
2543 | uuid => tmp_config('--get', "$section.svm-uuid"), | |
befc9adc | 2544 | replace => tmp_config('--get', "$section.svm-replace"), |
8a49ee97 EW |
2545 | } |
2546 | }; | |
befc9adc EW |
2547 | if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) { |
2548 | $self->{svm} = $svm; | |
2549 | } | |
26a62d57 EW |
2550 | $self->{svm}; |
2551 | } | |
2552 | ||
2553 | sub _set_svm_vars { | |
2554 | my ($self, $ra) = @_; | |
db03cd24 EW |
2555 | return $ra if $self->svm; |
2556 | ||
2557 | my @err = ( "useSvmProps set, but failed to read SVM properties\n", | |
befc9adc | 2558 | "(svm:source, svm:uuid) ", |
db03cd24 EW |
2559 | "from the following URLs:\n" ); |
2560 | sub read_svm_props { | |
befc9adc EW |
2561 | my ($self, $ra, $path, $r) = @_; |
2562 | my $props = ($ra->get_dir($path, $r))[2]; | |
db03cd24 | 2563 | my $src = $props->{'svm:source'}; |
db03cd24 | 2564 | my $uuid = $props->{'svm:uuid'}; |
befc9adc | 2565 | return undef if (!$src || !$uuid); |
26a62d57 | 2566 | |
befc9adc | 2567 | chomp($src, $uuid); |
26a62d57 | 2568 | |
b3e95936 | 2569 | $uuid =~ m{^[0-9a-f\-]{30,}$}i |
db03cd24 | 2570 | or die "doesn't look right - svm:uuid is '$uuid'\n"; |
befc9adc EW |
2571 | |
2572 | # the '!' is used to mark the repos_root!/relative/path | |
2573 | $src =~ s{/?!/?}{/}; | |
db03cd24 | 2574 | $src =~ s{/+$}{}; # no trailing slashes please |
befc9adc | 2575 | # username is of no interest |
8a49ee97 | 2576 | $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1}; |
8a49ee97 | 2577 | |
befc9adc EW |
2578 | my $replace = $ra->{url}; |
2579 | $replace .= "/$path" if length $path; | |
2580 | ||
db03cd24 | 2581 | my $section = "svn-remote.$self->{repo_id}"; |
befc9adc EW |
2582 | tmp_config("$section.svm-source", $src); |
2583 | tmp_config("$section.svm-replace", $replace); | |
2584 | tmp_config("$section.svm-uuid", $uuid); | |
2585 | $self->{svm} = { | |
2586 | source => $src, | |
2587 | uuid => $uuid, | |
2588 | replace => $replace | |
2589 | }; | |
db03cd24 EW |
2590 | } |
2591 | ||
2592 | my $r = $ra->get_latest_revnum; | |
2593 | my $path = $self->{path}; | |
befc9adc | 2594 | my %tried; |
db03cd24 | 2595 | while (length $path) { |
befc9adc EW |
2596 | unless ($tried{"$self->{url}/$path"}) { |
2597 | return $ra if $self->read_svm_props($ra, $path, $r); | |
2598 | $tried{"$self->{url}/$path"} = 1; | |
db03cd24 | 2599 | } |
befc9adc | 2600 | $path =~ s#/?[^/]+$##; |
8a49ee97 | 2601 | } |
befc9adc EW |
2602 | die "Path: '$path' should be ''\n" if $path ne ''; |
2603 | return $ra if $self->read_svm_props($ra, $path, $r); | |
2604 | $tried{"$self->{url}/$path"} = 1; | |
db03cd24 EW |
2605 | |
2606 | if ($ra->{repos_root} eq $self->{url}) { | |
befc9adc | 2607 | die @err, (map { " $_\n" } keys %tried), "\n"; |
db03cd24 EW |
2608 | } |
2609 | ||
2610 | # nope, make sure we're connected to the repository root: | |
2611 | my $ok; | |
2612 | my @tried_b; | |
2613 | $path = $ra->{svn_path}; | |
db03cd24 EW |
2614 | $ra = Git::SVN::Ra->new($ra->{repos_root}); |
2615 | while (length $path) { | |
befc9adc EW |
2616 | unless ($tried{"$ra->{url}/$path"}) { |
2617 | $ok = $self->read_svm_props($ra, $path, $r); | |
2618 | last if $ok; | |
2619 | $tried{"$ra->{url}/$path"} = 1; | |
2620 | } | |
2621 | $path =~ s#/?[^/]+$##; | |
db03cd24 | 2622 | } |
befc9adc EW |
2623 | die "Path: '$path' should be ''\n" if $path ne ''; |
2624 | $ok ||= $self->read_svm_props($ra, $path, $r); | |
2625 | $tried{"$ra->{url}/$path"} = 1; | |
db03cd24 | 2626 | if (!$ok) { |
befc9adc | 2627 | die @err, (map { " $_\n" } keys %tried), "\n"; |
db03cd24 EW |
2628 | } |
2629 | Git::SVN::Ra->new($self->{url}); | |
8a49ee97 EW |
2630 | } |
2631 | ||
62e349d2 EW |
2632 | sub svnsync { |
2633 | my ($self) = @_; | |
2634 | return $self->{svnsync} if $self->{svnsync}; | |
2635 | ||
2636 | if ($self->no_metadata) { | |
2637 | die "Can't have both 'noMetadata' and ", | |
2638 | "'useSvnsyncProps' options set!\n"; | |
2639 | } | |
2640 | if ($self->rewrite_root) { | |
2641 | die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ", | |
2642 | "options set!\n"; | |
2643 | } | |
3e18ce1a JS |
2644 | if ($self->rewrite_uuid) { |
2645 | die "Can't have both 'useSvnsyncProps' and 'rewriteUUID' ", | |
2646 | "options set!\n"; | |
2647 | } | |
62e349d2 EW |
2648 | |
2649 | my $svnsync; | |
2650 | # see if we have it in our config, first: | |
2651 | eval { | |
2652 | my $section = "svn-remote.$self->{repo_id}"; | |
98fa5b68 EW |
2653 | |
2654 | my $url = tmp_config('--get', "$section.svnsync-url"); | |
2655 | ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or | |
2656 | die "doesn't look right - svn:sync-from-url is '$url'\n"; | |
2657 | ||
2658 | my $uuid = tmp_config('--get', "$section.svnsync-uuid"); | |
b3e95936 | 2659 | ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or |
98fa5b68 EW |
2660 | die "doesn't look right - svn:sync-from-uuid is '$uuid'\n"; |
2661 | ||
2662 | $svnsync = { url => $url, uuid => $uuid } | |
62e349d2 EW |
2663 | }; |
2664 | if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) { | |
2665 | return $self->{svnsync} = $svnsync; | |
2666 | } | |
2667 | ||
2668 | my $err = "useSvnsyncProps set, but failed to read " . | |
2669 | "svnsync property: svn:sync-from-"; | |
2670 | my $rp = $self->ra->rev_proplist(0); | |
2671 | ||
2672 | my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n"; | |
98fa5b68 | 2673 | ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or |
62e349d2 EW |
2674 | die "doesn't look right - svn:sync-from-url is '$url'\n"; |
2675 | ||
2676 | my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n"; | |
b3e95936 | 2677 | ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or |
62e349d2 EW |
2678 | die "doesn't look right - svn:sync-from-uuid is '$uuid'\n"; |
2679 | ||
2680 | my $section = "svn-remote.$self->{repo_id}"; | |
2681 | tmp_config('--add', "$section.svnsync-uuid", $uuid); | |
2682 | tmp_config('--add', "$section.svnsync-url", $url); | |
2683 | return $self->{svnsync} = { url => $url, uuid => $uuid }; | |
2684 | } | |
2685 | ||
26a62d57 EW |
2686 | # this allows us to memoize our SVN::Ra UUID locally and avoid a |
2687 | # remote lookup (useful for 'git svn log'). | |
2688 | sub ra_uuid { | |
2689 | my ($self) = @_; | |
2690 | unless ($self->{ra_uuid}) { | |
2691 | my $key = "svn-remote.$self->{repo_id}.uuid"; | |
2692 | my $uuid = eval { tmp_config('--get', $key) }; | |
b3e95936 | 2693 | if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/i) { |
26a62d57 EW |
2694 | $self->{ra_uuid} = $uuid; |
2695 | } else { | |
2696 | die "ra_uuid called without URL\n" unless $self->{url}; | |
2697 | $self->{ra_uuid} = $self->ra->get_uuid; | |
2698 | tmp_config('--add', $key, $self->{ra_uuid}); | |
2699 | } | |
2700 | } | |
2701 | $self->{ra_uuid}; | |
2702 | } | |
2703 | ||
a5460eb7 EW |
2704 | sub _set_repos_root { |
2705 | my ($self, $repos_root) = @_; | |
2706 | my $k = "svn-remote.$self->{repo_id}.reposRoot"; | |
2707 | $repos_root ||= $self->ra->{repos_root}; | |
2708 | tmp_config($k, $repos_root); | |
2709 | $repos_root; | |
2710 | } | |
2711 | ||
2712 | sub repos_root { | |
2713 | my ($self) = @_; | |
2714 | my $k = "svn-remote.$self->{repo_id}.reposRoot"; | |
2715 | eval { tmp_config('--get', $k) } || $self->_set_repos_root; | |
2716 | } | |
2717 | ||
9b981fc6 EW |
2718 | sub ra { |
2719 | my ($self) = shift; | |
8a49ee97 | 2720 | my $ra = Git::SVN::Ra->new($self->{url}); |
a5460eb7 | 2721 | $self->_set_repos_root($ra->{repos_root}); |
91b03282 EW |
2722 | if ($self->use_svm_props && !$self->{svm}) { |
2723 | if ($self->no_metadata) { | |
97ae0911 EW |
2724 | die "Can't have both 'noMetadata' and ", |
2725 | "'useSvmProps' options set!\n"; | |
62e349d2 EW |
2726 | } elsif ($self->use_svnsync_props) { |
2727 | die "Can't have both 'useSvnsyncProps' and ", | |
2728 | "'useSvmProps' options set!\n"; | |
91b03282 | 2729 | } |
26a62d57 | 2730 | $ra = $self->_set_svm_vars($ra); |
8a49ee97 EW |
2731 | $self->{-want_revprops} = 1; |
2732 | } | |
2733 | $ra; | |
9b981fc6 EW |
2734 | } |
2735 | ||
01bdab84 BS |
2736 | # prop_walk(PATH, REV, SUB) |
2737 | # ------------------------- | |
2738 | # Recursively traverse PATH at revision REV and invoke SUB for each | |
2739 | # directory that contains a SVN property. SUB will be invoked as | |
2740 | # follows: &SUB(gs, path, props); where `gs' is this instance of | |
2741 | # Git::SVN, `path' the path to the directory where the properties | |
2742 | # `props' were found. The `path' will be relative to point of checkout, | |
2743 | # that is, if url://repo/trunk is the current Git branch, and that | |
2744 | # directory contains a sub-directory `d', SUB will be invoked with `/d/' | |
2745 | # as `path' (note the trailing `/'). | |
2746 | sub prop_walk { | |
2747 | my ($self, $path, $rev, $sub) = @_; | |
2748 | ||
35cda061 | 2749 | $path =~ s#^/##; |
01bdab84 BS |
2750 | my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev); |
2751 | $path =~ s#^/*#/#g; | |
9b981fc6 | 2752 | my $p = $path; |
01bdab84 BS |
2753 | # Strip the irrelevant part of the path. |
2754 | $p =~ s#^/+\Q$self->{path}\E(/|$)#/#; | |
2755 | # Ensure the path is terminated by a `/'. | |
2756 | $p =~ s#/*$#/#; | |
2757 | ||
2758 | # The properties contain all the internal SVN stuff nobody | |
2759 | # (usually) cares about. | |
2760 | my $interesting_props = 0; | |
2761 | foreach (keys %{$props}) { | |
2762 | # If it doesn't start with `svn:', it must be a | |
2763 | # user-defined property. | |
2764 | ++$interesting_props and next if $_ !~ /^svn:/; | |
2765 | # FIXME: Fragile, if SVN adds new public properties, | |
2766 | # this needs to be updated. | |
2767 | ++$interesting_props if /^svn:(?:ignore|keywords|executable | |
2768 | |eol-style|mime-type | |
2769 | |externals|needs-lock)$/x; | |
2770 | } | |
2771 | &$sub($self, $p, $props) if $interesting_props; | |
2772 | ||
9b981fc6 | 2773 | foreach (sort keys %$dirent) { |
0dc03d6a | 2774 | next if $dirent->{$_}->{kind} != $SVN::Node::dir; |
b7166cce | 2775 | $self->prop_walk($self->{path} . $p . $_, $rev, $sub); |
9b981fc6 EW |
2776 | } |
2777 | } | |
2778 | ||
3ebe8df7 EW |
2779 | sub last_rev { ($_[0]->last_rev_commit)[0] } |
2780 | sub last_commit { ($_[0]->last_rev_commit)[1] } | |
2781 | ||
9b981fc6 EW |
2782 | # returns the newest SVN revision number and newest commit SHA1 |
2783 | sub last_rev_commit { | |
2784 | my ($self) = @_; | |
2785 | if (defined $self->{last_rev} && defined $self->{last_commit}) { | |
2786 | return ($self->{last_rev}, $self->{last_commit}); | |
2787 | } | |
d2866f9e | 2788 | my $c = ::verify_ref($self->refname.'^0'); |
91b03282 | 2789 | if ($c && !$self->use_svm_props && !$self->no_metadata) { |
d2866f9e | 2790 | my $rev = (::cmt_metadata($c))[1]; |
9b981fc6 EW |
2791 | if (defined $rev) { |
2792 | ($self->{last_rev}, $self->{last_commit}) = ($rev, $c); | |
2793 | return ($rev, $c); | |
2794 | } | |
2795 | } | |
060610c5 EW |
2796 | my $map_path = $self->map_path; |
2797 | unless (-e $map_path) { | |
26a62d57 EW |
2798 | ($self->{last_rev}, $self->{last_commit}) = (undef, undef); |
2799 | return (undef, undef); | |
2800 | } | |
66ab84b9 | 2801 | my ($rev, $commit) = $self->rev_map_max(1); |
060610c5 EW |
2802 | ($self->{last_rev}, $self->{last_commit}) = ($rev, $commit); |
2803 | return ($rev, $commit); | |
9b981fc6 EW |
2804 | } |
2805 | ||
3ebe8df7 EW |
2806 | sub get_fetch_range { |
2807 | my ($self, $min, $max) = @_; | |
2808 | $max ||= $self->ra->get_latest_revnum; | |
060610c5 | 2809 | $min ||= $self->rev_map_max; |
3ebe8df7 | 2810 | (++$min, $max); |
9b981fc6 EW |
2811 | } |
2812 | ||
8a49ee97 | 2813 | sub tmp_config { |
93f2689c | 2814 | my (@args) = @_; |
b7e5348c EW |
2815 | my $old_def_config = "$ENV{GIT_DIR}/svn/config"; |
2816 | my $config = "$ENV{GIT_DIR}/svn/.metadata"; | |
38570a47 | 2817 | if (! -f $config && -f $old_def_config) { |
b7e5348c EW |
2818 | rename $old_def_config, $config or |
2819 | die "Failed rename $old_def_config => $config: $!\n"; | |
2820 | } | |
8a49ee97 | 2821 | my $old_config = $ENV{GIT_CONFIG}; |
93f2689c | 2822 | $ENV{GIT_CONFIG} = $config; |
8a49ee97 | 2823 | $@ = undef; |
b4d57e5e EW |
2824 | my @ret = eval { |
2825 | unless (-f $config) { | |
2826 | mkfile($config); | |
2827 | open my $fh, '>', $config or | |
2828 | die "Can't open $config: $!\n"; | |
2829 | print $fh "; This file is used internally by ", | |
2830 | "git-svn\n" or die | |
2831 | "Couldn't write to $config: $!\n"; | |
2832 | print $fh "; You should not have to edit it\n" or | |
2833 | die "Couldn't write to $config: $!\n"; | |
2834 | close $fh or die "Couldn't close $config: $!\n"; | |
2835 | } | |
2836 | command('config', @args); | |
2837 | }; | |
8a49ee97 EW |
2838 | my $err = $@; |
2839 | if (defined $old_config) { | |
2840 | $ENV{GIT_CONFIG} = $old_config; | |
2841 | } else { | |
2842 | delete $ENV{GIT_CONFIG}; | |
2843 | } | |
2844 | die $err if $err; | |
2845 | wantarray ? @ret : $ret[0]; | |
2846 | } | |
2847 | ||
9b981fc6 EW |
2848 | sub tmp_index_do { |
2849 | my ($self, $sub) = @_; | |
2850 | my $old_index = $ENV{GIT_INDEX_FILE}; | |
2851 | $ENV{GIT_INDEX_FILE} = $self->{index}; | |
8a49ee97 | 2852 | $@ = undef; |
b4d57e5e EW |
2853 | my @ret = eval { |
2854 | my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#); | |
2855 | mkpath([$dir]) unless -d $dir; | |
2856 | &$sub; | |
2857 | }; | |
8a49ee97 EW |
2858 | my $err = $@; |
2859 | if (defined $old_index) { | |
9b981fc6 EW |
2860 | $ENV{GIT_INDEX_FILE} = $old_index; |
2861 | } else { | |
2862 | delete $ENV{GIT_INDEX_FILE}; | |
2863 | } | |
8a49ee97 | 2864 | die $err if $err; |
9b981fc6 EW |
2865 | wantarray ? @ret : $ret[0]; |
2866 | } | |
2867 | ||
2868 | sub assert_index_clean { | |
2869 | my ($self, $treeish) = @_; | |
2870 | ||
2871 | $self->tmp_index_do(sub { | |
2872 | command_noisy('read-tree', $treeish) unless -e $self->{index}; | |
2873 | my $x = command_oneline('write-tree'); | |
2874 | my ($y) = (command(qw/cat-file commit/, $treeish) =~ | |
2875 | /^tree ($::sha1)/mo); | |
e8d120bd EW |
2876 | return if $y eq $x; |
2877 | ||
2878 | warn "Index mismatch: $y != $x\nrereading $treeish\n"; | |
2879 | unlink $self->{index} or die "unlink $self->{index}: $!\n"; | |
2880 | command_noisy('read-tree', $treeish); | |
9b981fc6 EW |
2881 | $x = command_oneline('write-tree'); |
2882 | if ($y ne $x) { | |
2883 | ::fatal "trees ($treeish) $y != $x\n", | |
207f1a75 | 2884 | "Something is seriously wrong..."; |
9b981fc6 EW |
2885 | } |
2886 | }); | |
2887 | } | |
2888 | ||
2889 | sub get_commit_parents { | |
0af9c9f9 | 2890 | my ($self, $log_entry) = @_; |
9b981fc6 | 2891 | my (%seen, @ret, @tmp); |
0af9c9f9 EW |
2892 | # legacy support for 'set-tree'; this is only used by set_tree_cb: |
2893 | if (my $ip = $self->{inject_parents}) { | |
2894 | if (my $commit = delete $ip->{$log_entry->{revision}}) { | |
2895 | push @tmp, $commit; | |
9b981fc6 EW |
2896 | } |
2897 | } | |
d2866f9e | 2898 | if (my $cur = ::verify_ref($self->refname.'^0')) { |
9b981fc6 EW |
2899 | push @tmp, $cur; |
2900 | } | |
733a65aa EW |
2901 | if (my $ipd = $self->{inject_parents_dcommit}) { |
2902 | if (my $commit = delete $ipd->{$log_entry->{revision}}) { | |
2903 | push @tmp, @$commit; | |
2904 | } | |
2905 | } | |
44320b9e | 2906 | push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp); |
9b981fc6 EW |
2907 | while (my $p = shift @tmp) { |
2908 | next if $seen{$p}; | |
2909 | $seen{$p} = 1; | |
2910 | push @ret, $p; | |
9b981fc6 EW |
2911 | } |
2912 | @ret; | |
2913 | } | |
2914 | ||
aea736cc EW |
2915 | sub rewrite_root { |
2916 | my ($self) = @_; | |
2917 | return $self->{-rewrite_root} if exists $self->{-rewrite_root}; | |
2918 | my $k = "svn-remote.$self->{repo_id}.rewriteRoot"; | |
2919 | my $rwr = eval { command_oneline(qw/config --get/, $k) }; | |
2920 | if ($rwr) { | |
2921 | $rwr =~ s#/+$##; | |
2922 | if ($rwr !~ m#^[a-z\+]+://#) { | |
2923 | die "$rwr is not a valid URL (key: $k)\n"; | |
2924 | } | |
2925 | } | |
2926 | $self->{-rewrite_root} = $rwr; | |
2927 | } | |
2928 | ||
3e18ce1a JS |
2929 | sub rewrite_uuid { |
2930 | my ($self) = @_; | |
2931 | return $self->{-rewrite_uuid} if exists $self->{-rewrite_uuid}; | |
2932 | my $k = "svn-remote.$self->{repo_id}.rewriteUUID"; | |
2933 | my $rwid = eval { command_oneline(qw/config --get/, $k) }; | |
2934 | if ($rwid) { | |
2935 | $rwid =~ s#/+$##; | |
2936 | if ($rwid !~ m#^[a-f0-9]{8}-(?:[a-f0-9]{4}-){3}[a-f0-9]{12}$#) { | |
2937 | die "$rwid is not a valid UUID (key: $k)\n"; | |
2938 | } | |
2939 | } | |
2940 | $self->{-rewrite_uuid} = $rwid; | |
2941 | } | |
2942 | ||
aea736cc EW |
2943 | sub metadata_url { |
2944 | my ($self) = @_; | |
2945 | ($self->rewrite_root || $self->{url}) . | |
2946 | (length $self->{path} ? '/' . $self->{path} : ''); | |
2947 | } | |
2948 | ||
706587fc | 2949 | sub full_url { |
9b981fc6 | 2950 | my ($self) = @_; |
5d3b7cd5 | 2951 | $self->{url} . (length $self->{path} ? '/' . $self->{path} : ''); |
9b981fc6 EW |
2952 | } |
2953 | ||
12a296bc AS |
2954 | sub full_pushurl { |
2955 | my ($self) = @_; | |
2956 | if ($self->{pushurl}) { | |
2957 | return $self->{pushurl} . (length $self->{path} ? '/' . | |
2958 | $self->{path} : ''); | |
2959 | } else { | |
2960 | return $self->full_url; | |
2961 | } | |
2962 | } | |
ad94802a EW |
2963 | |
2964 | sub set_commit_header_env { | |
2965 | my ($log_entry) = @_; | |
2966 | my %env; | |
2967 | foreach my $ned (qw/NAME EMAIL DATE/) { | |
2968 | foreach my $ac (qw/AUTHOR COMMITTER/) { | |
2969 | $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"}; | |
2970 | } | |
9b981fc6 | 2971 | } |
ad94802a | 2972 | |
70ae04e4 AW |
2973 | $ENV{GIT_AUTHOR_NAME} = $log_entry->{name}; |
2974 | $ENV{GIT_AUTHOR_EMAIL} = $log_entry->{email}; | |
44320b9e | 2975 | $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date}; |
9b981fc6 | 2976 | |
70ae04e4 AW |
2977 | $ENV{GIT_COMMITTER_NAME} = (defined $log_entry->{commit_name}) |
2978 | ? $log_entry->{commit_name} | |
2979 | : $log_entry->{name}; | |
2980 | $ENV{GIT_COMMITTER_EMAIL} = (defined $log_entry->{commit_email}) | |
2981 | ? $log_entry->{commit_email} | |
2982 | : $log_entry->{email}; | |
ad94802a EW |
2983 | \%env; |
2984 | } | |
70ae04e4 | 2985 | |
ad94802a EW |
2986 | sub restore_commit_header_env { |
2987 | my ($env) = @_; | |
2988 | foreach my $ned (qw/NAME EMAIL DATE/) { | |
2989 | foreach my $ac (qw/AUTHOR COMMITTER/) { | |
2990 | my $k = "GIT_${ac}_${ned}"; | |
2991 | if (defined $env->{$k}) { | |
2992 | $ENV{$k} = $env->{$k}; | |
2993 | } else { | |
2994 | delete $ENV{$k}; | |
2995 | } | |
2996 | } | |
2997 | } | |
2998 | } | |
2999 | ||
94bc914c KW |
3000 | sub gc { |
3001 | command_noisy('gc', '--auto'); | |
3002 | }; | |
3003 | ||
ad94802a EW |
3004 | sub do_git_commit { |
3005 | my ($self, $log_entry) = @_; | |
3006 | my $lr = $self->last_rev; | |
3007 | if (defined $lr && $lr >= $log_entry->{revision}) { | |
3008 | die "Last fetched revision of ", $self->refname, | |
3009 | " was r$lr, but we are about to fetch: ", | |
3010 | "r$log_entry->{revision}!\n"; | |
3011 | } | |
3012 | if (my $c = $self->rev_map_get($log_entry->{revision})) { | |
3013 | croak "$log_entry->{revision} = $c already exists! ", | |
3014 | "Why are we refetching it?\n"; | |
3015 | } | |
3016 | my $old_env = set_commit_header_env($log_entry); | |
44320b9e | 3017 | my $tree = $log_entry->{tree}; |
9b981fc6 EW |
3018 | if (!defined $tree) { |
3019 | $tree = $self->tmp_index_do(sub { | |
3020 | command_oneline('write-tree') }); | |
3021 | } | |
3022 | die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o; | |
3023 | ||
e855bfc0 | 3024 | my @exec = ('git', 'commit-tree', $tree); |
0af9c9f9 | 3025 | foreach ($self->get_commit_parents($log_entry)) { |
9b981fc6 EW |
3026 | push @exec, '-p', $_; |
3027 | } | |
3028 | defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec)) | |
3029 | or croak $!; | |
16fc08e2 EW |
3030 | binmode $msg_fh; |
3031 | ||
3032 | # we always get UTF-8 from SVN, but we may want our commits in | |
3033 | # a different encoding. | |
3034 | if (my $enc = Git::config('i18n.commitencoding')) { | |
3035 | require Encode; | |
3036 | Encode::from_to($log_entry->{log}, 'UTF-8', $enc); | |
3037 | } | |
44320b9e | 3038 | print $msg_fh $log_entry->{log} or croak $!; |
ad94802a | 3039 | restore_commit_header_env($old_env); |
91b03282 | 3040 | unless ($self->no_metadata) { |
8a49ee97 EW |
3041 | print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n" |
3042 | or croak $!; | |
9760adcc | 3043 | } |
9b981fc6 EW |
3044 | $msg_fh->flush == 0 or croak $!; |
3045 | close $msg_fh or croak $!; | |
3046 | chomp(my $commit = do { local $/; <$out_fh> }); | |
3047 | close $out_fh or croak $!; | |
3048 | waitpid $pid, 0; | |
3049 | croak $? if $?; | |
3050 | if ($commit !~ /^$::sha1$/o) { | |
3051 | die "Failed to commit, invalid sha1: $commit\n"; | |
3052 | } | |
3053 | ||
060610c5 | 3054 | $self->rev_map_set($log_entry->{revision}, $commit, 1); |
9b981fc6 | 3055 | |
44320b9e | 3056 | $self->{last_rev} = $log_entry->{revision}; |
9b981fc6 | 3057 | $self->{last_commit} = $commit; |
49750f30 | 3058 | print "r$log_entry->{revision}" unless $::_q > 1; |
8a49ee97 | 3059 | if (defined $log_entry->{svm_revision}) { |
49750f30 | 3060 | print " (\@$log_entry->{svm_revision})" unless $::_q > 1; |
060610c5 | 3061 | $self->rev_map_set($log_entry->{svm_revision}, $commit, |
26a62d57 | 3062 | 0, $self->svm_uuid); |
8a49ee97 | 3063 | } |
49750f30 | 3064 | print " = $commit ($self->{ref_id})\n" unless $::_q > 1; |
94bc914c KW |
3065 | if (--$_gc_nr == 0) { |
3066 | $_gc_nr = $_gc_period; | |
3067 | gc(); | |
3068 | } | |
9b981fc6 EW |
3069 | return $commit; |
3070 | } | |
3071 | ||
fbcc1737 EW |
3072 | sub match_paths { |
3073 | my ($self, $paths, $r) = @_; | |
4e9f6cc7 | 3074 | return 1 if $self->{path} eq ''; |
d542aedb EW |
3075 | if (my $path = $paths->{"/$self->{path}"}) { |
3076 | return ($path->{action} eq 'D') ? 0 : 1; | |
3077 | } | |
0b2af457 | 3078 | $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//; |
fbcc1737 EW |
3079 | if (grep /$self->{path_regex}/, keys %$paths) { |
3080 | return 1; | |
3081 | } | |
3082 | my $c = ''; | |
3083 | foreach (split m#/#, $self->{path}) { | |
3084 | $c .= "/$_"; | |
74a81227 EW |
3085 | next unless ($paths->{$c} && |
3086 | ($paths->{$c}->{action} =~ /^[AR]$/)); | |
e518192f EW |
3087 | if ($self->ra->check_path($self->{path}, $r) == |
3088 | $SVN::Node::dir) { | |
fbcc1737 EW |
3089 | return 1; |
3090 | } | |
3091 | } | |
3092 | return 0; | |
3093 | } | |
3094 | ||
15710b6f EW |
3095 | sub find_parent_branch { |
3096 | my ($self, $paths, $rev) = @_; | |
91b03282 | 3097 | return undef unless $self->follow_parent; |
e5a0b240 | 3098 | unless (defined $paths) { |
c7eba716 EW |
3099 | my $err_handler = $SVN::Error::handler; |
3100 | $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs; | |
3c49a035 MN |
3101 | $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1, |
3102 | sub { $paths = $_[0] }); | |
c7eba716 | 3103 | $SVN::Error::handler = $err_handler; |
e5a0b240 EW |
3104 | } |
3105 | return undef unless defined $paths; | |
15710b6f EW |
3106 | |
3107 | # look for a parent from another branch: | |
0b2af457 | 3108 | my @b_path_components = split m#/#, $self->{path}; |
7f578c55 EW |
3109 | my @a_path_components; |
3110 | my $i; | |
3111 | while (@b_path_components) { | |
3112 | $i = $paths->{'/'.join('/', @b_path_components)}; | |
74a81227 | 3113 | last if $i && defined $i->{copyfrom_path}; |
7f578c55 EW |
3114 | unshift(@a_path_components, pop(@b_path_components)); |
3115 | } | |
74a81227 EW |
3116 | return undef unless defined $i && defined $i->{copyfrom_path}; |
3117 | my $branch_from = $i->{copyfrom_path}; | |
7f578c55 EW |
3118 | if (@a_path_components) { |
3119 | print STDERR "branch_from: $branch_from => "; | |
3120 | $branch_from .= '/'.join('/', @a_path_components); | |
3121 | print STDERR $branch_from, "\n"; | |
3122 | } | |
3ebe8df7 | 3123 | my $r = $i->{copyfrom_rev}; |
15710b6f EW |
3124 | my $repos_root = $self->ra->{repos_root}; |
3125 | my $url = $self->ra->{url}; | |
0b2af457 | 3126 | my $new_url = $url . $branch_from; |
15710b6f | 3127 | print STDERR "Found possible branch point: ", |
85886162 SA |
3128 | "$new_url => ", $self->full_url, ", $r\n" |
3129 | unless $::_q > 1; | |
15710b6f | 3130 | $branch_from =~ s#^/##; |
0b2af457 | 3131 | my $gs = $self->other_gs($new_url, $url, |
8e3f9b17 | 3132 | $branch_from, $r, $self->{ref_id}); |
15710b6f | 3133 | my ($r0, $parent) = $gs->find_rev_before($r, 1); |
553589f7 DM |
3134 | { |
3135 | my ($base, $head); | |
3136 | if (!defined $r0 || !defined $parent) { | |
3137 | ($base, $head) = parse_revision_argument(0, $r); | |
3138 | } else { | |
3139 | if ($r0 < $r) { | |
3140 | $gs->ra->get_log([$gs->{path}], $r0 + 1, $r, 1, | |
3141 | 0, 1, sub { $base = $_[1] - 1 }); | |
3142 | } | |
3143 | } | |
3144 | if (defined $base && $base <= $r) { | |
d627de6b EW |
3145 | $gs->fetch($base, $r); |
3146 | } | |
553589f7 | 3147 | ($r0, $parent) = $gs->find_rev_before($r, 1); |
15710b6f | 3148 | } |
ef70de96 | 3149 | if (defined $r0 && defined $parent) { |
85886162 SA |
3150 | print STDERR "Found branch parent: ($self->{ref_id}) $parent\n" |
3151 | unless $::_q > 1; | |
15710b6f EW |
3152 | my $ed; |
3153 | if ($self->ra->can_do_switch) { | |
2e5e2480 | 3154 | $self->assert_index_clean($parent); |
85886162 SA |
3155 | print STDERR "Following parent with do_switch\n" |
3156 | unless $::_q > 1; | |
15710b6f | 3157 | # do_switch works with svn/trunk >= r22312, but that |
2b27f6c8 | 3158 | # is not included with SVN 1.4.3 (the latest version |
15710b6f | 3159 | # at the moment), so we can't rely on it |
83c2fcff | 3160 | $self->{last_rev} = $r0; |
15710b6f | 3161 | $self->{last_commit} = $parent; |
72827aa4 | 3162 | $ed = Git::SVN::Fetcher->new($self, $gs->{path}); |
8a603774 | 3163 | $gs->ra->gs_do_switch($r0, $rev, $gs, |
15710b6f EW |
3164 | $self->full_url, $ed) |
3165 | or die "SVN connection failed somewhere...\n"; | |
9ff74e95 SW |
3166 | } elsif ($self->ra->trees_match($new_url, $r0, |
3167 | $self->full_url, $rev)) { | |
3168 | print STDERR "Trees match:\n", | |
3169 | " $new_url\@$r0\n", | |
3170 | " ${\$self->full_url}\@$rev\n", | |
85886162 SA |
3171 | "Following parent with no changes\n" |
3172 | unless $::_q > 1; | |
9ff74e95 SW |
3173 | $self->tmp_index_do(sub { |
3174 | command_noisy('read-tree', $parent); | |
3175 | }); | |
3176 | $self->{last_commit} = $parent; | |
15710b6f | 3177 | } else { |
85886162 SA |
3178 | print STDERR "Following parent with do_update\n" |
3179 | unless $::_q > 1; | |
72827aa4 | 3180 | $ed = Git::SVN::Fetcher->new($self); |
8a603774 | 3181 | $self->ra->gs_do_update($rev, $rev, $self, $ed) |
15710b6f EW |
3182 | or die "SVN connection failed somewhere...\n"; |
3183 | } | |
85886162 | 3184 | print STDERR "Successfully followed parent\n" unless $::_q > 1; |
15710b6f EW |
3185 | return $self->make_log_entry($rev, [$parent], $ed); |
3186 | } | |
15710b6f EW |
3187 | return undef; |
3188 | } | |
3189 | ||
9b981fc6 | 3190 | sub do_fetch { |
706587fc | 3191 | my ($self, $paths, $rev) = @_; |
15710b6f | 3192 | my $ed; |
9b981fc6 | 3193 | my ($last_rev, @parents); |
b9dffd8c EW |
3194 | if (my $lc = $self->last_commit) { |
3195 | # we can have a branch that was deleted, then re-added | |
3196 | # under the same name but copied from another path, in | |
3197 | # which case we'll have multiple parents (we don't | |
3198 | # want to break the original ref, nor lose copypath info): | |
3199 | if (my $log_entry = $self->find_parent_branch($paths, $rev)) { | |
3200 | push @{$log_entry->{parents}}, $lc; | |
3201 | return $log_entry; | |
3202 | } | |
72827aa4 | 3203 | $ed = Git::SVN::Fetcher->new($self); |
9b981fc6 | 3204 | $last_rev = $self->{last_rev}; |
b9dffd8c EW |
3205 | $ed->{c} = $lc; |
3206 | @parents = ($lc); | |
9b981fc6 EW |
3207 | } else { |
3208 | $last_rev = $rev; | |
15710b6f EW |
3209 | if (my $log_entry = $self->find_parent_branch($paths, $rev)) { |
3210 | return $log_entry; | |
3211 | } | |
72827aa4 | 3212 | $ed = Git::SVN::Fetcher->new($self); |
9b981fc6 | 3213 | } |
8a603774 | 3214 | unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) { |
9b981fc6 EW |
3215 | die "SVN connection failed somewhere...\n"; |
3216 | } | |
3217 | $self->make_log_entry($rev, \@parents, $ed); | |
3218 | } | |
3219 | ||
6111b934 EW |
3220 | sub mkemptydirs { |
3221 | my ($self, $r) = @_; | |
a5b80d92 EW |
3222 | |
3223 | sub scan { | |
3224 | my ($r, $empty_dirs, $line) = @_; | |
3225 | if (defined $r && $line =~ /^r(\d+)$/) { | |
3226 | return 0 if $1 > $r; | |
3227 | } elsif ($line =~ /^ \+empty_dir: (.+)$/) { | |
3228 | $empty_dirs->{$1} = 1; | |
3229 | } elsif ($line =~ /^ \-empty_dir: (.+)$/) { | |
3230 | my @d = grep {m[^\Q$1\E(/|$)]} (keys %$empty_dirs); | |
3231 | delete @$empty_dirs{@d}; | |
3232 | } | |
3233 | 1; # continue | |
3234 | }; | |
3235 | ||
6111b934 | 3236 | my %empty_dirs = (); |
a5b80d92 EW |
3237 | my $gz_file = "$self->{dir}/unhandled.log.gz"; |
3238 | if (-f $gz_file) { | |
3239 | if (!$can_compress) { | |
3240 | warn "Compress::Zlib could not be found; ", | |
3241 | "empty directories in $gz_file will not be read\n"; | |
3242 | } else { | |
3243 | my $gz = Compress::Zlib::gzopen($gz_file, "rb") or | |
3244 | die "Unable to open $gz_file: $!\n"; | |
3245 | my $line; | |
3246 | while ($gz->gzreadline($line) > 0) { | |
3247 | scan($r, \%empty_dirs, $line) or last; | |
3248 | } | |
3249 | $gz->gzclose; | |
3250 | } | |
3251 | } | |
6111b934 | 3252 | |
a5b80d92 EW |
3253 | if (open my $fh, '<', "$self->{dir}/unhandled.log") { |
3254 | binmode $fh or croak "binmode: $!"; | |
3255 | while (<$fh>) { | |
3256 | scan($r, \%empty_dirs, $_) or last; | |
6111b934 | 3257 | } |
a5b80d92 | 3258 | close $fh; |
6111b934 | 3259 | } |
9be30eed EW |
3260 | |
3261 | my $strip = qr/\A\Q$self->{path}\E(?:\/|$)/; | |
6111b934 EW |
3262 | foreach my $d (sort keys %empty_dirs) { |
3263 | $d = uri_decode($d); | |
9be30eed | 3264 | $d =~ s/$strip//; |
7c42e390 | 3265 | next unless length($d); |
6111b934 | 3266 | next if -d $d; |
7c42e390 | 3267 | if (-e $d) { |
6111b934 EW |
3268 | warn "$d exists but is not a directory\n"; |
3269 | } else { | |
3270 | print "creating empty directory: $d\n"; | |
3271 | mkpath([$d]); | |
3272 | } | |
3273 | } | |
3274 | } | |
3275 | ||
97f6987a EW |
3276 | sub get_untracked { |
3277 | my ($self, $ed) = @_; | |
3278 | my @out; | |
3279 | my $h = $ed->{empty}; | |
9b981fc6 EW |
3280 | foreach (sort keys %$h) { |
3281 | my $act = $h->{$_} ? '+empty_dir' : '-empty_dir'; | |
97f6987a | 3282 | push @out, " $act: " . uri_encode($_); |
9b981fc6 EW |
3283 | warn "W: $act: $_\n"; |
3284 | } | |
3285 | foreach my $t (qw/dir_prop file_prop/) { | |
97f6987a | 3286 | $h = $ed->{$t} or next; |
9b981fc6 EW |
3287 | foreach my $path (sort keys %$h) { |
3288 | my $ppath = $path eq '' ? '.' : $path; | |
3289 | foreach my $prop (sort keys %{$h->{$path}}) { | |
1ce255dc | 3290 | next if $SKIP_PROP{$prop}; |
9b981fc6 | 3291 | my $v = $h->{$path}->{$prop}; |
97f6987a EW |
3292 | my $t_ppath_prop = "$t: " . |
3293 | uri_encode($ppath) . ' ' . | |
3294 | uri_encode($prop); | |
9b981fc6 | 3295 | if (defined $v) { |
97f6987a EW |
3296 | push @out, " +$t_ppath_prop " . |
3297 | uri_encode($v); | |
9b981fc6 | 3298 | } else { |
97f6987a | 3299 | push @out, " -$t_ppath_prop"; |
9b981fc6 EW |
3300 | } |
3301 | } | |
3302 | } | |
3303 | } | |
3304 | foreach my $t (qw/absent_file absent_directory/) { | |
97f6987a | 3305 | $h = $ed->{$t} or next; |
9b981fc6 EW |
3306 | foreach my $parent (sort keys %$h) { |
3307 | foreach my $path (sort @{$h->{$parent}}) { | |
97f6987a EW |
3308 | push @out, " $t: " . |
3309 | uri_encode("$parent/$path"); | |
9b981fc6 EW |
3310 | warn "W: $t: $parent/$path ", |
3311 | "Insufficient permissions?\n"; | |
3312 | } | |
3313 | } | |
3314 | } | |
97f6987a | 3315 | \@out; |
9b981fc6 EW |
3316 | } |
3317 | ||
6aa17fc6 WYC |
3318 | sub get_tz { |
3319 | # some systmes don't handle or mishandle %z, so be creative. | |
3320 | my $t = shift || time; | |
3321 | my $gm = timelocal(gmtime($t)); | |
3322 | my $sign = qw( + + - )[ $t <=> $gm ]; | |
3323 | return sprintf("%s%02d%02d", $sign, (gmtime(abs($t - $gm)))[2,1]); | |
3324 | } | |
3325 | ||
e82f0d73 PH |
3326 | # parse_svn_date(DATE) |
3327 | # -------------------- | |
3328 | # Given a date (in UTC) from Subversion, return a string in the format | |
3329 | # "<TZ Offset> <local date/time>" that Git will use. | |
3330 | # | |
3331 | # By default the parsed date will be in UTC; if $Git::SVN::_localtime | |
3332 | # is true we'll convert it to the local timezone instead. | |
1c8443b0 EW |
3333 | sub parse_svn_date { |
3334 | my $date = shift || return '+0000 1970-01-01 00:00:00'; | |
3335 | my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T | |
b94ead75 | 3336 | (\d\d)\:(\d\d)\:(\d\d)\.\d*Z$/x) or |
1c8443b0 | 3337 | croak "Unable to parse date: $date\n"; |
e82f0d73 PH |
3338 | my $parsed_date; # Set next. |
3339 | ||
3340 | if ($Git::SVN::_localtime) { | |
3341 | # Translate the Subversion datetime to an epoch time. | |
3342 | # Begin by switching ourselves to $date's timezone, UTC. | |
3343 | my $old_env_TZ = $ENV{TZ}; | |
3344 | $ENV{TZ} = 'UTC'; | |
3345 | ||
3346 | my $epoch_in_UTC = | |
3347 | POSIX::strftime('%s', $S, $M, $H, $d, $m - 1, $Y - 1900); | |
3348 | ||
3349 | # Determine our local timezone (including DST) at the | |
3350 | # time of $epoch_in_UTC. $Git::SVN::Log::TZ stored the | |
3351 | # value of TZ, if any, at the time we were run. | |
3352 | if (defined $Git::SVN::Log::TZ) { | |
3353 | $ENV{TZ} = $Git::SVN::Log::TZ; | |
3354 | } else { | |
3355 | delete $ENV{TZ}; | |
3356 | } | |
3357 | ||
6aa17fc6 | 3358 | my $our_TZ = get_tz(); |
e82f0d73 PH |
3359 | |
3360 | # This converts $epoch_in_UTC into our local timezone. | |
3361 | my ($sec, $min, $hour, $mday, $mon, $year, | |
3362 | $wday, $yday, $isdst) = localtime($epoch_in_UTC); | |
3363 | ||
3364 | $parsed_date = sprintf('%s %04d-%02d-%02d %02d:%02d:%02d', | |
3365 | $our_TZ, $year + 1900, $mon + 1, | |
3366 | $mday, $hour, $min, $sec); | |
3367 | ||
3368 | # Reset us to the timezone in effect when we entered | |
3369 | # this routine. | |
3370 | if (defined $old_env_TZ) { | |
3371 | $ENV{TZ} = $old_env_TZ; | |
3372 | } else { | |
3373 | delete $ENV{TZ}; | |
3374 | } | |
3375 | } else { | |
3376 | $parsed_date = "+0000 $Y-$m-$d $H:$M:$S"; | |
3377 | } | |
3378 | ||
3379 | return $parsed_date; | |
1c8443b0 EW |
3380 | } |
3381 | ||
8e3f9b17 | 3382 | sub other_gs { |
0b2af457 | 3383 | my ($self, $new_url, $url, |
8e3f9b17 | 3384 | $branch_from, $r, $old_ref_id) = @_; |
0b2af457 | 3385 | my $gs = Git::SVN->find_by_url($new_url, $url, $branch_from); |
8e3f9b17 SV |
3386 | unless ($gs) { |
3387 | my $ref_id = $old_ref_id; | |
54fb7f9b | 3388 | $ref_id =~ s/\@\d+-*$//; |
8e3f9b17 SV |
3389 | $ref_id .= "\@$r"; |
3390 | # just grow a tail if we're not unique enough :x | |
3391 | $ref_id .= '-' while find_ref($ref_id); | |
8e3f9b17 SV |
3392 | my ($u, $p, $repo_id) = ($new_url, '', $ref_id); |
3393 | if ($u =~ s#^\Q$url\E(/|$)##) { | |
3394 | $p = $u; | |
3395 | $u = $url; | |
3396 | $repo_id = $self->{repo_id}; | |
3397 | } | |
3235b705 DK |
3398 | while (1) { |
3399 | # It is possible to tag two different subdirectories at | |
3400 | # the same revision. If the url for an existing ref | |
3401 | # does not match, we must either find a ref with a | |
3402 | # matching url or create a new ref by growing a tail. | |
3403 | $gs = Git::SVN->init($u, $p, $repo_id, $ref_id, 1); | |
3404 | my (undef, $max_commit) = $gs->rev_map_max(1); | |
3405 | last if (!$max_commit); | |
3406 | my ($url) = ::cmt_metadata($max_commit); | |
85f022e9 | 3407 | last if ($url eq $gs->metadata_url); |
3235b705 DK |
3408 | $ref_id .= '-'; |
3409 | } | |
3410 | print STDERR "Initializing parent: $ref_id\n" unless $::_q > 1; | |
8e3f9b17 SV |
3411 | } |
3412 | $gs | |
3413 | } | |
3414 | ||
36db1edd ML |
3415 | sub call_authors_prog { |
3416 | my ($orig_author) = @_; | |
d3d7d47e | 3417 | $orig_author = command_oneline('rev-parse', '--sq-quote', $orig_author); |
36db1edd ML |
3418 | my $author = `$::_authors_prog $orig_author`; |
3419 | if ($? != 0) { | |
3420 | die "$::_authors_prog failed with exit code $?\n" | |
3421 | } | |
3422 | if ($author =~ /^\s*(.+?)\s*<(.*)>\s*$/) { | |
3423 | my ($name, $email) = ($1, $2); | |
3424 | $email = undef if length $2 == 0; | |
3425 | return [$name, $email]; | |
3426 | } else { | |
3427 | die "Author: $orig_author: $::_authors_prog returned " | |
3428 | . "invalid author format: $author\n"; | |
3429 | } | |
3430 | } | |
3431 | ||
1c8443b0 EW |
3432 | sub check_author { |
3433 | my ($author) = @_; | |
3434 | if (!defined $author || length $author == 0) { | |
3435 | $author = '(no author)'; | |
36db1edd ML |
3436 | } |
3437 | if (!defined $::users{$author}) { | |
3438 | if (defined $::_authors_prog) { | |
3439 | $::users{$author} = call_authors_prog($author); | |
3440 | } elsif (defined $::_authors) { | |
3441 | die "Author: $author not defined in $::_authors file\n"; | |
3442 | } | |
1c8443b0 EW |
3443 | } |
3444 | $author; | |
3445 | } | |
3446 | ||
f1264bd6 SV |
3447 | sub find_extra_svk_parents { |
3448 | my ($self, $ed, $tickets, $parents) = @_; | |
3449 | # aha! svk:merge property changed... | |
3450 | my @tickets = split "\n", $tickets; | |
3451 | my @known_parents; | |
3452 | for my $ticket ( @tickets ) { | |
3453 | my ($uuid, $path, $rev) = split /:/, $ticket; | |
3454 | if ( $uuid eq $self->ra_uuid ) { | |
bf60fff8 | 3455 | my $url = $self->{url}; |
f1264bd6 SV |
3456 | my $repos_root = $url; |
3457 | my $branch_from = $path; | |
3458 | $branch_from =~ s{^/}{}; | |
3459 | my $gs = $self->other_gs($repos_root."/".$branch_from, | |
3460 | $url, | |
3461 | $branch_from, | |
3462 | $rev, | |
3463 | $self->{ref_id}); | |
3464 | if ( my $commit = $gs->rev_map_get($rev, $uuid) ) { | |
3465 | # wahey! we found it, but it might be | |
3466 | # an old one (!) | |
e9e4c8b7 | 3467 | push @known_parents, [ $rev, $commit ]; |
f1264bd6 SV |
3468 | } |
3469 | } | |
3470 | } | |
e9e4c8b7 AV |
3471 | # Ordering matters; highest-numbered commit merge tickets |
3472 | # first, as they may account for later merge ticket additions | |
3473 | # or changes. | |
3474 | @known_parents = map {$_->[1]} sort {$b->[0] <=> $a->[0]} @known_parents; | |
f1264bd6 SV |
3475 | for my $parent ( @known_parents ) { |
3476 | my @cmd = ('rev-list', $parent, map { "^$_" } @$parents ); | |
3477 | my ($msg_fh, $ctx) = command_output_pipe(@cmd); | |
3478 | my $new; | |
3479 | while ( <$msg_fh> ) { | |
3480 | $new=1;last; | |
3481 | } | |
3482 | command_close_pipe($msg_fh, $ctx); | |
3483 | if ( $new ) { | |
3484 | print STDERR | |
3485 | "Found merge parent (svk:merge ticket): $parent\n"; | |
3486 | push @$parents, $parent; | |
3487 | } | |
3488 | } | |
3489 | } | |
3490 | ||
7d944c33 SV |
3491 | sub lookup_svn_merge { |
3492 | my $uuid = shift; | |
3493 | my $url = shift; | |
3494 | my $merge = shift; | |
3495 | ||
3496 | my ($source, $revs) = split ":", $merge; | |
3497 | my $path = $source; | |
3498 | $path =~ s{^/}{}; | |
3499 | my $gs = Git::SVN->find_by_url($url.$source, $url, $path); | |
3500 | if ( !$gs ) { | |
3501 | warn "Couldn't find revmap for $url$source\n"; | |
3502 | return; | |
3503 | } | |
3504 | my @ranges = split ",", $revs; | |
3505 | my ($tip, $tip_commit); | |
3506 | my @merged_commit_ranges; | |
3507 | # find the tip | |
3508 | for my $range ( @ranges ) { | |
3509 | my ($bottom, $top) = split "-", $range; | |
3510 | $top ||= $bottom; | |
33973a5b SV |
3511 | my $bottom_commit = $gs->find_rev_after( $bottom, 1, $top ); |
3512 | my $top_commit = $gs->find_rev_before( $top, 1, $bottom ); | |
7d944c33 SV |
3513 | |
3514 | unless ($top_commit and $bottom_commit) { | |
3515 | warn "W:unknown path/rev in svn:mergeinfo " | |
3516 | ."dirprop: $source:$range\n"; | |
3517 | next; | |
3518 | } | |
3519 | ||
124b70a2 MH |
3520 | if (scalar(command('rev-parse', "$bottom_commit^@"))) { |
3521 | push @merged_commit_ranges, | |
3522 | "$bottom_commit^..$top_commit"; | |
3523 | } else { | |
3524 | push @merged_commit_ranges, "$top_commit"; | |
3525 | } | |
7d944c33 SV |
3526 | |
3527 | if ( !defined $tip or $top > $tip ) { | |
3528 | $tip = $top; | |
3529 | $tip_commit = $top_commit; | |
3530 | } | |
3531 | } | |
3532 | return ($tip_commit, @merged_commit_ranges); | |
3533 | } | |
7a955a53 SV |
3534 | |
3535 | sub _rev_list { | |
3536 | my ($msg_fh, $ctx) = command_output_pipe( | |
3537 | "rev-list", @_, | |
3538 | ); | |
3539 | my @rv; | |
3540 | while ( <$msg_fh> ) { | |
3541 | chomp; | |
3542 | push @rv, $_; | |
3543 | } | |
3544 | command_close_pipe($msg_fh, $ctx); | |
3545 | @rv; | |
3546 | } | |
3547 | ||
3548 | sub check_cherry_pick { | |
3549 | my $base = shift; | |
3550 | my $tip = shift; | |
a3c75056 | 3551 | my $parents = shift; |
7a955a53 SV |
3552 | my @ranges = @_; |
3553 | my %commits = map { $_ => 1 } | |
eabd73a3 | 3554 | _rev_list("--no-merges", $tip, "--not", $base, @$parents, "--"); |
7a955a53 | 3555 | for my $range ( @ranges ) { |
eabd73a3 | 3556 | delete @commits{_rev_list($range, "--")}; |
7a955a53 | 3557 | } |
1cef6500 AM |
3558 | for my $commit (keys %commits) { |
3559 | if (has_no_changes($commit)) { | |