blob: a6b6c3e40c180e58186f9ef8af5c6fd6fc654080 [file] [log] [blame]
Zbigniew Jędrzejewski-Szmek0754e082012-05-01 22:18:18 +02001#!/usr/bin/perl
Eric Wong551ce282006-02-20 10:57:29 -08002# Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3# License: GPL v2 or later
Ævar Arnfjörð Bjarmasond48b2842010-09-24 20:00:52 +00004use 5.008;
Eric Wong3397f9d2006-02-16 01:24:16 -08005use warnings;
6use strict;
7use vars qw/ $AUTHOR $VERSION
Adam Robenffe256f2008-05-23 16:19:41 +02008 $sha1 $sha1_short $_revision $_repository
Mark Lodato36db1ed2009-05-14 21:27:15 -04009 $_q $_authors $_authors_prog %users/;
Eric Wong3397f9d2006-02-16 01:24:16 -080010$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
Eric Wong60d02cc2006-07-06 00:14:16 -070011$VERSION = '@@GIT_VERSION@@';
Eric Wong13ccd6d2006-03-29 22:37:18 -080012
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070013use Carp qw/croak/;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070014use File::Basename qw/dirname basename/;
15use File::Path qw/mkpath/;
16use File::Spec;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070017use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070018use Memoize;
19
Michael G. Schwern29499c02012-07-26 16:22:24 -070020use Git::SVN;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070021use Git::SVN::Editor;
22use Git::SVN::Fetcher;
23use Git::SVN::Ra;
24use Git::SVN::Prompt;
Michael G. Schwernb74fda12012-07-26 17:26:01 -070025use Git::SVN::Log;
Michael G. Schwernb772cb92012-07-26 17:26:03 -070026use Git::SVN::Migration;
Michael G. Schwernc2768fa2012-07-26 16:22:22 -070027
Michael G. Schwern91e6e0c2012-07-28 02:38:26 -070028use Git::SVN::Utils qw(
29 fatal
30 can_compress
31 canonicalize_path
32 canonicalize_url
Michael G. Schwernca475a62012-07-28 02:38:29 -070033 join_paths
Michael G. Schwernd2fd1192012-07-28 02:47:50 -070034 add_path_to_url
Michael G. Schwern5eaa1fd2012-07-28 02:47:52 -070035 join_paths
Michael G. Schwern91e6e0c2012-07-28 02:38:26 -070036);
37
Michael G. Schwernb0e75252012-07-26 17:26:02 -070038use Git qw(
39 git_cmd_try
40 command
41 command_oneline
42 command_noisy
43 command_output_pipe
44 command_close_pipe
45 command_bidi_pipe
46 command_close_bidi_pipe
Eric Wongb26098f2016-10-14 00:27:53 +000047 get_record
Michael G. Schwernb0e75252012-07-26 17:26:02 -070048);
49
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070050BEGIN {
51 Memoize::memoize 'Git::config';
52 Memoize::memoize 'Git::config_bool';
53}
54
Michael G. Schwernb0e75252012-07-26 17:26:02 -070055
Benoit Sigoure15153452007-10-16 16:36:50 +020056# From which subdir have we been invoked?
57my $cmd_dir_prefix = eval {
58 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
59} || '';
60
Eric Wong6af1db42007-02-14 16:04:10 -080061$Git::SVN::Ra::_log_window_size = 100;
Eric Wong13ccd6d2006-03-29 22:37:18 -080062
Sebastian Schuberth184892f2011-10-14 23:53:31 +010063if (! exists $ENV{SVN_SSH} && exists $ENV{GIT_SSH}) {
64 $ENV{SVN_SSH} = $ENV{GIT_SSH};
65}
66
67if (exists $ENV{SVN_SSH} && $^O eq 'msys') {
68 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
69 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
Karthik Rf3a87d92009-08-18 18:54:40 -050070}
71
Eric Wongf8c9d1d2007-01-12 02:35:20 -080072$Git::SVN::Log::TZ = $ENV{TZ};
Eric Wong3397f9d2006-02-16 01:24:16 -080073$ENV{TZ} = 'UTC';
Eric Wonga00439a2006-06-27 19:39:13 -070074$| = 1; # unbuffer STDOUT
Eric Wong3397f9d2006-02-16 01:24:16 -080075
Roman Kagan6ade9bd2012-04-02 17:52:34 +040076# All SVN commands do it. Otherwise we may die on SIGPIPE when the remote
77# repository decides to close the connection which we expect to be kept alive.
78$SIG{PIPE} = 'IGNORE';
79
Junio C Hamanof760c902012-05-02 19:53:50 +000080# Given a dot separated version number, "subtract" it from
81# the SVN::Core::VERSION; non-negaitive return means the SVN::Core
82# is at least at the version the caller asked for.
83sub compare_svn_version {
84 my (@ours) = split(/\./, $SVN::Core::VERSION);
85 my (@theirs) = split(/\./, $_[0]);
86 my ($i, $diff);
87
88 for ($i = 0; $i < @ours && $i < @theirs; $i++) {
89 $diff = $ours[$i] - $theirs[$i];
90 return $diff if ($diff);
91 }
92 return 1 if ($i < @ours);
93 return -1 if ($i < @theirs);
94 return 0;
95}
96
josh robbd32fad22010-02-24 16:13:50 +130097sub _req_svn {
98 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
99 require SVN::Ra;
100 require SVN::Delta;
Junio C Hamanof760c902012-05-02 19:53:50 +0000101 if (::compare_svn_version('1.1.0') < 0) {
josh robbd32fad22010-02-24 16:13:50 +1300102 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
103 }
Eric Wongb9c85182006-12-15 23:58:07 -0800104}
Michael G. Schwernc2768fa2012-07-26 16:22:22 -0700105
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800106$sha1 = qr/[a-f\d]{40}/;
107$sha1_short = qr/[a-f\d]{4,40}/;
Eric Wong44320b92007-01-13 22:35:53 -0800108my ($_stdin, $_help, $_edit,
Marc Branchaud62244062009-06-23 13:02:08 -0400109 $_message, $_file, $_branch_dest,
Eric Wongd05d72e2007-01-15 22:59:26 -0800110 $_template, $_shared,
Jason Merrillc2abd832009-04-06 16:37:59 -0400111 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
John Keeping2934a482013-01-17 22:19:33 +0000112 $_before, $_after,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200113 $_merge, $_strategy, $_preserve_merges, $_dry_run, $_parents, $_local,
Steven Grimm4be40382008-05-10 22:11:18 -0700114 $_prefix, $_no_checkout, $_url, $_verbose,
Alfred Perlstein83c94332014-12-07 02:47:23 -0800115 $_commit_url, $_tag, $_merge_info, $_interactive, $_set_svn_props);
Michael G. Schwern0f80aa02012-07-26 16:22:23 -0700116
117# This is a refactoring artifact so Git::SVN can get at this git-svn switch.
118sub opt_prefix { return $_prefix || '' }
119
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500120$Git::SVN::Fetcher::_placeholder_filename = ".gitignore";
Simon Arlott49750f32009-03-30 19:31:41 +0100121$_q ||= 0;
Eric Wong706587f2007-01-18 17:50:01 -0800122my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
123 'config-dir=s' => \$Git::SVN::Ra::config_dir,
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +0200124 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500125 'ignore-paths=s' => \$Git::SVN::Fetcher::_ignore_regex,
Paul Walmsleya7b10232013-05-04 00:10:18 +0100126 'include-paths=s' => \$Git::SVN::Fetcher::_include_regex,
Michael Olsoncdb51a12011-10-10 16:27:37 -0700127 'ignore-refs=s' => \$Git::SVN::Ra::_ignore_refs_regex );
Eric Wong0bed5ea2007-02-09 02:45:03 -0800128my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
Eric Wongdc5869c2006-05-24 02:07:32 -0700129 'authors-file|A=s' => \$_authors,
Mark Lodato36db1ed2009-05-14 21:27:15 -0400130 'authors-prog=s' => \$_authors_prog,
Eric Wongecc712d2007-01-31 12:28:10 -0800131 'repack:i' => \$Git::SVN::_repack,
Eric Wong97ae0912007-02-11 15:21:24 -0800132 'noMetadata' => \$Git::SVN::_no_metadata,
133 'useSvmProps' => \$Git::SVN::_use_svm_props,
Eric Wong62e349d2007-02-16 19:57:29 -0800134 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
Eric Wong6af1db42007-02-14 16:04:10 -0800135 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
Eric Wong1e889ef2007-02-16 01:45:13 -0800136 'no-checkout' => \$_no_checkout,
Simon Arlott49750f32009-03-30 19:31:41 +0100137 'quiet|q+' => \$_q,
Eric Wongecc712d2007-01-31 12:28:10 -0800138 'repack-flags|repack-args|repack-opts=s' =>
139 \$Git::SVN::_repack_flags,
Andy Whitcroft70ae04e2007-11-22 13:44:42 +0000140 'use-log-author' => \$Git::SVN::_use_log_author,
Avery Pennarun6aa9ba12008-04-15 21:04:17 -0400141 'add-author-from' => \$Git::SVN::_add_author_from,
Pete Harlane82f0d72009-01-17 20:10:14 -0800142 'localtime' => \$Git::SVN::_localtime,
Eric Wong706587f2007-01-18 17:50:01 -0800143 %remote_opts );
Eric Wong36f5b1f2006-05-23 19:23:41 -0700144
Marc Branchaud62244062009-06-23 13:02:08 -0400145my ($_trunk, @_tags, @_branches, $_stdlayout);
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800146my %icv;
Eric Wongdadc6d22007-02-14 12:27:41 -0800147my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
Marc Branchaud62244062009-06-23 13:02:08 -0400148 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
149 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
martin f. krafft8f728fb2007-07-14 11:25:28 +0200150 'stdlayout|s' => \$_stdlayout,
Eric Wong6b488292009-07-25 00:00:50 -0700151 'minimize-url|m!' => \$Git::SVN::_minimize_url,
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800152 'no-metadata' => sub { $icv{noMetadata} = 1 },
153 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
154 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
155 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
Jay Soffian3e18ce12010-01-23 03:30:00 -0500156 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
Eric Wongdadc6d22007-02-14 12:27:41 -0800157 %remote_opts );
Eric Wong27e9fb82006-06-27 19:39:12 -0700158my %cmt_opts = ( 'edit|e' => \$_edit,
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500159 'rmdir' => \$Git::SVN::Editor::_rmdir,
160 'find-copies-harder' => \$Git::SVN::Editor::_find_copies_harder,
161 'l=i' => \$Git::SVN::Editor::_rename_limit,
162 'copy-similarity|C=i'=> \$Git::SVN::Editor::_cp_similarity
Eric Wong27e9fb82006-06-27 19:39:12 -0700163);
Eric Wong9d55b412006-06-12 15:53:13 -0700164
Eric Wong3397f9d2006-02-16 01:24:16 -0800165my %cmd = (
Eric Wong2a3240b2007-01-04 18:09:56 -0800166 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
Eric Wonge98671e2007-02-14 02:21:19 -0800167 { 'revision|r=s' => \$_revision,
Eric Wong905f8b72007-02-16 03:22:40 -0800168 'fetch-all|all' => \$_fetch_all,
Jason Merrillc2abd832009-04-06 16:37:59 -0400169 'parent|p' => \$_fetch_parent,
Eric Wonge98671e2007-02-14 02:21:19 -0800170 %fc_opts } ],
Eric Wong0425ea92007-02-16 18:45:01 -0800171 clone => [ \&cmd_clone, "Initialize and fetch revisions",
172 { 'revision|r=s' => \$_revision,
Ray Chen40a15302011-07-20 18:37:26 -0400173 'preserve-empty-dirs' =>
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500174 \$Git::SVN::Fetcher::_preserve_empty_dirs,
Ray Chen40a15302011-07-20 18:37:26 -0400175 'placeholder-filename=s' =>
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500176 \$Git::SVN::Fetcher::_placeholder_filename,
Eric Wong0425ea92007-02-16 18:45:01 -0800177 %fc_opts, %init_opts } ],
Eric Wongd2866f92007-01-11 12:26:16 -0800178 init => [ \&cmd_init, "Initialize a repo for tracking" .
Eric Wongf8ab6b72006-05-31 15:49:56 -0700179 " (requires URL argument)",
Eric Wong9d55b412006-06-12 15:53:13 -0700180 \%init_opts ],
Eric Wongdadc6d22007-02-14 12:27:41 -0800181 'multi-init' => [ \&cmd_multi_init,
182 "Deprecated alias for ".
183 "'$0 init -T<trunk> -b<branches> -t<tags>'",
184 \%init_opts ],
Eric Wongd7ad3be2007-01-14 03:14:28 -0800185 dcommit => [ \&cmd_dcommit,
186 'Commit several diffs to merge with upstream',
Eric Wong3289e862006-12-15 23:58:08 -0800187 { 'merge|m|M' => \$_merge,
188 'strategy|s=s' => \$_strategy,
Eric Wong905f8b72007-02-16 03:22:40 -0800189 'verbose|v' => \$_verbose,
Eric Wong3289e862006-12-15 23:58:08 -0800190 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800191 'fetch-all|all' => \$_fetch_all,
Eric Wongba24e742008-08-07 02:06:16 -0700192 'commit-url=s' => \$_commit_url,
Alfred Perlstein83c94332014-12-07 02:47:23 -0800193 'set-svn-props=s' => \$_set_svn_props,
Eric Wongba24e742008-08-07 02:06:16 -0700194 'revision|r=i' => \$_revision,
Karl Hasselström171af112007-05-03 07:51:35 +0200195 'no-rebase' => \$_no_rebase,
Steven Walter6abd9332010-09-24 23:51:50 -0400196 'mergeinfo=s' => \$_merge_info,
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200197 'interactive|i' => \$_interactive,
Eric Wong4b155222006-12-22 21:59:24 -0800198 %cmt_opts, %fc_opts } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700199 branch => [ \&cmd_branch,
200 'Create a branch in the SVN repository',
201 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400202 'destination|d=s' => \$_branch_dest,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700203 'dry-run|n' => \$_dry_run,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200204 'parents' => \$_parents,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100205 'tag|t' => \$_tag,
206 'username=s' => \$Git::SVN::Prompt::_username,
207 'commit-url=s' => \$_commit_url } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700208 tag => [ sub { $_tag = 1; cmd_branch(@_) },
209 'Create a tag in the SVN repository',
210 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400211 'destination|d=s' => \$_branch_dest,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100212 'dry-run|n' => \$_dry_run,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200213 'parents' => \$_parents,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100214 'username=s' => \$Git::SVN::Prompt::_username,
215 'commit-url=s' => \$_commit_url } ],
Eric Wong1ce255d2007-01-14 23:21:16 -0800216 'set-tree' => [ \&cmd_set_tree,
217 "Set an SVN repository to a git tree-ish",
Robin H. Johnsone84dc6d2009-05-05 11:16:14 -0700218 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200219 'create-ignore' => [ \&cmd_create_ignore,
220 'Create a .gitignore per svn:ignore',
221 { 'revision|r=i' => \$_revision
222 } ],
Eric Wong6111b932009-11-15 18:57:16 -0800223 'mkdirs' => [ \&cmd_mkdirs ,
224 "recreate empty directories after a checkout",
225 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure15153452007-10-16 16:36:50 +0200226 'propget' => [ \&cmd_propget,
227 'Print the value of a property on a file or directory',
228 { 'revision|r=i' => \$_revision } ],
Alfred Perlstein83c94332014-12-07 02:47:23 -0800229 'propset' => [ \&cmd_propset,
230 'Set the value of a property on a file or directory - will be set on commit',
231 {} ],
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200232 'proplist' => [ \&cmd_proplist,
233 'List all properties of a file or directory',
234 { 'revision|r=i' => \$_revision } ],
Eric Wong5969cbe2007-01-11 17:58:39 -0800235 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200236 { 'revision|r=i' => \$_revision
Lars Hjemli05b4df32007-09-05 11:35:29 +0200237 } ],
Vineet Kumar2d879792007-11-19 14:56:15 -0800238 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
239 { 'revision|r=i' => \$_revision
240 } ],
Eric Wong1c8443b2007-01-14 02:17:00 -0800241 'multi-fetch' => [ \&cmd_multi_fetch,
Eric Wonge98671e2007-02-14 02:21:19 -0800242 "Deprecated alias for $0 fetch --all",
243 { 'revision|r=s' => \$_revision, %fc_opts } ],
Eric Wong706587f2007-01-18 17:50:01 -0800244 'migrate' => [ sub { },
245 # no-op, we automatically run this anyways,
Eric Wong706587f2007-01-18 17:50:01 -0800246 'Migrate configuration/metadata/layout from
247 previous versions of git-svn',
Eric Wonga836a0e2007-02-14 19:34:56 -0800248 { 'minimize' => \$Git::SVN::Migration::_minimize,
249 %remote_opts } ],
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800250 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
251 { 'limit=i' => \$Git::SVN::Log::limit,
Eric Wong79bb8d82006-06-01 02:35:44 -0700252 'revision|r=s' => \$_revision,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800253 'verbose|v' => \$Git::SVN::Log::verbose,
254 'incremental' => \$Git::SVN::Log::incremental,
255 'oneline' => \$Git::SVN::Log::oneline,
256 'show-commit' => \$Git::SVN::Log::show_commit,
257 'non-recursive' => \$Git::SVN::Log::non_recursive,
Eric Wong79bb8d82006-06-01 02:35:44 -0700258 'authors-file|A=s' => \$_authors,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800259 'color' => \$Git::SVN::Log::color,
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200260 'pager=s' => \$Git::SVN::Log::pager
Eric Wong79bb8d82006-06-01 02:35:44 -0700261 } ],
Eric Wong222566e2008-08-08 01:41:58 -0700262 'find-rev' => [ \&cmd_find_rev,
263 "Translate between SVN revision numbers and tree-ish",
Eric Wonga831a3f2014-09-07 08:35:19 +0000264 { 'B|before' => \$_before,
265 'A|after' => \$_after } ],
Eric Wong905f8b72007-02-16 03:22:40 -0800266 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
267 { 'merge|m|M' => \$_merge,
268 'verbose|v' => \$_verbose,
269 'strategy|s=s' => \$_strategy,
Eric Wongdee41f32007-03-13 11:40:36 -0700270 'local|l' => \$_local,
Eric Wong905f8b72007-02-16 03:22:40 -0800271 'fetch-all|all' => \$_fetch_all,
Seth Falcon7d45e142008-05-19 20:29:17 -0700272 'dry-run|n' => \$_dry_run,
Avishay Lavieb64e1f52012-05-15 11:45:50 +0300273 'preserve-merges|p' => \$_preserve_merges,
Eric Wong905f8b72007-02-16 03:22:40 -0800274 %fc_opts } ],
Eric Wong44320b92007-01-13 22:35:53 -0800275 'commit-diff' => [ \&cmd_commit_diff,
276 'Commit a diff between two trees',
Eric Wong27e9fb82006-06-27 19:39:12 -0700277 { 'message|m=s' => \$_message,
278 'file|F=s' => \$_file,
Eric Wong45bf4732006-11-09 01:19:37 -0800279 'revision|r=s' => \$_revision,
Eric Wong27e9fb82006-06-27 19:39:12 -0700280 %cmt_opts } ],
David D. Kilzere6fefa92007-11-21 11:57:18 -0800281 'info' => [ \&cmd_info,
282 "Show info about the latest SVN revision
283 on the current branch",
David D. Kilzer8b014d72007-11-21 11:57:19 -0800284 { 'url' => \$_url, } ],
Tim Stoakes6fb53752008-02-10 15:21:08 +1030285 'blame' => [ \&Git::SVN::Log::cmd_blame,
286 "Show what revision and author last modified each line of a file",
Michael G. Schwern2c96a6c2012-07-26 17:26:00 -0700287 { 'git-format' => \$Git::SVN::Log::_git_format } ],
Ben Jackson195643f2009-06-03 20:45:52 -0700288 'reset' => [ \&cmd_reset,
289 "Undo fetches back to the specified SVN revision",
290 { 'revision|r=s' => \$_revision,
291 'parent|p' => \$_fetch_parent } ],
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -0500292 'gc' => [ \&cmd_gc,
293 "Compress unhandled.log files in .git/svn and remove " .
294 "index files in .git/svn",
295 {} ],
Eric Wong3397f9d2006-02-16 01:24:16 -0800296);
Eric Wong9d55b412006-06-12 15:53:13 -0700297
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200298package FakeTerm;
299sub new {
300 my ($class, $reason) = @_;
301 return bless \$reason, shift;
302}
303sub readline {
304 my $self = shift;
305 die "Cannot use readline on FakeTerm: $$self";
306}
307package main;
308
Eric Wong30d45f72014-09-14 07:38:29 +0000309my $term;
310sub term_init {
311 $term = eval {
Eric Wong47092c12015-01-15 08:54:22 +0000312 require Term::ReadLine;
Eric Wong30d45f72014-09-14 07:38:29 +0000313 $ENV{"GIT_SVN_NOTTY"}
314 ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT
315 : new Term::ReadLine 'git-svn';
316 };
317 if ($@) {
318 $term = new FakeTerm "$@: going non-interactive";
319 }
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200320}
321
Eric Wong3397f9d2006-02-16 01:24:16 -0800322my $cmd;
323for (my $i = 0; $i < @ARGV; $i++) {
324 if (defined $cmd{$ARGV[$i]}) {
325 $cmd = $ARGV[$i];
326 splice @ARGV, $i, 1;
327 last;
Ben Jackson9a8c92a2009-05-30 18:17:06 -0700328 } elsif ($ARGV[$i] eq 'help') {
329 $cmd = $ARGV[$i+1];
330 usage(0);
Eric Wong3397f9d2006-02-16 01:24:16 -0800331 }
332};
333
Eric Wong540424b2007-12-19 00:31:43 -0800334# make sure we're always running at the top-level working directory
Barry Wardellbc93ceb2013-01-21 01:22:02 +0000335if ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
336 $ENV{GIT_DIR} ||= ".git";
Ramkumar Ramachandraa94655d2015-01-10 09:55:11 -0500337 # catch the submodule case
338 if (-f $ENV{GIT_DIR}) {
339 open(my $fh, '<', $ENV{GIT_DIR}) or
340 die "failed to open $ENV{GIT_DIR}: $!\n";
341 $ENV{GIT_DIR} = $1 if <$fh> =~ /^gitdir: (.+)$/;
342 }
Eric Wongc0071ae2016-07-22 20:17:31 +0000343} elsif ($cmd) {
Barry Wardellbc93ceb2013-01-21 01:22:02 +0000344 my ($git_dir, $cdup);
345 git_cmd_try {
346 $git_dir = command_oneline([qw/rev-parse --git-dir/]);
347 } "Unable to find .git directory\n";
348 git_cmd_try {
349 $cdup = command_oneline(qw/rev-parse --show-cdup/);
350 chomp $cdup if ($cdup);
351 $cdup = "." unless ($cdup && length $cdup);
352 } "Already at toplevel, but $git_dir not found\n";
353 $ENV{GIT_DIR} = $git_dir;
354 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
Adam Robenffe256f2008-05-23 16:19:41 +0200355 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wong5253dc32007-02-20 01:36:30 -0800356}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100357
358my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
359
Eric Wongc0071ae2016-07-22 20:17:31 +0000360read_git_config(\%opts) if $ENV{GIT_DIR};
Eric Wong222566e2008-08-08 01:41:58 -0700361if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
362 Getopt::Long::Configure('pass_through');
363}
Clemens Buchacher87182b12011-10-03 20:21:36 +0200364my $rv = GetOptions(%opts, 'h|H' => \$_help, 'version|V' => \$_version,
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100365 'minimize-connections' => \$Git::SVN::Migration::_minimize,
366 'id|i=s' => \$Git::SVN::default_ref_id,
367 'svn-remote|remote|R=s' => sub {
368 $Git::SVN::no_reuse_existing = 1;
369 $Git::SVN::default_repo_id = $_[1] });
370exit 1 if (!$rv && $cmd && $cmd ne 'log');
371
372usage(0) if $_help;
373version() if $_version;
374usage(1) unless defined $cmd;
375load_authors() if $_authors;
Mark Lodato36db1ed2009-05-14 21:27:15 -0400376if (defined $_authors_prog) {
377 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
378}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100379
Eric Wong0425ea92007-02-16 18:45:01 -0800380unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
Eric Wong706587f2007-01-18 17:50:01 -0800381 Git::SVN::Migration::migration_check();
382}
Eric Wongecc712d2007-01-31 12:28:10 -0800383Git::SVN::init_vars();
Eric Wongb805b442007-01-22 13:52:04 -0800384eval {
385 Git::SVN::verify_remotes_sanity();
386 $cmd{$cmd}->[0]->(@ARGV);
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +0100387 post_fetch_checkout();
Eric Wongb805b442007-01-22 13:52:04 -0800388};
389fatal $@ if $@;
Eric Wong3397f9d2006-02-16 01:24:16 -0800390exit 0;
391
392####################### primary functions ######################
393sub usage {
394 my $exit = shift || 0;
395 my $fd = $exit ? \*STDERR : \*STDOUT;
396 print $fd <<"";
397git-svn - bidirectional operations between a single Subversion tree and git
David Aguilar1ca6e582013-02-23 16:50:10 -0800398usage: git svn <command> [options] [arguments]\n
Eric Wong448c81b2006-03-03 01:20:09 -0800399
400 print $fd "Available commands:\n" unless $cmd;
Eric Wong3397f9d2006-02-16 01:24:16 -0800401
402 foreach (sort keys %cmd) {
Eric Wong448c81b2006-03-03 01:20:09 -0800403 next if $cmd && $cmd ne $_;
Eric Wonga836a0e2007-02-14 19:34:56 -0800404 next if /^multi-/; # don't show deprecated commands
Eric Wongb203b762006-10-11 14:53:36 -0700405 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
Benoit Sigoureaa807bc2007-11-03 19:53:34 +0100406 foreach (sort keys %{$cmd{$_}->[2]}) {
Eric Wong512b6202007-04-03 01:57:08 -0700407 # mixed-case options are for .git/config only
408 next if /[A-Z]/ && /^[a-z]+$/i;
Eric Wong448c81b2006-03-03 01:20:09 -0800409 # prints out arguments as they should be passed:
Eric Wongb8c92ca2006-05-24 01:40:37 -0700410 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
Eric Wongb203b762006-10-11 14:53:36 -0700411 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
Eric Wong448c81b2006-03-03 01:20:09 -0800412 "--$_" : "-$_" }
413 split /\|/,$_)," $x\n";
414 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800415 }
416 print $fd <<"";
Eric Wong448c81b2006-03-03 01:20:09 -0800417\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
418arbitrary identifier if you're tracking multiple SVN branches/repositories in
419one git repository and want to keep them separate. See git-svn(1) for more
420information.
Eric Wong3397f9d2006-02-16 01:24:16 -0800421
422 exit $exit;
423}
424
Eric Wong551ce282006-02-20 10:57:29 -0800425sub version {
Michael J Gruberb0779242010-03-04 11:23:53 +0100426 ::_req_svn();
Eric Wong7d60ab22006-12-28 01:16:20 -0800427 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
Eric Wong551ce282006-02-20 10:57:29 -0800428 exit 0;
429}
430
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200431sub ask {
432 my ($prompt, %arg) = @_;
433 my $valid_re = $arg{valid_re};
434 my $default = $arg{default};
435 my $resp;
436 my $i = 0;
Eric Wong30d45f72014-09-14 07:38:29 +0000437 term_init() unless $term;
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200438
439 if ( !( defined($term->IN)
440 && defined( fileno($term->IN) )
441 && defined( $term->OUT )
442 && defined( fileno($term->OUT) ) ) ){
443 return defined($default) ? $default : undef;
444 }
445
446 while ($i++ < 10) {
447 $resp = $term->readline($prompt);
448 if (!defined $resp) { # EOF
449 print "\n";
450 return defined $default ? $default : undef;
451 }
452 if ($resp eq '' and defined $default) {
453 return $default;
454 }
455 if (!defined $valid_re or $resp =~ /$valid_re/) {
456 return $resp;
457 }
458 }
459 return undef;
460}
461
Eric Wong8164b652007-01-11 15:35:55 -0800462sub do_git_init_db {
463 unless (-d $ENV{GIT_DIR}) {
464 my @init_db = ('init');
465 push @init_db, "--template=$_template" if defined $_template;
Eric Wongdadc6d22007-02-14 12:27:41 -0800466 if (defined $_shared) {
467 if ($_shared =~ /[a-z]/) {
468 push @init_db, "--shared=$_shared";
469 } else {
470 push @init_db, "--shared";
471 }
472 }
Eric Wong8164b652007-01-11 15:35:55 -0800473 command_noisy(@init_db);
Adam Robenffe256f2008-05-23 16:19:41 +0200474 $_repository = Git->repository(Repository => ".git");
Eric Wong8164b652007-01-11 15:35:55 -0800475 }
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800476 my $set;
477 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
478 foreach my $i (keys %icv) {
479 die "'$set' and '$i' cannot both be set\n" if $set;
480 next unless defined $icv{$i};
481 command_noisy('config', "$pfx.$i", $icv{$i});
482 $set = $i;
483 }
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500484 my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex;
Michael Olsoncdb51a12011-10-10 16:27:37 -0700485 command_noisy('config', "$pfx.ignore-paths", $$ignore_paths_regex)
486 if defined $$ignore_paths_regex;
Paul Walmsleya7b10232013-05-04 00:10:18 +0100487 my $include_paths_regex = \$Git::SVN::Fetcher::_include_regex;
488 command_noisy('config', "$pfx.include-paths", $$include_paths_regex)
489 if defined $$include_paths_regex;
Michael Olsoncdb51a12011-10-10 16:27:37 -0700490 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
491 command_noisy('config', "$pfx.ignore-refs", $$ignore_refs_regex)
492 if defined $$ignore_refs_regex;
Ray Chen40a15302011-07-20 18:37:26 -0400493
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500494 if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) {
495 my $fname = \$Git::SVN::Fetcher::_placeholder_filename;
Ray Chen40a15302011-07-20 18:37:26 -0400496 command_noisy('config', "$pfx.preserve-empty-dirs", 'true');
497 command_noisy('config', "$pfx.placeholder-filename", $$fname);
498 }
Eric Wong8164b652007-01-11 15:35:55 -0800499}
500
Eric Wongdadc6d22007-02-14 12:27:41 -0800501sub init_subdir {
502 my $repo_path = shift or return;
503 mkpath([$repo_path]) unless -d $repo_path;
504 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
Eric Wongf30603f2007-02-23 01:26:26 -0800505 $ENV{GIT_DIR} = '.git';
Adam Robenffe256f2008-05-23 16:19:41 +0200506 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wongdadc6d22007-02-14 12:27:41 -0800507}
508
Eric Wong0425ea92007-02-16 18:45:01 -0800509sub cmd_clone {
510 my ($url, $path) = @_;
Christopher Layne19e95422016-07-03 05:39:23 +0000511 if (!$url) {
512 die "SVN repository location required ",
513 "as a command-line argument\n";
514 } elsif (!defined $path &&
Marc Branchaud62244062009-06-23 13:02:08 -0400515 (defined $_trunk || @_branches || @_tags ||
martin f. krafft8f728fb2007-07-14 11:25:28 +0200516 defined $_stdlayout) &&
Eric Wong0425ea92007-02-16 18:45:01 -0800517 $url !~ m#^[a-z\+]+://#) {
518 $path = $url;
519 }
Eric Wong0425ea92007-02-16 18:45:01 -0800520 $path = basename($url) if !defined $path || !length $path;
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500521 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
Eric Wongf30603f2007-02-23 01:26:26 -0800522 cmd_init($url, $path);
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500523 command_oneline('config', 'svn.authorsfile', $authors_absolute)
524 if $_authors;
Alex Vandiverf5841502009-12-08 15:54:11 -0500525 Git::SVN::fetch_all($Git::SVN::default_repo_id);
Eric Wong0425ea92007-02-16 18:45:01 -0800526}
527
Eric Wongd2866f92007-01-11 12:26:16 -0800528sub cmd_init {
martin f. krafft8f728fb2007-07-14 11:25:28 +0200529 if (defined $_stdlayout) {
530 $_trunk = 'trunk' if (!defined $_trunk);
Marc Branchaud62244062009-06-23 13:02:08 -0400531 @_tags = 'tags' if (! @_tags);
532 @_branches = 'branches' if (! @_branches);
martin f. krafft8f728fb2007-07-14 11:25:28 +0200533 }
Marc Branchaud62244062009-06-23 13:02:08 -0400534 if (defined $_trunk || @_branches || @_tags) {
Eric Wongdadc6d22007-02-14 12:27:41 -0800535 return cmd_multi_init(@_);
Eric Wong03e0ea82006-06-30 21:42:53 -0700536 }
Eric Wongdadc6d22007-02-14 12:27:41 -0800537 my $url = shift or die "SVN repository location required ",
538 "as a command-line argument\n";
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200539 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -0800540 init_subdir(@_);
Eric Wong8164b652007-01-11 15:35:55 -0800541 do_git_init_db();
Eric Wong03e0ea82006-06-30 21:42:53 -0700542
Eric Wong6b488292009-07-25 00:00:50 -0700543 if ($Git::SVN::_minimize_url eq 'unset') {
544 $Git::SVN::_minimize_url = 0;
545 }
546
Eric Wong706587f2007-01-18 17:50:01 -0800547 Git::SVN->init($url);
Eric Wong3397f9d2006-02-16 01:24:16 -0800548}
549
Eric Wong2a3240b2007-01-04 18:09:56 -0800550sub cmd_fetch {
Eric Wonge98671e2007-02-14 02:21:19 -0800551 if (grep /^\d+=./, @_) {
552 die "'<rev>=<commit>' fetch arguments are ",
553 "no longer supported.\n";
Eric Wong07a1c952007-01-22 15:47:41 -0800554 }
Eric Wonge98671e2007-02-14 02:21:19 -0800555 my ($remote) = @_;
556 if (@_ > 1) {
David Aguilar0b670ab2013-02-24 14:48:38 -0800557 die "usage: $0 fetch [--all] [--parent] [svn-remote]\n";
Eric Wonge98671e2007-02-14 02:21:19 -0800558 }
Eric Wong4d0157d2009-11-22 12:37:06 -0800559 $Git::SVN::no_reuse_existing = undef;
Jason Merrillc2abd832009-04-06 16:37:59 -0400560 if ($_fetch_parent) {
561 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
562 unless ($gs) {
563 die "Unable to determine upstream SVN information from ",
564 "working tree history\n";
565 }
566 # just fetch, don't checkout.
567 $_no_checkout = 'true';
568 $_fetch_all ? $gs->fetch_all : $gs->fetch;
569 } elsif ($_fetch_all) {
Eric Wonge98671e2007-02-14 02:21:19 -0800570 cmd_multi_fetch();
571 } else {
Jason Merrillc2abd832009-04-06 16:37:59 -0400572 $remote ||= $Git::SVN::default_repo_id;
Eric Wonge98671e2007-02-14 02:21:19 -0800573 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
Eric Wong1c8443b2007-01-14 02:17:00 -0800574 }
Eric Wong2a3240b2007-01-04 18:09:56 -0800575}
576
Eric Wong1ce255d2007-01-14 23:21:16 -0800577sub cmd_set_tree {
Eric Wong3397f9d2006-02-16 01:24:16 -0800578 my (@commits) = @_;
579 if ($_stdin || !@commits) {
580 print "Reading from stdin...\n";
581 @commits = ();
582 while (<STDIN>) {
Eric Wong1ca72ae2006-03-03 01:20:09 -0800583 if (/\b($sha1_short)\b/o) {
Eric Wong3397f9d2006-02-16 01:24:16 -0800584 unshift @commits, $1;
585 }
586 }
587 }
588 my @revs;
Eric Wong8de010a2006-02-20 10:57:26 -0800589 foreach my $c (@commits) {
Eric Wongaef4e922006-12-15 10:59:54 -0800590 my @tmp = command('rev-parse',$c);
Eric Wong8de010a2006-02-20 10:57:26 -0800591 if (scalar @tmp == 1) {
592 push @revs, $tmp[0];
593 } elsif (scalar @tmp > 1) {
Eric Wongaef4e922006-12-15 10:59:54 -0800594 push @revs, reverse(command('rev-list',@tmp));
Eric Wong8de010a2006-02-20 10:57:26 -0800595 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200596 fatal "Failed to rev-parse $c";
Eric Wong8de010a2006-02-20 10:57:26 -0800597 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800598 }
Eric Wong1ce255d2007-01-14 23:21:16 -0800599 my $gs = Git::SVN->new;
600 my ($r_last, $cmt_last) = $gs->last_rev_commit;
601 $gs->fetch;
Eric Wong97f69872007-01-25 11:53:13 -0800602 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
Eric Wong1ce255d2007-01-14 23:21:16 -0800603 fatal "There are new revisions that were fetched ",
604 "and need to be merged (or acknowledged) ",
605 "before committing.\nlast rev: $r_last\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200606 " current: $gs->{last_rev}";
Eric Wong1ce255d2007-01-14 23:21:16 -0800607 }
608 $gs->set_tree($_) foreach @revs;
Eric Wonga5e0ced2006-06-12 15:23:48 -0700609 print "Done committing ",scalar @revs," revisions to SVN\n";
Eric Wong3157dd92007-12-13 08:27:34 -0800610 unlink $gs->{index};
Eric Wonga5e0ced2006-06-12 15:23:48 -0700611}
612
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400613sub split_merge_info_range {
614 my ($range) = @_;
615 if ($range =~ /(\d+)-(\d+)/) {
616 return (int($1), int($2));
617 } else {
618 return (int($range), int($range));
619 }
620}
621
622sub combine_ranges {
623 my ($in) = @_;
624
625 my @fnums = ();
626 my @arr = split(/,/, $in);
627 for my $element (@arr) {
628 my ($start, $end) = split_merge_info_range($element);
629 push @fnums, $start;
630 }
631
632 my @sorted = @arr [ sort {
633 $fnums[$a] <=> $fnums[$b]
634 } 0..$#arr ];
635
636 my @return = ();
637 my $last = -1;
638 my $first = -1;
639 for my $element (@sorted) {
640 my ($start, $end) = split_merge_info_range($element);
641
642 if ($last == -1) {
643 $first = $start;
644 $last = $end;
645 next;
646 }
647 if ($start <= $last+1) {
648 if ($end > $last) {
649 $last = $end;
650 }
651 next;
652 }
653 if ($first == $last) {
654 push @return, "$first";
655 } else {
656 push @return, "$first-$last";
657 }
658 $first = $start;
659 $last = $end;
660 }
661
662 if ($first != -1) {
663 if ($first == $last) {
664 push @return, "$first";
665 } else {
666 push @return, "$first-$last";
667 }
668 }
669
670 return join(',', @return);
671}
672
673sub merge_revs_into_hash {
674 my ($hash, $minfo) = @_;
675 my @lines = split(' ', $minfo);
676
677 for my $line (@lines) {
678 my ($branchpath, $revs) = split(/:/, $line);
679
680 if (exists($hash->{$branchpath})) {
681 # Merge the two revision sets
682 my $combined = "$hash->{$branchpath},$revs";
683 $hash->{$branchpath} = combine_ranges($combined);
684 } else {
685 # Just do range combining for consolidation
686 $hash->{$branchpath} = combine_ranges($revs);
687 }
688 }
689}
690
691sub merge_merge_info {
Michael Contrerase234ac92013-03-30 18:06:42 -0400692 my ($mergeinfo_one, $mergeinfo_two, $ignore_branch) = @_;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400693 my %result_hash = ();
694
695 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
696 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
697
Michael Contrerase234ac92013-03-30 18:06:42 -0400698 delete $result_hash{$ignore_branch} if $ignore_branch;
699
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400700 my $result = '';
701 # Sort below is for consistency's sake
702 for my $branchname (sort keys(%result_hash)) {
703 my $revlist = $result_hash{$branchname};
704 $result .= "$branchname:$revlist\n"
705 }
706 return $result;
707}
708
709sub populate_merge_info {
710 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
711
712 my %parentshash;
713 read_commit_parents(\%parentshash, $d);
714 my @parents = @{$parentshash{$d}};
715 if ($#parents > 0) {
716 # Merge commit
717 my $all_parents_ok = 1;
718 my $aggregate_mergeinfo = '';
719 my $rooturl = $gs->repos_root;
Michael Contrerase234ac92013-03-30 18:06:42 -0400720 my ($target_branch) = $gs->full_pushurl =~ /^\Q$rooturl\E(.*)/;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400721
722 if (defined($rewritten_parent)) {
723 # Replace first parent with newly-rewritten version
724 shift @parents;
725 unshift @parents, $rewritten_parent;
726 }
727
728 foreach my $parent (@parents) {
729 my ($branchurl, $svnrev, $paruuid) =
730 cmt_metadata($parent);
731
732 unless (defined($svnrev)) {
733 # Should have been caught be preflight check
734 fatal "merge commit $d has ancestor $parent, but that change "
735 ."does not have git-svn metadata!";
736 }
Ted Percival0e7e30f2011-10-31 16:37:12 -0600737 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400738 fatal "commit $parent git-svn metadata changed mid-run!";
739 }
740 my $branchpath = $1;
741
742 my $ra = Git::SVN::Ra->new($branchurl);
743 my (undef, undef, $props) =
744 $ra->get_dir(canonicalize_path("."), $svnrev);
745 my $par_mergeinfo = $props->{'svn:mergeinfo'};
746 unless (defined $par_mergeinfo) {
747 $par_mergeinfo = '';
748 }
749 # Merge previous mergeinfo values
750 $aggregate_mergeinfo =
751 merge_merge_info($aggregate_mergeinfo,
Michael Contrerase234ac92013-03-30 18:06:42 -0400752 $par_mergeinfo,
753 $target_branch);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400754
755 next if $parent eq $parents[0]; # Skip first parent
756 # Add new changes being placed in tree by merge
757 my @cmd = (qw/rev-list --reverse/,
758 $parent, qw/--not/);
759 foreach my $par (@parents) {
760 unless ($par eq $parent) {
761 push @cmd, $par;
762 }
763 }
764 my @revsin = ();
765 my ($revlist, $ctx) = command_output_pipe(@cmd);
766 while (<$revlist>) {
767 my $irev = $_;
768 chomp $irev;
769 my (undef, $csvnrev, undef) =
770 cmt_metadata($irev);
771 unless (defined $csvnrev) {
772 # A child is missing SVN annotations...
773 # this might be OK, or might not be.
774 warn "W:child $irev is merged into revision "
775 ."$d but does not have git-svn metadata. "
776 ."This means git-svn cannot determine the "
777 ."svn revision numbers to place into the "
778 ."svn:mergeinfo property. You must ensure "
779 ."a branch is entirely committed to "
780 ."SVN before merging it in order for "
781 ."svn:mergeinfo population to function "
782 ."properly";
783 }
784 push @revsin, $csvnrev;
785 }
786 command_close_pipe($revlist, $ctx);
787
788 last unless $all_parents_ok;
789
790 # We now have a list of all SVN revnos which are
791 # merged by this particular parent. Integrate them.
792 next if $#revsin == -1;
793 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
794 $aggregate_mergeinfo =
795 merge_merge_info($aggregate_mergeinfo,
Michael Contrerase234ac92013-03-30 18:06:42 -0400796 $newmergeinfo,
797 $target_branch);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400798 }
799 if ($all_parents_ok and $aggregate_mergeinfo) {
800 return $aggregate_mergeinfo;
801 }
802 }
803
804 return undef;
805}
806
Robert Luberdae48fb752012-08-08 07:35:00 +0200807sub dcommit_rebase {
808 my ($is_last, $current, $fetched_ref, $svn_error) = @_;
809 my @diff;
810
811 if ($svn_error) {
812 print STDERR "\nERROR from SVN:\n",
813 $svn_error->expanded_message, "\n";
814 }
815 unless ($_no_rebase) {
816 # we always want to rebase against the current HEAD,
817 # not any head that was passed to us
818 @diff = command('diff-tree', $current,
819 $fetched_ref, '--');
820 my @finish;
821 if (@diff) {
822 @finish = rebase_cmd();
823 print STDERR "W: $current and ", $fetched_ref,
824 " differ, using @finish:\n",
825 join("\n", @diff), "\n";
826 } elsif ($is_last) {
827 print "No changes between ", $current, " and ",
828 $fetched_ref,
829 "\nResetting to the latest ",
830 $fetched_ref, "\n";
831 @finish = qw/reset --mixed/;
832 }
833 command_noisy(@finish, $fetched_ref) if @finish;
834 }
835 if ($svn_error) {
836 die "ERROR: Not all changes have been committed into SVN"
837 .($_no_rebase ? ".\n" : ", however the committed\n"
838 ."ones (if any) seem to be successfully integrated "
839 ."into the working tree.\n")
840 ."Please see the above messages for details.\n";
841 }
842 return @diff;
843}
844
Eric Wongd7ad3be2007-01-14 03:14:28 -0800845sub cmd_dcommit {
846 my $head = shift;
David D. Kilzer181264a2010-08-02 12:58:19 -0700847 command_noisy(qw/update-index --refresh/);
Slava Kardakov9926f662013-06-05 11:31:27 -0700848 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD --/) }
David Reiss826a9332007-11-13 13:47:26 -0800849 'Cannot dcommit with a dirty index. Commit your changes first, '
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100850 . "or stash them with `git stash'.\n";
Eric Wongd7ad3be2007-01-14 03:14:28 -0800851 $head ||= 'HEAD';
Thomas Rast5eec27e2009-05-29 17:09:42 +0200852
853 my $old_head;
854 if ($head ne 'HEAD') {
855 $old_head = eval {
856 command_oneline([qw/symbolic-ref -q HEAD/])
857 };
858 if ($old_head) {
859 $old_head =~ s{^refs/heads/}{};
860 } else {
861 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
862 }
863 command(['checkout', $head], STDERR => 0);
864 }
865
Eric Wonga8ae2622007-02-13 14:22:11 -0800866 my @refs;
Thomas Rast5eec27e2009-05-29 17:09:42 +0200867 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
Thomas Rast2cb61102008-08-31 15:50:59 +0200868 unless ($gs) {
869 die "Unable to determine upstream SVN information from ",
870 "$head history.\nPerhaps the repository is empty.";
871 }
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100872
873 if (defined $_commit_url) {
874 $url = $_commit_url;
875 } else {
876 $url = eval { command_oneline('config', '--get',
877 "svn-remote.$gs->{repo_id}.commiturl") };
878 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -0400879 $url = $gs->full_pushurl
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100880 }
881 }
882
Eric Wongba24e742008-08-07 02:06:16 -0700883 my $last_rev = $_revision if defined $_revision;
Matthieu Moy59b0c242008-04-24 20:06:36 +0200884 if ($url) {
885 print "Committing to $url ...\n";
886 }
Eric Wong733a65a2007-06-13 02:23:28 -0700887 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
Eric Wong751eb392007-08-31 18:16:12 -0700888 if ($_no_rebase && scalar(@$linear_refs) > 1) {
889 warn "Attempting to commit more than one change while ",
890 "--no-rebase is enabled.\n",
891 "If these changes depend on each other, re-running ",
Eric Wong7dfa16b2008-01-02 10:09:49 -0800892 "without --no-rebase may be required."
Eric Wong751eb392007-08-31 18:16:12 -0700893 }
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200894
895 if (defined $_interactive){
896 my $ask_default = "y";
897 foreach my $d (@$linear_refs){
898 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
899 while (<$fh>){
900 print $_;
901 }
902 command_close_pipe($fh, $ctx);
903 $_ = ask("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
904 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
905 default => $ask_default);
906 die "Commit this patch reply required" unless defined $_;
907 if (/^[nq]/i) {
908 exit(0);
909 } elsif (/^a/i) {
910 last;
911 }
912 }
913 }
914
Eric Wong711521e2008-08-20 00:30:06 -0700915 my $expect_url = $url;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400916
917 my $push_merge_info = eval {
918 command_oneline(qw/config --get svn.pushmergeinfo/)
919 };
920 if (not defined($push_merge_info)
921 or $push_merge_info eq "false"
922 or $push_merge_info eq "no"
923 or $push_merge_info eq "never") {
924 $push_merge_info = 0;
925 }
926
927 unless (defined($_merge_info) || ! $push_merge_info) {
928 # Preflight check of changes to ensure no issues with mergeinfo
929 # This includes check for uncommitted-to-SVN parents
930 # (other than the first parent, which we will handle),
931 # information from different SVN repos, and paths
932 # which are not underneath this repository root.
933 my $rooturl = $gs->repos_root;
Jason Merrill8aaed892017-09-15 17:46:53 -0400934 Git::SVN::remove_username($rooturl);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400935 foreach my $d (@$linear_refs) {
936 my %parentshash;
937 read_commit_parents(\%parentshash, $d);
938 my @realparents = @{$parentshash{$d}};
939 if ($#realparents > 0) {
940 # Merge commit
941 shift @realparents; # Remove/ignore first parent
942 foreach my $parent (@realparents) {
943 my ($branchurl, $svnrev, $paruuid) = cmt_metadata($parent);
944 unless (defined $paruuid) {
945 # A parent is missing SVN annotations...
946 # abort the whole operation.
947 fatal "$parent is merged into revision $d, "
948 ."but does not have git-svn metadata. "
949 ."Either dcommit the branch or use a "
950 ."local cherry-pick, FF merge, or rebase "
951 ."instead of an explicit merge commit.";
952 }
953
954 unless ($paruuid eq $uuid) {
955 # Parent has SVN metadata from different repository
956 fatal "merge parent $parent for change $d has "
957 ."git-svn uuid $paruuid, while current change "
958 ."has uuid $uuid!";
959 }
960
Ted Percival0e7e30f2011-10-31 16:37:12 -0600961 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400962 # This branch is very strange indeed.
963 fatal "merge parent $parent for $d is on branch "
964 ."$branchurl, which is not under the "
965 ."git-svn root $rooturl!";
966 }
967 }
968 }
969 }
970 }
971
972 my $rewritten_parent;
Robert Luberdae48fb752012-08-08 07:35:00 +0200973 my $current_head = command_oneline(qw/rev-parse HEAD/);
Eric Wong711521e2008-08-20 00:30:06 -0700974 Git::SVN::remove_username($expect_url);
Bryan Jacobs98c4ab32011-08-31 12:48:39 -0400975 if (defined($_merge_info)) {
976 $_merge_info =~ tr{ }{\n};
977 }
Eric Wongc74d9ac2007-11-05 03:21:47 -0800978 while (1) {
979 my $d = shift @$linear_refs or last;
Eric Wong45bf4732006-11-09 01:19:37 -0800980 unless (defined $last_rev) {
981 (undef, $last_rev, undef) = cmt_metadata("$d~1");
982 unless (defined $last_rev) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800983 fatal "Unable to extract revision information ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200984 "from commit $d~1";
Eric Wong45bf4732006-11-09 01:19:37 -0800985 }
986 }
Eric Wongb22d4492006-08-26 00:01:23 -0700987 if ($_dry_run) {
988 print "diff-tree $d~1 $d\n";
989 } else {
Eric Wong751eb392007-08-31 18:16:12 -0700990 my $cmt_rev;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400991
992 unless (defined($_merge_info) || ! $push_merge_info) {
993 $_merge_info = populate_merge_info($d, $gs,
994 $uuid,
995 $linear_refs,
996 $rewritten_parent);
997 }
998
Eric Wongd7ad3be2007-01-14 03:14:28 -0800999 my %ed_opts = ( r => $last_rev,
Eric Wong61395352007-01-27 14:33:08 -08001000 log => get_commit_entry($d)->{log},
Eric Wongba24e742008-08-07 02:06:16 -07001001 ra => Git::SVN::Ra->new($url),
Konstantin V. Arkhipov3caf3202007-11-14 03:52:02 +03001002 config => SVN::Core::config_get_config(
1003 $Git::SVN::Ra::config_dir
1004 ),
Eric Wong61395352007-01-27 14:33:08 -08001005 tree_a => "$d~1",
1006 tree_b => $d,
1007 editor_cb => sub {
1008 print "Committed r$_[0]\n";
Eric Wong751eb392007-08-31 18:16:12 -07001009 $cmt_rev = $_[0];
1010 },
Steven Walter6abd9332010-09-24 23:51:50 -04001011 mergeinfo => $_merge_info,
Eric Wonga8ae2622007-02-13 14:22:11 -08001012 svn_path => '');
Robert Luberdae48fb752012-08-08 07:35:00 +02001013
1014 my $err_handler = $SVN::Error::handler;
1015 $SVN::Error::handler = sub {
1016 my $err = shift;
1017 dcommit_rebase(1, $current_head, $gs->refname,
1018 $err);
1019 };
1020
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001021 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
Eric Wongd7ad3be2007-01-14 03:14:28 -08001022 print "No changes\n$d~1 == $d\n";
Eric Wong733a65a2007-06-13 02:23:28 -07001023 } elsif ($parents->{$d} && @{$parents->{$d}}) {
Eric Wong751eb392007-08-31 18:16:12 -07001024 $gs->{inject_parents_dcommit}->{$cmt_rev} =
Eric Wong733a65a2007-06-13 02:23:28 -07001025 $parents->{$d};
Eric Wongd7ad3be2007-01-14 03:14:28 -08001026 }
Eric Wong751eb392007-08-31 18:16:12 -07001027 $_fetch_all ? $gs->fetch_all : $gs->fetch;
Robert Luberdae48fb752012-08-08 07:35:00 +02001028 $SVN::Error::handler = $err_handler;
Eric Wong7dfa16b2008-01-02 10:09:49 -08001029 $last_rev = $cmt_rev;
Eric Wong751eb392007-08-31 18:16:12 -07001030 next if $_no_rebase;
1031
Robert Luberdae48fb752012-08-08 07:35:00 +02001032 my @diff = dcommit_rebase(@$linear_refs == 0, $d,
1033 $gs->refname, undef);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -04001034
Robert Luberdae48fb752012-08-08 07:35:00 +02001035 $rewritten_parent = command_oneline(qw/rev-parse/,
1036 $gs->refname);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -04001037
Eric Wongc74d9ac2007-11-05 03:21:47 -08001038 if (@diff) {
Robert Luberdae48fb752012-08-08 07:35:00 +02001039 $current_head = command_oneline(qw/rev-parse
1040 HEAD/);
Eric Wongc74d9ac2007-11-05 03:21:47 -08001041 @refs = ();
1042 my ($url_, $rev_, $uuid_, $gs_) =
Thomas Rast5eec27e2009-05-29 17:09:42 +02001043 working_head_info('HEAD', \@refs);
Eric Wongc74d9ac2007-11-05 03:21:47 -08001044 my ($linear_refs_, $parents_) =
1045 linearize_history($gs_, \@refs);
1046 if (scalar(@$linear_refs) !=
1047 scalar(@$linear_refs_)) {
1048 fatal "# of revisions changed ",
1049 "\nbefore:\n",
1050 join("\n", @$linear_refs),
1051 "\n\nafter:\n",
1052 join("\n", @$linear_refs_), "\n",
1053 'If you are attempting to commit ',
1054 "merges, try running:\n\t",
1055 'git rebase --interactive',
1056 '--preserve-merges ',
1057 $gs->refname,
1058 "\nBefore dcommitting";
1059 }
Eric Wong711521e2008-08-20 00:30:06 -07001060 if ($url_ ne $expect_url) {
Alexander Gavrilovc03c1f72009-10-09 11:01:04 +04001061 if ($url_ eq $gs->metadata_url) {
1062 print
1063 "Accepting rewritten URL:",
1064 " $url_\n";
1065 } else {
1066 fatal
1067 "URL mismatch after rebase:",
1068 " $url_ != $expect_url";
1069 }
Eric Wongc74d9ac2007-11-05 03:21:47 -08001070 }
1071 if ($uuid_ ne $uuid) {
1072 fatal "uuid mismatch after rebase: ",
1073 "$uuid_ != $uuid";
1074 }
1075 # remap parents
1076 my (%p, @l, $i);
1077 for ($i = 0; $i < scalar @$linear_refs; $i++) {
1078 my $new = $linear_refs_->[$i] or next;
1079 $p{$new} =
1080 $parents->{$linear_refs->[$i]};
1081 push @l, $new;
1082 }
1083 $parents = \%p;
1084 $linear_refs = \@l;
Robert Luberdae48fb752012-08-08 07:35:00 +02001085 undef $last_rev;
Eric Wongc74d9ac2007-11-05 03:21:47 -08001086 }
Eric Wongb22d4492006-08-26 00:01:23 -07001087 }
1088 }
Thomas Rast5eec27e2009-05-29 17:09:42 +02001089
1090 if ($old_head) {
1091 my $new_head = command_oneline(qw/rev-parse HEAD/);
1092 my $new_is_symbolic = eval {
1093 command_oneline(qw/symbolic-ref -q HEAD/);
1094 };
1095 if ($new_is_symbolic) {
1096 print "dcommitted the branch ", $head, "\n";
1097 } else {
1098 print "dcommitted on a detached HEAD because you gave ",
1099 "a revision argument.\n",
1100 "The rewritten commit is: ", $new_head, "\n";
1101 }
1102 command(['checkout', $old_head], STDERR => 0);
1103 }
1104
Eric Wong3157dd92007-12-13 08:27:34 -08001105 unlink $gs->{index};
Eric Wongb22d4492006-08-26 00:01:23 -07001106}
1107
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001108sub cmd_branch {
1109 my ($branch_name, $head) = @_;
1110
1111 unless (defined $branch_name && length $branch_name) {
1112 die(($_tag ? "tag" : "branch") . " name required\n");
1113 }
1114 $head ||= 'HEAD';
1115
Eric Wong150d38c2009-12-22 22:40:18 -08001116 my (undef, $rev, undef, $gs) = working_head_info($head);
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04001117 my $src = $gs->full_pushurl;
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001118
Deskin Millera0fbc872008-12-01 21:43:00 -05001119 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
Marc Branchaud62244062009-06-23 13:02:08 -04001120 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
1121 my $glob;
1122 if ($#{$allglobs} == 0) {
1123 $glob = $allglobs->[0];
1124 } else {
1125 unless(defined $_branch_dest) {
1126 die "Multiple ",
1127 $_tag ? "tag" : "branch",
1128 " paths defined for Subversion repository.\n",
1129 "You must specify where you want to create the ",
1130 $_tag ? "tag" : "branch",
1131 " with the --destination argument.\n";
1132 }
1133 foreach my $g (@{$allglobs}) {
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001134 my $re = Git::SVN::Editor::glob2pat($g->{path}->{left});
Eric Wongf7050592009-06-25 02:28:15 -07001135 if ($_branch_dest =~ /$re/) {
Marc Branchaud62244062009-06-23 13:02:08 -04001136 $glob = $g;
1137 last;
1138 }
1139 }
1140 unless (defined $glob) {
Eric Wongeaa14ff2009-07-25 01:36:06 -07001141 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1142 foreach my $g (@{$allglobs}) {
1143 $g->{path}->{left} =~ /$dest_re/ or next;
1144 if (defined $glob) {
1145 die "Ambiguous destination: ",
1146 $_branch_dest, "\nmatches both '",
1147 $glob->{path}->{left}, "' and '",
1148 $g->{path}->{left}, "'\n";
1149 }
1150 $glob = $g;
1151 }
1152 unless (defined $glob) {
1153 die "Unknown ",
1154 $_tag ? "tag" : "branch",
1155 " destination $_branch_dest\n";
1156 }
Marc Branchaud62244062009-06-23 13:02:08 -04001157 }
1158 }
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001159 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
Igor Mironov99bacd62010-01-12 03:21:23 +11001160 my $url;
1161 if (defined $_commit_url) {
1162 $url = $_commit_url;
1163 } else {
1164 $url = eval { command_oneline('config', '--get',
1165 "svn-remote.$gs->{repo_id}.commiturl") };
1166 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04001167 $url = $remote->{pushurl} || $remote->{url};
Igor Mironov99bacd62010-01-12 03:21:23 +11001168 }
1169 }
1170 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001171
Igor Mironova83b91e2010-01-12 03:20:43 +11001172 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1173 $src=~s/^http:/https:/;
1174 }
1175
josh robbd32fad22010-02-24 16:13:50 +13001176 ::_req_svn();
Eric Wong47092c12015-01-15 08:54:22 +00001177 require SVN::Client;
josh robbd32fad22010-02-24 16:13:50 +13001178
Hiroshi Shirosakie0688e92017-03-06 14:59:07 +09001179 my ($config, $baton, undef) = Git::SVN::Ra::prepare_config_once();
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001180 my $ctx = SVN::Client->new(
Hiroshi Shirosakie0688e92017-03-06 14:59:07 +09001181 auth => $baton,
1182 config => $config,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001183 log_msg => sub {
1184 ${ $_[0] } = defined $_message
1185 ? $_message
1186 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
1187 . $branch_name;
1188 },
1189 );
1190
1191 eval {
1192 $ctx->ls($dst, 'HEAD', 0);
1193 } and die "branch ${branch_name} already exists\n";
1194
Tobias Schultef4f4c7f2013-05-15 22:14:43 +02001195 if ($_parents) {
1196 mk_parent_dirs($ctx, $dst);
1197 }
1198
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001199 print "Copying ${src} at r${rev} to ${dst}...\n";
1200 $ctx->copy($src, $rev, $dst)
1201 unless $_dry_run;
1202
Eric Wong7f6f75e2018-01-29 23:11:07 +00001203 # Release resources held by ctx before creating another SVN::Ra
1204 # so destruction is orderly. This seems necessary with SVN 1.9.5
1205 # to avoid segfaults.
1206 $ctx = undef;
1207
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001208 $gs->fetch_all;
1209}
1210
Tobias Schultef4f4c7f2013-05-15 22:14:43 +02001211sub mk_parent_dirs {
1212 my ($ctx, $parent) = @_;
1213 $parent =~ s{/[^/]*$}{};
1214
1215 if (!eval{$ctx->ls($parent, 'HEAD', 0)}) {
1216 mk_parent_dirs($ctx, $parent);
1217 print "Creating parent folder ${parent} ...\n";
1218 $ctx->mkdir($parent) unless $_dry_run;
1219 }
1220}
1221
Adam Roben26e60162007-04-27 11:57:53 -07001222sub cmd_find_rev {
Marc-Andre Lureauea14e6c2008-03-11 10:00:45 +02001223 my $revision_or_hash = shift or die "SVN or git revision required ",
1224 "as a command-line argument\n";
Adam Roben26e60162007-04-27 11:57:53 -07001225 my $result;
1226 if ($revision_or_hash =~ /^r\d+$/) {
Adam Robenb3cb7e42007-04-29 01:35:27 -07001227 my $head = shift;
1228 $head ||= 'HEAD';
1229 my @refs;
João Abecasis63c56022008-07-14 16:28:04 +01001230 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
Adam Robenb3cb7e42007-04-29 01:35:27 -07001231 unless ($gs) {
1232 die "Unable to determine upstream SVN information from ",
1233 "$head history\n";
Adam Roben26e60162007-04-27 11:57:53 -07001234 }
Adam Robenb3cb7e42007-04-29 01:35:27 -07001235 my $desired_revision = substr($revision_or_hash, 1);
John Keeping2934a482013-01-17 22:19:33 +00001236 if ($_before) {
1237 $result = $gs->find_rev_before($desired_revision, 1);
1238 } elsif ($_after) {
1239 $result = $gs->find_rev_after($desired_revision, 1);
1240 } else {
1241 $result = $gs->rev_map_get($desired_revision, $uuid);
1242 }
Adam Roben26e60162007-04-27 11:57:53 -07001243 } else {
1244 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
1245 $result = $rev;
1246 }
1247 print "$result\n" if $result;
1248}
1249
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001250sub auto_create_empty_directories {
1251 my ($gs) = @_;
1252 my $var = eval { command_oneline('config', '--get', '--bool',
1253 "svn-remote.$gs->{repo_id}.automkdirs") };
1254 # By default, create empty directories by consulting the unhandled log,
1255 # but allow setting it to 'false' to skip it.
1256 return !($var && $var eq 'false');
1257}
1258
Eric Wong905f8b72007-02-16 03:22:40 -08001259sub cmd_rebase {
1260 command_noisy(qw/update-index --refresh/);
Eric Wong13c823f2007-04-08 00:59:19 -07001261 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1262 unless ($gs) {
Eric Wong905f8b72007-02-16 03:22:40 -08001263 die "Unable to determine upstream SVN information from ",
1264 "working tree history\n";
1265 }
Seth Falcon7d45e142008-05-19 20:29:17 -07001266 if ($_dry_run) {
1267 print "Remote Branch: " . $gs->refname . "\n";
1268 print "SVN URL: " . $url . "\n";
1269 return;
1270 }
Eric Wong905f8b72007-02-16 03:22:40 -08001271 if (command(qw/diff-index HEAD --/)) {
Veres Lajosf7e604e2013-06-19 07:37:24 +02001272 print STDERR "Cannot rebase with uncommitted changes:\n";
Eric Wong905f8b72007-02-16 03:22:40 -08001273 command_noisy('status');
1274 exit 1;
1275 }
Eric Wongdee41f32007-03-13 11:40:36 -07001276 unless ($_local) {
Steven Grimmcec0d5a2007-11-29 11:54:39 -08001277 # rebase will checkout for us, so no need to do it explicitly
1278 $_no_checkout = 'true';
Eric Wongdee41f32007-03-13 11:40:36 -07001279 $_fetch_all ? $gs->fetch_all : $gs->fetch;
1280 }
Eric Wong905f8b72007-02-16 03:22:40 -08001281 command_noisy(rebase_cmd(), $gs->refname);
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001282 if (auto_create_empty_directories($gs)) {
1283 $gs->mkemptydirs;
1284 }
Eric Wong905f8b72007-02-16 03:22:40 -08001285}
1286
Eric Wong5969cbe2007-01-11 17:58:39 -08001287sub cmd_show_ignore {
Eric Wong13c823f2007-04-08 00:59:19 -07001288 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1289 $gs ||= Git::SVN->new;
Eric Wong5969cbe2007-01-11 17:58:39 -08001290 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001291 $gs->prop_walk($gs->path, $r, sub {
Benoit Sigoure01bdab82007-10-16 16:36:48 +02001292 my ($gs, $path, $props) = @_;
1293 print STDOUT "\n# $path\n";
1294 my $s = $props->{'svn:ignore'} or return;
1295 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +02001296 $s =~ s/^\n+//;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02001297 chomp $s;
1298 $s =~ s#^#$path#gm;
1299 print STDOUT "$s\n";
1300 });
Eric Wonga5e0ced2006-06-12 15:23:48 -07001301}
1302
Vineet Kumar2d879792007-11-19 14:56:15 -08001303sub cmd_show_externals {
1304 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1305 $gs ||= Git::SVN->new;
1306 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001307 $gs->prop_walk($gs->path, $r, sub {
Vineet Kumar2d879792007-11-19 14:56:15 -08001308 my ($gs, $path, $props) = @_;
1309 print STDOUT "\n# $path\n";
1310 my $s = $props->{'svn:externals'} or return;
1311 $s =~ s/[\r\n]+/\n/g;
1312 chomp $s;
1313 $s =~ s#^#$path#gm;
1314 print STDOUT "$s\n";
1315 });
1316}
1317
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001318sub cmd_create_ignore {
1319 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1320 $gs ||= Git::SVN->new;
1321 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001322 $gs->prop_walk($gs->path, $r, sub {
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001323 my ($gs, $path, $props) = @_;
1324 # $path is of the form /path/to/dir/
Brian Gernhardt7d9fd452009-02-19 13:08:04 -05001325 $path = '.' . $path;
1326 # SVN can have attributes on empty directories,
1327 # which git won't track
1328 mkpath([$path]) unless -d $path;
1329 my $ignore = $path . '.gitignore';
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001330 my $s = $props->{'svn:ignore'} or return;
1331 open(GITIGNORE, '>', $ignore)
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001332 or fatal("Failed to open `$ignore' for writing: $!");
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001333 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +02001334 $s =~ s/^\n+//;
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001335 chomp $s;
1336 # Prefix all patterns so that the ignore doesn't apply
1337 # to sub-directories.
1338 $s =~ s#^#/#gm;
1339 print GITIGNORE "$s\n";
1340 close(GITIGNORE)
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001341 or fatal("Failed to close `$ignore': $!");
Gustaf Hendebyc4c66b22008-05-05 00:33:09 +02001342 command_noisy('add', '-f', $ignore);
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001343 });
1344}
1345
Eric Wong6111b932009-11-15 18:57:16 -08001346sub cmd_mkdirs {
1347 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1348 $gs ||= Git::SVN->new;
1349 $gs->mkemptydirs($_revision);
1350}
1351
Benoit Sigoure15153452007-10-16 16:36:50 +02001352# get_svnprops(PATH)
1353# ------------------
Benoit Sigoure51e057c2007-10-16 16:36:51 +02001354# Helper for cmd_propget and cmd_proplist below.
Benoit Sigoure15153452007-10-16 16:36:50 +02001355sub get_svnprops {
1356 my $path = shift;
1357 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1358 $gs ||= Git::SVN->new;
1359
1360 # prefix THE PATH by the sub-directory from which the user
1361 # invoked us.
1362 $path = $cmd_dir_prefix . $path;
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001363 fatal("No such file or directory: $path") unless -e $path;
Benoit Sigoure15153452007-10-16 16:36:50 +02001364 my $is_dir = -d $path ? 1 : 0;
Eric Wongf3045912012-09-18 00:09:31 +00001365 $path = join_paths($gs->path, $path);
Benoit Sigoure15153452007-10-16 16:36:50 +02001366
1367 # canonicalize the path (otherwise libsvn will abort or fail to
1368 # find the file)
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001369 $path = canonicalize_path($path);
Benoit Sigoure15153452007-10-16 16:36:50 +02001370
1371 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1372 my $props;
1373 if ($is_dir) {
1374 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1375 }
1376 else {
1377 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1378 }
1379 return $props;
1380}
1381
1382# cmd_propget (PROP, PATH)
1383# ------------------------
1384# Print the SVN property PROP for PATH.
1385sub cmd_propget {
1386 my ($prop, $path) = @_;
1387 $path = '.' if not defined $path;
1388 usage(1) if not defined $prop;
1389 my $props = get_svnprops($path);
1390 if (not defined $props->{$prop}) {
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001391 fatal("`$path' does not have a `$prop' SVN property.");
Benoit Sigoure15153452007-10-16 16:36:50 +02001392 }
1393 print $props->{$prop} . "\n";
1394}
1395
Alfred Perlstein83c94332014-12-07 02:47:23 -08001396# cmd_propset (PROPNAME, PROPVAL, PATH)
1397# ------------------------
1398# Adjust the SVN property PROPNAME to PROPVAL for PATH.
1399sub cmd_propset {
1400 my ($propname, $propval, $path) = @_;
1401 $path = '.' if not defined $path;
1402 $path = $cmd_dir_prefix . $path;
1403 usage(1) if not defined $propname;
1404 usage(1) if not defined $propval;
1405 my $file = basename($path);
1406 my $dn = dirname($path);
1407 my $cur_props = Git::SVN::Editor::check_attr( "svn-properties", $path );
1408 my @new_props;
1409 if (!$cur_props || $cur_props eq "unset" || $cur_props eq "" || $cur_props eq "set") {
1410 push @new_props, "$propname=$propval";
1411 } else {
1412 # TODO: handle combining properties better
1413 my @props = split(/;/, $cur_props);
1414 my $replaced_prop;
1415 foreach my $prop (@props) {
1416 # Parse 'name=value' syntax and set the property.
1417 if ($prop =~ /([^=]+)=(.*)/) {
1418 my ($n,$v) = ($1,$2);
1419 if ($n eq $propname) {
1420 $v = $propval;
1421 $replaced_prop = 1;
1422 }
1423 push @new_props, "$n=$v";
1424 }
1425 }
1426 if (!$replaced_prop) {
1427 push @new_props, "$propname=$propval";
1428 }
1429 }
1430 my $attrfile = "$dn/.gitattributes";
1431 open my $attrfh, '>>', $attrfile or die "Can't open $attrfile: $!\n";
1432 # TODO: don't simply append here if $file already has svn-properties
1433 my $new_props = join(';', @new_props);
1434 print $attrfh "$file svn-properties=$new_props\n" or
1435 die "write to $attrfile: $!\n";
1436 close $attrfh or die "close $attrfile: $!\n";
1437}
1438
Benoit Sigoure51e057c2007-10-16 16:36:51 +02001439# cmd_proplist (PATH)
1440# -------------------
1441# Print the list of SVN properties for PATH.
1442sub cmd_proplist {
1443 my $path = shift;
1444 $path = '.' if not defined $path;
1445 my $props = get_svnprops($path);
1446 print "Properties on '$path':\n";
1447 foreach (sort keys %{$props}) {
1448 print " $_\n";
1449 }
1450}
1451
Eric Wong8164b652007-01-11 15:35:55 -08001452sub cmd_multi_init {
Eric Wong9d55b412006-06-12 15:53:13 -07001453 my $url = shift;
Marc Branchaud62244062009-06-23 13:02:08 -04001454 unless (defined $_trunk || @_branches || @_tags) {
Eric Wong98327e52007-01-04 18:02:00 -08001455 usage(1);
1456 }
Eric Wongdc431662007-05-19 03:59:02 -07001457
Johan Herlandfe191fc2013-10-11 14:57:07 +02001458 $_prefix = 'origin/' unless defined $_prefix;
Eric Wongdadc6d22007-02-14 12:27:41 -08001459 if (defined $url) {
Ulrich Dangel50ff2362009-06-26 16:52:09 +02001460 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -08001461 init_subdir(@_);
1462 }
Eric Wongf30603f2007-02-23 01:26:26 -08001463 do_git_init_db();
Eric Wong98327e52007-01-04 18:02:00 -08001464 if (defined $_trunk) {
Jonathan Niederb4b33602010-06-13 06:27:43 -05001465 $_trunk =~ s#^/+##;
Adam Brewster6f5748e2009-08-11 23:14:27 -04001466 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
Eric Wong706587f2007-01-18 17:50:01 -08001467 # try both old-style and new-style lookups:
1468 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
Eric Wong8164b652007-01-11 15:35:55 -08001469 unless ($gs_trunk) {
Eric Wong706587f2007-01-18 17:50:01 -08001470 my ($trunk_url, $trunk_path) =
1471 complete_svn_url($url, $_trunk);
1472 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
1473 undef, $trunk_ref);
Eric Wong98327e52007-01-04 18:02:00 -08001474 }
Eric Wongc35b96e2006-10-11 11:53:21 -07001475 }
Marc Branchaud62244062009-06-23 13:02:08 -04001476 return unless @_branches || @_tags;
Eric Wonge7db67e2007-01-11 17:09:26 -08001477 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
Marc Branchaud62244062009-06-23 13:02:08 -04001478 foreach my $path (@_branches) {
1479 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
1480 }
1481 foreach my $path (@_tags) {
1482 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
1483 }
Eric Wong9d55b412006-06-12 15:53:13 -07001484}
1485
Eric Wong1c8443b2007-01-14 02:17:00 -08001486sub cmd_multi_fetch {
Eric Wong4d0157d2009-11-22 12:37:06 -08001487 $Git::SVN::no_reuse_existing = undef;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001488 my $remotes = Git::SVN::read_all_remotes();
1489 foreach my $repo_id (sort keys %$remotes) {
Eric Wongdb03cd22007-02-13 00:38:02 -08001490 if ($remotes->{$repo_id}->{url}) {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001491 Git::SVN::fetch_all($repo_id, $remotes);
1492 }
Eric Wong706587f2007-01-18 17:50:01 -08001493 }
Eric Wong9d55b412006-06-12 15:53:13 -07001494}
1495
Eric Wong44320b92007-01-13 22:35:53 -08001496# this command is special because it requires no metadata
1497sub cmd_commit_diff {
1498 my ($ta, $tb, $url) = @_;
David Aguilar0b670ab2013-02-24 14:48:38 -08001499 my $usage = "usage: $0 commit-diff -r<revision> ".
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001500 "<tree-ish> <tree-ish> [<URL>]";
Eric Wong44320b92007-01-13 22:35:53 -08001501 fatal($usage) if (!defined $ta || !defined $tb);
Karl Hasselströmd72ab8c2008-05-17 17:07:09 +02001502 my $svn_path = '';
Eric Wong44320b92007-01-13 22:35:53 -08001503 if (!defined $url) {
1504 my $gs = eval { Git::SVN->new };
1505 if (!$gs) {
1506 fatal("Needed URL or usable git-svn --id in ",
1507 "the command-line\n", $usage);
1508 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001509 $url = $gs->url;
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001510 $svn_path = $gs->path;
Eric Wong44320b92007-01-13 22:35:53 -08001511 }
1512 unless (defined $_revision) {
1513 fatal("-r|--revision is a required argument\n", $usage);
1514 }
1515 if (defined $_message && defined $_file) {
1516 fatal("Both --message/-m and --file/-F specified ",
1517 "for the commit message.\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001518 "I have no idea what you mean");
Eric Wong44320b92007-01-13 22:35:53 -08001519 }
1520 if (defined $_file) {
1521 $_message = file_to_s($_file);
1522 } else {
1523 $_message ||= get_commit_entry($tb)->{log};
1524 }
1525 my $ra ||= Git::SVN::Ra->new($url);
1526 my $r = $_revision;
1527 if ($r eq 'HEAD') {
1528 $r = $ra->get_latest_revnum;
1529 } elsif ($r !~ /^\d+$/) {
1530 die "revision argument: $r not understood by git-svn\n";
1531 }
Eric Wong61395352007-01-27 14:33:08 -08001532 my %ed_opts = ( r => $r,
1533 log => $_message,
1534 ra => $ra,
1535 tree_a => $ta,
1536 tree_b => $tb,
1537 editor_cb => sub { print "Committed r$_[0]\n" },
1538 svn_path => $svn_path );
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001539 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong44320b92007-01-13 22:35:53 -08001540 print "No changes\n$ta == $tb\n";
1541 }
Eric Wong44320b92007-01-13 22:35:53 -08001542}
1543
David D. Kilzere6fefa92007-11-21 11:57:18 -08001544sub cmd_info {
Eric Wong4950eed2014-08-03 01:44:08 +00001545 my $path_arg = defined($_[0]) ? $_[0] : '.';
1546 my $path = $path_arg;
1547 if (File::Spec->file_name_is_absolute($path)) {
1548 $path = canonicalize_path($path);
1549
1550 my $toplevel = eval {
1551 my @cmd = qw/rev-parse --show-toplevel/;
1552 command_oneline(\@cmd, STDERR => 0);
1553 };
1554
1555 # remove $toplevel from the absolute path:
1556 my ($vol, $dirs, $file) = File::Spec->splitpath($path);
1557 my (undef, $tdirs, $tfile) = File::Spec->splitpath($toplevel);
1558 my @dirs = File::Spec->splitdir($dirs);
1559 my @tdirs = File::Spec->splitdir($tdirs);
1560 pop @dirs if $dirs[-1] eq '';
1561 pop @tdirs if $tdirs[-1] eq '';
1562 push @dirs, $file;
1563 push @tdirs, $tfile;
1564 while (@tdirs && @dirs && $tdirs[0] eq $dirs[0]) {
1565 shift @dirs;
1566 shift @tdirs;
1567 }
1568 $dirs = File::Spec->catdir(@dirs);
1569 $path = File::Spec->catpath($vol, $dirs);
1570
1571 $path = canonicalize_path($path);
1572 } else {
1573 $path = canonicalize_path($cmd_dir_prefix . $path);
1574 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001575 if (exists $_[1]) {
David D. Kilzere6fefa92007-11-21 11:57:18 -08001576 die "Too many arguments specified\n";
1577 }
1578
1579 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1580
1581 if (!$file_type && !$diff_status) {
Thomas Rast2cf3e3a2008-08-29 15:42:48 +02001582 print STDERR "svn: '$path' is not under version control\n";
1583 exit 1;
David D. Kilzere6fefa92007-11-21 11:57:18 -08001584 }
1585
1586 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1587 unless ($gs) {
1588 die "Unable to determine upstream SVN information from ",
1589 "working tree history\n";
1590 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001591
1592 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1593 $path = "." if $path eq "";
1594
Eric Wong4950eed2014-08-03 01:44:08 +00001595 my $full_url = canonicalize_url( add_path_to_url( $url, $path ) );
David D. Kilzere6fefa92007-11-21 11:57:18 -08001596
David D. Kilzer8b014d72007-11-21 11:57:19 -08001597 if ($_url) {
Michael G. Schwern8266fc82012-07-28 02:47:49 -07001598 print "$full_url\n";
David D. Kilzer8b014d72007-11-21 11:57:19 -08001599 return;
1600 }
1601
Eric Wong4950eed2014-08-03 01:44:08 +00001602 my $result = "Path: $path_arg\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001603 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
Michael G. Schwern8266fc82012-07-28 02:47:49 -07001604 $result .= "URL: $full_url\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001605
Eric Wonga5460eb2007-11-21 18:20:57 -08001606 eval {
1607 my $repos_root = $gs->repos_root;
1608 Git::SVN::remove_username($repos_root);
Michael G. Schwern9c27a572012-07-28 02:47:48 -07001609 $result .= "Repository Root: " . canonicalize_url($repos_root) . "\n";
Eric Wonga5460eb2007-11-21 18:20:57 -08001610 };
1611 if ($@) {
1612 $result .= "Repository Root: (offline)\n";
1613 }
Michael J Gruberb91a8a32010-03-03 21:34:31 +01001614 ::_req_svn();
Marcel Koeppen22ba47f2009-01-19 03:02:01 +01001615 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
Junio C Hamanof760c902012-05-02 19:53:50 +00001616 (::compare_svn_version('1.5.4') <= 0 || $file_type ne "dir");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001617 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1618
1619 $result .= "Node Kind: " .
1620 ($file_type eq "dir" ? "directory" : "file") . "\n";
1621
1622 my $schedule = $diff_status eq "A"
1623 ? "add"
1624 : ($diff_status eq "D" ? "delete" : "normal");
1625 $result .= "Schedule: $schedule\n";
1626
1627 if ($diff_status eq "A") {
1628 print $result, "\n";
1629 return;
1630 }
1631
1632 my ($lc_author, $lc_rev, $lc_date_utc);
Eric Wong4950eed2014-08-03 01:44:08 +00001633 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $path);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001634 my $log = command_output_pipe(@args);
1635 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1636 while (<$log>) {
1637 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1638 $lc_author = $1;
1639 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1640 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1641 (undef, $lc_rev, undef) = ::extract_metadata($1);
1642 }
1643 }
1644 close $log;
1645
1646 Git::SVN::Log::set_local_timezone();
1647
1648 $result .= "Last Changed Author: $lc_author\n";
1649 $result .= "Last Changed Rev: $lc_rev\n";
1650 $result .= "Last Changed Date: " .
1651 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1652
1653 if ($file_type ne "dir") {
1654 my $text_last_updated_date =
1655 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1656 $result .=
1657 "Text Last Updated: " .
1658 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1659 "\n";
1660 my $checksum;
1661 if ($diff_status eq "D") {
1662 my ($fh, $ctx) =
1663 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1664 if ($file_type eq "link") {
1665 my $file_name = <$fh>;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001666 $checksum = md5sum("link $file_name");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001667 } else {
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001668 $checksum = md5sum($fh);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001669 }
1670 command_close_pipe($fh, $ctx);
1671 } elsif ($file_type eq "link") {
1672 my $file_name =
1673 command(qw(cat-file blob), "HEAD:$path");
1674 $checksum =
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001675 md5sum("link " . $file_name);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001676 } else {
1677 open FILE, "<", $path or die $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001678 $checksum = md5sum(\*FILE);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001679 close FILE or die $!;
1680 }
1681 $result .= "Checksum: " . $checksum . "\n";
1682 }
1683
1684 print $result, "\n";
1685}
1686
Ben Jackson195643f2009-06-03 20:45:52 -07001687sub cmd_reset {
1688 my $target = shift || $_revision or die "SVN revision required\n";
1689 $target = $1 if $target =~ /^r(\d+)$/;
1690 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1691 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1692 unless ($gs) {
1693 die "Unable to determine upstream SVN information from ".
1694 "history\n";
1695 }
1696 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
Jonathan Nieder70ee0b72010-05-04 16:36:47 -07001697 die "Cannot find SVN revision $target\n" unless defined($c);
Ben Jackson195643f2009-06-03 20:45:52 -07001698 $gs->rev_map_set($r, $c, 'reset', $uuid);
1699 print "r$r = $c ($gs->{ref_id})\n";
1700}
1701
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001702sub cmd_gc {
Eric Wong47092c12015-01-15 08:54:22 +00001703 require File::Find;
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07001704 if (!can_compress()) {
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001705 warn "Compress::Zlib could not be found; unhandled.log " .
1706 "files will not be compressed.\n";
1707 }
Eric Wong47092c12015-01-15 08:54:22 +00001708 File::Find::find({ wanted => \&gc_directory, no_chdir => 1},
Eric Wong112423e2016-10-14 00:27:54 +00001709 Git::SVN::svn_dir());
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001710}
1711
Eric Wong3397f9d2006-02-16 01:24:16 -08001712########################### utility functions #########################
1713
Eric Wong905f8b72007-02-16 03:22:40 -08001714sub rebase_cmd {
1715 my @cmd = qw/rebase/;
1716 push @cmd, '-v' if $_verbose;
1717 push @cmd, qw/--merge/ if $_merge;
1718 push @cmd, "--strategy=$_strategy" if $_strategy;
Avishay Lavieb64e1f52012-05-15 11:45:50 +03001719 push @cmd, "--preserve-merges" if $_preserve_merges;
Eric Wong905f8b72007-02-16 03:22:40 -08001720 @cmd;
1721}
1722
Eric Wong1e889ef2007-02-16 01:45:13 -08001723sub post_fetch_checkout {
1724 return if $_no_checkout;
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +01001725 return if verify_ref('HEAD^0');
Eric Wong1e889ef2007-02-16 01:45:13 -08001726 my $gs = $Git::SVN::_head or return;
Eric Wong1e889ef2007-02-16 01:45:13 -08001727
Eric Wongb186a262009-08-12 16:01:59 -07001728 # look for "trunk" ref if it exists
1729 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1730 my $fetch = $remote->{fetch};
1731 if ($fetch) {
1732 foreach my $p (keys %$fetch) {
1733 basename($fetch->{$p}) eq 'trunk' or next;
1734 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1735 last;
1736 }
1737 }
1738
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +01001739 command_noisy(qw(update-ref HEAD), $gs->refname);
1740 return unless verify_ref('HEAD^0');
Eric Wong1e889ef2007-02-16 01:45:13 -08001741
1742 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
Eric Wong112423e2016-10-14 00:27:54 +00001743 my $index = command_oneline(qw(rev-parse --git-path index));
Eric Wong1e889ef2007-02-16 01:45:13 -08001744 return if -f $index;
1745
Matthias Lederhofer7ae3df82007-06-03 16:48:16 +02001746 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
Eric Wong1e889ef2007-02-16 01:45:13 -08001747 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1748 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1749 print STDERR "Checked out HEAD:\n ",
1750 $gs->full_url, " r", $gs->last_rev, "\n";
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001751 if (auto_create_empty_directories($gs)) {
1752 $gs->mkemptydirs($gs->last_rev);
1753 }
Eric Wong1e889ef2007-02-16 01:45:13 -08001754}
1755
Eric Wong98327e52007-01-04 18:02:00 -08001756sub complete_svn_url {
1757 my ($url, $path) = @_;
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001758
Eric Wongb5571652016-03-16 20:14:08 +00001759 if ($path =~ m#^[a-z\+]+://#i) { # path is a URL
1760 $path = canonicalize_url($path);
1761 } else {
1762 $path = canonicalize_path($path);
1763 if (!defined $url || $url !~ m#^[a-z\+]+://#i) {
Eric Wong98327e52007-01-04 18:02:00 -08001764 fatal("E: '$path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001765 "and a separate URL is not specified");
Eric Wong98327e52007-01-04 18:02:00 -08001766 }
Eric Wong706587f2007-01-18 17:50:01 -08001767 return ($url, $path);
Eric Wong98327e52007-01-04 18:02:00 -08001768 }
Eric Wong706587f2007-01-18 17:50:01 -08001769 return ($path, '');
Eric Wong98327e52007-01-04 18:02:00 -08001770}
1771
Eric Wong9d55b412006-06-12 15:53:13 -07001772sub complete_url_ls_init {
Eric Wong706587f2007-01-18 17:50:01 -08001773 my ($ra, $repo_path, $switch, $pfx) = @_;
1774 unless ($repo_path) {
Eric Wong9d55b412006-06-12 15:53:13 -07001775 print STDERR "W: $switch not specified\n";
1776 return;
1777 }
Eric Wongb5571652016-03-16 20:14:08 +00001778 if ($repo_path =~ m#^[a-z\+]+://#i) {
1779 $repo_path = canonicalize_url($repo_path);
Eric Wong706587f2007-01-18 17:50:01 -08001780 $ra = Git::SVN::Ra->new($repo_path);
1781 $repo_path = '';
Eric Wonge7db67e2007-01-11 17:09:26 -08001782 } else {
Eric Wongb5571652016-03-16 20:14:08 +00001783 $repo_path = canonicalize_path($repo_path);
Eric Wong706587f2007-01-18 17:50:01 -08001784 $repo_path =~ s#^/+##;
Eric Wonge7db67e2007-01-11 17:09:26 -08001785 unless ($ra) {
Eric Wong706587f2007-01-18 17:50:01 -08001786 fatal("E: '$repo_path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001787 "and a separate URL is not specified");
Eric Wong9d55b412006-06-12 15:53:13 -07001788 }
Eric Wonge7db67e2007-01-11 17:09:26 -08001789 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001790 my $url = $ra->url;
Eric Wongb4d57e52007-02-14 15:10:44 -08001791 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1792 my $k = "svn-remote.$gs->{repo_id}.url";
1793 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001794 if ($orig_url && ($orig_url ne $gs->url)) {
Eric Wongb4d57e52007-02-14 15:10:44 -08001795 die "$k already set: $orig_url\n",
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001796 "wanted to set to: $gs->url\n";
Eric Wong88cf4102007-02-01 03:59:07 -08001797 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001798 command_oneline('config', $k, $gs->url) unless $orig_url;
1799
Michael G. Schwern5eaa1fd2012-07-28 02:47:52 -07001800 my $remote_path = join_paths( $gs->path, $repo_path );
Eric Wong5268f9e2009-08-16 14:22:12 -07001801 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
Eric Wongb4d57e52007-02-14 15:10:44 -08001802 $remote_path =~ s#^/##g;
Eric Wonged0b9d42008-03-14 11:01:23 -07001803 $remote_path .= "/*" if $remote_path !~ /\*/;
Eric Wongb4d57e52007-02-14 15:10:44 -08001804 my ($n) = ($switch =~ /^--(\w+)/);
1805 if (length $pfx && $pfx !~ m#/$#) {
1806 die "--prefix='$pfx' must have a trailing slash '/'\n";
Eric Wong9d55b412006-06-12 15:53:13 -07001807 }
Marcus Griep570d35c2008-08-08 01:41:57 -07001808 command_noisy('config',
Marc Branchaud62244062009-06-23 13:02:08 -04001809 '--add',
Marcus Griep570d35c2008-08-08 01:41:57 -07001810 "svn-remote.$gs->{repo_id}.$n",
1811 "$remote_path:refs/remotes/$pfx*" .
1812 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
Eric Wong9d55b412006-06-12 15:53:13 -07001813}
1814
Eric Wongaef4e922006-12-15 10:59:54 -08001815sub verify_ref {
1816 my ($ref) = @_;
Eric Wong2c5c1d52006-12-28 01:16:21 -08001817 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1818 { STDERR => 0 }); };
Eric Wongaef4e922006-12-15 10:59:54 -08001819}
1820
Eric Wonga5e0ced2006-06-12 15:23:48 -07001821sub get_tree_from_treeish {
Eric Wongcf52b8f2006-02-20 10:57:28 -08001822 my ($treeish) = @_;
Eric Wong44320b92007-01-13 22:35:53 -08001823 # $treeish can be a symbolic ref, too:
Eric Wongaef4e922006-12-15 10:59:54 -08001824 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001825 my $expected;
1826 while ($type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001827 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001828 }
1829 if ($type eq 'commit') {
Eric Wongaef4e922006-12-15 10:59:54 -08001830 $expected = (grep /^tree /, command(qw/cat-file commit/,
1831 $treeish))[0];
Eric Wong44320b92007-01-13 22:35:53 -08001832 ($expected) = ($expected =~ /^tree ($sha1)$/o);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001833 die "Unable to get tree from $treeish\n" unless $expected;
1834 } elsif ($type eq 'tree') {
1835 $expected = $treeish;
1836 } else {
1837 die "$treeish is a $type, expected tree, tag or commit\n";
1838 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07001839 return $expected;
1840}
Eric Wongcf52b8f2006-02-20 10:57:28 -08001841
Eric Wong44320b92007-01-13 22:35:53 -08001842sub get_commit_entry {
1843 my ($treeish) = shift;
1844 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
Eric Wong112423e2016-10-14 00:27:54 +00001845 my @git_path = qw(rev-parse --git-path);
1846 my $commit_editmsg = command_oneline(@git_path, 'COMMIT_EDITMSG');
1847 my $commit_msg = command_oneline(@git_path, 'COMMIT_MSG');
Eric Wong44320b92007-01-13 22:35:53 -08001848 open my $log_fh, '>', $commit_editmsg or croak $!;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001849
Eric Wong44320b92007-01-13 22:35:53 -08001850 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wong4ad45152006-07-09 20:20:48 -07001851 if ($type eq 'commit' || $type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001852 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
Eric Wong44320b92007-01-13 22:35:53 -08001853 $type, $treeish);
Eric Wong3397f9d2006-02-16 01:24:16 -08001854 my $in_msg = 0;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001855 my $author;
1856 my $saw_from = 0;
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001857 my $msgbuf = "";
Eric Wong3397f9d2006-02-16 01:24:16 -08001858 while (<$msg_fh>) {
1859 if (!$in_msg) {
Nicolas Vigier60786bd2013-09-30 16:46:14 +02001860 $in_msg = 1 if (/^$/);
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001861 $author = $1 if (/^author (.*>)/);
Eric Wongdf746c52006-03-03 01:20:08 -08001862 } elsif (/^git-svn-id: /) {
Eric Wong44320b92007-01-13 22:35:53 -08001863 # skip this for now, we regenerate the
1864 # correct one on re-fetch anyways
1865 # TODO: set *:merge properties or like...
Eric Wong3397f9d2006-02-16 01:24:16 -08001866 } else {
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001867 if (/^From:/ || /^Signed-off-by:/) {
1868 $saw_from = 1;
1869 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001870 $msgbuf .= $_;
Eric Wong3397f9d2006-02-16 01:24:16 -08001871 }
1872 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001873 $msgbuf =~ s/\s+$//s;
Eric Wong95450bb2017-12-14 00:05:08 +00001874 $msgbuf =~ s/\r\n/\n/sg; # SVN 1.6+ disallows CRLF
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001875 if ($Git::SVN::_add_author_from && defined($author)
1876 && !$saw_from) {
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001877 $msgbuf .= "\n\nFrom: $author";
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001878 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001879 print $log_fh $msgbuf or croak $!;
Eric Wongaef4e922006-12-15 10:59:54 -08001880 command_close_pipe($msg_fh, $ctx);
Eric Wong3397f9d2006-02-16 01:24:16 -08001881 }
Eric Wong44320b92007-01-13 22:35:53 -08001882 close $log_fh or croak $!;
Eric Wong3397f9d2006-02-16 01:24:16 -08001883
1884 if ($_edit || ($type eq 'tree')) {
Jonathan Niederb4479f02009-10-30 20:42:34 -05001885 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1886 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
Eric Wong3397f9d2006-02-16 01:24:16 -08001887 }
Eric Wong44320b92007-01-13 22:35:53 -08001888 rename $commit_editmsg, $commit_msg or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07001889 {
Eric Wongb510df82009-05-28 00:56:23 -07001890 require Encode;
Eric Wong16fc08e2008-10-29 23:49:26 -07001891 # SVN requires messages to be UTF-8 when entering the repo
Eric Wong16fc08e2008-10-29 23:49:26 -07001892 open $log_fh, '<', $commit_msg or croak $!;
1893 binmode $log_fh;
Eric Wongb26098f2016-10-14 00:27:53 +00001894 chomp($log_entry{log} = get_record($log_fh, undef));
Eric Wong16fc08e2008-10-29 23:49:26 -07001895
Eric Wongb510df82009-05-28 00:56:23 -07001896 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1897 my $msg = $log_entry{log};
1898
1899 eval { $msg = Encode::decode($enc, $msg, 1) };
1900 if ($@) {
1901 die "Could not decode as $enc:\n", $msg,
1902 "\nPerhaps you need to set i18n.commitencoding\n";
Eric Wong16fc08e2008-10-29 23:49:26 -07001903 }
Eric Wongb510df82009-05-28 00:56:23 -07001904
1905 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1906 die "Could not encode as UTF-8:\n$msg\n" if $@;
1907
1908 $log_entry{log} = $msg;
1909
Eric Wong16fc08e2008-10-29 23:49:26 -07001910 close $log_fh or croak $!;
1911 }
Eric Wong44320b92007-01-13 22:35:53 -08001912 unlink $commit_msg;
1913 \%log_entry;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001914}
1915
Eric Wong3397f9d2006-02-16 01:24:16 -08001916sub s_to_file {
1917 my ($str, $file, $mode) = @_;
1918 open my $fd,'>',$file or croak $!;
1919 print $fd $str,"\n" or croak $!;
1920 close $fd or croak $!;
1921 chmod ($mode &~ umask, $file) if (defined $mode);
1922}
1923
1924sub file_to_s {
1925 my $file = shift;
1926 open my $fd,'<',$file or croak "$!: file: $file\n";
1927 local $/;
1928 my $ret = <$fd>;
1929 close $fd or croak $!;
1930 $ret =~ s/\s*$//s;
1931 return $ret;
1932}
1933
Eric Wongeeb0abe2006-03-03 01:20:08 -08001934# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1935sub load_authors {
1936 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001937 my $log = $cmd eq 'log';
Eric Wongeeb0abe2006-03-03 01:20:08 -08001938 while (<$authors>) {
1939 chomp;
Michael J Gruberf7c6de02015-09-10 14:32:13 +02001940 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.*)>\s*$/;
Eric Wongeeb0abe2006-03-03 01:20:08 -08001941 my ($user, $name, $email) = ($1, $2, $3);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001942 if ($log) {
1943 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1944 } else {
1945 $users{$user} = [$name, $email];
1946 }
Eric Wong79bb8d82006-06-01 02:35:44 -07001947 }
1948 close $authors or croak $!;
1949}
1950
Tom Princee0d10e12007-01-28 16:16:53 -08001951# convert GetOpt::Long specs for use by git-config
Eric Wong1a305822009-11-14 14:25:11 -08001952sub read_git_config {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001953 my $opts = shift;
Eric Wong97ae0912007-02-11 15:21:24 -08001954 my @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001955 foreach my $o (keys %$opts) {
Eric Wong97ae0912007-02-11 15:21:24 -08001956 # if we have mixedCase and a long option-only, then
1957 # it's a config-only variable that we don't need for
1958 # the command-line.
1959 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001960 my $v = $opts->{$o};
Eric Wong97ae0912007-02-11 15:21:24 -08001961 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001962 $key =~ s/-//g;
Deskin Miller225f1d02008-10-23 15:21:34 -04001963 my $arg = 'git config';
Eric Wongb8c92ca2006-05-24 01:40:37 -07001964 $arg .= ' --int' if ($o =~ /[:=]i$/);
1965 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1966 if (ref $v eq 'ARRAY') {
1967 chomp(my @tmp = `$arg --get-all svn.$key`);
1968 @$v = @tmp if @tmp;
1969 } else {
1970 chomp(my $tmp = `$arg --get svn.$key`);
Eric Wong77742842007-02-10 21:07:12 -08001971 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001972 $$v = $tmp;
1973 }
1974 }
1975 }
Eric Wong97ae0912007-02-11 15:21:24 -08001976 delete @$opts{@config_only} if @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001977}
1978
Eric Wong79bb8d82006-06-01 02:35:44 -07001979sub extract_metadata {
Eric Wongc1927a82006-06-27 19:39:11 -07001980 my $id = shift or return (undef, undef, undef);
Sam Vilain3dfab992007-06-30 20:56:13 +12001981 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
Eric Wongb3e95932009-07-11 14:13:12 -07001982 \s([a-f\d\-]+)$/ix);
Eric Wonge70dc782006-11-23 14:54:04 -08001983 if (!defined $rev || !$uuid || !$url) {
Eric Wong79bb8d82006-06-01 02:35:44 -07001984 # some of the original repositories I made had
Pavel Roskin82e5a822006-07-10 01:50:18 -04001985 # identifiers like this:
Eric Wongb3e95932009-07-11 14:13:12 -07001986 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
Eric Wong79bb8d82006-06-01 02:35:44 -07001987 }
1988 return ($url, $rev, $uuid);
1989}
1990
Eric Wongc1927a82006-06-27 19:39:11 -07001991sub cmt_metadata {
1992 return extract_metadata((grep(/^git-svn-id: /,
Eric Wongaef4e922006-12-15 10:59:54 -08001993 command(qw/cat-file commit/, shift)))[-1]);
Eric Wongc1927a82006-06-27 19:39:11 -07001994}
1995
Boris Byk6ea42032009-04-11 00:32:41 +04001996sub cmt_sha2rev_batch {
1997 my %s2r;
1998 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1999 my $list = shift;
2000
2001 foreach my $sha (@{$list}) {
2002 my $first = 1;
2003 my $size = 0;
2004 print $out $sha, "\n";
2005
2006 while (my $line = <$in>) {
2007 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
2008 last;
2009 } elsif ($first &&
2010 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
2011 $first = 0;
2012 $size = $1;
2013 next;
2014 } elsif ($line =~ /^(git-svn-id: )/) {
2015 my (undef, $rev, undef) =
2016 extract_metadata($line);
2017 $s2r{$sha} = $rev;
2018 }
2019
2020 $size -= length($line);
2021 last if ($size == 0);
2022 }
2023 }
2024
2025 command_close_bidi_pipe($pid, $in, $out, $ctx);
2026
2027 return \%s2r;
2028}
2029
Eric Wong905f8b72007-02-16 03:22:40 -08002030sub working_head_info {
2031 my ($head, $refs) = @_;
Ævar Arnfjörð Bjarmason83cf21f2012-02-12 00:23:06 +00002032 my @args = qw/rev-list --first-parent --pretty=medium/;
Slava Kardakov9926f662013-06-05 11:31:27 -07002033 my ($fh, $ctx) = command_output_pipe(@args, $head, "--");
Sam Vilain3dfab992007-06-30 20:56:13 +12002034 my $hash;
Sam Vilain40cb8f82007-06-30 20:56:14 +12002035 my %max;
Sam Vilain3dfab992007-06-30 20:56:13 +12002036 while (<$fh>) {
2037 if ( m{^commit ($::sha1)$} ) {
2038 unshift @$refs, $hash if $hash and $refs;
2039 $hash = $1;
2040 next;
2041 }
2042 next unless s{^\s*(git-svn-id:)}{$1};
2043 my ($url, $rev, $uuid) = extract_metadata($_);
Eric Wong13c823f2007-04-08 00:59:19 -07002044 if (defined $url && defined $rev) {
Sam Vilain40cb8f82007-06-30 20:56:14 +12002045 next if $max{$url} and $max{$url} < $rev;
Eric Wong13c823f2007-04-08 00:59:19 -07002046 if (my $gs = Git::SVN->find_by_url($url)) {
João Abecasis63c56022008-07-14 16:28:04 +01002047 my $c = $gs->rev_map_get($rev, $uuid);
Adam Robenb03c7a62007-04-25 11:50:32 -07002048 if ($c && $c eq $hash) {
Eric Wong13c823f2007-04-08 00:59:19 -07002049 close $fh; # break the pipe
2050 return ($url, $rev, $uuid, $gs);
Sam Vilain40cb8f82007-06-30 20:56:14 +12002051 } else {
Eric Wong060610c2007-12-08 23:27:41 -08002052 $max{$url} ||= $gs->rev_map_max;
Eric Wong13c823f2007-04-08 00:59:19 -07002053 }
2054 }
2055 }
Eric Wong905f8b72007-02-16 03:22:40 -08002056 }
Eric Wong13c823f2007-04-08 00:59:19 -07002057 command_close_pipe($fh, $ctx);
2058 (undef, undef, undef, undef);
Eric Wong905f8b72007-02-16 03:22:40 -08002059}
2060
Eric Wong733a65a2007-06-13 02:23:28 -07002061sub read_commit_parents {
2062 my ($parents, $c) = @_;
Eric Wong7b02b852007-09-08 16:33:08 -07002063 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
2064 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
2065 @{$parents->{$c}} = split(/ /, $p);
Eric Wong733a65a2007-06-13 02:23:28 -07002066}
2067
2068sub linearize_history {
2069 my ($gs, $refs) = @_;
2070 my %parents;
2071 foreach my $c (@$refs) {
2072 read_commit_parents(\%parents, $c);
2073 }
2074
2075 my @linear_refs;
2076 my %skip = ();
2077 my $last_svn_commit = $gs->last_commit;
2078 foreach my $c (reverse @$refs) {
2079 next if $c eq $last_svn_commit;
2080 last if $skip{$c};
2081
2082 unshift @linear_refs, $c;
2083 $skip{$c} = 1;
2084
2085 # we only want the first parent to diff against for linear
2086 # history, we save the rest to inject when we finalize the
2087 # svn commit
2088 my $fp_a = verify_ref("$c~1");
2089 my $fp_b = shift @{$parents{$c}} if $parents{$c};
2090 if (!$fp_a || !$fp_b) {
2091 die "Commit $c\n",
2092 "has no parent commit, and therefore ",
2093 "nothing to diff against.\n",
2094 "You should be working from a repository ",
2095 "originally created by git-svn\n";
2096 }
2097 if ($fp_a ne $fp_b) {
2098 die "$c~1 = $fp_a, however parsing commit $c ",
2099 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
2100 }
2101
2102 foreach my $p (@{$parents{$c}}) {
2103 $skip{$p} = 1;
2104 }
2105 }
2106 (\@linear_refs, \%parents);
2107}
2108
David D. Kilzere6fefa92007-11-21 11:57:18 -08002109sub find_file_type_and_diff_status {
2110 my ($path) = @_;
Dmitry Potapov107cee52008-07-21 00:14:07 +04002111 return ('dir', '') if $path eq '';
David D. Kilzere6fefa92007-11-21 11:57:18 -08002112
2113 my $diff_output =
2114 command_oneline(qw(diff --cached --name-status --), $path) || "";
2115 my $diff_status = (split(' ', $diff_output))[0] || "";
2116
2117 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
2118
2119 return (undef, undef) if !$diff_status && !$ls_tree;
2120
2121 if ($diff_status eq "A") {
2122 return ("link", $diff_status) if -l $path;
2123 return ("dir", $diff_status) if -d $path;
2124 return ("file", $diff_status);
2125 }
2126
2127 my $mode = (split(' ', $ls_tree))[0] || "";
2128
2129 return ("link", $diff_status) if $mode eq "120000";
2130 return ("dir", $diff_status) if $mode eq "040000";
2131 return ("file", $diff_status);
2132}
2133
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002134sub md5sum {
2135 my $arg = shift;
2136 my $ref = ref $arg;
Eric Wong47092c12015-01-15 08:54:22 +00002137 require Digest::MD5;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002138 my $md5 = Digest::MD5->new();
Marcus Griep0b191382008-08-12 12:00:53 -04002139 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002140 $md5->addfile($arg) or croak $!;
2141 } elsif ($ref eq 'SCALAR') {
2142 $md5->add($$arg) or croak $!;
2143 } elsif (!$ref) {
2144 $md5->add($arg) or croak $!;
2145 } else {
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07002146 fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002147 }
2148 return $md5->hexdigest();
2149}
2150
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002151sub gc_directory {
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07002152 if (can_compress() && -f $_ && basename($_) eq "unhandled.log") {
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002153 my $out_filename = $_ . ".gz";
2154 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
2155 binmode $in_fh;
2156 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
2157 die "Unable to open $out_filename: $!\n";
2158
2159 my $res;
2160 while ($res = sysread($in_fh, my $str, 1024)) {
2161 $gz->gzwrite($str) or
2162 die "Unable to write: ".$gz->gzerror()."!\n";
2163 }
Eric Wong47092c12015-01-15 08:54:22 +00002164 no warnings 'once'; # $File::Find::name would warn
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002165 unlink $_ or die "unlink $File::Find::name: $!\n";
2166 } elsif (-f $_ && basename($_) eq "index") {
2167 unlink $_ or die "unlink $_: $!\n";
2168 }
2169}
2170
Eric Wong3397f9d2006-02-16 01:24:16 -08002171__END__
2172
2173Data structures:
2174
Eric Wong4bb9ed02007-02-03 13:29:17 -08002175
2176$remotes = { # returned by read_all_remotes()
2177 'svn' => {
2178 # svn-remote.svn.url=https://svn.musicpd.org
2179 url => 'https://svn.musicpd.org',
2180 # svn-remote.svn.fetch=mpd/trunk:trunk
2181 fetch => {
2182 'mpd/trunk' => 'trunk',
2183 },
2184 # svn-remote.svn.tags=mpd/tags/*:tags/*
2185 tags => {
2186 path => {
2187 left => 'mpd/tags',
2188 right => '',
2189 regex => qr!mpd/tags/([^/]+)$!,
2190 glob => 'tags/*',
2191 },
2192 ref => {
2193 left => 'tags',
2194 right => '',
2195 regex => qr!tags/([^/]+)$!,
2196 glob => 'tags/*',
2197 },
2198 }
2199 }
2200};
2201
Eric Wong44320b92007-01-13 22:35:53 -08002202$log_entry hashref as returned by libsvn_log_entry()
Eric Wong3397f9d2006-02-16 01:24:16 -08002203{
Eric Wong44320b92007-01-13 22:35:53 -08002204 log => 'whitespace-formatted log entry
Eric Wong3397f9d2006-02-16 01:24:16 -08002205', # trailing newline is preserved
2206 revision => '8', # integer
2207 date => '2004-02-24T17:01:44.108345Z', # commit date
2208 author => 'committer name'
2209};
2210
Eric Wong6e8548c2007-01-27 01:32:00 -08002211
2212# this is generated by generate_diff();
Eric Wong3397f9d2006-02-16 01:24:16 -08002213@mods = array of diff-index line hashes, each element represents one line
2214 of diff-index output
2215
2216diff-index line ($m hash)
2217{
2218 mode_a => first column of diff-index output, no leading ':',
2219 mode_b => second column of diff-index output,
2220 sha1_b => sha1sum of the final blob,
Eric Wongac8e0b92006-03-03 01:20:07 -08002221 chg => change type [MCRADT],
Eric Wong3397f9d2006-02-16 01:24:16 -08002222 file_a => original file name of a file (iff chg is 'C' or 'R')
2223 file_b => new/current file name of a file (any chg)
2224}
2225;
Eric Wonga5e0ced2006-06-12 15:23:48 -07002226
Eric Wonga00439a2006-06-27 19:39:13 -07002227# retval of read_url_paths{,_all}();
2228$l_map = {
2229 # repository root url
2230 'https://svn.musicpd.org' => {
2231 # repository path # GIT_SVN_ID
2232 'mpd/trunk' => 'trunk',
2233 'mpd/tags/0.11.5' => 'tags/0.11.5',
2234 },
2235}
2236
Eric Wonga5e0ced2006-06-12 15:23:48 -07002237Notes:
2238 I don't trust the each() function on unless I created %hash myself
2239 because the internal iterator may not have started at base.