blob: fa5f253065307499642cae63d93cdd5b5e16db0a [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
47);
48
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070049BEGIN {
50 Memoize::memoize 'Git::config';
51 Memoize::memoize 'Git::config_bool';
52}
53
Michael G. Schwernb0e75252012-07-26 17:26:02 -070054
Benoit Sigoure15153452007-10-16 16:36:50 +020055# From which subdir have we been invoked?
56my $cmd_dir_prefix = eval {
57 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
58} || '';
59
Eric Wong6af1db42007-02-14 16:04:10 -080060$Git::SVN::Ra::_log_window_size = 100;
Eric Wong13ccd6d2006-03-29 22:37:18 -080061
Sebastian Schuberth184892f2011-10-14 23:53:31 +010062if (! exists $ENV{SVN_SSH} && exists $ENV{GIT_SSH}) {
63 $ENV{SVN_SSH} = $ENV{GIT_SSH};
64}
65
66if (exists $ENV{SVN_SSH} && $^O eq 'msys') {
67 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
68 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
Karthik Rf3a87d92009-08-18 18:54:40 -050069}
70
Eric Wongf8c9d1d2007-01-12 02:35:20 -080071$Git::SVN::Log::TZ = $ENV{TZ};
Eric Wong3397f9d2006-02-16 01:24:16 -080072$ENV{TZ} = 'UTC';
Eric Wonga00439a2006-06-27 19:39:13 -070073$| = 1; # unbuffer STDOUT
Eric Wong3397f9d2006-02-16 01:24:16 -080074
Roman Kagan6ade9bd2012-04-02 17:52:34 +040075# All SVN commands do it. Otherwise we may die on SIGPIPE when the remote
76# repository decides to close the connection which we expect to be kept alive.
77$SIG{PIPE} = 'IGNORE';
78
Junio C Hamanof760c902012-05-02 19:53:50 +000079# Given a dot separated version number, "subtract" it from
80# the SVN::Core::VERSION; non-negaitive return means the SVN::Core
81# is at least at the version the caller asked for.
82sub compare_svn_version {
83 my (@ours) = split(/\./, $SVN::Core::VERSION);
84 my (@theirs) = split(/\./, $_[0]);
85 my ($i, $diff);
86
87 for ($i = 0; $i < @ours && $i < @theirs; $i++) {
88 $diff = $ours[$i] - $theirs[$i];
89 return $diff if ($diff);
90 }
91 return 1 if ($i < @ours);
92 return -1 if ($i < @theirs);
93 return 0;
94}
95
josh robbd32fad22010-02-24 16:13:50 +130096sub _req_svn {
97 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
98 require SVN::Ra;
99 require SVN::Delta;
Junio C Hamanof760c902012-05-02 19:53:50 +0000100 if (::compare_svn_version('1.1.0') < 0) {
josh robbd32fad22010-02-24 16:13:50 +1300101 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
102 }
Eric Wongb9c85182006-12-15 23:58:07 -0800103}
Michael G. Schwernc2768fa2012-07-26 16:22:22 -0700104
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800105$sha1 = qr/[a-f\d]{40}/;
106$sha1_short = qr/[a-f\d]{4,40}/;
Eric Wong44320b92007-01-13 22:35:53 -0800107my ($_stdin, $_help, $_edit,
Marc Branchaud62244062009-06-23 13:02:08 -0400108 $_message, $_file, $_branch_dest,
Eric Wongd05d72e2007-01-15 22:59:26 -0800109 $_template, $_shared,
Jason Merrillc2abd832009-04-06 16:37:59 -0400110 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
John Keeping2934a482013-01-17 22:19:33 +0000111 $_before, $_after,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200112 $_merge, $_strategy, $_preserve_merges, $_dry_run, $_parents, $_local,
Steven Grimm4be40382008-05-10 22:11:18 -0700113 $_prefix, $_no_checkout, $_url, $_verbose,
Alfred Perlstein83c94332014-12-07 02:47:23 -0800114 $_commit_url, $_tag, $_merge_info, $_interactive, $_set_svn_props);
Michael G. Schwern0f80aa02012-07-26 16:22:23 -0700115
116# This is a refactoring artifact so Git::SVN can get at this git-svn switch.
117sub opt_prefix { return $_prefix || '' }
118
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500119$Git::SVN::Fetcher::_placeholder_filename = ".gitignore";
Simon Arlott49750f32009-03-30 19:31:41 +0100120$_q ||= 0;
Eric Wong706587f2007-01-18 17:50:01 -0800121my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
122 'config-dir=s' => \$Git::SVN::Ra::config_dir,
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +0200123 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500124 'ignore-paths=s' => \$Git::SVN::Fetcher::_ignore_regex,
Paul Walmsleya7b10232013-05-04 00:10:18 +0100125 'include-paths=s' => \$Git::SVN::Fetcher::_include_regex,
Michael Olsoncdb51a12011-10-10 16:27:37 -0700126 'ignore-refs=s' => \$Git::SVN::Ra::_ignore_refs_regex );
Eric Wong0bed5ea2007-02-09 02:45:03 -0800127my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
Eric Wongdc5869c2006-05-24 02:07:32 -0700128 'authors-file|A=s' => \$_authors,
Mark Lodato36db1ed2009-05-14 21:27:15 -0400129 'authors-prog=s' => \$_authors_prog,
Eric Wongecc712d2007-01-31 12:28:10 -0800130 'repack:i' => \$Git::SVN::_repack,
Eric Wong97ae0912007-02-11 15:21:24 -0800131 'noMetadata' => \$Git::SVN::_no_metadata,
132 'useSvmProps' => \$Git::SVN::_use_svm_props,
Eric Wong62e349d2007-02-16 19:57:29 -0800133 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
Eric Wong6af1db42007-02-14 16:04:10 -0800134 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
Eric Wong1e889ef2007-02-16 01:45:13 -0800135 'no-checkout' => \$_no_checkout,
Simon Arlott49750f32009-03-30 19:31:41 +0100136 'quiet|q+' => \$_q,
Eric Wongecc712d2007-01-31 12:28:10 -0800137 'repack-flags|repack-args|repack-opts=s' =>
138 \$Git::SVN::_repack_flags,
Andy Whitcroft70ae04e2007-11-22 13:44:42 +0000139 'use-log-author' => \$Git::SVN::_use_log_author,
Avery Pennarun6aa9ba12008-04-15 21:04:17 -0400140 'add-author-from' => \$Git::SVN::_add_author_from,
Pete Harlane82f0d72009-01-17 20:10:14 -0800141 'localtime' => \$Git::SVN::_localtime,
Eric Wong706587f2007-01-18 17:50:01 -0800142 %remote_opts );
Eric Wong36f5b1f2006-05-23 19:23:41 -0700143
Marc Branchaud62244062009-06-23 13:02:08 -0400144my ($_trunk, @_tags, @_branches, $_stdlayout);
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800145my %icv;
Eric Wongdadc6d22007-02-14 12:27:41 -0800146my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
Marc Branchaud62244062009-06-23 13:02:08 -0400147 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
148 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
martin f. krafft8f728fb2007-07-14 11:25:28 +0200149 'stdlayout|s' => \$_stdlayout,
Eric Wong6b488292009-07-25 00:00:50 -0700150 'minimize-url|m!' => \$Git::SVN::_minimize_url,
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800151 'no-metadata' => sub { $icv{noMetadata} = 1 },
152 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
153 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
154 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
Jay Soffian3e18ce12010-01-23 03:30:00 -0500155 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
Eric Wongdadc6d22007-02-14 12:27:41 -0800156 %remote_opts );
Eric Wong27e9fb82006-06-27 19:39:12 -0700157my %cmt_opts = ( 'edit|e' => \$_edit,
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500158 'rmdir' => \$Git::SVN::Editor::_rmdir,
159 'find-copies-harder' => \$Git::SVN::Editor::_find_copies_harder,
160 'l=i' => \$Git::SVN::Editor::_rename_limit,
161 'copy-similarity|C=i'=> \$Git::SVN::Editor::_cp_similarity
Eric Wong27e9fb82006-06-27 19:39:12 -0700162);
Eric Wong9d55b412006-06-12 15:53:13 -0700163
Eric Wong3397f9d2006-02-16 01:24:16 -0800164my %cmd = (
Eric Wong2a3240b2007-01-04 18:09:56 -0800165 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
Eric Wonge98671e2007-02-14 02:21:19 -0800166 { 'revision|r=s' => \$_revision,
Eric Wong905f8b72007-02-16 03:22:40 -0800167 'fetch-all|all' => \$_fetch_all,
Jason Merrillc2abd832009-04-06 16:37:59 -0400168 'parent|p' => \$_fetch_parent,
Eric Wonge98671e2007-02-14 02:21:19 -0800169 %fc_opts } ],
Eric Wong0425ea92007-02-16 18:45:01 -0800170 clone => [ \&cmd_clone, "Initialize and fetch revisions",
171 { 'revision|r=s' => \$_revision,
Ray Chen40a15302011-07-20 18:37:26 -0400172 'preserve-empty-dirs' =>
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500173 \$Git::SVN::Fetcher::_preserve_empty_dirs,
Ray Chen40a15302011-07-20 18:37:26 -0400174 'placeholder-filename=s' =>
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500175 \$Git::SVN::Fetcher::_placeholder_filename,
Eric Wong0425ea92007-02-16 18:45:01 -0800176 %fc_opts, %init_opts } ],
Eric Wongd2866f92007-01-11 12:26:16 -0800177 init => [ \&cmd_init, "Initialize a repo for tracking" .
Eric Wongf8ab6b72006-05-31 15:49:56 -0700178 " (requires URL argument)",
Eric Wong9d55b412006-06-12 15:53:13 -0700179 \%init_opts ],
Eric Wongdadc6d22007-02-14 12:27:41 -0800180 'multi-init' => [ \&cmd_multi_init,
181 "Deprecated alias for ".
182 "'$0 init -T<trunk> -b<branches> -t<tags>'",
183 \%init_opts ],
Eric Wongd7ad3be2007-01-14 03:14:28 -0800184 dcommit => [ \&cmd_dcommit,
185 'Commit several diffs to merge with upstream',
Eric Wong3289e862006-12-15 23:58:08 -0800186 { 'merge|m|M' => \$_merge,
187 'strategy|s=s' => \$_strategy,
Eric Wong905f8b72007-02-16 03:22:40 -0800188 'verbose|v' => \$_verbose,
Eric Wong3289e862006-12-15 23:58:08 -0800189 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800190 'fetch-all|all' => \$_fetch_all,
Eric Wongba24e742008-08-07 02:06:16 -0700191 'commit-url=s' => \$_commit_url,
Alfred Perlstein83c94332014-12-07 02:47:23 -0800192 'set-svn-props=s' => \$_set_svn_props,
Eric Wongba24e742008-08-07 02:06:16 -0700193 'revision|r=i' => \$_revision,
Karl Hasselström171af112007-05-03 07:51:35 +0200194 'no-rebase' => \$_no_rebase,
Steven Walter6abd9332010-09-24 23:51:50 -0400195 'mergeinfo=s' => \$_merge_info,
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200196 'interactive|i' => \$_interactive,
Eric Wong4b155222006-12-22 21:59:24 -0800197 %cmt_opts, %fc_opts } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700198 branch => [ \&cmd_branch,
199 'Create a branch in the SVN repository',
200 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400201 'destination|d=s' => \$_branch_dest,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700202 'dry-run|n' => \$_dry_run,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200203 'parents' => \$_parents,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100204 'tag|t' => \$_tag,
205 'username=s' => \$Git::SVN::Prompt::_username,
206 'commit-url=s' => \$_commit_url } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700207 tag => [ sub { $_tag = 1; cmd_branch(@_) },
208 'Create a tag in the SVN repository',
209 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400210 'destination|d=s' => \$_branch_dest,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100211 'dry-run|n' => \$_dry_run,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200212 'parents' => \$_parents,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100213 'username=s' => \$Git::SVN::Prompt::_username,
214 'commit-url=s' => \$_commit_url } ],
Eric Wong1ce255d2007-01-14 23:21:16 -0800215 'set-tree' => [ \&cmd_set_tree,
216 "Set an SVN repository to a git tree-ish",
Robin H. Johnsone84dc6d2009-05-05 11:16:14 -0700217 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200218 'create-ignore' => [ \&cmd_create_ignore,
219 'Create a .gitignore per svn:ignore',
220 { 'revision|r=i' => \$_revision
221 } ],
Eric Wong6111b932009-11-15 18:57:16 -0800222 'mkdirs' => [ \&cmd_mkdirs ,
223 "recreate empty directories after a checkout",
224 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure15153452007-10-16 16:36:50 +0200225 'propget' => [ \&cmd_propget,
226 'Print the value of a property on a file or directory',
227 { 'revision|r=i' => \$_revision } ],
Alfred Perlstein83c94332014-12-07 02:47:23 -0800228 'propset' => [ \&cmd_propset,
229 'Set the value of a property on a file or directory - will be set on commit',
230 {} ],
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200231 'proplist' => [ \&cmd_proplist,
232 'List all properties of a file or directory',
233 { 'revision|r=i' => \$_revision } ],
Eric Wong5969cbe2007-01-11 17:58:39 -0800234 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200235 { 'revision|r=i' => \$_revision
Lars Hjemli05b4df32007-09-05 11:35:29 +0200236 } ],
Vineet Kumar2d879792007-11-19 14:56:15 -0800237 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
238 { 'revision|r=i' => \$_revision
239 } ],
Eric Wong1c8443b2007-01-14 02:17:00 -0800240 'multi-fetch' => [ \&cmd_multi_fetch,
Eric Wonge98671e2007-02-14 02:21:19 -0800241 "Deprecated alias for $0 fetch --all",
242 { 'revision|r=s' => \$_revision, %fc_opts } ],
Eric Wong706587f2007-01-18 17:50:01 -0800243 'migrate' => [ sub { },
244 # no-op, we automatically run this anyways,
Eric Wong706587f2007-01-18 17:50:01 -0800245 'Migrate configuration/metadata/layout from
246 previous versions of git-svn',
Eric Wonga836a0e2007-02-14 19:34:56 -0800247 { 'minimize' => \$Git::SVN::Migration::_minimize,
248 %remote_opts } ],
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800249 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
250 { 'limit=i' => \$Git::SVN::Log::limit,
Eric Wong79bb8d82006-06-01 02:35:44 -0700251 'revision|r=s' => \$_revision,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800252 'verbose|v' => \$Git::SVN::Log::verbose,
253 'incremental' => \$Git::SVN::Log::incremental,
254 'oneline' => \$Git::SVN::Log::oneline,
255 'show-commit' => \$Git::SVN::Log::show_commit,
256 'non-recursive' => \$Git::SVN::Log::non_recursive,
Eric Wong79bb8d82006-06-01 02:35:44 -0700257 'authors-file|A=s' => \$_authors,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800258 'color' => \$Git::SVN::Log::color,
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200259 'pager=s' => \$Git::SVN::Log::pager
Eric Wong79bb8d82006-06-01 02:35:44 -0700260 } ],
Eric Wong222566e2008-08-08 01:41:58 -0700261 'find-rev' => [ \&cmd_find_rev,
262 "Translate between SVN revision numbers and tree-ish",
Eric Wonga831a3f2014-09-07 08:35:19 +0000263 { 'B|before' => \$_before,
264 'A|after' => \$_after } ],
Eric Wong905f8b72007-02-16 03:22:40 -0800265 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
266 { 'merge|m|M' => \$_merge,
267 'verbose|v' => \$_verbose,
268 'strategy|s=s' => \$_strategy,
Eric Wongdee41f32007-03-13 11:40:36 -0700269 'local|l' => \$_local,
Eric Wong905f8b72007-02-16 03:22:40 -0800270 'fetch-all|all' => \$_fetch_all,
Seth Falcon7d45e142008-05-19 20:29:17 -0700271 'dry-run|n' => \$_dry_run,
Avishay Lavieb64e1f52012-05-15 11:45:50 +0300272 'preserve-merges|p' => \$_preserve_merges,
Eric Wong905f8b72007-02-16 03:22:40 -0800273 %fc_opts } ],
Eric Wong44320b92007-01-13 22:35:53 -0800274 'commit-diff' => [ \&cmd_commit_diff,
275 'Commit a diff between two trees',
Eric Wong27e9fb82006-06-27 19:39:12 -0700276 { 'message|m=s' => \$_message,
277 'file|F=s' => \$_file,
Eric Wong45bf4732006-11-09 01:19:37 -0800278 'revision|r=s' => \$_revision,
Eric Wong27e9fb82006-06-27 19:39:12 -0700279 %cmt_opts } ],
David D. Kilzere6fefa92007-11-21 11:57:18 -0800280 'info' => [ \&cmd_info,
281 "Show info about the latest SVN revision
282 on the current branch",
David D. Kilzer8b014d72007-11-21 11:57:19 -0800283 { 'url' => \$_url, } ],
Tim Stoakes6fb53752008-02-10 15:21:08 +1030284 'blame' => [ \&Git::SVN::Log::cmd_blame,
285 "Show what revision and author last modified each line of a file",
Michael G. Schwern2c96a6c2012-07-26 17:26:00 -0700286 { 'git-format' => \$Git::SVN::Log::_git_format } ],
Ben Jackson195643f2009-06-03 20:45:52 -0700287 'reset' => [ \&cmd_reset,
288 "Undo fetches back to the specified SVN revision",
289 { 'revision|r=s' => \$_revision,
290 'parent|p' => \$_fetch_parent } ],
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -0500291 'gc' => [ \&cmd_gc,
292 "Compress unhandled.log files in .git/svn and remove " .
293 "index files in .git/svn",
294 {} ],
Eric Wong3397f9d2006-02-16 01:24:16 -0800295);
Eric Wong9d55b412006-06-12 15:53:13 -0700296
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200297package FakeTerm;
298sub new {
299 my ($class, $reason) = @_;
300 return bless \$reason, shift;
301}
302sub readline {
303 my $self = shift;
304 die "Cannot use readline on FakeTerm: $$self";
305}
306package main;
307
Eric Wong30d45f72014-09-14 07:38:29 +0000308my $term;
309sub term_init {
310 $term = eval {
Eric Wong47092c12015-01-15 08:54:22 +0000311 require Term::ReadLine;
Eric Wong30d45f72014-09-14 07:38:29 +0000312 $ENV{"GIT_SVN_NOTTY"}
313 ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT
314 : new Term::ReadLine 'git-svn';
315 };
316 if ($@) {
317 $term = new FakeTerm "$@: going non-interactive";
318 }
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200319}
320
Eric Wong3397f9d2006-02-16 01:24:16 -0800321my $cmd;
322for (my $i = 0; $i < @ARGV; $i++) {
323 if (defined $cmd{$ARGV[$i]}) {
324 $cmd = $ARGV[$i];
325 splice @ARGV, $i, 1;
326 last;
Ben Jackson9a8c92a2009-05-30 18:17:06 -0700327 } elsif ($ARGV[$i] eq 'help') {
328 $cmd = $ARGV[$i+1];
329 usage(0);
Eric Wong3397f9d2006-02-16 01:24:16 -0800330 }
331};
332
Eric Wong540424b2007-12-19 00:31:43 -0800333# make sure we're always running at the top-level working directory
Barry Wardellbc93ceb2013-01-21 01:22:02 +0000334if ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
335 $ENV{GIT_DIR} ||= ".git";
Ramkumar Ramachandraa94655d2015-01-10 09:55:11 -0500336 # catch the submodule case
337 if (-f $ENV{GIT_DIR}) {
338 open(my $fh, '<', $ENV{GIT_DIR}) or
339 die "failed to open $ENV{GIT_DIR}: $!\n";
340 $ENV{GIT_DIR} = $1 if <$fh> =~ /^gitdir: (.+)$/;
341 }
Barry Wardellbc93ceb2013-01-21 01:22:02 +0000342} else {
343 my ($git_dir, $cdup);
344 git_cmd_try {
345 $git_dir = command_oneline([qw/rev-parse --git-dir/]);
346 } "Unable to find .git directory\n";
347 git_cmd_try {
348 $cdup = command_oneline(qw/rev-parse --show-cdup/);
349 chomp $cdup if ($cdup);
350 $cdup = "." unless ($cdup && length $cdup);
351 } "Already at toplevel, but $git_dir not found\n";
352 $ENV{GIT_DIR} = $git_dir;
353 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
Adam Robenffe256f2008-05-23 16:19:41 +0200354 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wong5253dc32007-02-20 01:36:30 -0800355}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100356
357my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
358
Eric Wong1a305822009-11-14 14:25:11 -0800359read_git_config(\%opts);
Eric Wong222566e2008-08-08 01:41:58 -0700360if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
361 Getopt::Long::Configure('pass_through');
362}
Clemens Buchacher87182b12011-10-03 20:21:36 +0200363my $rv = GetOptions(%opts, 'h|H' => \$_help, 'version|V' => \$_version,
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100364 'minimize-connections' => \$Git::SVN::Migration::_minimize,
365 'id|i=s' => \$Git::SVN::default_ref_id,
366 'svn-remote|remote|R=s' => sub {
367 $Git::SVN::no_reuse_existing = 1;
368 $Git::SVN::default_repo_id = $_[1] });
369exit 1 if (!$rv && $cmd && $cmd ne 'log');
370
371usage(0) if $_help;
372version() if $_version;
373usage(1) unless defined $cmd;
374load_authors() if $_authors;
Mark Lodato36db1ed2009-05-14 21:27:15 -0400375if (defined $_authors_prog) {
376 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
377}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100378
Eric Wong0425ea92007-02-16 18:45:01 -0800379unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
Eric Wong706587f2007-01-18 17:50:01 -0800380 Git::SVN::Migration::migration_check();
381}
Eric Wongecc712d2007-01-31 12:28:10 -0800382Git::SVN::init_vars();
Eric Wongb805b442007-01-22 13:52:04 -0800383eval {
384 Git::SVN::verify_remotes_sanity();
385 $cmd{$cmd}->[0]->(@ARGV);
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +0100386 post_fetch_checkout();
Eric Wongb805b442007-01-22 13:52:04 -0800387};
388fatal $@ if $@;
Eric Wong3397f9d2006-02-16 01:24:16 -0800389exit 0;
390
391####################### primary functions ######################
392sub usage {
393 my $exit = shift || 0;
394 my $fd = $exit ? \*STDERR : \*STDOUT;
395 print $fd <<"";
396git-svn - bidirectional operations between a single Subversion tree and git
David Aguilar1ca6e582013-02-23 16:50:10 -0800397usage: git svn <command> [options] [arguments]\n
Eric Wong448c81b2006-03-03 01:20:09 -0800398
399 print $fd "Available commands:\n" unless $cmd;
Eric Wong3397f9d2006-02-16 01:24:16 -0800400
401 foreach (sort keys %cmd) {
Eric Wong448c81b2006-03-03 01:20:09 -0800402 next if $cmd && $cmd ne $_;
Eric Wonga836a0e2007-02-14 19:34:56 -0800403 next if /^multi-/; # don't show deprecated commands
Eric Wongb203b762006-10-11 14:53:36 -0700404 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
Benoit Sigoureaa807bc2007-11-03 19:53:34 +0100405 foreach (sort keys %{$cmd{$_}->[2]}) {
Eric Wong512b6202007-04-03 01:57:08 -0700406 # mixed-case options are for .git/config only
407 next if /[A-Z]/ && /^[a-z]+$/i;
Eric Wong448c81b2006-03-03 01:20:09 -0800408 # prints out arguments as they should be passed:
Eric Wongb8c92ca2006-05-24 01:40:37 -0700409 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
Eric Wongb203b762006-10-11 14:53:36 -0700410 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
Eric Wong448c81b2006-03-03 01:20:09 -0800411 "--$_" : "-$_" }
412 split /\|/,$_)," $x\n";
413 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800414 }
415 print $fd <<"";
Eric Wong448c81b2006-03-03 01:20:09 -0800416\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
417arbitrary identifier if you're tracking multiple SVN branches/repositories in
418one git repository and want to keep them separate. See git-svn(1) for more
419information.
Eric Wong3397f9d2006-02-16 01:24:16 -0800420
421 exit $exit;
422}
423
Eric Wong551ce282006-02-20 10:57:29 -0800424sub version {
Michael J Gruberb0779242010-03-04 11:23:53 +0100425 ::_req_svn();
Eric Wong7d60ab22006-12-28 01:16:20 -0800426 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
Eric Wong551ce282006-02-20 10:57:29 -0800427 exit 0;
428}
429
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200430sub ask {
431 my ($prompt, %arg) = @_;
432 my $valid_re = $arg{valid_re};
433 my $default = $arg{default};
434 my $resp;
435 my $i = 0;
Eric Wong30d45f72014-09-14 07:38:29 +0000436 term_init() unless $term;
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200437
438 if ( !( defined($term->IN)
439 && defined( fileno($term->IN) )
440 && defined( $term->OUT )
441 && defined( fileno($term->OUT) ) ) ){
442 return defined($default) ? $default : undef;
443 }
444
445 while ($i++ < 10) {
446 $resp = $term->readline($prompt);
447 if (!defined $resp) { # EOF
448 print "\n";
449 return defined $default ? $default : undef;
450 }
451 if ($resp eq '' and defined $default) {
452 return $default;
453 }
454 if (!defined $valid_re or $resp =~ /$valid_re/) {
455 return $resp;
456 }
457 }
458 return undef;
459}
460
Eric Wong8164b652007-01-11 15:35:55 -0800461sub do_git_init_db {
462 unless (-d $ENV{GIT_DIR}) {
463 my @init_db = ('init');
464 push @init_db, "--template=$_template" if defined $_template;
Eric Wongdadc6d22007-02-14 12:27:41 -0800465 if (defined $_shared) {
466 if ($_shared =~ /[a-z]/) {
467 push @init_db, "--shared=$_shared";
468 } else {
469 push @init_db, "--shared";
470 }
471 }
Eric Wong8164b652007-01-11 15:35:55 -0800472 command_noisy(@init_db);
Adam Robenffe256f2008-05-23 16:19:41 +0200473 $_repository = Git->repository(Repository => ".git");
Eric Wong8164b652007-01-11 15:35:55 -0800474 }
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800475 my $set;
476 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
477 foreach my $i (keys %icv) {
478 die "'$set' and '$i' cannot both be set\n" if $set;
479 next unless defined $icv{$i};
480 command_noisy('config', "$pfx.$i", $icv{$i});
481 $set = $i;
482 }
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500483 my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex;
Michael Olsoncdb51a12011-10-10 16:27:37 -0700484 command_noisy('config', "$pfx.ignore-paths", $$ignore_paths_regex)
485 if defined $$ignore_paths_regex;
Paul Walmsleya7b10232013-05-04 00:10:18 +0100486 my $include_paths_regex = \$Git::SVN::Fetcher::_include_regex;
487 command_noisy('config', "$pfx.include-paths", $$include_paths_regex)
488 if defined $$include_paths_regex;
Michael Olsoncdb51a12011-10-10 16:27:37 -0700489 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
490 command_noisy('config', "$pfx.ignore-refs", $$ignore_refs_regex)
491 if defined $$ignore_refs_regex;
Ray Chen40a15302011-07-20 18:37:26 -0400492
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500493 if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) {
494 my $fname = \$Git::SVN::Fetcher::_placeholder_filename;
Ray Chen40a15302011-07-20 18:37:26 -0400495 command_noisy('config', "$pfx.preserve-empty-dirs", 'true');
496 command_noisy('config', "$pfx.placeholder-filename", $$fname);
497 }
Eric Wong8164b652007-01-11 15:35:55 -0800498}
499
Eric Wongdadc6d22007-02-14 12:27:41 -0800500sub init_subdir {
501 my $repo_path = shift or return;
502 mkpath([$repo_path]) unless -d $repo_path;
503 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
Eric Wongf30603f2007-02-23 01:26:26 -0800504 $ENV{GIT_DIR} = '.git';
Adam Robenffe256f2008-05-23 16:19:41 +0200505 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wongdadc6d22007-02-14 12:27:41 -0800506}
507
Eric Wong0425ea92007-02-16 18:45:01 -0800508sub cmd_clone {
509 my ($url, $path) = @_;
510 if (!defined $path &&
Marc Branchaud62244062009-06-23 13:02:08 -0400511 (defined $_trunk || @_branches || @_tags ||
martin f. krafft8f728fb2007-07-14 11:25:28 +0200512 defined $_stdlayout) &&
Eric Wong0425ea92007-02-16 18:45:01 -0800513 $url !~ m#^[a-z\+]+://#) {
514 $path = $url;
515 }
Eric Wong0425ea92007-02-16 18:45:01 -0800516 $path = basename($url) if !defined $path || !length $path;
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500517 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
Eric Wongf30603f2007-02-23 01:26:26 -0800518 cmd_init($url, $path);
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500519 command_oneline('config', 'svn.authorsfile', $authors_absolute)
520 if $_authors;
Alex Vandiverf5841502009-12-08 15:54:11 -0500521 Git::SVN::fetch_all($Git::SVN::default_repo_id);
Eric Wong0425ea92007-02-16 18:45:01 -0800522}
523
Eric Wongd2866f92007-01-11 12:26:16 -0800524sub cmd_init {
martin f. krafft8f728fb2007-07-14 11:25:28 +0200525 if (defined $_stdlayout) {
526 $_trunk = 'trunk' if (!defined $_trunk);
Marc Branchaud62244062009-06-23 13:02:08 -0400527 @_tags = 'tags' if (! @_tags);
528 @_branches = 'branches' if (! @_branches);
martin f. krafft8f728fb2007-07-14 11:25:28 +0200529 }
Marc Branchaud62244062009-06-23 13:02:08 -0400530 if (defined $_trunk || @_branches || @_tags) {
Eric Wongdadc6d22007-02-14 12:27:41 -0800531 return cmd_multi_init(@_);
Eric Wong03e0ea82006-06-30 21:42:53 -0700532 }
Eric Wongdadc6d22007-02-14 12:27:41 -0800533 my $url = shift or die "SVN repository location required ",
534 "as a command-line argument\n";
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200535 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -0800536 init_subdir(@_);
Eric Wong8164b652007-01-11 15:35:55 -0800537 do_git_init_db();
Eric Wong03e0ea82006-06-30 21:42:53 -0700538
Eric Wong6b488292009-07-25 00:00:50 -0700539 if ($Git::SVN::_minimize_url eq 'unset') {
540 $Git::SVN::_minimize_url = 0;
541 }
542
Eric Wong706587f2007-01-18 17:50:01 -0800543 Git::SVN->init($url);
Eric Wong3397f9d2006-02-16 01:24:16 -0800544}
545
Eric Wong2a3240b2007-01-04 18:09:56 -0800546sub cmd_fetch {
Eric Wonge98671e2007-02-14 02:21:19 -0800547 if (grep /^\d+=./, @_) {
548 die "'<rev>=<commit>' fetch arguments are ",
549 "no longer supported.\n";
Eric Wong07a1c952007-01-22 15:47:41 -0800550 }
Eric Wonge98671e2007-02-14 02:21:19 -0800551 my ($remote) = @_;
552 if (@_ > 1) {
David Aguilar0b670ab2013-02-24 14:48:38 -0800553 die "usage: $0 fetch [--all] [--parent] [svn-remote]\n";
Eric Wonge98671e2007-02-14 02:21:19 -0800554 }
Eric Wong4d0157d2009-11-22 12:37:06 -0800555 $Git::SVN::no_reuse_existing = undef;
Jason Merrillc2abd832009-04-06 16:37:59 -0400556 if ($_fetch_parent) {
557 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
558 unless ($gs) {
559 die "Unable to determine upstream SVN information from ",
560 "working tree history\n";
561 }
562 # just fetch, don't checkout.
563 $_no_checkout = 'true';
564 $_fetch_all ? $gs->fetch_all : $gs->fetch;
565 } elsif ($_fetch_all) {
Eric Wonge98671e2007-02-14 02:21:19 -0800566 cmd_multi_fetch();
567 } else {
Jason Merrillc2abd832009-04-06 16:37:59 -0400568 $remote ||= $Git::SVN::default_repo_id;
Eric Wonge98671e2007-02-14 02:21:19 -0800569 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
Eric Wong1c8443b2007-01-14 02:17:00 -0800570 }
Eric Wong2a3240b2007-01-04 18:09:56 -0800571}
572
Eric Wong1ce255d2007-01-14 23:21:16 -0800573sub cmd_set_tree {
Eric Wong3397f9d2006-02-16 01:24:16 -0800574 my (@commits) = @_;
575 if ($_stdin || !@commits) {
576 print "Reading from stdin...\n";
577 @commits = ();
578 while (<STDIN>) {
Eric Wong1ca72ae2006-03-03 01:20:09 -0800579 if (/\b($sha1_short)\b/o) {
Eric Wong3397f9d2006-02-16 01:24:16 -0800580 unshift @commits, $1;
581 }
582 }
583 }
584 my @revs;
Eric Wong8de010a2006-02-20 10:57:26 -0800585 foreach my $c (@commits) {
Eric Wongaef4e922006-12-15 10:59:54 -0800586 my @tmp = command('rev-parse',$c);
Eric Wong8de010a2006-02-20 10:57:26 -0800587 if (scalar @tmp == 1) {
588 push @revs, $tmp[0];
589 } elsif (scalar @tmp > 1) {
Eric Wongaef4e922006-12-15 10:59:54 -0800590 push @revs, reverse(command('rev-list',@tmp));
Eric Wong8de010a2006-02-20 10:57:26 -0800591 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200592 fatal "Failed to rev-parse $c";
Eric Wong8de010a2006-02-20 10:57:26 -0800593 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800594 }
Eric Wong1ce255d2007-01-14 23:21:16 -0800595 my $gs = Git::SVN->new;
596 my ($r_last, $cmt_last) = $gs->last_rev_commit;
597 $gs->fetch;
Eric Wong97f69872007-01-25 11:53:13 -0800598 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
Eric Wong1ce255d2007-01-14 23:21:16 -0800599 fatal "There are new revisions that were fetched ",
600 "and need to be merged (or acknowledged) ",
601 "before committing.\nlast rev: $r_last\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200602 " current: $gs->{last_rev}";
Eric Wong1ce255d2007-01-14 23:21:16 -0800603 }
604 $gs->set_tree($_) foreach @revs;
Eric Wonga5e0ced2006-06-12 15:23:48 -0700605 print "Done committing ",scalar @revs," revisions to SVN\n";
Eric Wong3157dd92007-12-13 08:27:34 -0800606 unlink $gs->{index};
Eric Wonga5e0ced2006-06-12 15:23:48 -0700607}
608
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400609sub split_merge_info_range {
610 my ($range) = @_;
611 if ($range =~ /(\d+)-(\d+)/) {
612 return (int($1), int($2));
613 } else {
614 return (int($range), int($range));
615 }
616}
617
618sub combine_ranges {
619 my ($in) = @_;
620
621 my @fnums = ();
622 my @arr = split(/,/, $in);
623 for my $element (@arr) {
624 my ($start, $end) = split_merge_info_range($element);
625 push @fnums, $start;
626 }
627
628 my @sorted = @arr [ sort {
629 $fnums[$a] <=> $fnums[$b]
630 } 0..$#arr ];
631
632 my @return = ();
633 my $last = -1;
634 my $first = -1;
635 for my $element (@sorted) {
636 my ($start, $end) = split_merge_info_range($element);
637
638 if ($last == -1) {
639 $first = $start;
640 $last = $end;
641 next;
642 }
643 if ($start <= $last+1) {
644 if ($end > $last) {
645 $last = $end;
646 }
647 next;
648 }
649 if ($first == $last) {
650 push @return, "$first";
651 } else {
652 push @return, "$first-$last";
653 }
654 $first = $start;
655 $last = $end;
656 }
657
658 if ($first != -1) {
659 if ($first == $last) {
660 push @return, "$first";
661 } else {
662 push @return, "$first-$last";
663 }
664 }
665
666 return join(',', @return);
667}
668
669sub merge_revs_into_hash {
670 my ($hash, $minfo) = @_;
671 my @lines = split(' ', $minfo);
672
673 for my $line (@lines) {
674 my ($branchpath, $revs) = split(/:/, $line);
675
676 if (exists($hash->{$branchpath})) {
677 # Merge the two revision sets
678 my $combined = "$hash->{$branchpath},$revs";
679 $hash->{$branchpath} = combine_ranges($combined);
680 } else {
681 # Just do range combining for consolidation
682 $hash->{$branchpath} = combine_ranges($revs);
683 }
684 }
685}
686
687sub merge_merge_info {
Michael Contrerase234ac92013-03-30 18:06:42 -0400688 my ($mergeinfo_one, $mergeinfo_two, $ignore_branch) = @_;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400689 my %result_hash = ();
690
691 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
692 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
693
Michael Contrerase234ac92013-03-30 18:06:42 -0400694 delete $result_hash{$ignore_branch} if $ignore_branch;
695
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400696 my $result = '';
697 # Sort below is for consistency's sake
698 for my $branchname (sort keys(%result_hash)) {
699 my $revlist = $result_hash{$branchname};
700 $result .= "$branchname:$revlist\n"
701 }
702 return $result;
703}
704
705sub populate_merge_info {
706 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
707
708 my %parentshash;
709 read_commit_parents(\%parentshash, $d);
710 my @parents = @{$parentshash{$d}};
711 if ($#parents > 0) {
712 # Merge commit
713 my $all_parents_ok = 1;
714 my $aggregate_mergeinfo = '';
715 my $rooturl = $gs->repos_root;
Michael Contrerase234ac92013-03-30 18:06:42 -0400716 my ($target_branch) = $gs->full_pushurl =~ /^\Q$rooturl\E(.*)/;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400717
718 if (defined($rewritten_parent)) {
719 # Replace first parent with newly-rewritten version
720 shift @parents;
721 unshift @parents, $rewritten_parent;
722 }
723
724 foreach my $parent (@parents) {
725 my ($branchurl, $svnrev, $paruuid) =
726 cmt_metadata($parent);
727
728 unless (defined($svnrev)) {
729 # Should have been caught be preflight check
730 fatal "merge commit $d has ancestor $parent, but that change "
731 ."does not have git-svn metadata!";
732 }
Ted Percival0e7e30f2011-10-31 16:37:12 -0600733 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400734 fatal "commit $parent git-svn metadata changed mid-run!";
735 }
736 my $branchpath = $1;
737
738 my $ra = Git::SVN::Ra->new($branchurl);
739 my (undef, undef, $props) =
740 $ra->get_dir(canonicalize_path("."), $svnrev);
741 my $par_mergeinfo = $props->{'svn:mergeinfo'};
742 unless (defined $par_mergeinfo) {
743 $par_mergeinfo = '';
744 }
745 # Merge previous mergeinfo values
746 $aggregate_mergeinfo =
747 merge_merge_info($aggregate_mergeinfo,
Michael Contrerase234ac92013-03-30 18:06:42 -0400748 $par_mergeinfo,
749 $target_branch);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400750
751 next if $parent eq $parents[0]; # Skip first parent
752 # Add new changes being placed in tree by merge
753 my @cmd = (qw/rev-list --reverse/,
754 $parent, qw/--not/);
755 foreach my $par (@parents) {
756 unless ($par eq $parent) {
757 push @cmd, $par;
758 }
759 }
760 my @revsin = ();
761 my ($revlist, $ctx) = command_output_pipe(@cmd);
762 while (<$revlist>) {
763 my $irev = $_;
764 chomp $irev;
765 my (undef, $csvnrev, undef) =
766 cmt_metadata($irev);
767 unless (defined $csvnrev) {
768 # A child is missing SVN annotations...
769 # this might be OK, or might not be.
770 warn "W:child $irev is merged into revision "
771 ."$d but does not have git-svn metadata. "
772 ."This means git-svn cannot determine the "
773 ."svn revision numbers to place into the "
774 ."svn:mergeinfo property. You must ensure "
775 ."a branch is entirely committed to "
776 ."SVN before merging it in order for "
777 ."svn:mergeinfo population to function "
778 ."properly";
779 }
780 push @revsin, $csvnrev;
781 }
782 command_close_pipe($revlist, $ctx);
783
784 last unless $all_parents_ok;
785
786 # We now have a list of all SVN revnos which are
787 # merged by this particular parent. Integrate them.
788 next if $#revsin == -1;
789 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
790 $aggregate_mergeinfo =
791 merge_merge_info($aggregate_mergeinfo,
Michael Contrerase234ac92013-03-30 18:06:42 -0400792 $newmergeinfo,
793 $target_branch);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400794 }
795 if ($all_parents_ok and $aggregate_mergeinfo) {
796 return $aggregate_mergeinfo;
797 }
798 }
799
800 return undef;
801}
802
Robert Luberdae48fb752012-08-08 07:35:00 +0200803sub dcommit_rebase {
804 my ($is_last, $current, $fetched_ref, $svn_error) = @_;
805 my @diff;
806
807 if ($svn_error) {
808 print STDERR "\nERROR from SVN:\n",
809 $svn_error->expanded_message, "\n";
810 }
811 unless ($_no_rebase) {
812 # we always want to rebase against the current HEAD,
813 # not any head that was passed to us
814 @diff = command('diff-tree', $current,
815 $fetched_ref, '--');
816 my @finish;
817 if (@diff) {
818 @finish = rebase_cmd();
819 print STDERR "W: $current and ", $fetched_ref,
820 " differ, using @finish:\n",
821 join("\n", @diff), "\n";
822 } elsif ($is_last) {
823 print "No changes between ", $current, " and ",
824 $fetched_ref,
825 "\nResetting to the latest ",
826 $fetched_ref, "\n";
827 @finish = qw/reset --mixed/;
828 }
829 command_noisy(@finish, $fetched_ref) if @finish;
830 }
831 if ($svn_error) {
832 die "ERROR: Not all changes have been committed into SVN"
833 .($_no_rebase ? ".\n" : ", however the committed\n"
834 ."ones (if any) seem to be successfully integrated "
835 ."into the working tree.\n")
836 ."Please see the above messages for details.\n";
837 }
838 return @diff;
839}
840
Eric Wongd7ad3be2007-01-14 03:14:28 -0800841sub cmd_dcommit {
842 my $head = shift;
David D. Kilzer181264a2010-08-02 12:58:19 -0700843 command_noisy(qw/update-index --refresh/);
Slava Kardakov9926f662013-06-05 11:31:27 -0700844 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD --/) }
David Reiss826a9332007-11-13 13:47:26 -0800845 'Cannot dcommit with a dirty index. Commit your changes first, '
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100846 . "or stash them with `git stash'.\n";
Eric Wongd7ad3be2007-01-14 03:14:28 -0800847 $head ||= 'HEAD';
Thomas Rast5eec27e2009-05-29 17:09:42 +0200848
849 my $old_head;
850 if ($head ne 'HEAD') {
851 $old_head = eval {
852 command_oneline([qw/symbolic-ref -q HEAD/])
853 };
854 if ($old_head) {
855 $old_head =~ s{^refs/heads/}{};
856 } else {
857 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
858 }
859 command(['checkout', $head], STDERR => 0);
860 }
861
Eric Wonga8ae2622007-02-13 14:22:11 -0800862 my @refs;
Thomas Rast5eec27e2009-05-29 17:09:42 +0200863 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
Thomas Rast2cb61102008-08-31 15:50:59 +0200864 unless ($gs) {
865 die "Unable to determine upstream SVN information from ",
866 "$head history.\nPerhaps the repository is empty.";
867 }
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100868
869 if (defined $_commit_url) {
870 $url = $_commit_url;
871 } else {
872 $url = eval { command_oneline('config', '--get',
873 "svn-remote.$gs->{repo_id}.commiturl") };
874 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -0400875 $url = $gs->full_pushurl
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100876 }
877 }
878
Eric Wongba24e742008-08-07 02:06:16 -0700879 my $last_rev = $_revision if defined $_revision;
Matthieu Moy59b0c242008-04-24 20:06:36 +0200880 if ($url) {
881 print "Committing to $url ...\n";
882 }
Eric Wong733a65a2007-06-13 02:23:28 -0700883 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
Eric Wong751eb392007-08-31 18:16:12 -0700884 if ($_no_rebase && scalar(@$linear_refs) > 1) {
885 warn "Attempting to commit more than one change while ",
886 "--no-rebase is enabled.\n",
887 "If these changes depend on each other, re-running ",
Eric Wong7dfa16b2008-01-02 10:09:49 -0800888 "without --no-rebase may be required."
Eric Wong751eb392007-08-31 18:16:12 -0700889 }
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200890
891 if (defined $_interactive){
892 my $ask_default = "y";
893 foreach my $d (@$linear_refs){
894 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
895 while (<$fh>){
896 print $_;
897 }
898 command_close_pipe($fh, $ctx);
899 $_ = ask("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
900 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
901 default => $ask_default);
902 die "Commit this patch reply required" unless defined $_;
903 if (/^[nq]/i) {
904 exit(0);
905 } elsif (/^a/i) {
906 last;
907 }
908 }
909 }
910
Eric Wong711521e2008-08-20 00:30:06 -0700911 my $expect_url = $url;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400912
913 my $push_merge_info = eval {
914 command_oneline(qw/config --get svn.pushmergeinfo/)
915 };
916 if (not defined($push_merge_info)
917 or $push_merge_info eq "false"
918 or $push_merge_info eq "no"
919 or $push_merge_info eq "never") {
920 $push_merge_info = 0;
921 }
922
923 unless (defined($_merge_info) || ! $push_merge_info) {
924 # Preflight check of changes to ensure no issues with mergeinfo
925 # This includes check for uncommitted-to-SVN parents
926 # (other than the first parent, which we will handle),
927 # information from different SVN repos, and paths
928 # which are not underneath this repository root.
929 my $rooturl = $gs->repos_root;
930 foreach my $d (@$linear_refs) {
931 my %parentshash;
932 read_commit_parents(\%parentshash, $d);
933 my @realparents = @{$parentshash{$d}};
934 if ($#realparents > 0) {
935 # Merge commit
936 shift @realparents; # Remove/ignore first parent
937 foreach my $parent (@realparents) {
938 my ($branchurl, $svnrev, $paruuid) = cmt_metadata($parent);
939 unless (defined $paruuid) {
940 # A parent is missing SVN annotations...
941 # abort the whole operation.
942 fatal "$parent is merged into revision $d, "
943 ."but does not have git-svn metadata. "
944 ."Either dcommit the branch or use a "
945 ."local cherry-pick, FF merge, or rebase "
946 ."instead of an explicit merge commit.";
947 }
948
949 unless ($paruuid eq $uuid) {
950 # Parent has SVN metadata from different repository
951 fatal "merge parent $parent for change $d has "
952 ."git-svn uuid $paruuid, while current change "
953 ."has uuid $uuid!";
954 }
955
Ted Percival0e7e30f2011-10-31 16:37:12 -0600956 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400957 # This branch is very strange indeed.
958 fatal "merge parent $parent for $d is on branch "
959 ."$branchurl, which is not under the "
960 ."git-svn root $rooturl!";
961 }
962 }
963 }
964 }
965 }
966
967 my $rewritten_parent;
Robert Luberdae48fb752012-08-08 07:35:00 +0200968 my $current_head = command_oneline(qw/rev-parse HEAD/);
Eric Wong711521e2008-08-20 00:30:06 -0700969 Git::SVN::remove_username($expect_url);
Bryan Jacobs98c4ab32011-08-31 12:48:39 -0400970 if (defined($_merge_info)) {
971 $_merge_info =~ tr{ }{\n};
972 }
Eric Wongc74d9ac2007-11-05 03:21:47 -0800973 while (1) {
974 my $d = shift @$linear_refs or last;
Eric Wong45bf4732006-11-09 01:19:37 -0800975 unless (defined $last_rev) {
976 (undef, $last_rev, undef) = cmt_metadata("$d~1");
977 unless (defined $last_rev) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800978 fatal "Unable to extract revision information ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200979 "from commit $d~1";
Eric Wong45bf4732006-11-09 01:19:37 -0800980 }
981 }
Eric Wongb22d4492006-08-26 00:01:23 -0700982 if ($_dry_run) {
983 print "diff-tree $d~1 $d\n";
984 } else {
Eric Wong751eb392007-08-31 18:16:12 -0700985 my $cmt_rev;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400986
987 unless (defined($_merge_info) || ! $push_merge_info) {
988 $_merge_info = populate_merge_info($d, $gs,
989 $uuid,
990 $linear_refs,
991 $rewritten_parent);
992 }
993
Eric Wongd7ad3be2007-01-14 03:14:28 -0800994 my %ed_opts = ( r => $last_rev,
Eric Wong61395352007-01-27 14:33:08 -0800995 log => get_commit_entry($d)->{log},
Eric Wongba24e742008-08-07 02:06:16 -0700996 ra => Git::SVN::Ra->new($url),
Konstantin V. Arkhipov3caf3202007-11-14 03:52:02 +0300997 config => SVN::Core::config_get_config(
998 $Git::SVN::Ra::config_dir
999 ),
Eric Wong61395352007-01-27 14:33:08 -08001000 tree_a => "$d~1",
1001 tree_b => $d,
1002 editor_cb => sub {
1003 print "Committed r$_[0]\n";
Eric Wong751eb392007-08-31 18:16:12 -07001004 $cmt_rev = $_[0];
1005 },
Steven Walter6abd9332010-09-24 23:51:50 -04001006 mergeinfo => $_merge_info,
Eric Wonga8ae2622007-02-13 14:22:11 -08001007 svn_path => '');
Robert Luberdae48fb752012-08-08 07:35:00 +02001008
1009 my $err_handler = $SVN::Error::handler;
1010 $SVN::Error::handler = sub {
1011 my $err = shift;
1012 dcommit_rebase(1, $current_head, $gs->refname,
1013 $err);
1014 };
1015
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001016 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
Eric Wongd7ad3be2007-01-14 03:14:28 -08001017 print "No changes\n$d~1 == $d\n";
Eric Wong733a65a2007-06-13 02:23:28 -07001018 } elsif ($parents->{$d} && @{$parents->{$d}}) {
Eric Wong751eb392007-08-31 18:16:12 -07001019 $gs->{inject_parents_dcommit}->{$cmt_rev} =
Eric Wong733a65a2007-06-13 02:23:28 -07001020 $parents->{$d};
Eric Wongd7ad3be2007-01-14 03:14:28 -08001021 }
Eric Wong751eb392007-08-31 18:16:12 -07001022 $_fetch_all ? $gs->fetch_all : $gs->fetch;
Robert Luberdae48fb752012-08-08 07:35:00 +02001023 $SVN::Error::handler = $err_handler;
Eric Wong7dfa16b2008-01-02 10:09:49 -08001024 $last_rev = $cmt_rev;
Eric Wong751eb392007-08-31 18:16:12 -07001025 next if $_no_rebase;
1026
Robert Luberdae48fb752012-08-08 07:35:00 +02001027 my @diff = dcommit_rebase(@$linear_refs == 0, $d,
1028 $gs->refname, undef);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -04001029
Robert Luberdae48fb752012-08-08 07:35:00 +02001030 $rewritten_parent = command_oneline(qw/rev-parse/,
1031 $gs->refname);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -04001032
Eric Wongc74d9ac2007-11-05 03:21:47 -08001033 if (@diff) {
Robert Luberdae48fb752012-08-08 07:35:00 +02001034 $current_head = command_oneline(qw/rev-parse
1035 HEAD/);
Eric Wongc74d9ac2007-11-05 03:21:47 -08001036 @refs = ();
1037 my ($url_, $rev_, $uuid_, $gs_) =
Thomas Rast5eec27e2009-05-29 17:09:42 +02001038 working_head_info('HEAD', \@refs);
Eric Wongc74d9ac2007-11-05 03:21:47 -08001039 my ($linear_refs_, $parents_) =
1040 linearize_history($gs_, \@refs);
1041 if (scalar(@$linear_refs) !=
1042 scalar(@$linear_refs_)) {
1043 fatal "# of revisions changed ",
1044 "\nbefore:\n",
1045 join("\n", @$linear_refs),
1046 "\n\nafter:\n",
1047 join("\n", @$linear_refs_), "\n",
1048 'If you are attempting to commit ',
1049 "merges, try running:\n\t",
1050 'git rebase --interactive',
1051 '--preserve-merges ',
1052 $gs->refname,
1053 "\nBefore dcommitting";
1054 }
Eric Wong711521e2008-08-20 00:30:06 -07001055 if ($url_ ne $expect_url) {
Alexander Gavrilovc03c1f72009-10-09 11:01:04 +04001056 if ($url_ eq $gs->metadata_url) {
1057 print
1058 "Accepting rewritten URL:",
1059 " $url_\n";
1060 } else {
1061 fatal
1062 "URL mismatch after rebase:",
1063 " $url_ != $expect_url";
1064 }
Eric Wongc74d9ac2007-11-05 03:21:47 -08001065 }
1066 if ($uuid_ ne $uuid) {
1067 fatal "uuid mismatch after rebase: ",
1068 "$uuid_ != $uuid";
1069 }
1070 # remap parents
1071 my (%p, @l, $i);
1072 for ($i = 0; $i < scalar @$linear_refs; $i++) {
1073 my $new = $linear_refs_->[$i] or next;
1074 $p{$new} =
1075 $parents->{$linear_refs->[$i]};
1076 push @l, $new;
1077 }
1078 $parents = \%p;
1079 $linear_refs = \@l;
Robert Luberdae48fb752012-08-08 07:35:00 +02001080 undef $last_rev;
Eric Wongc74d9ac2007-11-05 03:21:47 -08001081 }
Eric Wongb22d4492006-08-26 00:01:23 -07001082 }
1083 }
Thomas Rast5eec27e2009-05-29 17:09:42 +02001084
1085 if ($old_head) {
1086 my $new_head = command_oneline(qw/rev-parse HEAD/);
1087 my $new_is_symbolic = eval {
1088 command_oneline(qw/symbolic-ref -q HEAD/);
1089 };
1090 if ($new_is_symbolic) {
1091 print "dcommitted the branch ", $head, "\n";
1092 } else {
1093 print "dcommitted on a detached HEAD because you gave ",
1094 "a revision argument.\n",
1095 "The rewritten commit is: ", $new_head, "\n";
1096 }
1097 command(['checkout', $old_head], STDERR => 0);
1098 }
1099
Eric Wong3157dd92007-12-13 08:27:34 -08001100 unlink $gs->{index};
Eric Wongb22d4492006-08-26 00:01:23 -07001101}
1102
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001103sub cmd_branch {
1104 my ($branch_name, $head) = @_;
1105
1106 unless (defined $branch_name && length $branch_name) {
1107 die(($_tag ? "tag" : "branch") . " name required\n");
1108 }
1109 $head ||= 'HEAD';
1110
Eric Wong150d38c2009-12-22 22:40:18 -08001111 my (undef, $rev, undef, $gs) = working_head_info($head);
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04001112 my $src = $gs->full_pushurl;
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001113
Deskin Millera0fbc872008-12-01 21:43:00 -05001114 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
Marc Branchaud62244062009-06-23 13:02:08 -04001115 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
1116 my $glob;
1117 if ($#{$allglobs} == 0) {
1118 $glob = $allglobs->[0];
1119 } else {
1120 unless(defined $_branch_dest) {
1121 die "Multiple ",
1122 $_tag ? "tag" : "branch",
1123 " paths defined for Subversion repository.\n",
1124 "You must specify where you want to create the ",
1125 $_tag ? "tag" : "branch",
1126 " with the --destination argument.\n";
1127 }
1128 foreach my $g (@{$allglobs}) {
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001129 my $re = Git::SVN::Editor::glob2pat($g->{path}->{left});
Eric Wongf7050592009-06-25 02:28:15 -07001130 if ($_branch_dest =~ /$re/) {
Marc Branchaud62244062009-06-23 13:02:08 -04001131 $glob = $g;
1132 last;
1133 }
1134 }
1135 unless (defined $glob) {
Eric Wongeaa14ff2009-07-25 01:36:06 -07001136 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1137 foreach my $g (@{$allglobs}) {
1138 $g->{path}->{left} =~ /$dest_re/ or next;
1139 if (defined $glob) {
1140 die "Ambiguous destination: ",
1141 $_branch_dest, "\nmatches both '",
1142 $glob->{path}->{left}, "' and '",
1143 $g->{path}->{left}, "'\n";
1144 }
1145 $glob = $g;
1146 }
1147 unless (defined $glob) {
1148 die "Unknown ",
1149 $_tag ? "tag" : "branch",
1150 " destination $_branch_dest\n";
1151 }
Marc Branchaud62244062009-06-23 13:02:08 -04001152 }
1153 }
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001154 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
Igor Mironov99bacd62010-01-12 03:21:23 +11001155 my $url;
1156 if (defined $_commit_url) {
1157 $url = $_commit_url;
1158 } else {
1159 $url = eval { command_oneline('config', '--get',
1160 "svn-remote.$gs->{repo_id}.commiturl") };
1161 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04001162 $url = $remote->{pushurl} || $remote->{url};
Igor Mironov99bacd62010-01-12 03:21:23 +11001163 }
1164 }
1165 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001166
Igor Mironova83b91e2010-01-12 03:20:43 +11001167 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1168 $src=~s/^http:/https:/;
1169 }
1170
josh robbd32fad22010-02-24 16:13:50 +13001171 ::_req_svn();
Eric Wong47092c12015-01-15 08:54:22 +00001172 require SVN::Client;
josh robbd32fad22010-02-24 16:13:50 +13001173
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001174 my $ctx = SVN::Client->new(
Monard Vong785a1c82014-07-24 18:25:59 +02001175 config => SVN::Core::config_get_config(
1176 $Git::SVN::Ra::config_dir
1177 ),
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001178 log_msg => sub {
1179 ${ $_[0] } = defined $_message
1180 ? $_message
1181 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
1182 . $branch_name;
1183 },
1184 );
1185
1186 eval {
1187 $ctx->ls($dst, 'HEAD', 0);
1188 } and die "branch ${branch_name} already exists\n";
1189
Tobias Schultef4f4c7f2013-05-15 22:14:43 +02001190 if ($_parents) {
1191 mk_parent_dirs($ctx, $dst);
1192 }
1193
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001194 print "Copying ${src} at r${rev} to ${dst}...\n";
1195 $ctx->copy($src, $rev, $dst)
1196 unless $_dry_run;
1197
1198 $gs->fetch_all;
1199}
1200
Tobias Schultef4f4c7f2013-05-15 22:14:43 +02001201sub mk_parent_dirs {
1202 my ($ctx, $parent) = @_;
1203 $parent =~ s{/[^/]*$}{};
1204
1205 if (!eval{$ctx->ls($parent, 'HEAD', 0)}) {
1206 mk_parent_dirs($ctx, $parent);
1207 print "Creating parent folder ${parent} ...\n";
1208 $ctx->mkdir($parent) unless $_dry_run;
1209 }
1210}
1211
Adam Roben26e60162007-04-27 11:57:53 -07001212sub cmd_find_rev {
Marc-Andre Lureauea14e6c2008-03-11 10:00:45 +02001213 my $revision_or_hash = shift or die "SVN or git revision required ",
1214 "as a command-line argument\n";
Adam Roben26e60162007-04-27 11:57:53 -07001215 my $result;
1216 if ($revision_or_hash =~ /^r\d+$/) {
Adam Robenb3cb7e42007-04-29 01:35:27 -07001217 my $head = shift;
1218 $head ||= 'HEAD';
1219 my @refs;
João Abecasis63c56022008-07-14 16:28:04 +01001220 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
Adam Robenb3cb7e42007-04-29 01:35:27 -07001221 unless ($gs) {
1222 die "Unable to determine upstream SVN information from ",
1223 "$head history\n";
Adam Roben26e60162007-04-27 11:57:53 -07001224 }
Adam Robenb3cb7e42007-04-29 01:35:27 -07001225 my $desired_revision = substr($revision_or_hash, 1);
John Keeping2934a482013-01-17 22:19:33 +00001226 if ($_before) {
1227 $result = $gs->find_rev_before($desired_revision, 1);
1228 } elsif ($_after) {
1229 $result = $gs->find_rev_after($desired_revision, 1);
1230 } else {
1231 $result = $gs->rev_map_get($desired_revision, $uuid);
1232 }
Adam Roben26e60162007-04-27 11:57:53 -07001233 } else {
1234 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
1235 $result = $rev;
1236 }
1237 print "$result\n" if $result;
1238}
1239
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001240sub auto_create_empty_directories {
1241 my ($gs) = @_;
1242 my $var = eval { command_oneline('config', '--get', '--bool',
1243 "svn-remote.$gs->{repo_id}.automkdirs") };
1244 # By default, create empty directories by consulting the unhandled log,
1245 # but allow setting it to 'false' to skip it.
1246 return !($var && $var eq 'false');
1247}
1248
Eric Wong905f8b72007-02-16 03:22:40 -08001249sub cmd_rebase {
1250 command_noisy(qw/update-index --refresh/);
Eric Wong13c823f2007-04-08 00:59:19 -07001251 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1252 unless ($gs) {
Eric Wong905f8b72007-02-16 03:22:40 -08001253 die "Unable to determine upstream SVN information from ",
1254 "working tree history\n";
1255 }
Seth Falcon7d45e142008-05-19 20:29:17 -07001256 if ($_dry_run) {
1257 print "Remote Branch: " . $gs->refname . "\n";
1258 print "SVN URL: " . $url . "\n";
1259 return;
1260 }
Eric Wong905f8b72007-02-16 03:22:40 -08001261 if (command(qw/diff-index HEAD --/)) {
Veres Lajosf7e604e2013-06-19 07:37:24 +02001262 print STDERR "Cannot rebase with uncommitted changes:\n";
Eric Wong905f8b72007-02-16 03:22:40 -08001263 command_noisy('status');
1264 exit 1;
1265 }
Eric Wongdee41f32007-03-13 11:40:36 -07001266 unless ($_local) {
Steven Grimmcec0d5a2007-11-29 11:54:39 -08001267 # rebase will checkout for us, so no need to do it explicitly
1268 $_no_checkout = 'true';
Eric Wongdee41f32007-03-13 11:40:36 -07001269 $_fetch_all ? $gs->fetch_all : $gs->fetch;
1270 }
Eric Wong905f8b72007-02-16 03:22:40 -08001271 command_noisy(rebase_cmd(), $gs->refname);
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001272 if (auto_create_empty_directories($gs)) {
1273 $gs->mkemptydirs;
1274 }
Eric Wong905f8b72007-02-16 03:22:40 -08001275}
1276
Eric Wong5969cbe2007-01-11 17:58:39 -08001277sub cmd_show_ignore {
Eric Wong13c823f2007-04-08 00:59:19 -07001278 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1279 $gs ||= Git::SVN->new;
Eric Wong5969cbe2007-01-11 17:58:39 -08001280 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001281 $gs->prop_walk($gs->path, $r, sub {
Benoit Sigoure01bdab82007-10-16 16:36:48 +02001282 my ($gs, $path, $props) = @_;
1283 print STDOUT "\n# $path\n";
1284 my $s = $props->{'svn:ignore'} or return;
1285 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +02001286 $s =~ s/^\n+//;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02001287 chomp $s;
1288 $s =~ s#^#$path#gm;
1289 print STDOUT "$s\n";
1290 });
Eric Wonga5e0ced2006-06-12 15:23:48 -07001291}
1292
Vineet Kumar2d879792007-11-19 14:56:15 -08001293sub cmd_show_externals {
1294 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1295 $gs ||= Git::SVN->new;
1296 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001297 $gs->prop_walk($gs->path, $r, sub {
Vineet Kumar2d879792007-11-19 14:56:15 -08001298 my ($gs, $path, $props) = @_;
1299 print STDOUT "\n# $path\n";
1300 my $s = $props->{'svn:externals'} or return;
1301 $s =~ s/[\r\n]+/\n/g;
1302 chomp $s;
1303 $s =~ s#^#$path#gm;
1304 print STDOUT "$s\n";
1305 });
1306}
1307
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001308sub cmd_create_ignore {
1309 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1310 $gs ||= Git::SVN->new;
1311 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001312 $gs->prop_walk($gs->path, $r, sub {
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001313 my ($gs, $path, $props) = @_;
1314 # $path is of the form /path/to/dir/
Brian Gernhardt7d9fd452009-02-19 13:08:04 -05001315 $path = '.' . $path;
1316 # SVN can have attributes on empty directories,
1317 # which git won't track
1318 mkpath([$path]) unless -d $path;
1319 my $ignore = $path . '.gitignore';
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001320 my $s = $props->{'svn:ignore'} or return;
1321 open(GITIGNORE, '>', $ignore)
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001322 or fatal("Failed to open `$ignore' for writing: $!");
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001323 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +02001324 $s =~ s/^\n+//;
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001325 chomp $s;
1326 # Prefix all patterns so that the ignore doesn't apply
1327 # to sub-directories.
1328 $s =~ s#^#/#gm;
1329 print GITIGNORE "$s\n";
1330 close(GITIGNORE)
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001331 or fatal("Failed to close `$ignore': $!");
Gustaf Hendebyc4c66b22008-05-05 00:33:09 +02001332 command_noisy('add', '-f', $ignore);
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001333 });
1334}
1335
Eric Wong6111b932009-11-15 18:57:16 -08001336sub cmd_mkdirs {
1337 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1338 $gs ||= Git::SVN->new;
1339 $gs->mkemptydirs($_revision);
1340}
1341
Benoit Sigoure15153452007-10-16 16:36:50 +02001342# get_svnprops(PATH)
1343# ------------------
Benoit Sigoure51e057c2007-10-16 16:36:51 +02001344# Helper for cmd_propget and cmd_proplist below.
Benoit Sigoure15153452007-10-16 16:36:50 +02001345sub get_svnprops {
1346 my $path = shift;
1347 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1348 $gs ||= Git::SVN->new;
1349
1350 # prefix THE PATH by the sub-directory from which the user
1351 # invoked us.
1352 $path = $cmd_dir_prefix . $path;
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001353 fatal("No such file or directory: $path") unless -e $path;
Benoit Sigoure15153452007-10-16 16:36:50 +02001354 my $is_dir = -d $path ? 1 : 0;
Eric Wongf3045912012-09-18 00:09:31 +00001355 $path = join_paths($gs->path, $path);
Benoit Sigoure15153452007-10-16 16:36:50 +02001356
1357 # canonicalize the path (otherwise libsvn will abort or fail to
1358 # find the file)
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001359 $path = canonicalize_path($path);
Benoit Sigoure15153452007-10-16 16:36:50 +02001360
1361 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1362 my $props;
1363 if ($is_dir) {
1364 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1365 }
1366 else {
1367 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1368 }
1369 return $props;
1370}
1371
1372# cmd_propget (PROP, PATH)
1373# ------------------------
1374# Print the SVN property PROP for PATH.
1375sub cmd_propget {
1376 my ($prop, $path) = @_;
1377 $path = '.' if not defined $path;
1378 usage(1) if not defined $prop;
1379 my $props = get_svnprops($path);
1380 if (not defined $props->{$prop}) {
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001381 fatal("`$path' does not have a `$prop' SVN property.");
Benoit Sigoure15153452007-10-16 16:36:50 +02001382 }
1383 print $props->{$prop} . "\n";
1384}
1385
Alfred Perlstein83c94332014-12-07 02:47:23 -08001386# cmd_propset (PROPNAME, PROPVAL, PATH)
1387# ------------------------
1388# Adjust the SVN property PROPNAME to PROPVAL for PATH.
1389sub cmd_propset {
1390 my ($propname, $propval, $path) = @_;
1391 $path = '.' if not defined $path;
1392 $path = $cmd_dir_prefix . $path;
1393 usage(1) if not defined $propname;
1394 usage(1) if not defined $propval;
1395 my $file = basename($path);
1396 my $dn = dirname($path);
1397 my $cur_props = Git::SVN::Editor::check_attr( "svn-properties", $path );
1398 my @new_props;
1399 if (!$cur_props || $cur_props eq "unset" || $cur_props eq "" || $cur_props eq "set") {
1400 push @new_props, "$propname=$propval";
1401 } else {
1402 # TODO: handle combining properties better
1403 my @props = split(/;/, $cur_props);
1404 my $replaced_prop;
1405 foreach my $prop (@props) {
1406 # Parse 'name=value' syntax and set the property.
1407 if ($prop =~ /([^=]+)=(.*)/) {
1408 my ($n,$v) = ($1,$2);
1409 if ($n eq $propname) {
1410 $v = $propval;
1411 $replaced_prop = 1;
1412 }
1413 push @new_props, "$n=$v";
1414 }
1415 }
1416 if (!$replaced_prop) {
1417 push @new_props, "$propname=$propval";
1418 }
1419 }
1420 my $attrfile = "$dn/.gitattributes";
1421 open my $attrfh, '>>', $attrfile or die "Can't open $attrfile: $!\n";
1422 # TODO: don't simply append here if $file already has svn-properties
1423 my $new_props = join(';', @new_props);
1424 print $attrfh "$file svn-properties=$new_props\n" or
1425 die "write to $attrfile: $!\n";
1426 close $attrfh or die "close $attrfile: $!\n";
1427}
1428
Benoit Sigoure51e057c2007-10-16 16:36:51 +02001429# cmd_proplist (PATH)
1430# -------------------
1431# Print the list of SVN properties for PATH.
1432sub cmd_proplist {
1433 my $path = shift;
1434 $path = '.' if not defined $path;
1435 my $props = get_svnprops($path);
1436 print "Properties on '$path':\n";
1437 foreach (sort keys %{$props}) {
1438 print " $_\n";
1439 }
1440}
1441
Eric Wong8164b652007-01-11 15:35:55 -08001442sub cmd_multi_init {
Eric Wong9d55b412006-06-12 15:53:13 -07001443 my $url = shift;
Marc Branchaud62244062009-06-23 13:02:08 -04001444 unless (defined $_trunk || @_branches || @_tags) {
Eric Wong98327e52007-01-04 18:02:00 -08001445 usage(1);
1446 }
Eric Wongdc431662007-05-19 03:59:02 -07001447
Johan Herlandfe191fc2013-10-11 14:57:07 +02001448 $_prefix = 'origin/' unless defined $_prefix;
Eric Wongdadc6d22007-02-14 12:27:41 -08001449 if (defined $url) {
Ulrich Dangel50ff2362009-06-26 16:52:09 +02001450 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -08001451 init_subdir(@_);
1452 }
Eric Wongf30603f2007-02-23 01:26:26 -08001453 do_git_init_db();
Eric Wong98327e52007-01-04 18:02:00 -08001454 if (defined $_trunk) {
Jonathan Niederb4b33602010-06-13 06:27:43 -05001455 $_trunk =~ s#^/+##;
Adam Brewster6f5748e2009-08-11 23:14:27 -04001456 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
Eric Wong706587f2007-01-18 17:50:01 -08001457 # try both old-style and new-style lookups:
1458 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
Eric Wong8164b652007-01-11 15:35:55 -08001459 unless ($gs_trunk) {
Eric Wong706587f2007-01-18 17:50:01 -08001460 my ($trunk_url, $trunk_path) =
1461 complete_svn_url($url, $_trunk);
1462 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
1463 undef, $trunk_ref);
Eric Wong98327e52007-01-04 18:02:00 -08001464 }
Eric Wongc35b96e2006-10-11 11:53:21 -07001465 }
Marc Branchaud62244062009-06-23 13:02:08 -04001466 return unless @_branches || @_tags;
Eric Wonge7db67e2007-01-11 17:09:26 -08001467 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
Marc Branchaud62244062009-06-23 13:02:08 -04001468 foreach my $path (@_branches) {
1469 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
1470 }
1471 foreach my $path (@_tags) {
1472 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
1473 }
Eric Wong9d55b412006-06-12 15:53:13 -07001474}
1475
Eric Wong1c8443b2007-01-14 02:17:00 -08001476sub cmd_multi_fetch {
Eric Wong4d0157d2009-11-22 12:37:06 -08001477 $Git::SVN::no_reuse_existing = undef;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001478 my $remotes = Git::SVN::read_all_remotes();
1479 foreach my $repo_id (sort keys %$remotes) {
Eric Wongdb03cd22007-02-13 00:38:02 -08001480 if ($remotes->{$repo_id}->{url}) {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001481 Git::SVN::fetch_all($repo_id, $remotes);
1482 }
Eric Wong706587f2007-01-18 17:50:01 -08001483 }
Eric Wong9d55b412006-06-12 15:53:13 -07001484}
1485
Eric Wong44320b92007-01-13 22:35:53 -08001486# this command is special because it requires no metadata
1487sub cmd_commit_diff {
1488 my ($ta, $tb, $url) = @_;
David Aguilar0b670ab2013-02-24 14:48:38 -08001489 my $usage = "usage: $0 commit-diff -r<revision> ".
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001490 "<tree-ish> <tree-ish> [<URL>]";
Eric Wong44320b92007-01-13 22:35:53 -08001491 fatal($usage) if (!defined $ta || !defined $tb);
Karl Hasselströmd72ab8c2008-05-17 17:07:09 +02001492 my $svn_path = '';
Eric Wong44320b92007-01-13 22:35:53 -08001493 if (!defined $url) {
1494 my $gs = eval { Git::SVN->new };
1495 if (!$gs) {
1496 fatal("Needed URL or usable git-svn --id in ",
1497 "the command-line\n", $usage);
1498 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001499 $url = $gs->url;
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001500 $svn_path = $gs->path;
Eric Wong44320b92007-01-13 22:35:53 -08001501 }
1502 unless (defined $_revision) {
1503 fatal("-r|--revision is a required argument\n", $usage);
1504 }
1505 if (defined $_message && defined $_file) {
1506 fatal("Both --message/-m and --file/-F specified ",
1507 "for the commit message.\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001508 "I have no idea what you mean");
Eric Wong44320b92007-01-13 22:35:53 -08001509 }
1510 if (defined $_file) {
1511 $_message = file_to_s($_file);
1512 } else {
1513 $_message ||= get_commit_entry($tb)->{log};
1514 }
1515 my $ra ||= Git::SVN::Ra->new($url);
1516 my $r = $_revision;
1517 if ($r eq 'HEAD') {
1518 $r = $ra->get_latest_revnum;
1519 } elsif ($r !~ /^\d+$/) {
1520 die "revision argument: $r not understood by git-svn\n";
1521 }
Eric Wong61395352007-01-27 14:33:08 -08001522 my %ed_opts = ( r => $r,
1523 log => $_message,
1524 ra => $ra,
1525 tree_a => $ta,
1526 tree_b => $tb,
1527 editor_cb => sub { print "Committed r$_[0]\n" },
1528 svn_path => $svn_path );
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001529 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong44320b92007-01-13 22:35:53 -08001530 print "No changes\n$ta == $tb\n";
1531 }
Eric Wong44320b92007-01-13 22:35:53 -08001532}
1533
David D. Kilzere6fefa92007-11-21 11:57:18 -08001534sub cmd_info {
Eric Wong4950eed2014-08-03 01:44:08 +00001535 my $path_arg = defined($_[0]) ? $_[0] : '.';
1536 my $path = $path_arg;
1537 if (File::Spec->file_name_is_absolute($path)) {
1538 $path = canonicalize_path($path);
1539
1540 my $toplevel = eval {
1541 my @cmd = qw/rev-parse --show-toplevel/;
1542 command_oneline(\@cmd, STDERR => 0);
1543 };
1544
1545 # remove $toplevel from the absolute path:
1546 my ($vol, $dirs, $file) = File::Spec->splitpath($path);
1547 my (undef, $tdirs, $tfile) = File::Spec->splitpath($toplevel);
1548 my @dirs = File::Spec->splitdir($dirs);
1549 my @tdirs = File::Spec->splitdir($tdirs);
1550 pop @dirs if $dirs[-1] eq '';
1551 pop @tdirs if $tdirs[-1] eq '';
1552 push @dirs, $file;
1553 push @tdirs, $tfile;
1554 while (@tdirs && @dirs && $tdirs[0] eq $dirs[0]) {
1555 shift @dirs;
1556 shift @tdirs;
1557 }
1558 $dirs = File::Spec->catdir(@dirs);
1559 $path = File::Spec->catpath($vol, $dirs);
1560
1561 $path = canonicalize_path($path);
1562 } else {
1563 $path = canonicalize_path($cmd_dir_prefix . $path);
1564 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001565 if (exists $_[1]) {
David D. Kilzere6fefa92007-11-21 11:57:18 -08001566 die "Too many arguments specified\n";
1567 }
1568
1569 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1570
1571 if (!$file_type && !$diff_status) {
Thomas Rast2cf3e3a2008-08-29 15:42:48 +02001572 print STDERR "svn: '$path' is not under version control\n";
1573 exit 1;
David D. Kilzere6fefa92007-11-21 11:57:18 -08001574 }
1575
1576 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1577 unless ($gs) {
1578 die "Unable to determine upstream SVN information from ",
1579 "working tree history\n";
1580 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001581
1582 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1583 $path = "." if $path eq "";
1584
Eric Wong4950eed2014-08-03 01:44:08 +00001585 my $full_url = canonicalize_url( add_path_to_url( $url, $path ) );
David D. Kilzere6fefa92007-11-21 11:57:18 -08001586
David D. Kilzer8b014d72007-11-21 11:57:19 -08001587 if ($_url) {
Michael G. Schwern8266fc82012-07-28 02:47:49 -07001588 print "$full_url\n";
David D. Kilzer8b014d72007-11-21 11:57:19 -08001589 return;
1590 }
1591
Eric Wong4950eed2014-08-03 01:44:08 +00001592 my $result = "Path: $path_arg\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001593 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
Michael G. Schwern8266fc82012-07-28 02:47:49 -07001594 $result .= "URL: $full_url\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001595
Eric Wonga5460eb2007-11-21 18:20:57 -08001596 eval {
1597 my $repos_root = $gs->repos_root;
1598 Git::SVN::remove_username($repos_root);
Michael G. Schwern9c27a572012-07-28 02:47:48 -07001599 $result .= "Repository Root: " . canonicalize_url($repos_root) . "\n";
Eric Wonga5460eb2007-11-21 18:20:57 -08001600 };
1601 if ($@) {
1602 $result .= "Repository Root: (offline)\n";
1603 }
Michael J Gruberb91a8a32010-03-03 21:34:31 +01001604 ::_req_svn();
Marcel Koeppen22ba47f2009-01-19 03:02:01 +01001605 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
Junio C Hamanof760c902012-05-02 19:53:50 +00001606 (::compare_svn_version('1.5.4') <= 0 || $file_type ne "dir");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001607 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1608
1609 $result .= "Node Kind: " .
1610 ($file_type eq "dir" ? "directory" : "file") . "\n";
1611
1612 my $schedule = $diff_status eq "A"
1613 ? "add"
1614 : ($diff_status eq "D" ? "delete" : "normal");
1615 $result .= "Schedule: $schedule\n";
1616
1617 if ($diff_status eq "A") {
1618 print $result, "\n";
1619 return;
1620 }
1621
1622 my ($lc_author, $lc_rev, $lc_date_utc);
Eric Wong4950eed2014-08-03 01:44:08 +00001623 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $path);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001624 my $log = command_output_pipe(@args);
1625 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1626 while (<$log>) {
1627 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1628 $lc_author = $1;
1629 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1630 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1631 (undef, $lc_rev, undef) = ::extract_metadata($1);
1632 }
1633 }
1634 close $log;
1635
1636 Git::SVN::Log::set_local_timezone();
1637
1638 $result .= "Last Changed Author: $lc_author\n";
1639 $result .= "Last Changed Rev: $lc_rev\n";
1640 $result .= "Last Changed Date: " .
1641 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1642
1643 if ($file_type ne "dir") {
1644 my $text_last_updated_date =
1645 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1646 $result .=
1647 "Text Last Updated: " .
1648 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1649 "\n";
1650 my $checksum;
1651 if ($diff_status eq "D") {
1652 my ($fh, $ctx) =
1653 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1654 if ($file_type eq "link") {
1655 my $file_name = <$fh>;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001656 $checksum = md5sum("link $file_name");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001657 } else {
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001658 $checksum = md5sum($fh);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001659 }
1660 command_close_pipe($fh, $ctx);
1661 } elsif ($file_type eq "link") {
1662 my $file_name =
1663 command(qw(cat-file blob), "HEAD:$path");
1664 $checksum =
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001665 md5sum("link " . $file_name);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001666 } else {
1667 open FILE, "<", $path or die $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001668 $checksum = md5sum(\*FILE);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001669 close FILE or die $!;
1670 }
1671 $result .= "Checksum: " . $checksum . "\n";
1672 }
1673
1674 print $result, "\n";
1675}
1676
Ben Jackson195643f2009-06-03 20:45:52 -07001677sub cmd_reset {
1678 my $target = shift || $_revision or die "SVN revision required\n";
1679 $target = $1 if $target =~ /^r(\d+)$/;
1680 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1681 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1682 unless ($gs) {
1683 die "Unable to determine upstream SVN information from ".
1684 "history\n";
1685 }
1686 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
Jonathan Nieder70ee0b72010-05-04 16:36:47 -07001687 die "Cannot find SVN revision $target\n" unless defined($c);
Ben Jackson195643f2009-06-03 20:45:52 -07001688 $gs->rev_map_set($r, $c, 'reset', $uuid);
1689 print "r$r = $c ($gs->{ref_id})\n";
1690}
1691
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001692sub cmd_gc {
Eric Wong47092c12015-01-15 08:54:22 +00001693 require File::Find;
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07001694 if (!can_compress()) {
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001695 warn "Compress::Zlib could not be found; unhandled.log " .
1696 "files will not be compressed.\n";
1697 }
Eric Wong47092c12015-01-15 08:54:22 +00001698 File::Find::find({ wanted => \&gc_directory, no_chdir => 1},
1699 "$ENV{GIT_DIR}/svn");
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001700}
1701
Eric Wong3397f9d2006-02-16 01:24:16 -08001702########################### utility functions #########################
1703
Eric Wong905f8b72007-02-16 03:22:40 -08001704sub rebase_cmd {
1705 my @cmd = qw/rebase/;
1706 push @cmd, '-v' if $_verbose;
1707 push @cmd, qw/--merge/ if $_merge;
1708 push @cmd, "--strategy=$_strategy" if $_strategy;
Avishay Lavieb64e1f52012-05-15 11:45:50 +03001709 push @cmd, "--preserve-merges" if $_preserve_merges;
Eric Wong905f8b72007-02-16 03:22:40 -08001710 @cmd;
1711}
1712
Eric Wong1e889ef2007-02-16 01:45:13 -08001713sub post_fetch_checkout {
1714 return if $_no_checkout;
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +01001715 return if verify_ref('HEAD^0');
Eric Wong1e889ef2007-02-16 01:45:13 -08001716 my $gs = $Git::SVN::_head or return;
Eric Wong1e889ef2007-02-16 01:45:13 -08001717
Eric Wongb186a262009-08-12 16:01:59 -07001718 # look for "trunk" ref if it exists
1719 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1720 my $fetch = $remote->{fetch};
1721 if ($fetch) {
1722 foreach my $p (keys %$fetch) {
1723 basename($fetch->{$p}) eq 'trunk' or next;
1724 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1725 last;
1726 }
1727 }
1728
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +01001729 command_noisy(qw(update-ref HEAD), $gs->refname);
1730 return unless verify_ref('HEAD^0');
Eric Wong1e889ef2007-02-16 01:45:13 -08001731
1732 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1733 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1734 return if -f $index;
1735
Matthias Lederhofer7ae3df82007-06-03 16:48:16 +02001736 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
Eric Wong1e889ef2007-02-16 01:45:13 -08001737 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1738 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1739 print STDERR "Checked out HEAD:\n ",
1740 $gs->full_url, " r", $gs->last_rev, "\n";
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001741 if (auto_create_empty_directories($gs)) {
1742 $gs->mkemptydirs($gs->last_rev);
1743 }
Eric Wong1e889ef2007-02-16 01:45:13 -08001744}
1745
Eric Wong98327e52007-01-04 18:02:00 -08001746sub complete_svn_url {
1747 my ($url, $path) = @_;
Michael G. Schwern5eaa1fd2012-07-28 02:47:52 -07001748 $path = canonicalize_path($path);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001749
1750 # If the path is not a URL...
Eric Wong98327e52007-01-04 18:02:00 -08001751 if ($path !~ m#^[a-z\+]+://#) {
Eric Wong98327e52007-01-04 18:02:00 -08001752 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1753 fatal("E: '$path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001754 "and a separate URL is not specified");
Eric Wong98327e52007-01-04 18:02:00 -08001755 }
Eric Wong706587f2007-01-18 17:50:01 -08001756 return ($url, $path);
Eric Wong98327e52007-01-04 18:02:00 -08001757 }
Eric Wong706587f2007-01-18 17:50:01 -08001758 return ($path, '');
Eric Wong98327e52007-01-04 18:02:00 -08001759}
1760
Eric Wong9d55b412006-06-12 15:53:13 -07001761sub complete_url_ls_init {
Eric Wong706587f2007-01-18 17:50:01 -08001762 my ($ra, $repo_path, $switch, $pfx) = @_;
1763 unless ($repo_path) {
Eric Wong9d55b412006-06-12 15:53:13 -07001764 print STDERR "W: $switch not specified\n";
1765 return;
1766 }
Michael G. Schwern5eaa1fd2012-07-28 02:47:52 -07001767 $repo_path = canonicalize_path($repo_path);
Eric Wong706587f2007-01-18 17:50:01 -08001768 if ($repo_path =~ m#^[a-z\+]+://#) {
1769 $ra = Git::SVN::Ra->new($repo_path);
1770 $repo_path = '';
Eric Wonge7db67e2007-01-11 17:09:26 -08001771 } else {
Eric Wong706587f2007-01-18 17:50:01 -08001772 $repo_path =~ s#^/+##;
Eric Wonge7db67e2007-01-11 17:09:26 -08001773 unless ($ra) {
Eric Wong706587f2007-01-18 17:50:01 -08001774 fatal("E: '$repo_path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001775 "and a separate URL is not specified");
Eric Wong9d55b412006-06-12 15:53:13 -07001776 }
Eric Wonge7db67e2007-01-11 17:09:26 -08001777 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001778 my $url = $ra->url;
Eric Wongb4d57e52007-02-14 15:10:44 -08001779 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1780 my $k = "svn-remote.$gs->{repo_id}.url";
1781 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001782 if ($orig_url && ($orig_url ne $gs->url)) {
Eric Wongb4d57e52007-02-14 15:10:44 -08001783 die "$k already set: $orig_url\n",
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001784 "wanted to set to: $gs->url\n";
Eric Wong88cf4102007-02-01 03:59:07 -08001785 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001786 command_oneline('config', $k, $gs->url) unless $orig_url;
1787
Michael G. Schwern5eaa1fd2012-07-28 02:47:52 -07001788 my $remote_path = join_paths( $gs->path, $repo_path );
Eric Wong5268f9e2009-08-16 14:22:12 -07001789 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
Eric Wongb4d57e52007-02-14 15:10:44 -08001790 $remote_path =~ s#^/##g;
Eric Wonged0b9d42008-03-14 11:01:23 -07001791 $remote_path .= "/*" if $remote_path !~ /\*/;
Eric Wongb4d57e52007-02-14 15:10:44 -08001792 my ($n) = ($switch =~ /^--(\w+)/);
1793 if (length $pfx && $pfx !~ m#/$#) {
1794 die "--prefix='$pfx' must have a trailing slash '/'\n";
Eric Wong9d55b412006-06-12 15:53:13 -07001795 }
Marcus Griep570d35c2008-08-08 01:41:57 -07001796 command_noisy('config',
Marc Branchaud62244062009-06-23 13:02:08 -04001797 '--add',
Marcus Griep570d35c2008-08-08 01:41:57 -07001798 "svn-remote.$gs->{repo_id}.$n",
1799 "$remote_path:refs/remotes/$pfx*" .
1800 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
Eric Wong9d55b412006-06-12 15:53:13 -07001801}
1802
Eric Wongaef4e922006-12-15 10:59:54 -08001803sub verify_ref {
1804 my ($ref) = @_;
Eric Wong2c5c1d52006-12-28 01:16:21 -08001805 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1806 { STDERR => 0 }); };
Eric Wongaef4e922006-12-15 10:59:54 -08001807}
1808
Eric Wonga5e0ced2006-06-12 15:23:48 -07001809sub get_tree_from_treeish {
Eric Wongcf52b8f2006-02-20 10:57:28 -08001810 my ($treeish) = @_;
Eric Wong44320b92007-01-13 22:35:53 -08001811 # $treeish can be a symbolic ref, too:
Eric Wongaef4e922006-12-15 10:59:54 -08001812 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001813 my $expected;
1814 while ($type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001815 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001816 }
1817 if ($type eq 'commit') {
Eric Wongaef4e922006-12-15 10:59:54 -08001818 $expected = (grep /^tree /, command(qw/cat-file commit/,
1819 $treeish))[0];
Eric Wong44320b92007-01-13 22:35:53 -08001820 ($expected) = ($expected =~ /^tree ($sha1)$/o);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001821 die "Unable to get tree from $treeish\n" unless $expected;
1822 } elsif ($type eq 'tree') {
1823 $expected = $treeish;
1824 } else {
1825 die "$treeish is a $type, expected tree, tag or commit\n";
1826 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07001827 return $expected;
1828}
Eric Wongcf52b8f2006-02-20 10:57:28 -08001829
Eric Wong44320b92007-01-13 22:35:53 -08001830sub get_commit_entry {
1831 my ($treeish) = shift;
1832 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1833 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1834 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1835 open my $log_fh, '>', $commit_editmsg or croak $!;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001836
Eric Wong44320b92007-01-13 22:35:53 -08001837 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wong4ad45152006-07-09 20:20:48 -07001838 if ($type eq 'commit' || $type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001839 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
Eric Wong44320b92007-01-13 22:35:53 -08001840 $type, $treeish);
Eric Wong3397f9d2006-02-16 01:24:16 -08001841 my $in_msg = 0;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001842 my $author;
1843 my $saw_from = 0;
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001844 my $msgbuf = "";
Eric Wong3397f9d2006-02-16 01:24:16 -08001845 while (<$msg_fh>) {
1846 if (!$in_msg) {
Nicolas Vigier60786bd2013-09-30 16:46:14 +02001847 $in_msg = 1 if (/^$/);
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001848 $author = $1 if (/^author (.*>)/);
Eric Wongdf746c52006-03-03 01:20:08 -08001849 } elsif (/^git-svn-id: /) {
Eric Wong44320b92007-01-13 22:35:53 -08001850 # skip this for now, we regenerate the
1851 # correct one on re-fetch anyways
1852 # TODO: set *:merge properties or like...
Eric Wong3397f9d2006-02-16 01:24:16 -08001853 } else {
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001854 if (/^From:/ || /^Signed-off-by:/) {
1855 $saw_from = 1;
1856 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001857 $msgbuf .= $_;
Eric Wong3397f9d2006-02-16 01:24:16 -08001858 }
1859 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001860 $msgbuf =~ s/\s+$//s;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001861 if ($Git::SVN::_add_author_from && defined($author)
1862 && !$saw_from) {
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001863 $msgbuf .= "\n\nFrom: $author";
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001864 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001865 print $log_fh $msgbuf or croak $!;
Eric Wongaef4e922006-12-15 10:59:54 -08001866 command_close_pipe($msg_fh, $ctx);
Eric Wong3397f9d2006-02-16 01:24:16 -08001867 }
Eric Wong44320b92007-01-13 22:35:53 -08001868 close $log_fh or croak $!;
Eric Wong3397f9d2006-02-16 01:24:16 -08001869
1870 if ($_edit || ($type eq 'tree')) {
Jonathan Niederb4479f02009-10-30 20:42:34 -05001871 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1872 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
Eric Wong3397f9d2006-02-16 01:24:16 -08001873 }
Eric Wong44320b92007-01-13 22:35:53 -08001874 rename $commit_editmsg, $commit_msg or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07001875 {
Eric Wongb510df82009-05-28 00:56:23 -07001876 require Encode;
Eric Wong16fc08e2008-10-29 23:49:26 -07001877 # SVN requires messages to be UTF-8 when entering the repo
1878 local $/;
1879 open $log_fh, '<', $commit_msg or croak $!;
1880 binmode $log_fh;
1881 chomp($log_entry{log} = <$log_fh>);
1882
Eric Wongb510df82009-05-28 00:56:23 -07001883 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1884 my $msg = $log_entry{log};
1885
1886 eval { $msg = Encode::decode($enc, $msg, 1) };
1887 if ($@) {
1888 die "Could not decode as $enc:\n", $msg,
1889 "\nPerhaps you need to set i18n.commitencoding\n";
Eric Wong16fc08e2008-10-29 23:49:26 -07001890 }
Eric Wongb510df82009-05-28 00:56:23 -07001891
1892 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1893 die "Could not encode as UTF-8:\n$msg\n" if $@;
1894
1895 $log_entry{log} = $msg;
1896
Eric Wong16fc08e2008-10-29 23:49:26 -07001897 close $log_fh or croak $!;
1898 }
Eric Wong44320b92007-01-13 22:35:53 -08001899 unlink $commit_msg;
1900 \%log_entry;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001901}
1902
Eric Wong3397f9d2006-02-16 01:24:16 -08001903sub s_to_file {
1904 my ($str, $file, $mode) = @_;
1905 open my $fd,'>',$file or croak $!;
1906 print $fd $str,"\n" or croak $!;
1907 close $fd or croak $!;
1908 chmod ($mode &~ umask, $file) if (defined $mode);
1909}
1910
1911sub file_to_s {
1912 my $file = shift;
1913 open my $fd,'<',$file or croak "$!: file: $file\n";
1914 local $/;
1915 my $ret = <$fd>;
1916 close $fd or croak $!;
1917 $ret =~ s/\s*$//s;
1918 return $ret;
1919}
1920
Eric Wongeeb0abe2006-03-03 01:20:08 -08001921# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1922sub load_authors {
1923 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001924 my $log = $cmd eq 'log';
Eric Wongeeb0abe2006-03-03 01:20:08 -08001925 while (<$authors>) {
1926 chomp;
Michael J Gruberf7c6de02015-09-10 14:32:13 +02001927 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.*)>\s*$/;
Eric Wongeeb0abe2006-03-03 01:20:08 -08001928 my ($user, $name, $email) = ($1, $2, $3);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001929 if ($log) {
1930 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1931 } else {
1932 $users{$user} = [$name, $email];
1933 }
Eric Wong79bb8d82006-06-01 02:35:44 -07001934 }
1935 close $authors or croak $!;
1936}
1937
Tom Princee0d10e12007-01-28 16:16:53 -08001938# convert GetOpt::Long specs for use by git-config
Eric Wong1a305822009-11-14 14:25:11 -08001939sub read_git_config {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001940 my $opts = shift;
Eric Wong97ae0912007-02-11 15:21:24 -08001941 my @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001942 foreach my $o (keys %$opts) {
Eric Wong97ae0912007-02-11 15:21:24 -08001943 # if we have mixedCase and a long option-only, then
1944 # it's a config-only variable that we don't need for
1945 # the command-line.
1946 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001947 my $v = $opts->{$o};
Eric Wong97ae0912007-02-11 15:21:24 -08001948 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001949 $key =~ s/-//g;
Deskin Miller225f1d02008-10-23 15:21:34 -04001950 my $arg = 'git config';
Eric Wongb8c92ca2006-05-24 01:40:37 -07001951 $arg .= ' --int' if ($o =~ /[:=]i$/);
1952 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1953 if (ref $v eq 'ARRAY') {
1954 chomp(my @tmp = `$arg --get-all svn.$key`);
1955 @$v = @tmp if @tmp;
1956 } else {
1957 chomp(my $tmp = `$arg --get svn.$key`);
Eric Wong77742842007-02-10 21:07:12 -08001958 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001959 $$v = $tmp;
1960 }
1961 }
1962 }
Eric Wong97ae0912007-02-11 15:21:24 -08001963 delete @$opts{@config_only} if @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001964}
1965
Eric Wong79bb8d82006-06-01 02:35:44 -07001966sub extract_metadata {
Eric Wongc1927a82006-06-27 19:39:11 -07001967 my $id = shift or return (undef, undef, undef);
Sam Vilain3dfab992007-06-30 20:56:13 +12001968 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
Eric Wongb3e95932009-07-11 14:13:12 -07001969 \s([a-f\d\-]+)$/ix);
Eric Wonge70dc782006-11-23 14:54:04 -08001970 if (!defined $rev || !$uuid || !$url) {
Eric Wong79bb8d82006-06-01 02:35:44 -07001971 # some of the original repositories I made had
Pavel Roskin82e5a822006-07-10 01:50:18 -04001972 # identifiers like this:
Eric Wongb3e95932009-07-11 14:13:12 -07001973 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
Eric Wong79bb8d82006-06-01 02:35:44 -07001974 }
1975 return ($url, $rev, $uuid);
1976}
1977
Eric Wongc1927a82006-06-27 19:39:11 -07001978sub cmt_metadata {
1979 return extract_metadata((grep(/^git-svn-id: /,
Eric Wongaef4e922006-12-15 10:59:54 -08001980 command(qw/cat-file commit/, shift)))[-1]);
Eric Wongc1927a82006-06-27 19:39:11 -07001981}
1982
Boris Byk6ea42032009-04-11 00:32:41 +04001983sub cmt_sha2rev_batch {
1984 my %s2r;
1985 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1986 my $list = shift;
1987
1988 foreach my $sha (@{$list}) {
1989 my $first = 1;
1990 my $size = 0;
1991 print $out $sha, "\n";
1992
1993 while (my $line = <$in>) {
1994 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1995 last;
1996 } elsif ($first &&
1997 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1998 $first = 0;
1999 $size = $1;
2000 next;
2001 } elsif ($line =~ /^(git-svn-id: )/) {
2002 my (undef, $rev, undef) =
2003 extract_metadata($line);
2004 $s2r{$sha} = $rev;
2005 }
2006
2007 $size -= length($line);
2008 last if ($size == 0);
2009 }
2010 }
2011
2012 command_close_bidi_pipe($pid, $in, $out, $ctx);
2013
2014 return \%s2r;
2015}
2016
Eric Wong905f8b72007-02-16 03:22:40 -08002017sub working_head_info {
2018 my ($head, $refs) = @_;
Ævar Arnfjörð Bjarmason83cf21f2012-02-12 00:23:06 +00002019 my @args = qw/rev-list --first-parent --pretty=medium/;
Slava Kardakov9926f662013-06-05 11:31:27 -07002020 my ($fh, $ctx) = command_output_pipe(@args, $head, "--");
Sam Vilain3dfab992007-06-30 20:56:13 +12002021 my $hash;
Sam Vilain40cb8f82007-06-30 20:56:14 +12002022 my %max;
Sam Vilain3dfab992007-06-30 20:56:13 +12002023 while (<$fh>) {
2024 if ( m{^commit ($::sha1)$} ) {
2025 unshift @$refs, $hash if $hash and $refs;
2026 $hash = $1;
2027 next;
2028 }
2029 next unless s{^\s*(git-svn-id:)}{$1};
2030 my ($url, $rev, $uuid) = extract_metadata($_);
Eric Wong13c823f2007-04-08 00:59:19 -07002031 if (defined $url && defined $rev) {
Sam Vilain40cb8f82007-06-30 20:56:14 +12002032 next if $max{$url} and $max{$url} < $rev;
Eric Wong13c823f2007-04-08 00:59:19 -07002033 if (my $gs = Git::SVN->find_by_url($url)) {
João Abecasis63c56022008-07-14 16:28:04 +01002034 my $c = $gs->rev_map_get($rev, $uuid);
Adam Robenb03c7a62007-04-25 11:50:32 -07002035 if ($c && $c eq $hash) {
Eric Wong13c823f2007-04-08 00:59:19 -07002036 close $fh; # break the pipe
2037 return ($url, $rev, $uuid, $gs);
Sam Vilain40cb8f82007-06-30 20:56:14 +12002038 } else {
Eric Wong060610c2007-12-08 23:27:41 -08002039 $max{$url} ||= $gs->rev_map_max;
Eric Wong13c823f2007-04-08 00:59:19 -07002040 }
2041 }
2042 }
Eric Wong905f8b72007-02-16 03:22:40 -08002043 }
Eric Wong13c823f2007-04-08 00:59:19 -07002044 command_close_pipe($fh, $ctx);
2045 (undef, undef, undef, undef);
Eric Wong905f8b72007-02-16 03:22:40 -08002046}
2047
Eric Wong733a65a2007-06-13 02:23:28 -07002048sub read_commit_parents {
2049 my ($parents, $c) = @_;
Eric Wong7b02b852007-09-08 16:33:08 -07002050 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
2051 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
2052 @{$parents->{$c}} = split(/ /, $p);
Eric Wong733a65a2007-06-13 02:23:28 -07002053}
2054
2055sub linearize_history {
2056 my ($gs, $refs) = @_;
2057 my %parents;
2058 foreach my $c (@$refs) {
2059 read_commit_parents(\%parents, $c);
2060 }
2061
2062 my @linear_refs;
2063 my %skip = ();
2064 my $last_svn_commit = $gs->last_commit;
2065 foreach my $c (reverse @$refs) {
2066 next if $c eq $last_svn_commit;
2067 last if $skip{$c};
2068
2069 unshift @linear_refs, $c;
2070 $skip{$c} = 1;
2071
2072 # we only want the first parent to diff against for linear
2073 # history, we save the rest to inject when we finalize the
2074 # svn commit
2075 my $fp_a = verify_ref("$c~1");
2076 my $fp_b = shift @{$parents{$c}} if $parents{$c};
2077 if (!$fp_a || !$fp_b) {
2078 die "Commit $c\n",
2079 "has no parent commit, and therefore ",
2080 "nothing to diff against.\n",
2081 "You should be working from a repository ",
2082 "originally created by git-svn\n";
2083 }
2084 if ($fp_a ne $fp_b) {
2085 die "$c~1 = $fp_a, however parsing commit $c ",
2086 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
2087 }
2088
2089 foreach my $p (@{$parents{$c}}) {
2090 $skip{$p} = 1;
2091 }
2092 }
2093 (\@linear_refs, \%parents);
2094}
2095
David D. Kilzere6fefa92007-11-21 11:57:18 -08002096sub find_file_type_and_diff_status {
2097 my ($path) = @_;
Dmitry Potapov107cee52008-07-21 00:14:07 +04002098 return ('dir', '') if $path eq '';
David D. Kilzere6fefa92007-11-21 11:57:18 -08002099
2100 my $diff_output =
2101 command_oneline(qw(diff --cached --name-status --), $path) || "";
2102 my $diff_status = (split(' ', $diff_output))[0] || "";
2103
2104 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
2105
2106 return (undef, undef) if !$diff_status && !$ls_tree;
2107
2108 if ($diff_status eq "A") {
2109 return ("link", $diff_status) if -l $path;
2110 return ("dir", $diff_status) if -d $path;
2111 return ("file", $diff_status);
2112 }
2113
2114 my $mode = (split(' ', $ls_tree))[0] || "";
2115
2116 return ("link", $diff_status) if $mode eq "120000";
2117 return ("dir", $diff_status) if $mode eq "040000";
2118 return ("file", $diff_status);
2119}
2120
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002121sub md5sum {
2122 my $arg = shift;
2123 my $ref = ref $arg;
Eric Wong47092c12015-01-15 08:54:22 +00002124 require Digest::MD5;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002125 my $md5 = Digest::MD5->new();
Marcus Griep0b191382008-08-12 12:00:53 -04002126 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002127 $md5->addfile($arg) or croak $!;
2128 } elsif ($ref eq 'SCALAR') {
2129 $md5->add($$arg) or croak $!;
2130 } elsif (!$ref) {
2131 $md5->add($arg) or croak $!;
2132 } else {
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07002133 fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002134 }
2135 return $md5->hexdigest();
2136}
2137
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002138sub gc_directory {
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07002139 if (can_compress() && -f $_ && basename($_) eq "unhandled.log") {
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002140 my $out_filename = $_ . ".gz";
2141 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
2142 binmode $in_fh;
2143 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
2144 die "Unable to open $out_filename: $!\n";
2145
2146 my $res;
2147 while ($res = sysread($in_fh, my $str, 1024)) {
2148 $gz->gzwrite($str) or
2149 die "Unable to write: ".$gz->gzerror()."!\n";
2150 }
Eric Wong47092c12015-01-15 08:54:22 +00002151 no warnings 'once'; # $File::Find::name would warn
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002152 unlink $_ or die "unlink $File::Find::name: $!\n";
2153 } elsif (-f $_ && basename($_) eq "index") {
2154 unlink $_ or die "unlink $_: $!\n";
2155 }
2156}
2157
Eric Wong3397f9d2006-02-16 01:24:16 -08002158__END__
2159
2160Data structures:
2161
Eric Wong4bb9ed02007-02-03 13:29:17 -08002162
2163$remotes = { # returned by read_all_remotes()
2164 'svn' => {
2165 # svn-remote.svn.url=https://svn.musicpd.org
2166 url => 'https://svn.musicpd.org',
2167 # svn-remote.svn.fetch=mpd/trunk:trunk
2168 fetch => {
2169 'mpd/trunk' => 'trunk',
2170 },
2171 # svn-remote.svn.tags=mpd/tags/*:tags/*
2172 tags => {
2173 path => {
2174 left => 'mpd/tags',
2175 right => '',
2176 regex => qr!mpd/tags/([^/]+)$!,
2177 glob => 'tags/*',
2178 },
2179 ref => {
2180 left => 'tags',
2181 right => '',
2182 regex => qr!tags/([^/]+)$!,
2183 glob => 'tags/*',
2184 },
2185 }
2186 }
2187};
2188
Eric Wong44320b92007-01-13 22:35:53 -08002189$log_entry hashref as returned by libsvn_log_entry()
Eric Wong3397f9d2006-02-16 01:24:16 -08002190{
Eric Wong44320b92007-01-13 22:35:53 -08002191 log => 'whitespace-formatted log entry
Eric Wong3397f9d2006-02-16 01:24:16 -08002192', # trailing newline is preserved
2193 revision => '8', # integer
2194 date => '2004-02-24T17:01:44.108345Z', # commit date
2195 author => 'committer name'
2196};
2197
Eric Wong6e8548c2007-01-27 01:32:00 -08002198
2199# this is generated by generate_diff();
Eric Wong3397f9d2006-02-16 01:24:16 -08002200@mods = array of diff-index line hashes, each element represents one line
2201 of diff-index output
2202
2203diff-index line ($m hash)
2204{
2205 mode_a => first column of diff-index output, no leading ':',
2206 mode_b => second column of diff-index output,
2207 sha1_b => sha1sum of the final blob,
Eric Wongac8e0b92006-03-03 01:20:07 -08002208 chg => change type [MCRADT],
Eric Wong3397f9d2006-02-16 01:24:16 -08002209 file_a => original file name of a file (iff chg is 'C' or 'R')
2210 file_b => new/current file name of a file (any chg)
2211}
2212;
Eric Wonga5e0ced2006-06-12 15:23:48 -07002213
Eric Wonga00439a2006-06-27 19:39:13 -07002214# retval of read_url_paths{,_all}();
2215$l_map = {
2216 # repository root url
2217 'https://svn.musicpd.org' => {
2218 # repository path # GIT_SVN_ID
2219 'mpd/trunk' => 'trunk',
2220 'mpd/tags/0.11.5' => 'tags/0.11.5',
2221 },
2222}
2223
Eric Wonga5e0ced2006-06-12 15:23:48 -07002224Notes:
2225 I don't trust the each() function on unless I created %hash myself
2226 because the internal iterator may not have started at base.