blob: 9b046b693fe82c992b3844bf6e8f79214dfa7a59 [file] [log] [blame]
Eric Wong3397f9d2006-02-16 01:24:16 -08001#!/usr/bin/env perl
Eric Wong551ce282006-02-20 10:57:29 -08002# Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3# License: GPL v2 or later
Eric Wong3397f9d2006-02-16 01:24:16 -08004use warnings;
5use strict;
6use vars qw/ $AUTHOR $VERSION
Adam Robenffe256f2008-05-23 16:19:41 +02007 $sha1 $sha1_short $_revision $_repository
Mark Lodato36db1ed2009-05-14 21:27:15 -04008 $_q $_authors $_authors_prog %users/;
Eric Wong3397f9d2006-02-16 01:24:16 -08009$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
Eric Wong60d02cc2006-07-06 00:14:16 -070010$VERSION = '@@GIT_VERSION@@';
Eric Wong13ccd6d2006-03-29 22:37:18 -080011
Benoit Sigoure15153452007-10-16 16:36:50 +020012# From which subdir have we been invoked?
13my $cmd_dir_prefix = eval {
14 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
15} || '';
16
Eric Wong5253dc32007-02-20 01:36:30 -080017my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
Eric Wong706587f2007-01-18 17:50:01 -080018$ENV{GIT_DIR} ||= '.git';
Eric Wong9fa00b62007-02-03 12:49:48 -080019$Git::SVN::default_repo_id = 'svn';
Eric Wong8b8fc062007-01-22 11:44:57 -080020$Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn';
Eric Wong6af1db42007-02-14 16:04:10 -080021$Git::SVN::Ra::_log_window_size = 100;
Eric Wong6b488292009-07-25 00:00:50 -070022$Git::SVN::_minimize_url = 'unset';
Eric Wong13ccd6d2006-03-29 22:37:18 -080023
Karthik Rf3a87d92009-08-18 18:54:40 -050024if (! exists $ENV{SVN_SSH}) {
25 if (exists $ENV{GIT_SSH}) {
26 $ENV{SVN_SSH} = $ENV{GIT_SSH};
27 if ($^O eq 'msys') {
28 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
Sebastian Schubertha004fb92010-01-23 15:20:28 +010029 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
Karthik Rf3a87d92009-08-18 18:54:40 -050030 }
31 }
32}
33
Eric Wongf8c9d1d2007-01-12 02:35:20 -080034$Git::SVN::Log::TZ = $ENV{TZ};
Eric Wong3397f9d2006-02-16 01:24:16 -080035$ENV{TZ} = 'UTC';
Eric Wonga00439a2006-06-27 19:39:13 -070036$| = 1; # unbuffer STDOUT
Eric Wong3397f9d2006-02-16 01:24:16 -080037
Benoit Sigoure207f1a72007-10-16 16:36:52 +020038sub fatal (@) { print STDERR "@_\n"; exit 1 }
josh robbd32fad22010-02-24 16:13:50 +130039sub _req_svn {
40 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
41 require SVN::Ra;
42 require SVN::Delta;
43 if ($SVN::Core::VERSION lt '1.1.0') {
44 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
45 }
Eric Wongb9c85182006-12-15 23:58:07 -080046}
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -050047my $can_compress = eval { require Compress::Zlib; 1};
Eric Wongd81bf822007-01-10 01:22:38 -080048push @Git::SVN::Ra::ISA, 'SVN::Ra';
Eric Wongb9c85182006-12-15 23:58:07 -080049push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
50push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
Eric Wong3397f9d2006-02-16 01:24:16 -080051use Carp qw/croak/;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -080052use Digest::MD5;
Eric Wong3397f9d2006-02-16 01:24:16 -080053use IO::File qw//;
54use File::Basename qw/dirname basename/;
55use File::Path qw/mkpath/;
Mark Lodato36db1ed2009-05-14 21:27:15 -040056use File::Spec;
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -050057use File::Find;
Eric Wong512b6202007-04-03 01:57:08 -070058use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
Eric Wong968bdf12006-06-15 13:36:12 -070059use IPC::Open3;
Eric Wong336f1712007-01-11 02:14:43 -080060use Git;
Eric Wonga5e0ced2006-06-12 15:23:48 -070061
Eric Wong336f1712007-01-11 02:14:43 -080062BEGIN {
Sam Vilainc5f71ad2007-06-15 15:43:59 +120063 # import functions from Git into our packages, en masse
64 no strict 'refs';
Eric Wong336f1712007-01-11 02:14:43 -080065 foreach (qw/command command_oneline command_noisy command_output_pipe
Boris Byk6ea42032009-04-11 00:32:41 +040066 command_input_pipe command_close_pipe
67 command_bidi_pipe command_close_bidi_pipe/) {
Sam Vilainc5f71ad2007-06-15 15:43:59 +120068 for my $package ( qw(SVN::Git::Editor SVN::Git::Fetcher
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -080069 Git::SVN::Migration Git::SVN::Log Git::SVN),
Sam Vilainc5f71ad2007-06-15 15:43:59 +120070 __PACKAGE__) {
71 *{"${package}::$_"} = \&{"Git::$_"};
72 }
Eric Wong336f1712007-01-11 02:14:43 -080073 }
Eric Wong336f1712007-01-11 02:14:43 -080074}
75
Eric Wongb9c85182006-12-15 23:58:07 -080076my ($SVN);
Eric Wong83e99402006-10-11 18:19:55 -070077
Eric Wongf8c9d1d2007-01-12 02:35:20 -080078$sha1 = qr/[a-f\d]{40}/;
79$sha1_short = qr/[a-f\d]{4,40}/;
Eric Wong44320b92007-01-13 22:35:53 -080080my ($_stdin, $_help, $_edit,
Marc Branchaud62244062009-06-23 13:02:08 -040081 $_message, $_file, $_branch_dest,
Eric Wongd05d72e2007-01-15 22:59:26 -080082 $_template, $_shared,
Jason Merrillc2abd832009-04-06 16:37:59 -040083 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
Eric Wongdee41f32007-03-13 11:40:36 -070084 $_merge, $_strategy, $_dry_run, $_local,
Steven Grimm4be40382008-05-10 22:11:18 -070085 $_prefix, $_no_checkout, $_url, $_verbose,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -070086 $_git_format, $_commit_url, $_tag);
Eric Wong0bed5ea2007-02-09 02:45:03 -080087$Git::SVN::_follow_parent = 1;
Simon Arlott49750f32009-03-30 19:31:41 +010088$_q ||= 0;
Eric Wong706587f2007-01-18 17:50:01 -080089my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
90 'config-dir=s' => \$Git::SVN::Ra::config_dir,
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +020091 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
92 'ignore-paths=s' => \$SVN::Git::Fetcher::_ignore_regex );
Eric Wong0bed5ea2007-02-09 02:45:03 -080093my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
Eric Wongdc5869c2006-05-24 02:07:32 -070094 'authors-file|A=s' => \$_authors,
Mark Lodato36db1ed2009-05-14 21:27:15 -040095 'authors-prog=s' => \$_authors_prog,
Eric Wongecc712d2007-01-31 12:28:10 -080096 'repack:i' => \$Git::SVN::_repack,
Eric Wong97ae0912007-02-11 15:21:24 -080097 'noMetadata' => \$Git::SVN::_no_metadata,
98 'useSvmProps' => \$Git::SVN::_use_svm_props,
Eric Wong62e349d2007-02-16 19:57:29 -080099 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
Eric Wong6af1db42007-02-14 16:04:10 -0800100 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
Eric Wong1e889ef2007-02-16 01:45:13 -0800101 'no-checkout' => \$_no_checkout,
Simon Arlott49750f32009-03-30 19:31:41 +0100102 'quiet|q+' => \$_q,
Eric Wongecc712d2007-01-31 12:28:10 -0800103 'repack-flags|repack-args|repack-opts=s' =>
104 \$Git::SVN::_repack_flags,
Andy Whitcroft70ae04e2007-11-22 13:44:42 +0000105 'use-log-author' => \$Git::SVN::_use_log_author,
Avery Pennarun6aa9ba12008-04-15 21:04:17 -0400106 'add-author-from' => \$Git::SVN::_add_author_from,
Pete Harlane82f0d72009-01-17 20:10:14 -0800107 'localtime' => \$Git::SVN::_localtime,
Eric Wong706587f2007-01-18 17:50:01 -0800108 %remote_opts );
Eric Wong36f5b1f2006-05-23 19:23:41 -0700109
Marc Branchaud62244062009-06-23 13:02:08 -0400110my ($_trunk, @_tags, @_branches, $_stdlayout);
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800111my %icv;
Eric Wongdadc6d22007-02-14 12:27:41 -0800112my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
Marc Branchaud62244062009-06-23 13:02:08 -0400113 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
114 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
martin f. krafft8f728fb2007-07-14 11:25:28 +0200115 'stdlayout|s' => \$_stdlayout,
Eric Wong6b488292009-07-25 00:00:50 -0700116 'minimize-url|m!' => \$Git::SVN::_minimize_url,
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800117 'no-metadata' => sub { $icv{noMetadata} = 1 },
118 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
119 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
120 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
Jay Soffian3e18ce12010-01-23 03:30:00 -0500121 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
Eric Wongdadc6d22007-02-14 12:27:41 -0800122 %remote_opts );
Eric Wong27e9fb82006-06-27 19:39:12 -0700123my %cmt_opts = ( 'edit|e' => \$_edit,
Eric Wong24e22aa2007-01-29 00:07:49 -0800124 'rmdir' => \$SVN::Git::Editor::_rmdir,
125 'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
126 'l=i' => \$SVN::Git::Editor::_rename_limit,
127 'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
Eric Wong27e9fb82006-06-27 19:39:12 -0700128);
Eric Wong9d55b412006-06-12 15:53:13 -0700129
Eric Wong3397f9d2006-02-16 01:24:16 -0800130my %cmd = (
Eric Wong2a3240b2007-01-04 18:09:56 -0800131 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
Eric Wonge98671e2007-02-14 02:21:19 -0800132 { 'revision|r=s' => \$_revision,
Eric Wong905f8b72007-02-16 03:22:40 -0800133 'fetch-all|all' => \$_fetch_all,
Jason Merrillc2abd832009-04-06 16:37:59 -0400134 'parent|p' => \$_fetch_parent,
Eric Wonge98671e2007-02-14 02:21:19 -0800135 %fc_opts } ],
Eric Wong0425ea92007-02-16 18:45:01 -0800136 clone => [ \&cmd_clone, "Initialize and fetch revisions",
137 { 'revision|r=s' => \$_revision,
138 %fc_opts, %init_opts } ],
Eric Wongd2866f92007-01-11 12:26:16 -0800139 init => [ \&cmd_init, "Initialize a repo for tracking" .
Eric Wongf8ab6b72006-05-31 15:49:56 -0700140 " (requires URL argument)",
Eric Wong9d55b412006-06-12 15:53:13 -0700141 \%init_opts ],
Eric Wongdadc6d22007-02-14 12:27:41 -0800142 'multi-init' => [ \&cmd_multi_init,
143 "Deprecated alias for ".
144 "'$0 init -T<trunk> -b<branches> -t<tags>'",
145 \%init_opts ],
Eric Wongd7ad3be2007-01-14 03:14:28 -0800146 dcommit => [ \&cmd_dcommit,
147 'Commit several diffs to merge with upstream',
Eric Wong3289e862006-12-15 23:58:08 -0800148 { 'merge|m|M' => \$_merge,
149 'strategy|s=s' => \$_strategy,
Eric Wong905f8b72007-02-16 03:22:40 -0800150 'verbose|v' => \$_verbose,
Eric Wong3289e862006-12-15 23:58:08 -0800151 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800152 'fetch-all|all' => \$_fetch_all,
Eric Wongba24e742008-08-07 02:06:16 -0700153 'commit-url=s' => \$_commit_url,
154 'revision|r=i' => \$_revision,
Karl Hasselström171af112007-05-03 07:51:35 +0200155 'no-rebase' => \$_no_rebase,
Eric Wong4b155222006-12-22 21:59:24 -0800156 %cmt_opts, %fc_opts } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700157 branch => [ \&cmd_branch,
158 'Create a branch in the SVN repository',
159 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400160 'destination|d=s' => \$_branch_dest,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700161 'dry-run|n' => \$_dry_run,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100162 'tag|t' => \$_tag,
163 'username=s' => \$Git::SVN::Prompt::_username,
164 'commit-url=s' => \$_commit_url } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700165 tag => [ sub { $_tag = 1; cmd_branch(@_) },
166 'Create a tag in the SVN repository',
167 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400168 'destination|d=s' => \$_branch_dest,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100169 'dry-run|n' => \$_dry_run,
170 'username=s' => \$Git::SVN::Prompt::_username,
171 'commit-url=s' => \$_commit_url } ],
Eric Wong1ce255d2007-01-14 23:21:16 -0800172 'set-tree' => [ \&cmd_set_tree,
173 "Set an SVN repository to a git tree-ish",
Robin H. Johnsone84dc6d2009-05-05 11:16:14 -0700174 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200175 'create-ignore' => [ \&cmd_create_ignore,
176 'Create a .gitignore per svn:ignore',
177 { 'revision|r=i' => \$_revision
178 } ],
Eric Wong6111b932009-11-15 18:57:16 -0800179 'mkdirs' => [ \&cmd_mkdirs ,
180 "recreate empty directories after a checkout",
181 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure15153452007-10-16 16:36:50 +0200182 'propget' => [ \&cmd_propget,
183 'Print the value of a property on a file or directory',
184 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200185 'proplist' => [ \&cmd_proplist,
186 'List all properties of a file or directory',
187 { 'revision|r=i' => \$_revision } ],
Eric Wong5969cbe2007-01-11 17:58:39 -0800188 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200189 { 'revision|r=i' => \$_revision
Lars Hjemli05b4df32007-09-05 11:35:29 +0200190 } ],
Vineet Kumar2d879792007-11-19 14:56:15 -0800191 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
192 { 'revision|r=i' => \$_revision
193 } ],
Eric Wong1c8443b2007-01-14 02:17:00 -0800194 'multi-fetch' => [ \&cmd_multi_fetch,
Eric Wonge98671e2007-02-14 02:21:19 -0800195 "Deprecated alias for $0 fetch --all",
196 { 'revision|r=s' => \$_revision, %fc_opts } ],
Eric Wong706587f2007-01-18 17:50:01 -0800197 'migrate' => [ sub { },
198 # no-op, we automatically run this anyways,
Eric Wong706587f2007-01-18 17:50:01 -0800199 'Migrate configuration/metadata/layout from
200 previous versions of git-svn',
Eric Wonga836a0e2007-02-14 19:34:56 -0800201 { 'minimize' => \$Git::SVN::Migration::_minimize,
202 %remote_opts } ],
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800203 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
204 { 'limit=i' => \$Git::SVN::Log::limit,
Eric Wong79bb8d82006-06-01 02:35:44 -0700205 'revision|r=s' => \$_revision,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800206 'verbose|v' => \$Git::SVN::Log::verbose,
207 'incremental' => \$Git::SVN::Log::incremental,
208 'oneline' => \$Git::SVN::Log::oneline,
209 'show-commit' => \$Git::SVN::Log::show_commit,
210 'non-recursive' => \$Git::SVN::Log::non_recursive,
Eric Wong79bb8d82006-06-01 02:35:44 -0700211 'authors-file|A=s' => \$_authors,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800212 'color' => \$Git::SVN::Log::color,
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200213 'pager=s' => \$Git::SVN::Log::pager
Eric Wong79bb8d82006-06-01 02:35:44 -0700214 } ],
Eric Wong222566e2008-08-08 01:41:58 -0700215 'find-rev' => [ \&cmd_find_rev,
216 "Translate between SVN revision numbers and tree-ish",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200217 {} ],
Eric Wong905f8b72007-02-16 03:22:40 -0800218 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
219 { 'merge|m|M' => \$_merge,
220 'verbose|v' => \$_verbose,
221 'strategy|s=s' => \$_strategy,
Eric Wongdee41f32007-03-13 11:40:36 -0700222 'local|l' => \$_local,
Eric Wong905f8b72007-02-16 03:22:40 -0800223 'fetch-all|all' => \$_fetch_all,
Seth Falcon7d45e142008-05-19 20:29:17 -0700224 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800225 %fc_opts } ],
Eric Wong44320b92007-01-13 22:35:53 -0800226 'commit-diff' => [ \&cmd_commit_diff,
227 'Commit a diff between two trees',
Eric Wong27e9fb82006-06-27 19:39:12 -0700228 { 'message|m=s' => \$_message,
229 'file|F=s' => \$_file,
Eric Wong45bf4732006-11-09 01:19:37 -0800230 'revision|r=s' => \$_revision,
Eric Wong27e9fb82006-06-27 19:39:12 -0700231 %cmt_opts } ],
David D. Kilzere6fefa92007-11-21 11:57:18 -0800232 'info' => [ \&cmd_info,
233 "Show info about the latest SVN revision
234 on the current branch",
David D. Kilzer8b014d72007-11-21 11:57:19 -0800235 { 'url' => \$_url, } ],
Tim Stoakes6fb53752008-02-10 15:21:08 +1030236 'blame' => [ \&Git::SVN::Log::cmd_blame,
237 "Show what revision and author last modified each line of a file",
Steven Grimm4be40382008-05-10 22:11:18 -0700238 { 'git-format' => \$_git_format } ],
Ben Jackson195643f2009-06-03 20:45:52 -0700239 'reset' => [ \&cmd_reset,
240 "Undo fetches back to the specified SVN revision",
241 { 'revision|r=s' => \$_revision,
242 'parent|p' => \$_fetch_parent } ],
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -0500243 'gc' => [ \&cmd_gc,
244 "Compress unhandled.log files in .git/svn and remove " .
245 "index files in .git/svn",
246 {} ],
Eric Wong3397f9d2006-02-16 01:24:16 -0800247);
Eric Wong9d55b412006-06-12 15:53:13 -0700248
Eric Wong3397f9d2006-02-16 01:24:16 -0800249my $cmd;
250for (my $i = 0; $i < @ARGV; $i++) {
251 if (defined $cmd{$ARGV[$i]}) {
252 $cmd = $ARGV[$i];
253 splice @ARGV, $i, 1;
254 last;
Ben Jackson9a8c92a2009-05-30 18:17:06 -0700255 } elsif ($ARGV[$i] eq 'help') {
256 $cmd = $ARGV[$i+1];
257 usage(0);
Eric Wong3397f9d2006-02-16 01:24:16 -0800258 }
259};
260
Eric Wong540424b2007-12-19 00:31:43 -0800261# make sure we're always running at the top-level working directory
262unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
Eric Wong5253dc32007-02-20 01:36:30 -0800263 unless (-d $ENV{GIT_DIR}) {
264 if ($git_dir_user_set) {
265 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
266 "but it is not a directory\n";
267 }
268 my $git_dir = delete $ENV{GIT_DIR};
Deskin Millerfe4003f2008-11-06 00:07:39 -0500269 my $cdup = undef;
270 git_cmd_try {
271 $cdup = command_oneline(qw/rev-parse --show-cdup/);
272 $git_dir = '.' unless ($cdup);
273 chomp $cdup if ($cdup);
274 $cdup = "." unless ($cdup && length $cdup);
275 } "Already at toplevel, but $git_dir not found\n";
Eric Wong5253dc32007-02-20 01:36:30 -0800276 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
277 unless (-d $git_dir) {
278 die "$git_dir still not found after going to ",
279 "'$cdup'\n";
280 }
281 $ENV{GIT_DIR} = $git_dir;
282 }
Adam Robenffe256f2008-05-23 16:19:41 +0200283 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wong5253dc32007-02-20 01:36:30 -0800284}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100285
286my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
287
Eric Wong1a305822009-11-14 14:25:11 -0800288read_git_config(\%opts);
Eric Wong222566e2008-08-08 01:41:58 -0700289if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
290 Getopt::Long::Configure('pass_through');
291}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100292my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
293 'minimize-connections' => \$Git::SVN::Migration::_minimize,
294 'id|i=s' => \$Git::SVN::default_ref_id,
295 'svn-remote|remote|R=s' => sub {
296 $Git::SVN::no_reuse_existing = 1;
297 $Git::SVN::default_repo_id = $_[1] });
298exit 1 if (!$rv && $cmd && $cmd ne 'log');
299
300usage(0) if $_help;
301version() if $_version;
302usage(1) unless defined $cmd;
303load_authors() if $_authors;
Mark Lodato36db1ed2009-05-14 21:27:15 -0400304if (defined $_authors_prog) {
305 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
306}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100307
Eric Wong0425ea92007-02-16 18:45:01 -0800308unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
Eric Wong706587f2007-01-18 17:50:01 -0800309 Git::SVN::Migration::migration_check();
310}
Eric Wongecc712d2007-01-31 12:28:10 -0800311Git::SVN::init_vars();
Eric Wongb805b442007-01-22 13:52:04 -0800312eval {
313 Git::SVN::verify_remotes_sanity();
314 $cmd{$cmd}->[0]->(@ARGV);
315};
316fatal $@ if $@;
Eric Wong1e889ef2007-02-16 01:45:13 -0800317post_fetch_checkout();
Eric Wong3397f9d2006-02-16 01:24:16 -0800318exit 0;
319
320####################### primary functions ######################
321sub usage {
322 my $exit = shift || 0;
323 my $fd = $exit ? \*STDERR : \*STDOUT;
324 print $fd <<"";
325git-svn - bidirectional operations between a single Subversion tree and git
Stephan Beyer1b1dd232008-07-13 15:36:15 +0200326Usage: git svn <command> [options] [arguments]\n
Eric Wong448c81b2006-03-03 01:20:09 -0800327
328 print $fd "Available commands:\n" unless $cmd;
Eric Wong3397f9d2006-02-16 01:24:16 -0800329
330 foreach (sort keys %cmd) {
Eric Wong448c81b2006-03-03 01:20:09 -0800331 next if $cmd && $cmd ne $_;
Eric Wonga836a0e2007-02-14 19:34:56 -0800332 next if /^multi-/; # don't show deprecated commands
Eric Wongb203b762006-10-11 14:53:36 -0700333 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
Benoit Sigoureaa807bc2007-11-03 19:53:34 +0100334 foreach (sort keys %{$cmd{$_}->[2]}) {
Eric Wong512b6202007-04-03 01:57:08 -0700335 # mixed-case options are for .git/config only
336 next if /[A-Z]/ && /^[a-z]+$/i;
Eric Wong448c81b2006-03-03 01:20:09 -0800337 # prints out arguments as they should be passed:
Eric Wongb8c92ca2006-05-24 01:40:37 -0700338 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
Eric Wongb203b762006-10-11 14:53:36 -0700339 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
Eric Wong448c81b2006-03-03 01:20:09 -0800340 "--$_" : "-$_" }
341 split /\|/,$_)," $x\n";
342 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800343 }
344 print $fd <<"";
Eric Wong448c81b2006-03-03 01:20:09 -0800345\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
346arbitrary identifier if you're tracking multiple SVN branches/repositories in
347one git repository and want to keep them separate. See git-svn(1) for more
348information.
Eric Wong3397f9d2006-02-16 01:24:16 -0800349
350 exit $exit;
351}
352
Eric Wong551ce282006-02-20 10:57:29 -0800353sub version {
Michael J Gruberb0779242010-03-04 11:23:53 +0100354 ::_req_svn();
Eric Wong7d60ab22006-12-28 01:16:20 -0800355 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
Eric Wong551ce282006-02-20 10:57:29 -0800356 exit 0;
357}
358
Eric Wong8164b652007-01-11 15:35:55 -0800359sub do_git_init_db {
360 unless (-d $ENV{GIT_DIR}) {
361 my @init_db = ('init');
362 push @init_db, "--template=$_template" if defined $_template;
Eric Wongdadc6d22007-02-14 12:27:41 -0800363 if (defined $_shared) {
364 if ($_shared =~ /[a-z]/) {
365 push @init_db, "--shared=$_shared";
366 } else {
367 push @init_db, "--shared";
368 }
369 }
Eric Wong8164b652007-01-11 15:35:55 -0800370 command_noisy(@init_db);
Adam Robenffe256f2008-05-23 16:19:41 +0200371 $_repository = Git->repository(Repository => ".git");
Eric Wong8164b652007-01-11 15:35:55 -0800372 }
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800373 my $set;
374 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
375 foreach my $i (keys %icv) {
376 die "'$set' and '$i' cannot both be set\n" if $set;
377 next unless defined $icv{$i};
378 command_noisy('config', "$pfx.$i", $icv{$i});
379 $set = $i;
380 }
Ben Jackson88ec2052009-04-11 10:46:18 -0700381 my $ignore_regex = \$SVN::Git::Fetcher::_ignore_regex;
382 command_noisy('config', "$pfx.ignore-paths", $$ignore_regex)
383 if defined $$ignore_regex;
Eric Wong8164b652007-01-11 15:35:55 -0800384}
385
Eric Wongdadc6d22007-02-14 12:27:41 -0800386sub init_subdir {
387 my $repo_path = shift or return;
388 mkpath([$repo_path]) unless -d $repo_path;
389 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
Eric Wongf30603f2007-02-23 01:26:26 -0800390 $ENV{GIT_DIR} = '.git';
Adam Robenffe256f2008-05-23 16:19:41 +0200391 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wongdadc6d22007-02-14 12:27:41 -0800392}
393
Eric Wong0425ea92007-02-16 18:45:01 -0800394sub cmd_clone {
395 my ($url, $path) = @_;
396 if (!defined $path &&
Marc Branchaud62244062009-06-23 13:02:08 -0400397 (defined $_trunk || @_branches || @_tags ||
martin f. krafft8f728fb2007-07-14 11:25:28 +0200398 defined $_stdlayout) &&
Eric Wong0425ea92007-02-16 18:45:01 -0800399 $url !~ m#^[a-z\+]+://#) {
400 $path = $url;
401 }
Eric Wong0425ea92007-02-16 18:45:01 -0800402 $path = basename($url) if !defined $path || !length $path;
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500403 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
Eric Wongf30603f2007-02-23 01:26:26 -0800404 cmd_init($url, $path);
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500405 command_oneline('config', 'svn.authorsfile', $authors_absolute)
406 if $_authors;
Alex Vandiverf5841502009-12-08 15:54:11 -0500407 Git::SVN::fetch_all($Git::SVN::default_repo_id);
Eric Wong0425ea92007-02-16 18:45:01 -0800408}
409
Eric Wongd2866f92007-01-11 12:26:16 -0800410sub cmd_init {
martin f. krafft8f728fb2007-07-14 11:25:28 +0200411 if (defined $_stdlayout) {
412 $_trunk = 'trunk' if (!defined $_trunk);
Marc Branchaud62244062009-06-23 13:02:08 -0400413 @_tags = 'tags' if (! @_tags);
414 @_branches = 'branches' if (! @_branches);
martin f. krafft8f728fb2007-07-14 11:25:28 +0200415 }
Marc Branchaud62244062009-06-23 13:02:08 -0400416 if (defined $_trunk || @_branches || @_tags) {
Eric Wongdadc6d22007-02-14 12:27:41 -0800417 return cmd_multi_init(@_);
Eric Wong03e0ea82006-06-30 21:42:53 -0700418 }
Eric Wongdadc6d22007-02-14 12:27:41 -0800419 my $url = shift or die "SVN repository location required ",
420 "as a command-line argument\n";
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200421 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -0800422 init_subdir(@_);
Eric Wong8164b652007-01-11 15:35:55 -0800423 do_git_init_db();
Eric Wong03e0ea82006-06-30 21:42:53 -0700424
Eric Wong6b488292009-07-25 00:00:50 -0700425 if ($Git::SVN::_minimize_url eq 'unset') {
426 $Git::SVN::_minimize_url = 0;
427 }
428
Eric Wong706587f2007-01-18 17:50:01 -0800429 Git::SVN->init($url);
Eric Wong3397f9d2006-02-16 01:24:16 -0800430}
431
Eric Wong2a3240b2007-01-04 18:09:56 -0800432sub cmd_fetch {
Eric Wonge98671e2007-02-14 02:21:19 -0800433 if (grep /^\d+=./, @_) {
434 die "'<rev>=<commit>' fetch arguments are ",
435 "no longer supported.\n";
Eric Wong07a1c952007-01-22 15:47:41 -0800436 }
Eric Wonge98671e2007-02-14 02:21:19 -0800437 my ($remote) = @_;
438 if (@_ > 1) {
Jason Merrillc2abd832009-04-06 16:37:59 -0400439 die "Usage: $0 fetch [--all] [--parent] [svn-remote]\n";
Eric Wonge98671e2007-02-14 02:21:19 -0800440 }
Eric Wong4d0157d2009-11-22 12:37:06 -0800441 $Git::SVN::no_reuse_existing = undef;
Jason Merrillc2abd832009-04-06 16:37:59 -0400442 if ($_fetch_parent) {
443 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
444 unless ($gs) {
445 die "Unable to determine upstream SVN information from ",
446 "working tree history\n";
447 }
448 # just fetch, don't checkout.
449 $_no_checkout = 'true';
450 $_fetch_all ? $gs->fetch_all : $gs->fetch;
451 } elsif ($_fetch_all) {
Eric Wonge98671e2007-02-14 02:21:19 -0800452 cmd_multi_fetch();
453 } else {
Jason Merrillc2abd832009-04-06 16:37:59 -0400454 $remote ||= $Git::SVN::default_repo_id;
Eric Wonge98671e2007-02-14 02:21:19 -0800455 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
Eric Wong1c8443b2007-01-14 02:17:00 -0800456 }
Eric Wong2a3240b2007-01-04 18:09:56 -0800457}
458
Eric Wong1ce255d2007-01-14 23:21:16 -0800459sub cmd_set_tree {
Eric Wong3397f9d2006-02-16 01:24:16 -0800460 my (@commits) = @_;
461 if ($_stdin || !@commits) {
462 print "Reading from stdin...\n";
463 @commits = ();
464 while (<STDIN>) {
Eric Wong1ca72ae2006-03-03 01:20:09 -0800465 if (/\b($sha1_short)\b/o) {
Eric Wong3397f9d2006-02-16 01:24:16 -0800466 unshift @commits, $1;
467 }
468 }
469 }
470 my @revs;
Eric Wong8de010a2006-02-20 10:57:26 -0800471 foreach my $c (@commits) {
Eric Wongaef4e922006-12-15 10:59:54 -0800472 my @tmp = command('rev-parse',$c);
Eric Wong8de010a2006-02-20 10:57:26 -0800473 if (scalar @tmp == 1) {
474 push @revs, $tmp[0];
475 } elsif (scalar @tmp > 1) {
Eric Wongaef4e922006-12-15 10:59:54 -0800476 push @revs, reverse(command('rev-list',@tmp));
Eric Wong8de010a2006-02-20 10:57:26 -0800477 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200478 fatal "Failed to rev-parse $c";
Eric Wong8de010a2006-02-20 10:57:26 -0800479 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800480 }
Eric Wong1ce255d2007-01-14 23:21:16 -0800481 my $gs = Git::SVN->new;
482 my ($r_last, $cmt_last) = $gs->last_rev_commit;
483 $gs->fetch;
Eric Wong97f69872007-01-25 11:53:13 -0800484 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
Eric Wong1ce255d2007-01-14 23:21:16 -0800485 fatal "There are new revisions that were fetched ",
486 "and need to be merged (or acknowledged) ",
487 "before committing.\nlast rev: $r_last\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200488 " current: $gs->{last_rev}";
Eric Wong1ce255d2007-01-14 23:21:16 -0800489 }
490 $gs->set_tree($_) foreach @revs;
Eric Wonga5e0ced2006-06-12 15:23:48 -0700491 print "Done committing ",scalar @revs," revisions to SVN\n";
Eric Wong3157dd92007-12-13 08:27:34 -0800492 unlink $gs->{index};
Eric Wonga5e0ced2006-06-12 15:23:48 -0700493}
494
Eric Wongd7ad3be2007-01-14 03:14:28 -0800495sub cmd_dcommit {
496 my $head = shift;
David D. Kilzer181264a2010-08-02 12:58:19 -0700497 command_noisy(qw/update-index --refresh/);
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100498 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
David Reiss826a9332007-11-13 13:47:26 -0800499 'Cannot dcommit with a dirty index. Commit your changes first, '
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100500 . "or stash them with `git stash'.\n";
Eric Wongd7ad3be2007-01-14 03:14:28 -0800501 $head ||= 'HEAD';
Thomas Rast5eec27e2009-05-29 17:09:42 +0200502
503 my $old_head;
504 if ($head ne 'HEAD') {
505 $old_head = eval {
506 command_oneline([qw/symbolic-ref -q HEAD/])
507 };
508 if ($old_head) {
509 $old_head =~ s{^refs/heads/}{};
510 } else {
511 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
512 }
513 command(['checkout', $head], STDERR => 0);
514 }
515
Eric Wonga8ae2622007-02-13 14:22:11 -0800516 my @refs;
Thomas Rast5eec27e2009-05-29 17:09:42 +0200517 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
Thomas Rast2cb61102008-08-31 15:50:59 +0200518 unless ($gs) {
519 die "Unable to determine upstream SVN information from ",
520 "$head history.\nPerhaps the repository is empty.";
521 }
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100522
523 if (defined $_commit_url) {
524 $url = $_commit_url;
525 } else {
526 $url = eval { command_oneline('config', '--get',
527 "svn-remote.$gs->{repo_id}.commiturl") };
528 if (!$url) {
529 $url = $gs->full_url
530 }
531 }
532
Eric Wongba24e742008-08-07 02:06:16 -0700533 my $last_rev = $_revision if defined $_revision;
Matthieu Moy59b0c242008-04-24 20:06:36 +0200534 if ($url) {
535 print "Committing to $url ...\n";
536 }
Eric Wong733a65a2007-06-13 02:23:28 -0700537 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
Eric Wong751eb392007-08-31 18:16:12 -0700538 if ($_no_rebase && scalar(@$linear_refs) > 1) {
539 warn "Attempting to commit more than one change while ",
540 "--no-rebase is enabled.\n",
541 "If these changes depend on each other, re-running ",
Eric Wong7dfa16b2008-01-02 10:09:49 -0800542 "without --no-rebase may be required."
Eric Wong751eb392007-08-31 18:16:12 -0700543 }
Eric Wong711521e2008-08-20 00:30:06 -0700544 my $expect_url = $url;
545 Git::SVN::remove_username($expect_url);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800546 while (1) {
547 my $d = shift @$linear_refs or last;
Eric Wong45bf4732006-11-09 01:19:37 -0800548 unless (defined $last_rev) {
549 (undef, $last_rev, undef) = cmt_metadata("$d~1");
550 unless (defined $last_rev) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800551 fatal "Unable to extract revision information ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200552 "from commit $d~1";
Eric Wong45bf4732006-11-09 01:19:37 -0800553 }
554 }
Eric Wongb22d4492006-08-26 00:01:23 -0700555 if ($_dry_run) {
556 print "diff-tree $d~1 $d\n";
557 } else {
Eric Wong751eb392007-08-31 18:16:12 -0700558 my $cmt_rev;
Eric Wongd7ad3be2007-01-14 03:14:28 -0800559 my %ed_opts = ( r => $last_rev,
Eric Wong61395352007-01-27 14:33:08 -0800560 log => get_commit_entry($d)->{log},
Eric Wongba24e742008-08-07 02:06:16 -0700561 ra => Git::SVN::Ra->new($url),
Konstantin V. Arkhipov3caf3202007-11-14 03:52:02 +0300562 config => SVN::Core::config_get_config(
563 $Git::SVN::Ra::config_dir
564 ),
Eric Wong61395352007-01-27 14:33:08 -0800565 tree_a => "$d~1",
566 tree_b => $d,
567 editor_cb => sub {
568 print "Committed r$_[0]\n";
Eric Wong751eb392007-08-31 18:16:12 -0700569 $cmt_rev = $_[0];
570 },
Eric Wonga8ae2622007-02-13 14:22:11 -0800571 svn_path => '');
Eric Wong61395352007-01-27 14:33:08 -0800572 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800573 print "No changes\n$d~1 == $d\n";
Eric Wong733a65a2007-06-13 02:23:28 -0700574 } elsif ($parents->{$d} && @{$parents->{$d}}) {
Eric Wong751eb392007-08-31 18:16:12 -0700575 $gs->{inject_parents_dcommit}->{$cmt_rev} =
Eric Wong733a65a2007-06-13 02:23:28 -0700576 $parents->{$d};
Eric Wongd7ad3be2007-01-14 03:14:28 -0800577 }
Eric Wong751eb392007-08-31 18:16:12 -0700578 $_fetch_all ? $gs->fetch_all : $gs->fetch;
Eric Wong7dfa16b2008-01-02 10:09:49 -0800579 $last_rev = $cmt_rev;
Eric Wong751eb392007-08-31 18:16:12 -0700580 next if $_no_rebase;
581
582 # we always want to rebase against the current HEAD,
583 # not any head that was passed to us
Eric Wongc74d9ac2007-11-05 03:21:47 -0800584 my @diff = command('diff-tree', $d,
Eric Wong751eb392007-08-31 18:16:12 -0700585 $gs->refname, '--');
586 my @finish;
587 if (@diff) {
588 @finish = rebase_cmd();
Eric Wongc74d9ac2007-11-05 03:21:47 -0800589 print STDERR "W: $d and ", $gs->refname,
Eric Wong751eb392007-08-31 18:16:12 -0700590 " differ, using @finish:\n",
Eric Wongc74d9ac2007-11-05 03:21:47 -0800591 join("\n", @diff), "\n";
Eric Wong751eb392007-08-31 18:16:12 -0700592 } else {
593 print "No changes between current HEAD and ",
594 $gs->refname,
595 "\nResetting to the latest ",
596 $gs->refname, "\n";
597 @finish = qw/reset --mixed/;
598 }
599 command_noisy(@finish, $gs->refname);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800600 if (@diff) {
601 @refs = ();
602 my ($url_, $rev_, $uuid_, $gs_) =
Thomas Rast5eec27e2009-05-29 17:09:42 +0200603 working_head_info('HEAD', \@refs);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800604 my ($linear_refs_, $parents_) =
605 linearize_history($gs_, \@refs);
606 if (scalar(@$linear_refs) !=
607 scalar(@$linear_refs_)) {
608 fatal "# of revisions changed ",
609 "\nbefore:\n",
610 join("\n", @$linear_refs),
611 "\n\nafter:\n",
612 join("\n", @$linear_refs_), "\n",
613 'If you are attempting to commit ',
614 "merges, try running:\n\t",
615 'git rebase --interactive',
616 '--preserve-merges ',
617 $gs->refname,
618 "\nBefore dcommitting";
619 }
Eric Wong711521e2008-08-20 00:30:06 -0700620 if ($url_ ne $expect_url) {
Alexander Gavrilovc03c1f72009-10-09 11:01:04 +0400621 if ($url_ eq $gs->metadata_url) {
622 print
623 "Accepting rewritten URL:",
624 " $url_\n";
625 } else {
626 fatal
627 "URL mismatch after rebase:",
628 " $url_ != $expect_url";
629 }
Eric Wongc74d9ac2007-11-05 03:21:47 -0800630 }
631 if ($uuid_ ne $uuid) {
632 fatal "uuid mismatch after rebase: ",
633 "$uuid_ != $uuid";
634 }
635 # remap parents
636 my (%p, @l, $i);
637 for ($i = 0; $i < scalar @$linear_refs; $i++) {
638 my $new = $linear_refs_->[$i] or next;
639 $p{$new} =
640 $parents->{$linear_refs->[$i]};
641 push @l, $new;
642 }
643 $parents = \%p;
644 $linear_refs = \@l;
645 }
Eric Wongb22d4492006-08-26 00:01:23 -0700646 }
647 }
Thomas Rast5eec27e2009-05-29 17:09:42 +0200648
649 if ($old_head) {
650 my $new_head = command_oneline(qw/rev-parse HEAD/);
651 my $new_is_symbolic = eval {
652 command_oneline(qw/symbolic-ref -q HEAD/);
653 };
654 if ($new_is_symbolic) {
655 print "dcommitted the branch ", $head, "\n";
656 } else {
657 print "dcommitted on a detached HEAD because you gave ",
658 "a revision argument.\n",
659 "The rewritten commit is: ", $new_head, "\n";
660 }
661 command(['checkout', $old_head], STDERR => 0);
662 }
663
Eric Wong3157dd92007-12-13 08:27:34 -0800664 unlink $gs->{index};
Eric Wongb22d4492006-08-26 00:01:23 -0700665}
666
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700667sub cmd_branch {
668 my ($branch_name, $head) = @_;
669
670 unless (defined $branch_name && length $branch_name) {
671 die(($_tag ? "tag" : "branch") . " name required\n");
672 }
673 $head ||= 'HEAD';
674
Eric Wong150d38c2009-12-22 22:40:18 -0800675 my (undef, $rev, undef, $gs) = working_head_info($head);
676 my $src = $gs->full_url;
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700677
Deskin Millera0fbc872008-12-01 21:43:00 -0500678 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
Marc Branchaud62244062009-06-23 13:02:08 -0400679 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
680 my $glob;
681 if ($#{$allglobs} == 0) {
682 $glob = $allglobs->[0];
683 } else {
684 unless(defined $_branch_dest) {
685 die "Multiple ",
686 $_tag ? "tag" : "branch",
687 " paths defined for Subversion repository.\n",
688 "You must specify where you want to create the ",
689 $_tag ? "tag" : "branch",
690 " with the --destination argument.\n";
691 }
692 foreach my $g (@{$allglobs}) {
Eric Wongf7050592009-06-25 02:28:15 -0700693 # SVN::Git::Editor could probably be moved to Git.pm..
694 my $re = SVN::Git::Editor::glob2pat($g->{path}->{left});
695 if ($_branch_dest =~ /$re/) {
Marc Branchaud62244062009-06-23 13:02:08 -0400696 $glob = $g;
697 last;
698 }
699 }
700 unless (defined $glob) {
Eric Wongeaa14ff2009-07-25 01:36:06 -0700701 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
702 foreach my $g (@{$allglobs}) {
703 $g->{path}->{left} =~ /$dest_re/ or next;
704 if (defined $glob) {
705 die "Ambiguous destination: ",
706 $_branch_dest, "\nmatches both '",
707 $glob->{path}->{left}, "' and '",
708 $g->{path}->{left}, "'\n";
709 }
710 $glob = $g;
711 }
712 unless (defined $glob) {
713 die "Unknown ",
714 $_tag ? "tag" : "branch",
715 " destination $_branch_dest\n";
716 }
Marc Branchaud62244062009-06-23 13:02:08 -0400717 }
718 }
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700719 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
Igor Mironov99bacd62010-01-12 03:21:23 +1100720 my $url;
721 if (defined $_commit_url) {
722 $url = $_commit_url;
723 } else {
724 $url = eval { command_oneline('config', '--get',
725 "svn-remote.$gs->{repo_id}.commiturl") };
726 if (!$url) {
727 $url = $remote->{url};
728 }
729 }
730 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700731
Igor Mironova83b91e2010-01-12 03:20:43 +1100732 if ($dst =~ /^https:/ && $src =~ /^http:/) {
733 $src=~s/^http:/https:/;
734 }
735
josh robbd32fad22010-02-24 16:13:50 +1300736 ::_req_svn();
737
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700738 my $ctx = SVN::Client->new(
739 auth => Git::SVN::Ra::_auth_providers(),
740 log_msg => sub {
741 ${ $_[0] } = defined $_message
742 ? $_message
743 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
744 . $branch_name;
745 },
746 );
747
748 eval {
749 $ctx->ls($dst, 'HEAD', 0);
750 } and die "branch ${branch_name} already exists\n";
751
752 print "Copying ${src} at r${rev} to ${dst}...\n";
753 $ctx->copy($src, $rev, $dst)
754 unless $_dry_run;
755
756 $gs->fetch_all;
757}
758
Adam Roben26e60162007-04-27 11:57:53 -0700759sub cmd_find_rev {
Marc-Andre Lureauea14e6c2008-03-11 10:00:45 +0200760 my $revision_or_hash = shift or die "SVN or git revision required ",
761 "as a command-line argument\n";
Adam Roben26e60162007-04-27 11:57:53 -0700762 my $result;
763 if ($revision_or_hash =~ /^r\d+$/) {
Adam Robenb3cb7e42007-04-29 01:35:27 -0700764 my $head = shift;
765 $head ||= 'HEAD';
766 my @refs;
João Abecasis63c56022008-07-14 16:28:04 +0100767 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
Adam Robenb3cb7e42007-04-29 01:35:27 -0700768 unless ($gs) {
769 die "Unable to determine upstream SVN information from ",
770 "$head history\n";
Adam Roben26e60162007-04-27 11:57:53 -0700771 }
Adam Robenb3cb7e42007-04-29 01:35:27 -0700772 my $desired_revision = substr($revision_or_hash, 1);
João Abecasis63c56022008-07-14 16:28:04 +0100773 $result = $gs->rev_map_get($desired_revision, $uuid);
Adam Roben26e60162007-04-27 11:57:53 -0700774 } else {
775 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
776 $result = $rev;
777 }
778 print "$result\n" if $result;
779}
780
Eric Wong905f8b72007-02-16 03:22:40 -0800781sub cmd_rebase {
782 command_noisy(qw/update-index --refresh/);
Eric Wong13c823f2007-04-08 00:59:19 -0700783 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
784 unless ($gs) {
Eric Wong905f8b72007-02-16 03:22:40 -0800785 die "Unable to determine upstream SVN information from ",
786 "working tree history\n";
787 }
Seth Falcon7d45e142008-05-19 20:29:17 -0700788 if ($_dry_run) {
789 print "Remote Branch: " . $gs->refname . "\n";
790 print "SVN URL: " . $url . "\n";
791 return;
792 }
Eric Wong905f8b72007-02-16 03:22:40 -0800793 if (command(qw/diff-index HEAD --/)) {
794 print STDERR "Cannot rebase with uncommited changes:\n";
795 command_noisy('status');
796 exit 1;
797 }
Eric Wongdee41f32007-03-13 11:40:36 -0700798 unless ($_local) {
Steven Grimmcec0d5a2007-11-29 11:54:39 -0800799 # rebase will checkout for us, so no need to do it explicitly
800 $_no_checkout = 'true';
Eric Wongdee41f32007-03-13 11:40:36 -0700801 $_fetch_all ? $gs->fetch_all : $gs->fetch;
802 }
Eric Wong905f8b72007-02-16 03:22:40 -0800803 command_noisy(rebase_cmd(), $gs->refname);
Eric Wong6111b932009-11-15 18:57:16 -0800804 $gs->mkemptydirs;
Eric Wong905f8b72007-02-16 03:22:40 -0800805}
806
Eric Wong5969cbe2007-01-11 17:58:39 -0800807sub cmd_show_ignore {
Eric Wong13c823f2007-04-08 00:59:19 -0700808 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
809 $gs ||= Git::SVN->new;
Eric Wong5969cbe2007-01-11 17:58:39 -0800810 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Benoit Sigoure01bdab82007-10-16 16:36:48 +0200811 $gs->prop_walk($gs->{path}, $r, sub {
812 my ($gs, $path, $props) = @_;
813 print STDOUT "\n# $path\n";
814 my $s = $props->{'svn:ignore'} or return;
815 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +0200816 $s =~ s/^\n+//;
Benoit Sigoure01bdab82007-10-16 16:36:48 +0200817 chomp $s;
818 $s =~ s#^#$path#gm;
819 print STDOUT "$s\n";
820 });
Eric Wonga5e0ced2006-06-12 15:23:48 -0700821}
822
Vineet Kumar2d879792007-11-19 14:56:15 -0800823sub cmd_show_externals {
824 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
825 $gs ||= Git::SVN->new;
826 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
827 $gs->prop_walk($gs->{path}, $r, sub {
828 my ($gs, $path, $props) = @_;
829 print STDOUT "\n# $path\n";
830 my $s = $props->{'svn:externals'} or return;
831 $s =~ s/[\r\n]+/\n/g;
832 chomp $s;
833 $s =~ s#^#$path#gm;
834 print STDOUT "$s\n";
835 });
836}
837
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200838sub cmd_create_ignore {
839 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
840 $gs ||= Git::SVN->new;
841 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
842 $gs->prop_walk($gs->{path}, $r, sub {
843 my ($gs, $path, $props) = @_;
844 # $path is of the form /path/to/dir/
Brian Gernhardt7d9fd452009-02-19 13:08:04 -0500845 $path = '.' . $path;
846 # SVN can have attributes on empty directories,
847 # which git won't track
848 mkpath([$path]) unless -d $path;
849 my $ignore = $path . '.gitignore';
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200850 my $s = $props->{'svn:ignore'} or return;
851 open(GITIGNORE, '>', $ignore)
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200852 or fatal("Failed to open `$ignore' for writing: $!");
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200853 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +0200854 $s =~ s/^\n+//;
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200855 chomp $s;
856 # Prefix all patterns so that the ignore doesn't apply
857 # to sub-directories.
858 $s =~ s#^#/#gm;
859 print GITIGNORE "$s\n";
860 close(GITIGNORE)
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200861 or fatal("Failed to close `$ignore': $!");
Gustaf Hendebyc4c66b22008-05-05 00:33:09 +0200862 command_noisy('add', '-f', $ignore);
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200863 });
864}
865
Eric Wong6111b932009-11-15 18:57:16 -0800866sub cmd_mkdirs {
867 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
868 $gs ||= Git::SVN->new;
869 $gs->mkemptydirs($_revision);
870}
871
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800872sub canonicalize_path {
873 my ($path) = @_;
David D. Kilzere6fefa92007-11-21 11:57:18 -0800874 my $dot_slash_added = 0;
875 if (substr($path, 0, 1) ne "/") {
876 $path = "./" . $path;
877 $dot_slash_added = 1;
878 }
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800879 # File::Spec->canonpath doesn't collapse x/../y into y (for a
880 # good reason), so let's do this manually.
881 $path =~ s#/+#/#g;
882 $path =~ s#/\.(?:/|$)#/#g;
883 $path =~ s#/[^/]+/\.\.##g;
884 $path =~ s#/$##g;
David D. Kilzere6fefa92007-11-21 11:57:18 -0800885 $path =~ s#^\./## if $dot_slash_added;
Gerrit Pape2fe403e2008-07-06 19:28:50 +0000886 $path =~ s#^/##;
887 $path =~ s#^\.$##;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800888 return $path;
889}
890
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200891sub canonicalize_url {
892 my ($url) = @_;
893 $url =~ s#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
894 return $url;
895}
896
Benoit Sigoure15153452007-10-16 16:36:50 +0200897# get_svnprops(PATH)
898# ------------------
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200899# Helper for cmd_propget and cmd_proplist below.
Benoit Sigoure15153452007-10-16 16:36:50 +0200900sub get_svnprops {
901 my $path = shift;
902 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
903 $gs ||= Git::SVN->new;
904
905 # prefix THE PATH by the sub-directory from which the user
906 # invoked us.
907 $path = $cmd_dir_prefix . $path;
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200908 fatal("No such file or directory: $path") unless -e $path;
Benoit Sigoure15153452007-10-16 16:36:50 +0200909 my $is_dir = -d $path ? 1 : 0;
910 $path = $gs->{path} . '/' . $path;
911
912 # canonicalize the path (otherwise libsvn will abort or fail to
913 # find the file)
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800914 $path = canonicalize_path($path);
Benoit Sigoure15153452007-10-16 16:36:50 +0200915
916 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
917 my $props;
918 if ($is_dir) {
919 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
920 }
921 else {
922 (undef, $props) = $gs->ra->get_file($path, $r, undef);
923 }
924 return $props;
925}
926
927# cmd_propget (PROP, PATH)
928# ------------------------
929# Print the SVN property PROP for PATH.
930sub cmd_propget {
931 my ($prop, $path) = @_;
932 $path = '.' if not defined $path;
933 usage(1) if not defined $prop;
934 my $props = get_svnprops($path);
935 if (not defined $props->{$prop}) {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200936 fatal("`$path' does not have a `$prop' SVN property.");
Benoit Sigoure15153452007-10-16 16:36:50 +0200937 }
938 print $props->{$prop} . "\n";
939}
940
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200941# cmd_proplist (PATH)
942# -------------------
943# Print the list of SVN properties for PATH.
944sub cmd_proplist {
945 my $path = shift;
946 $path = '.' if not defined $path;
947 my $props = get_svnprops($path);
948 print "Properties on '$path':\n";
949 foreach (sort keys %{$props}) {
950 print " $_\n";
951 }
952}
953
Eric Wong8164b652007-01-11 15:35:55 -0800954sub cmd_multi_init {
Eric Wong9d55b412006-06-12 15:53:13 -0700955 my $url = shift;
Marc Branchaud62244062009-06-23 13:02:08 -0400956 unless (defined $_trunk || @_branches || @_tags) {
Eric Wong98327e52007-01-04 18:02:00 -0800957 usage(1);
958 }
Eric Wongdc431662007-05-19 03:59:02 -0700959
Eric Wong8164b652007-01-11 15:35:55 -0800960 $_prefix = '' unless defined $_prefix;
Eric Wongdadc6d22007-02-14 12:27:41 -0800961 if (defined $url) {
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200962 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -0800963 init_subdir(@_);
964 }
Eric Wongf30603f2007-02-23 01:26:26 -0800965 do_git_init_db();
Eric Wong98327e52007-01-04 18:02:00 -0800966 if (defined $_trunk) {
Jonathan Niederb4b33602010-06-13 06:27:43 -0500967 $_trunk =~ s#^/+##;
Adam Brewster6f5748e2009-08-11 23:14:27 -0400968 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
Eric Wong706587f2007-01-18 17:50:01 -0800969 # try both old-style and new-style lookups:
970 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
Eric Wong8164b652007-01-11 15:35:55 -0800971 unless ($gs_trunk) {
Eric Wong706587f2007-01-18 17:50:01 -0800972 my ($trunk_url, $trunk_path) =
973 complete_svn_url($url, $_trunk);
974 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
975 undef, $trunk_ref);
Eric Wong98327e52007-01-04 18:02:00 -0800976 }
Eric Wongc35b96e2006-10-11 11:53:21 -0700977 }
Marc Branchaud62244062009-06-23 13:02:08 -0400978 return unless @_branches || @_tags;
Eric Wonge7db67e2007-01-11 17:09:26 -0800979 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
Marc Branchaud62244062009-06-23 13:02:08 -0400980 foreach my $path (@_branches) {
981 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
982 }
983 foreach my $path (@_tags) {
984 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
985 }
Eric Wong9d55b412006-06-12 15:53:13 -0700986}
987
Eric Wong1c8443b2007-01-14 02:17:00 -0800988sub cmd_multi_fetch {
Eric Wong4d0157d2009-11-22 12:37:06 -0800989 $Git::SVN::no_reuse_existing = undef;
Eric Wong0af9c9f2007-01-27 22:28:56 -0800990 my $remotes = Git::SVN::read_all_remotes();
991 foreach my $repo_id (sort keys %$remotes) {
Eric Wongdb03cd22007-02-13 00:38:02 -0800992 if ($remotes->{$repo_id}->{url}) {
Eric Wong4bb9ed02007-02-03 13:29:17 -0800993 Git::SVN::fetch_all($repo_id, $remotes);
994 }
Eric Wong706587f2007-01-18 17:50:01 -0800995 }
Eric Wong9d55b412006-06-12 15:53:13 -0700996}
997
Eric Wong44320b92007-01-13 22:35:53 -0800998# this command is special because it requires no metadata
999sub cmd_commit_diff {
1000 my ($ta, $tb, $url) = @_;
1001 my $usage = "Usage: $0 commit-diff -r<revision> ".
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001002 "<tree-ish> <tree-ish> [<URL>]";
Eric Wong44320b92007-01-13 22:35:53 -08001003 fatal($usage) if (!defined $ta || !defined $tb);
Karl Hasselströmd72ab8c2008-05-17 17:07:09 +02001004 my $svn_path = '';
Eric Wong44320b92007-01-13 22:35:53 -08001005 if (!defined $url) {
1006 my $gs = eval { Git::SVN->new };
1007 if (!$gs) {
1008 fatal("Needed URL or usable git-svn --id in ",
1009 "the command-line\n", $usage);
1010 }
1011 $url = $gs->{url};
Eric Wongd3a840d2007-01-26 01:32:45 -08001012 $svn_path = $gs->{path};
Eric Wong44320b92007-01-13 22:35:53 -08001013 }
1014 unless (defined $_revision) {
1015 fatal("-r|--revision is a required argument\n", $usage);
1016 }
1017 if (defined $_message && defined $_file) {
1018 fatal("Both --message/-m and --file/-F specified ",
1019 "for the commit message.\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001020 "I have no idea what you mean");
Eric Wong44320b92007-01-13 22:35:53 -08001021 }
1022 if (defined $_file) {
1023 $_message = file_to_s($_file);
1024 } else {
1025 $_message ||= get_commit_entry($tb)->{log};
1026 }
1027 my $ra ||= Git::SVN::Ra->new($url);
1028 my $r = $_revision;
1029 if ($r eq 'HEAD') {
1030 $r = $ra->get_latest_revnum;
1031 } elsif ($r !~ /^\d+$/) {
1032 die "revision argument: $r not understood by git-svn\n";
1033 }
Eric Wong61395352007-01-27 14:33:08 -08001034 my %ed_opts = ( r => $r,
1035 log => $_message,
1036 ra => $ra,
1037 tree_a => $ta,
1038 tree_b => $tb,
1039 editor_cb => sub { print "Committed r$_[0]\n" },
1040 svn_path => $svn_path );
1041 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong44320b92007-01-13 22:35:53 -08001042 print "No changes\n$ta == $tb\n";
1043 }
Eric Wong44320b92007-01-13 22:35:53 -08001044}
1045
Thomas Rast05427b92008-08-26 21:32:37 +02001046sub escape_uri_only {
1047 my ($uri) = @_;
1048 my @tmp;
1049 foreach (split m{/}, $uri) {
Eric Wong6a004d32008-10-21 14:12:15 -07001050 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
Thomas Rast05427b92008-08-26 21:32:37 +02001051 push @tmp, $_;
1052 }
1053 join('/', @tmp);
1054}
1055
1056sub escape_url {
1057 my ($url) = @_;
1058 if ($url =~ m#^([^:]+)://([^/]*)(.*)$#) {
1059 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
1060 $url = "$scheme://$domain$uri";
1061 }
1062 $url;
1063}
1064
David D. Kilzere6fefa92007-11-21 11:57:18 -08001065sub cmd_info {
Eric Wongbd2d4f92008-08-05 00:35:16 -07001066 my $path = canonicalize_path(defined($_[0]) ? $_[0] : ".");
Thomas Rastedde9112008-08-26 21:32:36 +02001067 my $fullpath = canonicalize_path($cmd_dir_prefix . $path);
Eric Wongbd2d4f92008-08-05 00:35:16 -07001068 if (exists $_[1]) {
David D. Kilzere6fefa92007-11-21 11:57:18 -08001069 die "Too many arguments specified\n";
1070 }
1071
1072 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1073
1074 if (!$file_type && !$diff_status) {
Thomas Rast2cf3e3a2008-08-29 15:42:48 +02001075 print STDERR "svn: '$path' is not under version control\n";
1076 exit 1;
David D. Kilzere6fefa92007-11-21 11:57:18 -08001077 }
1078
1079 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1080 unless ($gs) {
1081 die "Unable to determine upstream SVN information from ",
1082 "working tree history\n";
1083 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001084
1085 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1086 $path = "." if $path eq "";
1087
Thomas Rastedde9112008-08-26 21:32:36 +02001088 my $full_url = $url . ($fullpath eq "" ? "" : "/$fullpath");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001089
David D. Kilzer8b014d72007-11-21 11:57:19 -08001090 if ($_url) {
Thomas Rast05427b92008-08-26 21:32:37 +02001091 print escape_url($full_url), "\n";
David D. Kilzer8b014d72007-11-21 11:57:19 -08001092 return;
1093 }
1094
David D. Kilzere6fefa92007-11-21 11:57:18 -08001095 my $result = "Path: $path\n";
1096 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
Thomas Rast05427b92008-08-26 21:32:37 +02001097 $result .= "URL: " . escape_url($full_url) . "\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001098
Eric Wonga5460eb2007-11-21 18:20:57 -08001099 eval {
1100 my $repos_root = $gs->repos_root;
1101 Git::SVN::remove_username($repos_root);
Thomas Rast05427b92008-08-26 21:32:37 +02001102 $result .= "Repository Root: " . escape_url($repos_root) . "\n";
Eric Wonga5460eb2007-11-21 18:20:57 -08001103 };
1104 if ($@) {
1105 $result .= "Repository Root: (offline)\n";
1106 }
Michael J Gruberb91a8a32010-03-03 21:34:31 +01001107 ::_req_svn();
Marcel Koeppen22ba47f2009-01-19 03:02:01 +01001108 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
1109 ($SVN::Core::VERSION le '1.5.4' || $file_type ne "dir");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001110 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1111
1112 $result .= "Node Kind: " .
1113 ($file_type eq "dir" ? "directory" : "file") . "\n";
1114
1115 my $schedule = $diff_status eq "A"
1116 ? "add"
1117 : ($diff_status eq "D" ? "delete" : "normal");
1118 $result .= "Schedule: $schedule\n";
1119
1120 if ($diff_status eq "A") {
1121 print $result, "\n";
1122 return;
1123 }
1124
1125 my ($lc_author, $lc_rev, $lc_date_utc);
Thomas Rastedde9112008-08-26 21:32:36 +02001126 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001127 my $log = command_output_pipe(@args);
1128 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1129 while (<$log>) {
1130 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1131 $lc_author = $1;
1132 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1133 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1134 (undef, $lc_rev, undef) = ::extract_metadata($1);
1135 }
1136 }
1137 close $log;
1138
1139 Git::SVN::Log::set_local_timezone();
1140
1141 $result .= "Last Changed Author: $lc_author\n";
1142 $result .= "Last Changed Rev: $lc_rev\n";
1143 $result .= "Last Changed Date: " .
1144 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1145
1146 if ($file_type ne "dir") {
1147 my $text_last_updated_date =
1148 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1149 $result .=
1150 "Text Last Updated: " .
1151 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1152 "\n";
1153 my $checksum;
1154 if ($diff_status eq "D") {
1155 my ($fh, $ctx) =
1156 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1157 if ($file_type eq "link") {
1158 my $file_name = <$fh>;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001159 $checksum = md5sum("link $file_name");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001160 } else {
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001161 $checksum = md5sum($fh);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001162 }
1163 command_close_pipe($fh, $ctx);
1164 } elsif ($file_type eq "link") {
1165 my $file_name =
1166 command(qw(cat-file blob), "HEAD:$path");
1167 $checksum =
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001168 md5sum("link " . $file_name);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001169 } else {
1170 open FILE, "<", $path or die $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001171 $checksum = md5sum(\*FILE);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001172 close FILE or die $!;
1173 }
1174 $result .= "Checksum: " . $checksum . "\n";
1175 }
1176
1177 print $result, "\n";
1178}
1179
Ben Jackson195643f2009-06-03 20:45:52 -07001180sub cmd_reset {
1181 my $target = shift || $_revision or die "SVN revision required\n";
1182 $target = $1 if $target =~ /^r(\d+)$/;
1183 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1184 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1185 unless ($gs) {
1186 die "Unable to determine upstream SVN information from ".
1187 "history\n";
1188 }
1189 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
Jonathan Nieder70ee0b72010-05-04 16:36:47 -07001190 die "Cannot find SVN revision $target\n" unless defined($c);
Ben Jackson195643f2009-06-03 20:45:52 -07001191 $gs->rev_map_set($r, $c, 'reset', $uuid);
1192 print "r$r = $c ($gs->{ref_id})\n";
1193}
1194
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001195sub cmd_gc {
1196 if (!$can_compress) {
1197 warn "Compress::Zlib could not be found; unhandled.log " .
1198 "files will not be compressed.\n";
1199 }
1200 find({ wanted => \&gc_directory, no_chdir => 1}, "$ENV{GIT_DIR}/svn");
1201}
1202
Eric Wong3397f9d2006-02-16 01:24:16 -08001203########################### utility functions #########################
1204
Eric Wong905f8b72007-02-16 03:22:40 -08001205sub rebase_cmd {
1206 my @cmd = qw/rebase/;
1207 push @cmd, '-v' if $_verbose;
1208 push @cmd, qw/--merge/ if $_merge;
1209 push @cmd, "--strategy=$_strategy" if $_strategy;
1210 @cmd;
1211}
1212
Eric Wong1e889ef2007-02-16 01:45:13 -08001213sub post_fetch_checkout {
1214 return if $_no_checkout;
1215 my $gs = $Git::SVN::_head or return;
1216 return if verify_ref('refs/heads/master^0');
1217
Eric Wongb186a262009-08-12 16:01:59 -07001218 # look for "trunk" ref if it exists
1219 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1220 my $fetch = $remote->{fetch};
1221 if ($fetch) {
1222 foreach my $p (keys %$fetch) {
1223 basename($fetch->{$p}) eq 'trunk' or next;
1224 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1225 last;
1226 }
1227 }
1228
Eric Wong1e889ef2007-02-16 01:45:13 -08001229 my $valid_head = verify_ref('HEAD^0');
1230 command_noisy(qw(update-ref refs/heads/master), $gs->refname);
1231 return if ($valid_head || !verify_ref('HEAD^0'));
1232
1233 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1234 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1235 return if -f $index;
1236
Matthias Lederhofer7ae3df82007-06-03 16:48:16 +02001237 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
Eric Wong1e889ef2007-02-16 01:45:13 -08001238 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1239 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1240 print STDERR "Checked out HEAD:\n ",
1241 $gs->full_url, " r", $gs->last_rev, "\n";
Eric Wong6111b932009-11-15 18:57:16 -08001242 $gs->mkemptydirs($gs->last_rev);
Eric Wong1e889ef2007-02-16 01:45:13 -08001243}
1244
Eric Wong98327e52007-01-04 18:02:00 -08001245sub complete_svn_url {
1246 my ($url, $path) = @_;
1247 $path =~ s#/+$##;
Eric Wong98327e52007-01-04 18:02:00 -08001248 if ($path !~ m#^[a-z\+]+://#) {
Eric Wong98327e52007-01-04 18:02:00 -08001249 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1250 fatal("E: '$path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001251 "and a separate URL is not specified");
Eric Wong98327e52007-01-04 18:02:00 -08001252 }
Eric Wong706587f2007-01-18 17:50:01 -08001253 return ($url, $path);
Eric Wong98327e52007-01-04 18:02:00 -08001254 }
Eric Wong706587f2007-01-18 17:50:01 -08001255 return ($path, '');
Eric Wong98327e52007-01-04 18:02:00 -08001256}
1257
Eric Wong9d55b412006-06-12 15:53:13 -07001258sub complete_url_ls_init {
Eric Wong706587f2007-01-18 17:50:01 -08001259 my ($ra, $repo_path, $switch, $pfx) = @_;
1260 unless ($repo_path) {
Eric Wong9d55b412006-06-12 15:53:13 -07001261 print STDERR "W: $switch not specified\n";
1262 return;
1263 }
Eric Wong706587f2007-01-18 17:50:01 -08001264 $repo_path =~ s#/+$##;
1265 if ($repo_path =~ m#^[a-z\+]+://#) {
1266 $ra = Git::SVN::Ra->new($repo_path);
1267 $repo_path = '';
Eric Wonge7db67e2007-01-11 17:09:26 -08001268 } else {
Eric Wong706587f2007-01-18 17:50:01 -08001269 $repo_path =~ s#^/+##;
Eric Wonge7db67e2007-01-11 17:09:26 -08001270 unless ($ra) {
Eric Wong706587f2007-01-18 17:50:01 -08001271 fatal("E: '$repo_path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001272 "and a separate URL is not specified");
Eric Wong9d55b412006-06-12 15:53:13 -07001273 }
Eric Wonge7db67e2007-01-11 17:09:26 -08001274 }
Eric Wong706587f2007-01-18 17:50:01 -08001275 my $url = $ra->{url};
Eric Wongb4d57e52007-02-14 15:10:44 -08001276 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1277 my $k = "svn-remote.$gs->{repo_id}.url";
1278 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
1279 if ($orig_url && ($orig_url ne $gs->{url})) {
1280 die "$k already set: $orig_url\n",
1281 "wanted to set to: $gs->{url}\n";
Eric Wong88cf4102007-02-01 03:59:07 -08001282 }
Eric Wongb4d57e52007-02-14 15:10:44 -08001283 command_oneline('config', $k, $gs->{url}) unless $orig_url;
Mattias Nissler0b2af452009-07-07 01:40:02 +02001284 my $remote_path = "$gs->{path}/$repo_path";
Eric Wong5268f9e2009-08-16 14:22:12 -07001285 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
Eric Wongb4d57e52007-02-14 15:10:44 -08001286 $remote_path =~ s#/+#/#g;
1287 $remote_path =~ s#^/##g;
Eric Wonged0b9d42008-03-14 11:01:23 -07001288 $remote_path .= "/*" if $remote_path !~ /\*/;
Eric Wongb4d57e52007-02-14 15:10:44 -08001289 my ($n) = ($switch =~ /^--(\w+)/);
1290 if (length $pfx && $pfx !~ m#/$#) {
1291 die "--prefix='$pfx' must have a trailing slash '/'\n";
Eric Wong9d55b412006-06-12 15:53:13 -07001292 }
Marcus Griep570d35c2008-08-08 01:41:57 -07001293 command_noisy('config',
Marc Branchaud62244062009-06-23 13:02:08 -04001294 '--add',
Marcus Griep570d35c2008-08-08 01:41:57 -07001295 "svn-remote.$gs->{repo_id}.$n",
1296 "$remote_path:refs/remotes/$pfx*" .
1297 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
Eric Wong9d55b412006-06-12 15:53:13 -07001298}
1299
Eric Wongaef4e922006-12-15 10:59:54 -08001300sub verify_ref {
1301 my ($ref) = @_;
Eric Wong2c5c1d52006-12-28 01:16:21 -08001302 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1303 { STDERR => 0 }); };
Eric Wongaef4e922006-12-15 10:59:54 -08001304}
1305
Eric Wonga5e0ced2006-06-12 15:23:48 -07001306sub get_tree_from_treeish {
Eric Wongcf52b8f2006-02-20 10:57:28 -08001307 my ($treeish) = @_;
Eric Wong44320b92007-01-13 22:35:53 -08001308 # $treeish can be a symbolic ref, too:
Eric Wongaef4e922006-12-15 10:59:54 -08001309 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001310 my $expected;
1311 while ($type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001312 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001313 }
1314 if ($type eq 'commit') {
Eric Wongaef4e922006-12-15 10:59:54 -08001315 $expected = (grep /^tree /, command(qw/cat-file commit/,
1316 $treeish))[0];
Eric Wong44320b92007-01-13 22:35:53 -08001317 ($expected) = ($expected =~ /^tree ($sha1)$/o);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001318 die "Unable to get tree from $treeish\n" unless $expected;
1319 } elsif ($type eq 'tree') {
1320 $expected = $treeish;
1321 } else {
1322 die "$treeish is a $type, expected tree, tag or commit\n";
1323 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07001324 return $expected;
1325}
Eric Wongcf52b8f2006-02-20 10:57:28 -08001326
Eric Wong44320b92007-01-13 22:35:53 -08001327sub get_commit_entry {
1328 my ($treeish) = shift;
1329 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1330 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1331 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1332 open my $log_fh, '>', $commit_editmsg or croak $!;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001333
Eric Wong44320b92007-01-13 22:35:53 -08001334 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wong4ad45152006-07-09 20:20:48 -07001335 if ($type eq 'commit' || $type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001336 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
Eric Wong44320b92007-01-13 22:35:53 -08001337 $type, $treeish);
Eric Wong3397f9d2006-02-16 01:24:16 -08001338 my $in_msg = 0;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001339 my $author;
1340 my $saw_from = 0;
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001341 my $msgbuf = "";
Eric Wong3397f9d2006-02-16 01:24:16 -08001342 while (<$msg_fh>) {
1343 if (!$in_msg) {
1344 $in_msg = 1 if (/^\s*$/);
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001345 $author = $1 if (/^author (.*>)/);
Eric Wongdf746c52006-03-03 01:20:08 -08001346 } elsif (/^git-svn-id: /) {
Eric Wong44320b92007-01-13 22:35:53 -08001347 # skip this for now, we regenerate the
1348 # correct one on re-fetch anyways
1349 # TODO: set *:merge properties or like...
Eric Wong3397f9d2006-02-16 01:24:16 -08001350 } else {
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001351 if (/^From:/ || /^Signed-off-by:/) {
1352 $saw_from = 1;
1353 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001354 $msgbuf .= $_;
Eric Wong3397f9d2006-02-16 01:24:16 -08001355 }
1356 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001357 $msgbuf =~ s/\s+$//s;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001358 if ($Git::SVN::_add_author_from && defined($author)
1359 && !$saw_from) {
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001360 $msgbuf .= "\n\nFrom: $author";
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001361 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001362 print $log_fh $msgbuf or croak $!;
Eric Wongaef4e922006-12-15 10:59:54 -08001363 command_close_pipe($msg_fh, $ctx);
Eric Wong3397f9d2006-02-16 01:24:16 -08001364 }
Eric Wong44320b92007-01-13 22:35:53 -08001365 close $log_fh or croak $!;
Eric Wong3397f9d2006-02-16 01:24:16 -08001366
1367 if ($_edit || ($type eq 'tree')) {
Jonathan Niederb4479f02009-10-30 20:42:34 -05001368 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1369 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
Eric Wong3397f9d2006-02-16 01:24:16 -08001370 }
Eric Wong44320b92007-01-13 22:35:53 -08001371 rename $commit_editmsg, $commit_msg or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07001372 {
Eric Wongb510df82009-05-28 00:56:23 -07001373 require Encode;
Eric Wong16fc08e2008-10-29 23:49:26 -07001374 # SVN requires messages to be UTF-8 when entering the repo
1375 local $/;
1376 open $log_fh, '<', $commit_msg or croak $!;
1377 binmode $log_fh;
1378 chomp($log_entry{log} = <$log_fh>);
1379
Eric Wongb510df82009-05-28 00:56:23 -07001380 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1381 my $msg = $log_entry{log};
1382
1383 eval { $msg = Encode::decode($enc, $msg, 1) };
1384 if ($@) {
1385 die "Could not decode as $enc:\n", $msg,
1386 "\nPerhaps you need to set i18n.commitencoding\n";
Eric Wong16fc08e2008-10-29 23:49:26 -07001387 }
Eric Wongb510df82009-05-28 00:56:23 -07001388
1389 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1390 die "Could not encode as UTF-8:\n$msg\n" if $@;
1391
1392 $log_entry{log} = $msg;
1393
Eric Wong16fc08e2008-10-29 23:49:26 -07001394 close $log_fh or croak $!;
1395 }
Eric Wong44320b92007-01-13 22:35:53 -08001396 unlink $commit_msg;
1397 \%log_entry;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001398}
1399
Eric Wong3397f9d2006-02-16 01:24:16 -08001400sub s_to_file {
1401 my ($str, $file, $mode) = @_;
1402 open my $fd,'>',$file or croak $!;
1403 print $fd $str,"\n" or croak $!;
1404 close $fd or croak $!;
1405 chmod ($mode &~ umask, $file) if (defined $mode);
1406}
1407
1408sub file_to_s {
1409 my $file = shift;
1410 open my $fd,'<',$file or croak "$!: file: $file\n";
1411 local $/;
1412 my $ret = <$fd>;
1413 close $fd or croak $!;
1414 $ret =~ s/\s*$//s;
1415 return $ret;
1416}
1417
Eric Wongeeb0abe2006-03-03 01:20:08 -08001418# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1419sub load_authors {
1420 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001421 my $log = $cmd eq 'log';
Eric Wongeeb0abe2006-03-03 01:20:08 -08001422 while (<$authors>) {
1423 chomp;
Richard MUSIL575d0252007-07-17 19:02:57 +02001424 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
Eric Wongeeb0abe2006-03-03 01:20:08 -08001425 my ($user, $name, $email) = ($1, $2, $3);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001426 if ($log) {
1427 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1428 } else {
1429 $users{$user} = [$name, $email];
1430 }
Eric Wong79bb8d82006-06-01 02:35:44 -07001431 }
1432 close $authors or croak $!;
1433}
1434
Tom Princee0d10e12007-01-28 16:16:53 -08001435# convert GetOpt::Long specs for use by git-config
Eric Wong1a305822009-11-14 14:25:11 -08001436sub read_git_config {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001437 my $opts = shift;
Eric Wong97ae0912007-02-11 15:21:24 -08001438 my @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001439 foreach my $o (keys %$opts) {
Eric Wong97ae0912007-02-11 15:21:24 -08001440 # if we have mixedCase and a long option-only, then
1441 # it's a config-only variable that we don't need for
1442 # the command-line.
1443 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001444 my $v = $opts->{$o};
Eric Wong97ae0912007-02-11 15:21:24 -08001445 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001446 $key =~ s/-//g;
Deskin Miller225f1d02008-10-23 15:21:34 -04001447 my $arg = 'git config';
Eric Wongb8c92ca2006-05-24 01:40:37 -07001448 $arg .= ' --int' if ($o =~ /[:=]i$/);
1449 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1450 if (ref $v eq 'ARRAY') {
1451 chomp(my @tmp = `$arg --get-all svn.$key`);
1452 @$v = @tmp if @tmp;
1453 } else {
1454 chomp(my $tmp = `$arg --get svn.$key`);
Eric Wong77742842007-02-10 21:07:12 -08001455 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001456 $$v = $tmp;
1457 }
1458 }
1459 }
Eric Wong97ae0912007-02-11 15:21:24 -08001460 delete @$opts{@config_only} if @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001461}
1462
Eric Wong79bb8d82006-06-01 02:35:44 -07001463sub extract_metadata {
Eric Wongc1927a82006-06-27 19:39:11 -07001464 my $id = shift or return (undef, undef, undef);
Sam Vilain3dfab992007-06-30 20:56:13 +12001465 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
Eric Wongb3e95932009-07-11 14:13:12 -07001466 \s([a-f\d\-]+)$/ix);
Eric Wonge70dc782006-11-23 14:54:04 -08001467 if (!defined $rev || !$uuid || !$url) {
Eric Wong79bb8d82006-06-01 02:35:44 -07001468 # some of the original repositories I made had
Pavel Roskin82e5a822006-07-10 01:50:18 -04001469 # identifiers like this:
Eric Wongb3e95932009-07-11 14:13:12 -07001470 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
Eric Wong79bb8d82006-06-01 02:35:44 -07001471 }
1472 return ($url, $rev, $uuid);
1473}
1474
Eric Wongc1927a82006-06-27 19:39:11 -07001475sub cmt_metadata {
1476 return extract_metadata((grep(/^git-svn-id: /,
Eric Wongaef4e922006-12-15 10:59:54 -08001477 command(qw/cat-file commit/, shift)))[-1]);
Eric Wongc1927a82006-06-27 19:39:11 -07001478}
1479
Boris Byk6ea42032009-04-11 00:32:41 +04001480sub cmt_sha2rev_batch {
1481 my %s2r;
1482 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1483 my $list = shift;
1484
1485 foreach my $sha (@{$list}) {
1486 my $first = 1;
1487 my $size = 0;
1488 print $out $sha, "\n";
1489
1490 while (my $line = <$in>) {
1491 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1492 last;
1493 } elsif ($first &&
1494 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1495 $first = 0;
1496 $size = $1;
1497 next;
1498 } elsif ($line =~ /^(git-svn-id: )/) {
1499 my (undef, $rev, undef) =
1500 extract_metadata($line);
1501 $s2r{$sha} = $rev;
1502 }
1503
1504 $size -= length($line);
1505 last if ($size == 0);
1506 }
1507 }
1508
1509 command_close_bidi_pipe($pid, $in, $out, $ctx);
1510
1511 return \%s2r;
1512}
1513
Eric Wong905f8b72007-02-16 03:22:40 -08001514sub working_head_info {
1515 my ($head, $refs) = @_;
Pedro Melob6309ac2008-04-10 17:05:21 +01001516 my @args = ('log', '--no-color', '--first-parent', '--pretty=medium');
Lars Hjemli05b4df32007-09-05 11:35:29 +02001517 my ($fh, $ctx) = command_output_pipe(@args, $head);
Sam Vilain3dfab992007-06-30 20:56:13 +12001518 my $hash;
Sam Vilain40cb8f82007-06-30 20:56:14 +12001519 my %max;
Sam Vilain3dfab992007-06-30 20:56:13 +12001520 while (<$fh>) {
1521 if ( m{^commit ($::sha1)$} ) {
1522 unshift @$refs, $hash if $hash and $refs;
1523 $hash = $1;
1524 next;
1525 }
1526 next unless s{^\s*(git-svn-id:)}{$1};
1527 my ($url, $rev, $uuid) = extract_metadata($_);
Eric Wong13c823f2007-04-08 00:59:19 -07001528 if (defined $url && defined $rev) {
Sam Vilain40cb8f82007-06-30 20:56:14 +12001529 next if $max{$url} and $max{$url} < $rev;
Eric Wong13c823f2007-04-08 00:59:19 -07001530 if (my $gs = Git::SVN->find_by_url($url)) {
João Abecasis63c56022008-07-14 16:28:04 +01001531 my $c = $gs->rev_map_get($rev, $uuid);
Adam Robenb03c7a62007-04-25 11:50:32 -07001532 if ($c && $c eq $hash) {
Eric Wong13c823f2007-04-08 00:59:19 -07001533 close $fh; # break the pipe
1534 return ($url, $rev, $uuid, $gs);
Sam Vilain40cb8f82007-06-30 20:56:14 +12001535 } else {
Eric Wong060610c2007-12-08 23:27:41 -08001536 $max{$url} ||= $gs->rev_map_max;
Eric Wong13c823f2007-04-08 00:59:19 -07001537 }
1538 }
1539 }
Eric Wong905f8b72007-02-16 03:22:40 -08001540 }
Eric Wong13c823f2007-04-08 00:59:19 -07001541 command_close_pipe($fh, $ctx);
1542 (undef, undef, undef, undef);
Eric Wong905f8b72007-02-16 03:22:40 -08001543}
1544
Eric Wong733a65a2007-06-13 02:23:28 -07001545sub read_commit_parents {
1546 my ($parents, $c) = @_;
Eric Wong7b02b852007-09-08 16:33:08 -07001547 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1548 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1549 @{$parents->{$c}} = split(/ /, $p);
Eric Wong733a65a2007-06-13 02:23:28 -07001550}
1551
1552sub linearize_history {
1553 my ($gs, $refs) = @_;
1554 my %parents;
1555 foreach my $c (@$refs) {
1556 read_commit_parents(\%parents, $c);
1557 }
1558
1559 my @linear_refs;
1560 my %skip = ();
1561 my $last_svn_commit = $gs->last_commit;
1562 foreach my $c (reverse @$refs) {
1563 next if $c eq $last_svn_commit;
1564 last if $skip{$c};
1565
1566 unshift @linear_refs, $c;
1567 $skip{$c} = 1;
1568
1569 # we only want the first parent to diff against for linear
1570 # history, we save the rest to inject when we finalize the
1571 # svn commit
1572 my $fp_a = verify_ref("$c~1");
1573 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1574 if (!$fp_a || !$fp_b) {
1575 die "Commit $c\n",
1576 "has no parent commit, and therefore ",
1577 "nothing to diff against.\n",
1578 "You should be working from a repository ",
1579 "originally created by git-svn\n";
1580 }
1581 if ($fp_a ne $fp_b) {
1582 die "$c~1 = $fp_a, however parsing commit $c ",
1583 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1584 }
1585
1586 foreach my $p (@{$parents{$c}}) {
1587 $skip{$p} = 1;
1588 }
1589 }
1590 (\@linear_refs, \%parents);
1591}
1592
David D. Kilzere6fefa92007-11-21 11:57:18 -08001593sub find_file_type_and_diff_status {
1594 my ($path) = @_;
Dmitry Potapov107cee52008-07-21 00:14:07 +04001595 return ('dir', '') if $path eq '';
David D. Kilzere6fefa92007-11-21 11:57:18 -08001596
1597 my $diff_output =
1598 command_oneline(qw(diff --cached --name-status --), $path) || "";
1599 my $diff_status = (split(' ', $diff_output))[0] || "";
1600
1601 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1602
1603 return (undef, undef) if !$diff_status && !$ls_tree;
1604
1605 if ($diff_status eq "A") {
1606 return ("link", $diff_status) if -l $path;
1607 return ("dir", $diff_status) if -d $path;
1608 return ("file", $diff_status);
1609 }
1610
1611 my $mode = (split(' ', $ls_tree))[0] || "";
1612
1613 return ("link", $diff_status) if $mode eq "120000";
1614 return ("dir", $diff_status) if $mode eq "040000";
1615 return ("file", $diff_status);
1616}
1617
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001618sub md5sum {
1619 my $arg = shift;
1620 my $ref = ref $arg;
1621 my $md5 = Digest::MD5->new();
Marcus Griep0b191382008-08-12 12:00:53 -04001622 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001623 $md5->addfile($arg) or croak $!;
1624 } elsif ($ref eq 'SCALAR') {
1625 $md5->add($$arg) or croak $!;
1626 } elsif (!$ref) {
1627 $md5->add($arg) or croak $!;
1628 } else {
1629 ::fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1630 }
1631 return $md5->hexdigest();
1632}
1633
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001634sub gc_directory {
1635 if ($can_compress && -f $_ && basename($_) eq "unhandled.log") {
1636 my $out_filename = $_ . ".gz";
1637 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
1638 binmode $in_fh;
1639 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
1640 die "Unable to open $out_filename: $!\n";
1641
1642 my $res;
1643 while ($res = sysread($in_fh, my $str, 1024)) {
1644 $gz->gzwrite($str) or
1645 die "Unable to write: ".$gz->gzerror()."!\n";
1646 }
1647 unlink $_ or die "unlink $File::Find::name: $!\n";
1648 } elsif (-f $_ && basename($_) eq "index") {
1649 unlink $_ or die "unlink $_: $!\n";
1650 }
1651}
1652
Eric Wong9b981fc2007-01-11 12:14:21 -08001653package Git::SVN;
1654use strict;
1655use warnings;
Eric Wong060610c2007-12-08 23:27:41 -08001656use Fcntl qw/:DEFAULT :seek/;
1657use constant rev_map_fmt => 'NH40';
Eric Wongecc712d2007-01-31 12:28:10 -08001658use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
Eric Wong62e349d2007-02-16 19:57:29 -08001659 $_repack $_repack_flags $_use_svm_props $_head
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00001660 $_use_svnsync_props $no_reuse_existing $_minimize_url
Pete Harlane82f0d72009-01-17 20:10:14 -08001661 $_use_log_author $_add_author_from $_localtime/;
Eric Wong9b981fc2007-01-11 12:14:21 -08001662use Carp qw/croak/;
1663use File::Path qw/mkpath/;
Eric Wong373274f2007-01-31 13:54:23 -08001664use File::Copy qw/copy/;
Eric Wong9b981fc2007-01-11 12:14:21 -08001665use IPC::Open3;
Sam Vilain7d944c32009-12-20 00:55:13 +13001666use Memoize; # core since 5.8.0, Jul 2002
Andrew Myrick8bff7c52010-01-30 03:14:22 +00001667use Memoize::Storable;
Eric Wong9b981fc2007-01-11 12:14:21 -08001668
Karl Hasselström94bc9142008-02-03 17:56:18 +01001669my ($_gc_nr, $_gc_period);
1670
Eric Wong9b981fc2007-01-11 12:14:21 -08001671# properties that we do not log:
1672my %SKIP_PROP;
1673BEGIN {
1674 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
1675 svn:special svn:executable
1676 svn:entry:committed-rev
1677 svn:entry:last-author
1678 svn:entry:uuid
1679 svn:entry:committed-date/;
Eric Wong91b03282007-02-11 00:51:33 -08001680
1681 # some options are read globally, but can be overridden locally
1682 # per [svn-remote "..."] section. Command-line options will *NOT*
1683 # override options set in an [svn-remote "..."] section
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001684 no strict 'refs';
1685 for my $option (qw/follow_parent no_metadata use_svm_props
1686 use_svnsync_props/) {
1687 my $key = $option;
Eric Wong91b03282007-02-11 00:51:33 -08001688 $key =~ tr/_//d;
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001689 my $prop = "-$option";
1690 *$option = sub {
1691 my ($self) = @_;
1692 return $self->{$prop} if exists $self->{$prop};
1693 my $k = "svn-remote.$self->{repo_id}.$key";
1694 eval { command_oneline(qw/config --get/, $k) };
1695 if ($@) {
1696 $self->{$prop} = ${"Git::SVN::_$option"};
Eric Wong91b03282007-02-11 00:51:33 -08001697 } else {
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001698 my $v = command_oneline(qw/config --bool/,$k);
1699 $self->{$prop} = $v eq 'false' ? 0 : 1;
Eric Wong91b03282007-02-11 00:51:33 -08001700 }
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001701 return $self->{$prop};
1702 }
Eric Wong91b03282007-02-11 00:51:33 -08001703 }
Eric Wong9b981fc2007-01-11 12:14:21 -08001704}
1705
Marcus Griep0b191382008-08-12 12:00:53 -04001706
Eric Wong321b1842008-01-02 10:10:03 -08001707my (%LOCKFILES, %INDEX_FILES);
1708END {
1709 unlink keys %LOCKFILES if %LOCKFILES;
1710 unlink keys %INDEX_FILES if %INDEX_FILES;
1711}
Eric Wong373274f2007-01-31 13:54:23 -08001712
Eric Wong4bb9ed02007-02-03 13:29:17 -08001713sub resolve_local_globs {
1714 my ($url, $fetch, $glob_spec) = @_;
1715 return unless defined $glob_spec;
1716 my $ref = $glob_spec->{ref};
1717 my $path = $glob_spec->{path};
Adam Brewster6f5748e2009-08-11 23:14:27 -04001718 foreach (command(qw#for-each-ref --format=%(refname) refs/#)) {
1719 next unless m#^$ref->{regex}$#;
Eric Wong4bb9ed02007-02-03 13:29:17 -08001720 my $p = $1;
Robert Ewaldbf655fd2007-07-30 11:08:21 +02001721 my $pathname = desanitize_refname($path->full_path($p));
1722 my $refname = desanitize_refname($ref->full_path($p));
Eric Wong4bb9ed02007-02-03 13:29:17 -08001723 if (my $existing = $fetch->{$pathname}) {
1724 if ($existing ne $refname) {
1725 die "Refspec conflict:\n",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001726 "existing: $existing\n",
1727 " globbed: $refname\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08001728 }
Adam Brewster6f5748e2009-08-11 23:14:27 -04001729 my $u = (::cmt_metadata("$refname"))[0];
Eric Wong4e9f6cc2007-02-09 12:17:57 -08001730 $u =~ s!^\Q$url\E(/|$)!! or die
Adam Brewster6f5748e2009-08-11 23:14:27 -04001731 "$refname: '$url' not found in '$u'\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08001732 if ($pathname ne $u) {
1733 warn "W: Refspec glob conflict ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001734 "(ref: $refname):\n",
Eric Wong4bb9ed02007-02-03 13:29:17 -08001735 "expected path: $pathname\n",
1736 " real path: $u\n",
1737 "Continuing ahead with $u\n";
1738 next;
1739 }
1740 } else {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001741 $fetch->{$pathname} = $refname;
1742 }
1743 }
1744}
1745
Eric Wonge98671e2007-02-14 02:21:19 -08001746sub parse_revision_argument {
1747 my ($base, $head) = @_;
1748 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
1749 return ($base, $head);
1750 }
1751 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
1752 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
1753 return ($head, $head) if ($::_revision eq 'HEAD');
1754 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
1755 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
1756 die "revision argument: $::_revision not understood by git-svn\n";
1757}
1758
Eric Wong0af9c9f2007-01-27 22:28:56 -08001759sub fetch_all {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001760 my ($repo_id, $remotes) = @_;
Eric Wong905f8b72007-02-16 03:22:40 -08001761 if (ref $repo_id) {
1762 my $gs = $repo_id;
1763 $repo_id = undef;
1764 $repo_id = $gs->{repo_id};
1765 }
1766 $remotes ||= read_all_remotes();
Eric Wong7447b4b2007-02-14 18:38:46 -08001767 my $remote = $remotes->{$repo_id} or
1768 die "[svn-remote \"$repo_id\"] unknown\n";
Eric Wonge5181922007-02-08 12:53:57 -08001769 my $fetch = $remote->{fetch};
Eric Wong7447b4b2007-02-14 18:38:46 -08001770 my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
Eric Wonge5181922007-02-08 12:53:57 -08001771 my (@gs, @globs);
Eric Wong0af9c9f2007-01-27 22:28:56 -08001772 my $ra = Git::SVN::Ra->new($url);
Eric Wong26a62d52007-02-12 13:25:25 -08001773 my $uuid = $ra->get_uuid;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001774 my $head = $ra->get_latest_revnum;
Eric Wong577e9fc2009-12-21 02:06:04 -08001775
1776 # ignore errors, $head revision may not even exist anymore
1777 eval { $ra->get_log("", $head, 0, 1, 0, 1, sub { $head = $_[1] }) };
1778 warn "W: $@\n" if $@;
1779
Eric Wong28710f72007-02-14 13:32:21 -08001780 my $base = defined $fetch ? $head : 0;
Eric Wonge5181922007-02-08 12:53:57 -08001781
1782 # read the max revs for wildcard expansion (branches/*, tags/*)
1783 foreach my $t (qw/branches tags/) {
1784 defined $remote->{$t} or next;
Marc Branchaud62244062009-06-23 13:02:08 -04001785 push @globs, @{$remote->{$t}};
1786
Eric Wong93f26892007-02-11 01:20:26 -08001787 my $max_rev = eval { tmp_config(qw/--int --get/,
1788 "svn-remote.$repo_id.${t}-maxRev") };
1789 if (defined $max_rev && ($max_rev < $base)) {
1790 $base = $max_rev;
Eric Wongd6d33462007-02-16 04:05:33 -08001791 } elsif (!defined $max_rev) {
1792 $base = 0;
Eric Wonge5181922007-02-08 12:53:57 -08001793 }
1794 }
1795
Eric Wongdb03cd22007-02-13 00:38:02 -08001796 if ($fetch) {
1797 foreach my $p (sort keys %$fetch) {
1798 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
Eric Wong060610c2007-12-08 23:27:41 -08001799 my $lr = $gs->rev_map_max;
Eric Wongdb03cd22007-02-13 00:38:02 -08001800 if (defined $lr) {
1801 $base = $lr if ($lr < $base);
1802 }
1803 push @gs, $gs;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001804 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08001805 }
Eric Wonge98671e2007-02-14 02:21:19 -08001806
1807 ($base, $head) = parse_revision_argument($base, $head);
Eric Wonge5181922007-02-08 12:53:57 -08001808 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
Eric Wong0af9c9f2007-01-27 22:28:56 -08001809}
1810
Eric Wong47e39c52007-01-21 04:27:09 -08001811sub read_all_remotes {
1812 my $r = {};
João Abecasis63c56022008-07-14 16:28:04 +01001813 my $use_svm_props = eval { command_oneline(qw/config --bool
1814 svn.useSvmProps/) };
1815 $use_svm_props = $use_svm_props eq 'true' if $use_svm_props;
Eric Wongffd5c8e2009-10-22 23:39:04 -07001816 my $svn_refspec = qr{\s*(.*?)\s*:\s*(.+?)\s*};
Eric Wong8b8fc062007-01-22 11:44:57 -08001817 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
Adam Brewster6f5748e2009-08-11 23:14:27 -04001818 if (m!^(.+)\.fetch=$svn_refspec$!) {
1819 my ($remote, $local_ref, $remote_ref) = ($1, $2, $3);
1820 die("svn-remote.$remote: remote ref '$remote_ref' "
1821 . "must start with 'refs/'\n")
1822 unless $remote_ref =~ m{^refs/};
Steven Walter46cb16f2010-08-03 19:21:25 -04001823 $local_ref = uri_decode($local_ref);
Eric Wong46cf98b2007-07-14 12:40:32 -07001824 $r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
João Abecasis63c56022008-07-14 16:28:04 +01001825 $r->{$remote}->{svm} = {} if $use_svm_props;
1826 } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
1827 $r->{$1}->{svm} = {};
Eric Wong47e39c52007-01-21 04:27:09 -08001828 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
1829 $r->{$1}->{url} = $2;
Adam Brewster6f5748e2009-08-11 23:14:27 -04001830 } elsif (m!^(.+)\.(branches|tags)=$svn_refspec$!) {
1831 my ($remote, $t, $local_ref, $remote_ref) =
1832 ($1, $2, $3, $4);
1833 die("svn-remote.$remote: remote ref '$remote_ref' ($t) "
1834 . "must start with 'refs/'\n")
1835 unless $remote_ref =~ m{^refs/};
Steven Walter46cb16f2010-08-03 19:21:25 -04001836 $local_ref = uri_decode($local_ref);
Marc Branchaud62244062009-06-23 13:02:08 -04001837 my $rs = {
Adam Brewster6f5748e2009-08-11 23:14:27 -04001838 t => $t,
1839 remote => $remote,
Jay Soffian07576202010-01-23 03:30:01 -05001840 path => Git::SVN::GlobSpec->new($local_ref, 1),
1841 ref => Git::SVN::GlobSpec->new($remote_ref, 0) };
Eric Wong4bb9ed02007-02-03 13:29:17 -08001842 if (length($rs->{ref}->{right}) != 0) {
1843 die "The '*' glob character must be the last ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001844 "character of '$remote_ref'\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08001845 }
Adam Brewster6f5748e2009-08-11 23:14:27 -04001846 push @{ $r->{$remote}->{$t} }, $rs;
Eric Wong47e39c52007-01-21 04:27:09 -08001847 }
1848 }
João Abecasis63c56022008-07-14 16:28:04 +01001849
1850 map {
1851 if (defined $r->{$_}->{svm}) {
1852 my $svm;
1853 eval {
1854 my $section = "svn-remote.$_";
1855 $svm = {
1856 source => tmp_config('--get',
1857 "$section.svm-source"),
1858 replace => tmp_config('--get',
1859 "$section.svm-replace"),
1860 }
1861 };
1862 $r->{$_}->{svm} = $svm;
1863 }
1864 } keys %$r;
1865
Eric Wong47e39c52007-01-21 04:27:09 -08001866 $r;
1867}
1868
Eric Wongecc712d2007-01-31 12:28:10 -08001869sub init_vars {
Karl Hasselström94bc9142008-02-03 17:56:18 +01001870 $_gc_nr = $_gc_period = 1000;
Karl Hasselströmaf788a62008-02-03 17:56:12 +01001871 if (defined $_repack || defined $_repack_flags) {
1872 warn "Repack options are obsolete; they have no effect.\n";
1873 }
Eric Wongecc712d2007-01-31 12:28:10 -08001874}
1875
Eric Wongb805b442007-01-22 13:52:04 -08001876sub verify_remotes_sanity {
Eric Wong536c4b02007-01-23 11:35:53 -08001877 return unless -d $ENV{GIT_DIR};
Eric Wongb805b442007-01-22 13:52:04 -08001878 my %seen;
1879 foreach (command(qw/config -l/)) {
1880 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
1881 if ($seen{$1}) {
1882 die "Remote ref refs/remote/$1 is tracked by",
1883 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
1884 "Please resolve this ambiguity in ",
1885 "your git configuration file before ",
1886 "continuing\n";
1887 }
1888 $seen{$1} = $_;
1889 }
1890 }
1891}
1892
Eric Wonge6434f82007-01-23 16:29:23 -08001893sub find_existing_remote {
1894 my ($url, $remotes) = @_;
Eric Wongbefc9ad2007-02-17 02:53:07 -08001895 return undef if $no_reuse_existing;
Eric Wonge6434f82007-01-23 16:29:23 -08001896 my $existing;
1897 foreach my $repo_id (keys %$remotes) {
1898 my $u = $remotes->{$repo_id}->{url} or next;
1899 next if $u ne $url;
1900 $existing = $repo_id;
1901 last;
1902 }
1903 $existing;
1904}
1905
1906sub init_remote_config {
Eric Wongd8115c52007-02-01 03:30:31 -08001907 my ($self, $url, $no_write) = @_;
Eric Wonge6434f82007-01-23 16:29:23 -08001908 $url =~ s!/+$!!; # strip trailing slash
1909 my $r = read_all_remotes();
1910 my $existing = find_existing_remote($url, $r);
1911 if ($existing) {
Eric Wonge5181922007-02-08 12:53:57 -08001912 unless ($no_write) {
1913 print STDERR "Using existing ",
1914 "[svn-remote \"$existing\"]\n";
1915 }
Eric Wonge6434f82007-01-23 16:29:23 -08001916 $self->{repo_id} = $existing;
Eric Wong4a1bb4c2007-05-13 09:58:14 -07001917 } elsif ($_minimize_url) {
Eric Wonge6434f82007-01-23 16:29:23 -08001918 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1919 $existing = find_existing_remote($min_url, $r);
1920 if ($existing) {
Eric Wonge5181922007-02-08 12:53:57 -08001921 unless ($no_write) {
1922 print STDERR "Using existing ",
1923 "[svn-remote \"$existing\"]\n";
1924 }
Eric Wonge6434f82007-01-23 16:29:23 -08001925 $self->{repo_id} = $existing;
1926 }
1927 if ($min_url ne $url) {
Eric Wonge5181922007-02-08 12:53:57 -08001928 unless ($no_write) {
1929 print STDERR "Using higher level of URL: ",
1930 "$url => $min_url\n";
1931 }
Eric Wonge6434f82007-01-23 16:29:23 -08001932 my $old_path = $self->{path};
1933 $self->{path} = $url;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08001934 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
Eric Wonge6434f82007-01-23 16:29:23 -08001935 if (length $old_path) {
1936 $self->{path} .= "/$old_path";
1937 }
1938 $url = $min_url;
1939 }
1940 }
1941 my $orig_url;
1942 if (!$existing) {
1943 # verify that we aren't overwriting anything:
1944 $orig_url = eval {
1945 command_oneline('config', '--get',
1946 "svn-remote.$self->{repo_id}.url")
1947 };
1948 if ($orig_url && ($orig_url ne $url)) {
1949 die "svn-remote.$self->{repo_id}.url already set: ",
1950 "$orig_url\nwanted to set to: $url\n";
1951 }
1952 }
1953 my ($xrepo_id, $xpath) = find_ref($self->refname);
Adam Brewster6f5748e2009-08-11 23:14:27 -04001954 if (!$no_write && defined $xpath) {
Eric Wonge6434f82007-01-23 16:29:23 -08001955 die "svn-remote.$xrepo_id.fetch already set to track ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001956 "$xpath:", $self->refname, "\n";
Eric Wonge6434f82007-01-23 16:29:23 -08001957 }
Eric Wongd8115c52007-02-01 03:30:31 -08001958 unless ($no_write) {
1959 command_noisy('config',
1960 "svn-remote.$self->{repo_id}.url", $url);
Eric Wong46cf98b2007-07-14 12:40:32 -07001961 $self->{path} =~ s{^/}{};
Eric Wong5268f9e2009-08-16 14:22:12 -07001962 $self->{path} =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
Eric Wongd8115c52007-02-01 03:30:31 -08001963 command_noisy('config', '--add',
1964 "svn-remote.$self->{repo_id}.fetch",
1965 "$self->{path}:".$self->refname);
1966 }
Eric Wonge6434f82007-01-23 16:29:23 -08001967 $self->{url} = $url;
1968}
1969
Eric Wonga8ae2622007-02-13 14:22:11 -08001970sub find_by_url { # repos_root and, path are optional
1971 my ($class, $full_url, $repos_root, $path) = @_;
Adam Roben56973d22007-04-25 12:42:58 -07001972
Eric Wong1a97a502007-02-20 00:43:19 -08001973 return undef unless defined $full_url;
Adam Roben56973d22007-04-25 12:42:58 -07001974 remove_username($full_url);
1975 remove_username($repos_root) if defined $repos_root;
Eric Wonga8ae2622007-02-13 14:22:11 -08001976 my $remotes = read_all_remotes();
1977 if (defined $full_url && defined $repos_root && !defined $path) {
1978 $path = $full_url;
1979 $path =~ s#^\Q$repos_root\E(?:/|$)##;
1980 }
1981 foreach my $repo_id (keys %$remotes) {
1982 my $u = $remotes->{$repo_id}->{url} or next;
Adam Roben56973d22007-04-25 12:42:58 -07001983 remove_username($u);
Eric Wonga8ae2622007-02-13 14:22:11 -08001984 next if defined $repos_root && $repos_root ne $u;
1985
1986 my $fetch = $remotes->{$repo_id}->{fetch} || {};
Marc Branchaud62244062009-06-23 13:02:08 -04001987 foreach my $t (qw/branches tags/) {
1988 foreach my $globspec (@{$remotes->{$repo_id}->{$t}}) {
1989 resolve_local_globs($u, $fetch, $globspec);
1990 }
Eric Wonga8ae2622007-02-13 14:22:11 -08001991 }
1992 my $p = $path;
John Goerzen0bb91d92008-03-08 16:04:05 -06001993 my $rwr = rewrite_root({repo_id => $repo_id});
João Abecasis63c56022008-07-14 16:28:04 +01001994 my $svm = $remotes->{$repo_id}->{svm}
1995 if defined $remotes->{$repo_id}->{svm};
Eric Wonga8ae2622007-02-13 14:22:11 -08001996 unless (defined $p) {
1997 $p = $full_url;
John Goerzen0bb91d92008-03-08 16:04:05 -06001998 my $z = $u;
João Abecasis63c56022008-07-14 16:28:04 +01001999 my $prefix = '';
John Goerzen0bb91d92008-03-08 16:04:05 -06002000 if ($rwr) {
2001 $z = $rwr;
Dévai Tamás1b7e5432009-02-12 00:14:02 +01002002 remove_username($z);
João Abecasis63c56022008-07-14 16:28:04 +01002003 } elsif (defined $svm) {
2004 $z = $svm->{source};
2005 $prefix = $svm->{replace};
2006 $prefix =~ s#^\Q$u\E(?:/|$)##;
2007 $prefix =~ s#/$##;
John Goerzen0bb91d92008-03-08 16:04:05 -06002008 }
João Abecasis63c56022008-07-14 16:28:04 +01002009 $p =~ s#^\Q$z\E(?:/|$)#$prefix# or next;
Eric Wonga8ae2622007-02-13 14:22:11 -08002010 }
2011 foreach my $f (keys %$fetch) {
2012 next if $f ne $p;
2013 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
2014 }
2015 }
2016 undef;
2017}
2018
Eric Wong9b981fc2007-01-11 12:14:21 -08002019sub init {
Eric Wongd8115c52007-02-01 03:30:31 -08002020 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
Eric Wong706587f2007-01-18 17:50:01 -08002021 my $self = _new($class, $repo_id, $ref_id, $path);
Eric Wong9b981fc2007-01-11 12:14:21 -08002022 if (defined $url) {
Eric Wongd8115c52007-02-01 03:30:31 -08002023 $self->init_remote_config($url, $no_write);
Eric Wong9b981fc2007-01-11 12:14:21 -08002024 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002025 $self;
2026}
2027
Eric Wong706587f2007-01-18 17:50:01 -08002028sub find_ref {
2029 my ($ref_id) = @_;
2030 foreach (command(qw/config -l/)) {
2031 next unless m!^svn-remote\.(.+)\.fetch=
Eric Wongffd5c8e2009-10-22 23:39:04 -07002032 \s*(.*?)\s*:\s*(.+?)\s*$!x;
Eric Wong706587f2007-01-18 17:50:01 -08002033 my ($repo_id, $path, $ref) = ($1, $2, $3);
2034 if ($ref eq $ref_id) {
2035 $path = '' if ($path =~ m#^\./?#);
2036 return ($repo_id, $path);
2037 }
2038 }
2039 (undef, undef, undef);
2040}
2041
Eric Wong9b981fc2007-01-11 12:14:21 -08002042sub new {
Eric Wong706587f2007-01-18 17:50:01 -08002043 my ($class, $ref_id, $repo_id, $path) = @_;
2044 if (defined $ref_id && !defined $repo_id && !defined $path) {
2045 ($repo_id, $path) = find_ref($ref_id);
2046 if (!defined $repo_id) {
2047 die "Could not find a \"svn-remote.*.fetch\" key ",
2048 "in the repository configuration matching: ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04002049 "$ref_id\n";
Eric Wong706587f2007-01-18 17:50:01 -08002050 }
2051 }
2052 my $self = _new($class, $repo_id, $ref_id, $path);
Eric Wong8b8fc062007-01-22 11:44:57 -08002053 if (!defined $self->{path} || !length $self->{path}) {
2054 my $fetch = command_oneline('config', '--get',
2055 "svn-remote.$repo_id.fetch",
Adam Brewster6f5748e2009-08-11 23:14:27 -04002056 ":$ref_id\$") or
Eric Wong8b8fc062007-01-22 11:44:57 -08002057 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04002058 "\":$ref_id\$\" in config\n";
Eric Wong8b8fc062007-01-22 11:44:57 -08002059 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
2060 }
Eric Wongb1a954a2010-06-14 04:31:10 +00002061 $self->{path} =~ s{/+}{/}g;
2062 $self->{path} =~ s{\A/}{};
2063 $self->{path} =~ s{/\z}{};
Eric Wong706587f2007-01-18 17:50:01 -08002064 $self->{url} = command_oneline('config', '--get',
2065 "svn-remote.$repo_id.url") or
2066 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
Eric Wongd6d33462007-02-16 04:05:33 -08002067 $self->rebuild;
Eric Wong9b981fc2007-01-11 12:14:21 -08002068 $self;
2069}
2070
Robert Ewaldbf655fd2007-07-30 11:08:21 +02002071sub refname {
Adam Brewster6f5748e2009-08-11 23:14:27 -04002072 my ($refname) = $_[0]->{ref_id} ;
Robert Ewaldbf655fd2007-07-30 11:08:21 +02002073
2074 # It cannot end with a slash /, we'll throw up on this because
2075 # SVN can't have directories with a slash in their name, either:
2076 if ($refname =~ m{/$}) {
2077 die "ref: '$refname' ends with a trailing slash, this is ",
2078 "not permitted by git nor Subversion\n";
2079 }
2080
2081 # It cannot have ASCII control character space, tilde ~, caret ^,
2082 # colon :, question-mark ?, asterisk *, space, or open bracket [
2083 # anywhere.
2084 #
2085 # Additionally, % must be escaped because it is used for escaping
2086 # and we want our escaped refname to be reversible
2087 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
2088
2089 # no slash-separated component can begin with a dot .
2090 # /.* becomes /%2E*
2091 $refname =~ s{/\.}{/%2E}g;
2092
2093 # It cannot have two consecutive dots .. anywhere
2094 # .. becomes %2E%2E
2095 $refname =~ s{\.\.}{%2E%2E}g;
2096
Torsten Schmutzler73d41952010-05-06 22:20:43 +02002097 # trailing dots and .lock are not allowed
2098 # .$ becomes %2E and .lock becomes %2Elock
2099 $refname =~ s{\.(?=$|lock$)}{%2E};
2100
2101 # the sequence @{ is used to access the reflog
2102 # @{ becomes %40{
2103 $refname =~ s{\@\{}{%40\{}g;
2104
Robert Ewaldbf655fd2007-07-30 11:08:21 +02002105 return $refname;
2106}
2107
2108sub desanitize_refname {
2109 my ($refname) = @_;
2110 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
2111 return $refname;
2112}
Eric Wong9b981fc2007-01-11 12:14:21 -08002113
Eric Wong26a62d52007-02-12 13:25:25 -08002114sub svm_uuid {
2115 my ($self) = @_;
2116 return $self->{svm}->{uuid} if $self->svm;
2117 $self->ra;
2118 unless ($self->{svm}) {
2119 die "SVM UUID not cached, and reading remotely failed\n";
2120 }
2121 $self->{svm}->{uuid};
2122}
Eric Wong8a49ee92007-02-10 20:46:50 -08002123
Eric Wong26a62d52007-02-12 13:25:25 -08002124sub svm {
2125 my ($self) = @_;
2126 return $self->{svm} if $self->{svm};
2127 my $svm;
Eric Wong8a49ee92007-02-10 20:46:50 -08002128 # see if we have it in our config, first:
2129 eval {
Eric Wong26a62d52007-02-12 13:25:25 -08002130 my $section = "svn-remote.$self->{repo_id}";
2131 $svm = {
Eric Wong93f26892007-02-11 01:20:26 -08002132 source => tmp_config('--get', "$section.svm-source"),
2133 uuid => tmp_config('--get', "$section.svm-uuid"),
Eric Wongbefc9ad2007-02-17 02:53:07 -08002134 replace => tmp_config('--get', "$section.svm-replace"),
Eric Wong8a49ee92007-02-10 20:46:50 -08002135 }
2136 };
Eric Wongbefc9ad2007-02-17 02:53:07 -08002137 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
2138 $self->{svm} = $svm;
2139 }
Eric Wong26a62d52007-02-12 13:25:25 -08002140 $self->{svm};
2141}
2142
2143sub _set_svm_vars {
2144 my ($self, $ra) = @_;
Eric Wongdb03cd22007-02-13 00:38:02 -08002145 return $ra if $self->svm;
Eric Wong26a62d52007-02-12 13:25:25 -08002146
Eric Wongdb03cd22007-02-13 00:38:02 -08002147 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
Eric Wongbefc9ad2007-02-17 02:53:07 -08002148 "(svm:source, svm:uuid) ",
Eric Wongdb03cd22007-02-13 00:38:02 -08002149 "from the following URLs:\n" );
2150 sub read_svm_props {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002151 my ($self, $ra, $path, $r) = @_;
2152 my $props = ($ra->get_dir($path, $r))[2];
Eric Wongdb03cd22007-02-13 00:38:02 -08002153 my $src = $props->{'svm:source'};
Eric Wong8a49ee92007-02-10 20:46:50 -08002154 my $uuid = $props->{'svm:uuid'};
Eric Wongbefc9ad2007-02-17 02:53:07 -08002155 return undef if (!$src || !$uuid);
Eric Wongdb03cd22007-02-13 00:38:02 -08002156
Eric Wongbefc9ad2007-02-17 02:53:07 -08002157 chomp($src, $uuid);
Eric Wongdb03cd22007-02-13 00:38:02 -08002158
Eric Wongb3e95932009-07-11 14:13:12 -07002159 $uuid =~ m{^[0-9a-f\-]{30,}$}i
Eric Wong8a49ee92007-02-10 20:46:50 -08002160 or die "doesn't look right - svm:uuid is '$uuid'\n";
Eric Wongbefc9ad2007-02-17 02:53:07 -08002161
2162 # the '!' is used to mark the repos_root!/relative/path
2163 $src =~ s{/?!/?}{/};
Eric Wongdb03cd22007-02-13 00:38:02 -08002164 $src =~ s{/+$}{}; # no trailing slashes please
Eric Wongbefc9ad2007-02-17 02:53:07 -08002165 # username is of no interest
Eric Wongdb03cd22007-02-13 00:38:02 -08002166 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
Eric Wong8a49ee92007-02-10 20:46:50 -08002167
Eric Wongbefc9ad2007-02-17 02:53:07 -08002168 my $replace = $ra->{url};
2169 $replace .= "/$path" if length $path;
2170
Eric Wongdb03cd22007-02-13 00:38:02 -08002171 my $section = "svn-remote.$self->{repo_id}";
Eric Wongbefc9ad2007-02-17 02:53:07 -08002172 tmp_config("$section.svm-source", $src);
2173 tmp_config("$section.svm-replace", $replace);
2174 tmp_config("$section.svm-uuid", $uuid);
2175 $self->{svm} = {
2176 source => $src,
2177 uuid => $uuid,
2178 replace => $replace
2179 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002180 }
Eric Wongdb03cd22007-02-13 00:38:02 -08002181
2182 my $r = $ra->get_latest_revnum;
2183 my $path = $self->{path};
Eric Wongbefc9ad2007-02-17 02:53:07 -08002184 my %tried;
Eric Wongdb03cd22007-02-13 00:38:02 -08002185 while (length $path) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002186 unless ($tried{"$self->{url}/$path"}) {
2187 return $ra if $self->read_svm_props($ra, $path, $r);
2188 $tried{"$self->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08002189 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08002190 $path =~ s#/?[^/]+$##;
Eric Wong8a49ee92007-02-10 20:46:50 -08002191 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08002192 die "Path: '$path' should be ''\n" if $path ne '';
2193 return $ra if $self->read_svm_props($ra, $path, $r);
2194 $tried{"$self->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08002195
2196 if ($ra->{repos_root} eq $self->{url}) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002197 die @err, (map { " $_\n" } keys %tried), "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08002198 }
2199
2200 # nope, make sure we're connected to the repository root:
2201 my $ok;
2202 my @tried_b;
2203 $path = $ra->{svn_path};
Eric Wongdb03cd22007-02-13 00:38:02 -08002204 $ra = Git::SVN::Ra->new($ra->{repos_root});
2205 while (length $path) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002206 unless ($tried{"$ra->{url}/$path"}) {
2207 $ok = $self->read_svm_props($ra, $path, $r);
2208 last if $ok;
2209 $tried{"$ra->{url}/$path"} = 1;
2210 }
2211 $path =~ s#/?[^/]+$##;
Eric Wongdb03cd22007-02-13 00:38:02 -08002212 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08002213 die "Path: '$path' should be ''\n" if $path ne '';
2214 $ok ||= $self->read_svm_props($ra, $path, $r);
2215 $tried{"$ra->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08002216 if (!$ok) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002217 die @err, (map { " $_\n" } keys %tried), "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08002218 }
2219 Git::SVN::Ra->new($self->{url});
Eric Wong8a49ee92007-02-10 20:46:50 -08002220}
2221
Eric Wong62e349d2007-02-16 19:57:29 -08002222sub svnsync {
2223 my ($self) = @_;
2224 return $self->{svnsync} if $self->{svnsync};
2225
2226 if ($self->no_metadata) {
2227 die "Can't have both 'noMetadata' and ",
2228 "'useSvnsyncProps' options set!\n";
2229 }
2230 if ($self->rewrite_root) {
2231 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
2232 "options set!\n";
2233 }
Jay Soffian3e18ce12010-01-23 03:30:00 -05002234 if ($self->rewrite_uuid) {
2235 die "Can't have both 'useSvnsyncProps' and 'rewriteUUID' ",
2236 "options set!\n";
2237 }
Eric Wong62e349d2007-02-16 19:57:29 -08002238
2239 my $svnsync;
2240 # see if we have it in our config, first:
2241 eval {
2242 my $section = "svn-remote.$self->{repo_id}";
Eric Wong98fa5b62008-01-11 23:13:55 -08002243
2244 my $url = tmp_config('--get', "$section.svnsync-url");
2245 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
2246 die "doesn't look right - svn:sync-from-url is '$url'\n";
2247
2248 my $uuid = tmp_config('--get', "$section.svnsync-uuid");
Eric Wongb3e95932009-07-11 14:13:12 -07002249 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or
Eric Wong98fa5b62008-01-11 23:13:55 -08002250 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2251
2252 $svnsync = { url => $url, uuid => $uuid }
Eric Wong62e349d2007-02-16 19:57:29 -08002253 };
2254 if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) {
2255 return $self->{svnsync} = $svnsync;
2256 }
2257
2258 my $err = "useSvnsyncProps set, but failed to read " .
2259 "svnsync property: svn:sync-from-";
2260 my $rp = $self->ra->rev_proplist(0);
2261
2262 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
Eric Wong98fa5b62008-01-11 23:13:55 -08002263 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
Eric Wong62e349d2007-02-16 19:57:29 -08002264 die "doesn't look right - svn:sync-from-url is '$url'\n";
2265
2266 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
Eric Wongb3e95932009-07-11 14:13:12 -07002267 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or
Eric Wong62e349d2007-02-16 19:57:29 -08002268 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2269
2270 my $section = "svn-remote.$self->{repo_id}";
2271 tmp_config('--add', "$section.svnsync-uuid", $uuid);
2272 tmp_config('--add', "$section.svnsync-url", $url);
2273 return $self->{svnsync} = { url => $url, uuid => $uuid };
2274}
2275
Eric Wong26a62d52007-02-12 13:25:25 -08002276# this allows us to memoize our SVN::Ra UUID locally and avoid a
2277# remote lookup (useful for 'git svn log').
2278sub ra_uuid {
2279 my ($self) = @_;
2280 unless ($self->{ra_uuid}) {
2281 my $key = "svn-remote.$self->{repo_id}.uuid";
2282 my $uuid = eval { tmp_config('--get', $key) };
Eric Wongb3e95932009-07-11 14:13:12 -07002283 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/i) {
Eric Wong26a62d52007-02-12 13:25:25 -08002284 $self->{ra_uuid} = $uuid;
2285 } else {
2286 die "ra_uuid called without URL\n" unless $self->{url};
2287 $self->{ra_uuid} = $self->ra->get_uuid;
2288 tmp_config('--add', $key, $self->{ra_uuid});
2289 }
2290 }
2291 $self->{ra_uuid};
2292}
2293
Eric Wonga5460eb2007-11-21 18:20:57 -08002294sub _set_repos_root {
2295 my ($self, $repos_root) = @_;
2296 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2297 $repos_root ||= $self->ra->{repos_root};
2298 tmp_config($k, $repos_root);
2299 $repos_root;
2300}
2301
2302sub repos_root {
2303 my ($self) = @_;
2304 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2305 eval { tmp_config('--get', $k) } || $self->_set_repos_root;
2306}
2307
Eric Wong9b981fc2007-01-11 12:14:21 -08002308sub ra {
2309 my ($self) = shift;
Eric Wong8a49ee92007-02-10 20:46:50 -08002310 my $ra = Git::SVN::Ra->new($self->{url});
Eric Wonga5460eb2007-11-21 18:20:57 -08002311 $self->_set_repos_root($ra->{repos_root});
Eric Wong91b03282007-02-11 00:51:33 -08002312 if ($self->use_svm_props && !$self->{svm}) {
2313 if ($self->no_metadata) {
Eric Wong97ae0912007-02-11 15:21:24 -08002314 die "Can't have both 'noMetadata' and ",
2315 "'useSvmProps' options set!\n";
Eric Wong62e349d2007-02-16 19:57:29 -08002316 } elsif ($self->use_svnsync_props) {
2317 die "Can't have both 'useSvnsyncProps' and ",
2318 "'useSvmProps' options set!\n";
Eric Wong91b03282007-02-11 00:51:33 -08002319 }
Eric Wong26a62d52007-02-12 13:25:25 -08002320 $ra = $self->_set_svm_vars($ra);
Eric Wong8a49ee92007-02-10 20:46:50 -08002321 $self->{-want_revprops} = 1;
2322 }
2323 $ra;
Eric Wong9b981fc2007-01-11 12:14:21 -08002324}
2325
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002326# prop_walk(PATH, REV, SUB)
2327# -------------------------
2328# Recursively traverse PATH at revision REV and invoke SUB for each
2329# directory that contains a SVN property. SUB will be invoked as
2330# follows: &SUB(gs, path, props); where `gs' is this instance of
2331# Git::SVN, `path' the path to the directory where the properties
2332# `props' were found. The `path' will be relative to point of checkout,
2333# that is, if url://repo/trunk is the current Git branch, and that
2334# directory contains a sub-directory `d', SUB will be invoked with `/d/'
2335# as `path' (note the trailing `/').
2336sub prop_walk {
2337 my ($self, $path, $rev, $sub) = @_;
2338
Kevin Ballard35cda062008-01-09 01:37:20 -05002339 $path =~ s#^/##;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002340 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
2341 $path =~ s#^/*#/#g;
Eric Wong9b981fc2007-01-11 12:14:21 -08002342 my $p = $path;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002343 # Strip the irrelevant part of the path.
2344 $p =~ s#^/+\Q$self->{path}\E(/|$)#/#;
2345 # Ensure the path is terminated by a `/'.
2346 $p =~ s#/*$#/#;
2347
2348 # The properties contain all the internal SVN stuff nobody
2349 # (usually) cares about.
2350 my $interesting_props = 0;
2351 foreach (keys %{$props}) {
2352 # If it doesn't start with `svn:', it must be a
2353 # user-defined property.
2354 ++$interesting_props and next if $_ !~ /^svn:/;
2355 # FIXME: Fragile, if SVN adds new public properties,
2356 # this needs to be updated.
2357 ++$interesting_props if /^svn:(?:ignore|keywords|executable
2358 |eol-style|mime-type
2359 |externals|needs-lock)$/x;
Eric Wong9b981fc2007-01-11 12:14:21 -08002360 }
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002361 &$sub($self, $p, $props) if $interesting_props;
2362
Eric Wong9b981fc2007-01-11 12:14:21 -08002363 foreach (sort keys %$dirent) {
Eric Wong0dc03d62007-05-13 01:04:43 -07002364 next if $dirent->{$_}->{kind} != $SVN::Node::dir;
Christian Engwerb7166cc2008-05-27 08:46:55 +00002365 $self->prop_walk($self->{path} . $p . $_, $rev, $sub);
Eric Wong9b981fc2007-01-11 12:14:21 -08002366 }
2367}
2368
Eric Wong3ebe8df2007-01-25 17:35:40 -08002369sub last_rev { ($_[0]->last_rev_commit)[0] }
2370sub last_commit { ($_[0]->last_rev_commit)[1] }
2371
Eric Wong9b981fc2007-01-11 12:14:21 -08002372# returns the newest SVN revision number and newest commit SHA1
2373sub last_rev_commit {
2374 my ($self) = @_;
2375 if (defined $self->{last_rev} && defined $self->{last_commit}) {
2376 return ($self->{last_rev}, $self->{last_commit});
2377 }
Eric Wongd2866f92007-01-11 12:26:16 -08002378 my $c = ::verify_ref($self->refname.'^0');
Eric Wong91b03282007-02-11 00:51:33 -08002379 if ($c && !$self->use_svm_props && !$self->no_metadata) {
Eric Wongd2866f92007-01-11 12:26:16 -08002380 my $rev = (::cmt_metadata($c))[1];
Eric Wong9b981fc2007-01-11 12:14:21 -08002381 if (defined $rev) {
2382 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
2383 return ($rev, $c);
2384 }
2385 }
Eric Wong060610c2007-12-08 23:27:41 -08002386 my $map_path = $self->map_path;
2387 unless (-e $map_path) {
Eric Wong26a62d52007-02-12 13:25:25 -08002388 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
2389 return (undef, undef);
2390 }
Eric Wong66ab84b2007-12-08 23:27:42 -08002391 my ($rev, $commit) = $self->rev_map_max(1);
Eric Wong060610c2007-12-08 23:27:41 -08002392 ($self->{last_rev}, $self->{last_commit}) = ($rev, $commit);
2393 return ($rev, $commit);
Eric Wong9b981fc2007-01-11 12:14:21 -08002394}
2395
Eric Wong3ebe8df2007-01-25 17:35:40 -08002396sub get_fetch_range {
2397 my ($self, $min, $max) = @_;
2398 $max ||= $self->ra->get_latest_revnum;
Eric Wong060610c2007-12-08 23:27:41 -08002399 $min ||= $self->rev_map_max;
Eric Wong3ebe8df2007-01-25 17:35:40 -08002400 (++$min, $max);
Eric Wong9b981fc2007-01-11 12:14:21 -08002401}
2402
Eric Wong8a49ee92007-02-10 20:46:50 -08002403sub tmp_config {
Eric Wong93f26892007-02-11 01:20:26 -08002404 my (@args) = @_;
Eric Wongb7e53482007-02-16 04:09:28 -08002405 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
2406 my $config = "$ENV{GIT_DIR}/svn/.metadata";
Eric Wong38570a42007-06-13 02:37:05 -07002407 if (! -f $config && -f $old_def_config) {
Eric Wongb7e53482007-02-16 04:09:28 -08002408 rename $old_def_config, $config or
2409 die "Failed rename $old_def_config => $config: $!\n";
2410 }
Eric Wong8a49ee92007-02-10 20:46:50 -08002411 my $old_config = $ENV{GIT_CONFIG};
Eric Wong93f26892007-02-11 01:20:26 -08002412 $ENV{GIT_CONFIG} = $config;
Eric Wong8a49ee92007-02-10 20:46:50 -08002413 $@ = undef;
Eric Wongb4d57e52007-02-14 15:10:44 -08002414 my @ret = eval {
2415 unless (-f $config) {
2416 mkfile($config);
2417 open my $fh, '>', $config or
2418 die "Can't open $config: $!\n";
2419 print $fh "; This file is used internally by ",
2420 "git-svn\n" or die
2421 "Couldn't write to $config: $!\n";
2422 print $fh "; You should not have to edit it\n" or
2423 die "Couldn't write to $config: $!\n";
2424 close $fh or die "Couldn't close $config: $!\n";
2425 }
2426 command('config', @args);
2427 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002428 my $err = $@;
2429 if (defined $old_config) {
2430 $ENV{GIT_CONFIG} = $old_config;
2431 } else {
2432 delete $ENV{GIT_CONFIG};
2433 }
2434 die $err if $err;
2435 wantarray ? @ret : $ret[0];
2436}
2437
Eric Wong9b981fc2007-01-11 12:14:21 -08002438sub tmp_index_do {
2439 my ($self, $sub) = @_;
2440 my $old_index = $ENV{GIT_INDEX_FILE};
2441 $ENV{GIT_INDEX_FILE} = $self->{index};
Eric Wong8a49ee92007-02-10 20:46:50 -08002442 $@ = undef;
Eric Wongb4d57e52007-02-14 15:10:44 -08002443 my @ret = eval {
2444 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
2445 mkpath([$dir]) unless -d $dir;
2446 &$sub;
2447 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002448 my $err = $@;
2449 if (defined $old_index) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002450 $ENV{GIT_INDEX_FILE} = $old_index;
2451 } else {
2452 delete $ENV{GIT_INDEX_FILE};
2453 }
Eric Wong8a49ee92007-02-10 20:46:50 -08002454 die $err if $err;
Eric Wong9b981fc2007-01-11 12:14:21 -08002455 wantarray ? @ret : $ret[0];
2456}
2457
2458sub assert_index_clean {
2459 my ($self, $treeish) = @_;
2460
2461 $self->tmp_index_do(sub {
2462 command_noisy('read-tree', $treeish) unless -e $self->{index};
2463 my $x = command_oneline('write-tree');
2464 my ($y) = (command(qw/cat-file commit/, $treeish) =~
2465 /^tree ($::sha1)/mo);
Eric Wonge8d120b2007-02-14 16:29:52 -08002466 return if $y eq $x;
2467
2468 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2469 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2470 command_noisy('read-tree', $treeish);
Eric Wong9b981fc2007-01-11 12:14:21 -08002471 $x = command_oneline('write-tree');
2472 if ($y ne $x) {
2473 ::fatal "trees ($treeish) $y != $x\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02002474 "Something is seriously wrong...";
Eric Wong9b981fc2007-01-11 12:14:21 -08002475 }
2476 });
2477}
2478
2479sub get_commit_parents {
Eric Wong0af9c9f2007-01-27 22:28:56 -08002480 my ($self, $log_entry) = @_;
Eric Wong9b981fc2007-01-11 12:14:21 -08002481 my (%seen, @ret, @tmp);
Eric Wong0af9c9f2007-01-27 22:28:56 -08002482 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2483 if (my $ip = $self->{inject_parents}) {
2484 if (my $commit = delete $ip->{$log_entry->{revision}}) {
2485 push @tmp, $commit;
Eric Wong9b981fc2007-01-11 12:14:21 -08002486 }
2487 }
Eric Wongd2866f92007-01-11 12:26:16 -08002488 if (my $cur = ::verify_ref($self->refname.'^0')) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002489 push @tmp, $cur;
2490 }
Eric Wong733a65a2007-06-13 02:23:28 -07002491 if (my $ipd = $self->{inject_parents_dcommit}) {
2492 if (my $commit = delete $ipd->{$log_entry->{revision}}) {
2493 push @tmp, @$commit;
2494 }
2495 }
Eric Wong44320b92007-01-13 22:35:53 -08002496 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
Eric Wong9b981fc2007-01-11 12:14:21 -08002497 while (my $p = shift @tmp) {
2498 next if $seen{$p};
2499 $seen{$p} = 1;
2500 push @ret, $p;
Eric Wong9b981fc2007-01-11 12:14:21 -08002501 }
2502 @ret;
2503}
2504
Eric Wongaea736c2007-02-16 19:15:21 -08002505sub rewrite_root {
2506 my ($self) = @_;
2507 return $self->{-rewrite_root} if exists $self->{-rewrite_root};
2508 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2509 my $rwr = eval { command_oneline(qw/config --get/, $k) };
2510 if ($rwr) {
2511 $rwr =~ s#/+$##;
2512 if ($rwr !~ m#^[a-z\+]+://#) {
2513 die "$rwr is not a valid URL (key: $k)\n";
2514 }
2515 }
2516 $self->{-rewrite_root} = $rwr;
2517}
2518
Jay Soffian3e18ce12010-01-23 03:30:00 -05002519sub rewrite_uuid {
2520 my ($self) = @_;
2521 return $self->{-rewrite_uuid} if exists $self->{-rewrite_uuid};
2522 my $k = "svn-remote.$self->{repo_id}.rewriteUUID";
2523 my $rwid = eval { command_oneline(qw/config --get/, $k) };
2524 if ($rwid) {
2525 $rwid =~ s#/+$##;
2526 if ($rwid !~ m#^[a-f0-9]{8}-(?:[a-f0-9]{4}-){3}[a-f0-9]{12}$#) {
2527 die "$rwid is not a valid UUID (key: $k)\n";
2528 }
2529 }
2530 $self->{-rewrite_uuid} = $rwid;
2531}
2532
Eric Wongaea736c2007-02-16 19:15:21 -08002533sub metadata_url {
2534 my ($self) = @_;
2535 ($self->rewrite_root || $self->{url}) .
2536 (length $self->{path} ? '/' . $self->{path} : '');
2537}
2538
Eric Wong706587f2007-01-18 17:50:01 -08002539sub full_url {
Eric Wong9b981fc2007-01-11 12:14:21 -08002540 my ($self) = @_;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08002541 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
Eric Wong9b981fc2007-01-11 12:14:21 -08002542}
2543
Eric Wongad948022007-12-15 19:08:22 -08002544
2545sub set_commit_header_env {
2546 my ($log_entry) = @_;
2547 my %env;
2548 foreach my $ned (qw/NAME EMAIL DATE/) {
2549 foreach my $ac (qw/AUTHOR COMMITTER/) {
2550 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2551 }
2552 }
2553
2554 $ENV{GIT_AUTHOR_NAME} = $log_entry->{name};
2555 $ENV{GIT_AUTHOR_EMAIL} = $log_entry->{email};
2556 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
2557
2558 $ENV{GIT_COMMITTER_NAME} = (defined $log_entry->{commit_name})
2559 ? $log_entry->{commit_name}
2560 : $log_entry->{name};
2561 $ENV{GIT_COMMITTER_EMAIL} = (defined $log_entry->{commit_email})
2562 ? $log_entry->{commit_email}
2563 : $log_entry->{email};
2564 \%env;
2565}
2566
2567sub restore_commit_header_env {
2568 my ($env) = @_;
2569 foreach my $ned (qw/NAME EMAIL DATE/) {
2570 foreach my $ac (qw/AUTHOR COMMITTER/) {
2571 my $k = "GIT_${ac}_${ned}";
2572 if (defined $env->{$k}) {
2573 $ENV{$k} = $env->{$k};
2574 } else {
2575 delete $ENV{$k};
2576 }
2577 }
2578 }
2579}
2580
Karl Hasselström94bc9142008-02-03 17:56:18 +01002581sub gc {
2582 command_noisy('gc', '--auto');
2583};
2584
Eric Wong9b981fc2007-01-11 12:14:21 -08002585sub do_git_commit {
Eric Wong0af9c9f2007-01-27 22:28:56 -08002586 my ($self, $log_entry) = @_;
Eric Wong8a603772007-01-31 02:45:50 -08002587 my $lr = $self->last_rev;
2588 if (defined $lr && $lr >= $log_entry->{revision}) {
2589 die "Last fetched revision of ", $self->refname,
2590 " was r$lr, but we are about to fetch: ",
2591 "r$log_entry->{revision}!\n";
2592 }
Eric Wong060610c2007-12-08 23:27:41 -08002593 if (my $c = $self->rev_map_get($log_entry->{revision})) {
Eric Wong44320b92007-01-13 22:35:53 -08002594 croak "$log_entry->{revision} = $c already exists! ",
Eric Wong9b981fc2007-01-11 12:14:21 -08002595 "Why are we refetching it?\n";
2596 }
Eric Wongad948022007-12-15 19:08:22 -08002597 my $old_env = set_commit_header_env($log_entry);
Eric Wong44320b92007-01-13 22:35:53 -08002598 my $tree = $log_entry->{tree};
Eric Wong9b981fc2007-01-11 12:14:21 -08002599 if (!defined $tree) {
2600 $tree = $self->tmp_index_do(sub {
2601 command_oneline('write-tree') });
2602 }
2603 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2604
Deskin Millere855bfc2008-10-31 00:10:25 -04002605 my @exec = ('git', 'commit-tree', $tree);
Eric Wong0af9c9f2007-01-27 22:28:56 -08002606 foreach ($self->get_commit_parents($log_entry)) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002607 push @exec, '-p', $_;
2608 }
2609 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2610 or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07002611 binmode $msg_fh;
2612
2613 # we always get UTF-8 from SVN, but we may want our commits in
2614 # a different encoding.
2615 if (my $enc = Git::config('i18n.commitencoding')) {
2616 require Encode;
2617 Encode::from_to($log_entry->{log}, 'UTF-8', $enc);
2618 }
Eric Wong44320b92007-01-13 22:35:53 -08002619 print $msg_fh $log_entry->{log} or croak $!;
Eric Wongad948022007-12-15 19:08:22 -08002620 restore_commit_header_env($old_env);
Eric Wong91b03282007-02-11 00:51:33 -08002621 unless ($self->no_metadata) {
Eric Wong8a49ee92007-02-10 20:46:50 -08002622 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
2623 or croak $!;
Eric Wong9760adc2007-01-31 03:06:56 -08002624 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002625 $msg_fh->flush == 0 or croak $!;
2626 close $msg_fh or croak $!;
2627 chomp(my $commit = do { local $/; <$out_fh> });
2628 close $out_fh or croak $!;
2629 waitpid $pid, 0;
2630 croak $? if $?;
2631 if ($commit !~ /^$::sha1$/o) {
2632 die "Failed to commit, invalid sha1: $commit\n";
2633 }
2634
Eric Wong060610c2007-12-08 23:27:41 -08002635 $self->rev_map_set($log_entry->{revision}, $commit, 1);
Eric Wong9b981fc2007-01-11 12:14:21 -08002636
Eric Wong44320b92007-01-13 22:35:53 -08002637 $self->{last_rev} = $log_entry->{revision};
Eric Wong9b981fc2007-01-11 12:14:21 -08002638 $self->{last_commit} = $commit;
Simon Arlott49750f32009-03-30 19:31:41 +01002639 print "r$log_entry->{revision}" unless $::_q > 1;
Eric Wong8a49ee92007-02-10 20:46:50 -08002640 if (defined $log_entry->{svm_revision}) {
Simon Arlott49750f32009-03-30 19:31:41 +01002641 print " (\@$log_entry->{svm_revision})" unless $::_q > 1;
Eric Wong060610c2007-12-08 23:27:41 -08002642 $self->rev_map_set($log_entry->{svm_revision}, $commit,
Eric Wong26a62d52007-02-12 13:25:25 -08002643 0, $self->svm_uuid);
Eric Wong8a49ee92007-02-10 20:46:50 -08002644 }
Simon Arlott49750f32009-03-30 19:31:41 +01002645 print " = $commit ($self->{ref_id})\n" unless $::_q > 1;
Karl Hasselström94bc9142008-02-03 17:56:18 +01002646 if (--$_gc_nr == 0) {
2647 $_gc_nr = $_gc_period;
2648 gc();
2649 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002650 return $commit;
2651}
2652
Eric Wongfbcc1732007-02-06 18:35:30 -08002653sub match_paths {
2654 my ($self, $paths, $r) = @_;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08002655 return 1 if $self->{path} eq '';
Eric Wongd542aed2007-02-09 02:19:41 -08002656 if (my $path = $paths->{"/$self->{path}"}) {
2657 return ($path->{action} eq 'D') ? 0 : 1;
2658 }
Mattias Nissler0b2af452009-07-07 01:40:02 +02002659 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
Eric Wongfbcc1732007-02-06 18:35:30 -08002660 if (grep /$self->{path_regex}/, keys %$paths) {
2661 return 1;
2662 }
2663 my $c = '';
2664 foreach (split m#/#, $self->{path}) {
2665 $c .= "/$_";
Eric Wong74a81222007-02-10 13:28:50 -08002666 next unless ($paths->{$c} &&
2667 ($paths->{$c}->{action} =~ /^[AR]$/));
Eric Wonge5181922007-02-08 12:53:57 -08002668 if ($self->ra->check_path($self->{path}, $r) ==
2669 $SVN::Node::dir) {
Eric Wongfbcc1732007-02-06 18:35:30 -08002670 return 1;
2671 }
2672 }
2673 return 0;
2674}
2675
Eric Wong15710b62007-01-22 02:20:33 -08002676sub find_parent_branch {
2677 my ($self, $paths, $rev) = @_;
Eric Wong91b03282007-02-11 00:51:33 -08002678 return undef unless $self->follow_parent;
Eric Wonge5a0b242007-01-25 15:44:54 -08002679 unless (defined $paths) {
Eric Wongc7eba712007-01-31 03:45:28 -08002680 my $err_handler = $SVN::Error::handler;
2681 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
Mattias Nissler3c49a032009-07-07 01:39:52 +02002682 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1,
2683 sub { $paths = $_[0] });
Eric Wongc7eba712007-01-31 03:45:28 -08002684 $SVN::Error::handler = $err_handler;
Eric Wonge5a0b242007-01-25 15:44:54 -08002685 }
2686 return undef unless defined $paths;
Eric Wong15710b62007-01-22 02:20:33 -08002687
2688 # look for a parent from another branch:
Mattias Nissler0b2af452009-07-07 01:40:02 +02002689 my @b_path_components = split m#/#, $self->{path};
Eric Wong7f578c52007-01-24 02:16:25 -08002690 my @a_path_components;
2691 my $i;
2692 while (@b_path_components) {
2693 $i = $paths->{'/'.join('/', @b_path_components)};
Eric Wong74a81222007-02-10 13:28:50 -08002694 last if $i && defined $i->{copyfrom_path};
Eric Wong7f578c52007-01-24 02:16:25 -08002695 unshift(@a_path_components, pop(@b_path_components));
2696 }
Eric Wong74a81222007-02-10 13:28:50 -08002697 return undef unless defined $i && defined $i->{copyfrom_path};
2698 my $branch_from = $i->{copyfrom_path};
Eric Wong7f578c52007-01-24 02:16:25 -08002699 if (@a_path_components) {
2700 print STDERR "branch_from: $branch_from => ";
2701 $branch_from .= '/'.join('/', @a_path_components);
2702 print STDERR $branch_from, "\n";
2703 }
Eric Wong3ebe8df2007-01-25 17:35:40 -08002704 my $r = $i->{copyfrom_rev};
Eric Wong15710b62007-01-22 02:20:33 -08002705 my $repos_root = $self->ra->{repos_root};
2706 my $url = $self->ra->{url};
Mattias Nissler0b2af452009-07-07 01:40:02 +02002707 my $new_url = $url . $branch_from;
Eric Wong15710b62007-01-22 02:20:33 -08002708 print STDERR "Found possible branch point: ",
Simon Arlott85886162009-10-09 13:21:13 +01002709 "$new_url => ", $self->full_url, ", $r\n"
2710 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002711 $branch_from =~ s#^/##;
Mattias Nissler0b2af452009-07-07 01:40:02 +02002712 my $gs = $self->other_gs($new_url, $url,
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002713 $branch_from, $r, $self->{ref_id});
Eric Wong15710b62007-01-22 02:20:33 -08002714 my ($r0, $parent) = $gs->find_rev_before($r, 1);
Deskin Miller553589f2008-12-08 08:31:31 -05002715 {
2716 my ($base, $head);
2717 if (!defined $r0 || !defined $parent) {
2718 ($base, $head) = parse_revision_argument(0, $r);
2719 } else {
2720 if ($r0 < $r) {
2721 $gs->ra->get_log([$gs->{path}], $r0 + 1, $r, 1,
2722 0, 1, sub { $base = $_[1] - 1 });
2723 }
2724 }
2725 if (defined $base && $base <= $r) {
Eric Wongd627de62007-04-15 03:01:29 -07002726 $gs->fetch($base, $r);
2727 }
Deskin Miller553589f2008-12-08 08:31:31 -05002728 ($r0, $parent) = $gs->find_rev_before($r, 1);
Eric Wong15710b62007-01-22 02:20:33 -08002729 }
Eric Wongef70de92007-02-01 04:12:41 -08002730 if (defined $r0 && defined $parent) {
Simon Arlott85886162009-10-09 13:21:13 +01002731 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n"
2732 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002733 my $ed;
2734 if ($self->ra->can_do_switch) {
Eric Wong2e5e2482007-02-23 02:21:59 -08002735 $self->assert_index_clean($parent);
Simon Arlott85886162009-10-09 13:21:13 +01002736 print STDERR "Following parent with do_switch\n"
2737 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002738 # do_switch works with svn/trunk >= r22312, but that
Eric Wong2b27f6c2007-01-28 04:59:05 -08002739 # is not included with SVN 1.4.3 (the latest version
Eric Wong15710b62007-01-22 02:20:33 -08002740 # at the moment), so we can't rely on it
Eric Wong83c2fcf2009-02-22 20:25:00 -08002741 $self->{last_rev} = $r0;
Eric Wong15710b62007-01-22 02:20:33 -08002742 $self->{last_commit} = $parent;
Eric Wong8841b372009-02-11 01:56:58 -08002743 $ed = SVN::Git::Fetcher->new($self, $gs->{path});
Eric Wong8a603772007-01-31 02:45:50 -08002744 $gs->ra->gs_do_switch($r0, $rev, $gs,
Eric Wong15710b62007-01-22 02:20:33 -08002745 $self->full_url, $ed)
2746 or die "SVN connection failed somewhere...\n";
Steven Walter9ff74e92007-09-28 13:24:19 -04002747 } elsif ($self->ra->trees_match($new_url, $r0,
2748 $self->full_url, $rev)) {
2749 print STDERR "Trees match:\n",
2750 " $new_url\@$r0\n",
2751 " ${\$self->full_url}\@$rev\n",
Simon Arlott85886162009-10-09 13:21:13 +01002752 "Following parent with no changes\n"
2753 unless $::_q > 1;
Steven Walter9ff74e92007-09-28 13:24:19 -04002754 $self->tmp_index_do(sub {
2755 command_noisy('read-tree', $parent);
2756 });
2757 $self->{last_commit} = $parent;
Eric Wong15710b62007-01-22 02:20:33 -08002758 } else {
Simon Arlott85886162009-10-09 13:21:13 +01002759 print STDERR "Following parent with do_update\n"
2760 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002761 $ed = SVN::Git::Fetcher->new($self);
Eric Wong8a603772007-01-31 02:45:50 -08002762 $self->ra->gs_do_update($rev, $rev, $self, $ed)
Eric Wong15710b62007-01-22 02:20:33 -08002763 or die "SVN connection failed somewhere...\n";
2764 }
Simon Arlott85886162009-10-09 13:21:13 +01002765 print STDERR "Successfully followed parent\n" unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002766 return $self->make_log_entry($rev, [$parent], $ed);
2767 }
Eric Wong15710b62007-01-22 02:20:33 -08002768 return undef;
2769}
2770
Eric Wong9b981fc2007-01-11 12:14:21 -08002771sub do_fetch {
Eric Wong706587f2007-01-18 17:50:01 -08002772 my ($self, $paths, $rev) = @_;
Eric Wong15710b62007-01-22 02:20:33 -08002773 my $ed;
Eric Wong9b981fc2007-01-11 12:14:21 -08002774 my ($last_rev, @parents);
Eric Wongb9dffd82007-02-09 01:28:30 -08002775 if (my $lc = $self->last_commit) {
2776 # we can have a branch that was deleted, then re-added
2777 # under the same name but copied from another path, in
2778 # which case we'll have multiple parents (we don't
2779 # want to break the original ref, nor lose copypath info):
2780 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2781 push @{$log_entry->{parents}}, $lc;
2782 return $log_entry;
2783 }
Eric Wong15710b62007-01-22 02:20:33 -08002784 $ed = SVN::Git::Fetcher->new($self);
Eric Wong9b981fc2007-01-11 12:14:21 -08002785 $last_rev = $self->{last_rev};
Eric Wongb9dffd82007-02-09 01:28:30 -08002786 $ed->{c} = $lc;
2787 @parents = ($lc);
Eric Wong9b981fc2007-01-11 12:14:21 -08002788 } else {
2789 $last_rev = $rev;
Eric Wong15710b62007-01-22 02:20:33 -08002790 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2791 return $log_entry;
2792 }
2793 $ed = SVN::Git::Fetcher->new($self);
Eric Wong9b981fc2007-01-11 12:14:21 -08002794 }
Eric Wong8a603772007-01-31 02:45:50 -08002795 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002796 die "SVN connection failed somewhere...\n";
2797 }
2798 $self->make_log_entry($rev, \@parents, $ed);
2799}
2800
Eric Wong6111b932009-11-15 18:57:16 -08002801sub mkemptydirs {
2802 my ($self, $r) = @_;
Eric Wong6111b932009-11-15 18:57:16 -08002803
Eric Wonga5b80d92009-12-19 13:49:00 -08002804 sub scan {
2805 my ($r, $empty_dirs, $line) = @_;
2806 if (defined $r && $line =~ /^r(\d+)$/) {
2807 return 0 if $1 > $r;
2808 } elsif ($line =~ /^ \+empty_dir: (.+)$/) {
2809 $empty_dirs->{$1} = 1;
2810 } elsif ($line =~ /^ \-empty_dir: (.+)$/) {
2811 my @d = grep {m[^\Q$1\E(/|$)]} (keys %$empty_dirs);
2812 delete @$empty_dirs{@d};
2813 }
2814 1; # continue
2815 };
2816
2817 my %empty_dirs = ();
2818 my $gz_file = "$self->{dir}/unhandled.log.gz";
2819 if (-f $gz_file) {
2820 if (!$can_compress) {
2821 warn "Compress::Zlib could not be found; ",
2822 "empty directories in $gz_file will not be read\n";
2823 } else {
2824 my $gz = Compress::Zlib::gzopen($gz_file, "rb") or
2825 die "Unable to open $gz_file: $!\n";
2826 my $line;
2827 while ($gz->gzreadline($line) > 0) {
2828 scan($r, \%empty_dirs, $line) or last;
2829 }
2830 $gz->gzclose;
Eric Wong6111b932009-11-15 18:57:16 -08002831 }
2832 }
Eric Wonga5b80d92009-12-19 13:49:00 -08002833
2834 if (open my $fh, '<', "$self->{dir}/unhandled.log") {
2835 binmode $fh or croak "binmode: $!";
2836 while (<$fh>) {
2837 scan($r, \%empty_dirs, $_) or last;
2838 }
2839 close $fh;
2840 }
Eric Wong9be30ee2009-11-22 18:11:32 -08002841
2842 my $strip = qr/\A\Q$self->{path}\E(?:\/|$)/;
Eric Wong6111b932009-11-15 18:57:16 -08002843 foreach my $d (sort keys %empty_dirs) {
2844 $d = uri_decode($d);
Eric Wong9be30ee2009-11-22 18:11:32 -08002845 $d =~ s/$strip//;
Michael J. Kiwala7c42e392010-06-01 16:24:57 -05002846 next unless length($d);
Eric Wong6111b932009-11-15 18:57:16 -08002847 next if -d $d;
Michael J. Kiwala7c42e392010-06-01 16:24:57 -05002848 if (-e $d) {
Eric Wong6111b932009-11-15 18:57:16 -08002849 warn "$d exists but is not a directory\n";
2850 } else {
2851 print "creating empty directory: $d\n";
2852 mkpath([$d]);
2853 }
2854 }
2855}
2856
Eric Wong97f69872007-01-25 11:53:13 -08002857sub get_untracked {
2858 my ($self, $ed) = @_;
2859 my @out;
2860 my $h = $ed->{empty};
Eric Wong9b981fc2007-01-11 12:14:21 -08002861 foreach (sort keys %$h) {
2862 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
Eric Wong97f69872007-01-25 11:53:13 -08002863 push @out, " $act: " . uri_encode($_);
Eric Wong9b981fc2007-01-11 12:14:21 -08002864 warn "W: $act: $_\n";
2865 }
2866 foreach my $t (qw/dir_prop file_prop/) {
Eric Wong97f69872007-01-25 11:53:13 -08002867 $h = $ed->{$t} or next;
Eric Wong9b981fc2007-01-11 12:14:21 -08002868 foreach my $path (sort keys %$h) {
2869 my $ppath = $path eq '' ? '.' : $path;
2870 foreach my $prop (sort keys %{$h->{$path}}) {
Eric Wong1ce255d2007-01-14 23:21:16 -08002871 next if $SKIP_PROP{$prop};
Eric Wong9b981fc2007-01-11 12:14:21 -08002872 my $v = $h->{$path}->{$prop};
Eric Wong97f69872007-01-25 11:53:13 -08002873 my $t_ppath_prop = "$t: " .
2874 uri_encode($ppath) . ' ' .
2875 uri_encode($prop);
Eric Wong9b981fc2007-01-11 12:14:21 -08002876 if (defined $v) {
Eric Wong97f69872007-01-25 11:53:13 -08002877 push @out, " +$t_ppath_prop " .
2878 uri_encode($v);
Eric Wong9b981fc2007-01-11 12:14:21 -08002879 } else {
Eric Wong97f69872007-01-25 11:53:13 -08002880 push @out, " -$t_ppath_prop";
Eric Wong9b981fc2007-01-11 12:14:21 -08002881 }
2882 }
2883 }
2884 }
2885 foreach my $t (qw/absent_file absent_directory/) {
Eric Wong97f69872007-01-25 11:53:13 -08002886 $h = $ed->{$t} or next;
Eric Wong9b981fc2007-01-11 12:14:21 -08002887 foreach my $parent (sort keys %$h) {
2888 foreach my $path (sort @{$h->{$parent}}) {
Eric Wong97f69872007-01-25 11:53:13 -08002889 push @out, " $t: " .
2890 uri_encode("$parent/$path");
Eric Wong9b981fc2007-01-11 12:14:21 -08002891 warn "W: $t: $parent/$path ",
2892 "Insufficient permissions?\n";
2893 }
2894 }
2895 }
Eric Wong97f69872007-01-25 11:53:13 -08002896 \@out;
Eric Wong9b981fc2007-01-11 12:14:21 -08002897}
2898
Pete Harlane82f0d72009-01-17 20:10:14 -08002899# parse_svn_date(DATE)
2900# --------------------
2901# Given a date (in UTC) from Subversion, return a string in the format
2902# "<TZ Offset> <local date/time>" that Git will use.
2903#
2904# By default the parsed date will be in UTC; if $Git::SVN::_localtime
2905# is true we'll convert it to the local timezone instead.
Eric Wong1c8443b2007-01-14 02:17:00 -08002906sub parse_svn_date {
2907 my $date = shift || return '+0000 1970-01-01 00:00:00';
2908 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
Junio C Hamanob94ead72009-02-18 10:48:01 -08002909 (\d\d)\:(\d\d)\:(\d\d)\.\d*Z$/x) or
Eric Wong1c8443b2007-01-14 02:17:00 -08002910 croak "Unable to parse date: $date\n";
Pete Harlane82f0d72009-01-17 20:10:14 -08002911 my $parsed_date; # Set next.
2912
2913 if ($Git::SVN::_localtime) {
2914 # Translate the Subversion datetime to an epoch time.
2915 # Begin by switching ourselves to $date's timezone, UTC.
2916 my $old_env_TZ = $ENV{TZ};
2917 $ENV{TZ} = 'UTC';
2918
2919 my $epoch_in_UTC =
2920 POSIX::strftime('%s', $S, $M, $H, $d, $m - 1, $Y - 1900);
2921
2922 # Determine our local timezone (including DST) at the
2923 # time of $epoch_in_UTC. $Git::SVN::Log::TZ stored the
2924 # value of TZ, if any, at the time we were run.
2925 if (defined $Git::SVN::Log::TZ) {
2926 $ENV{TZ} = $Git::SVN::Log::TZ;
2927 } else {
2928 delete $ENV{TZ};
2929 }
2930
2931 my $our_TZ =
2932 POSIX::strftime('%Z', $S, $M, $H, $d, $m - 1, $Y - 1900);
2933
2934 # This converts $epoch_in_UTC into our local timezone.
2935 my ($sec, $min, $hour, $mday, $mon, $year,
2936 $wday, $yday, $isdst) = localtime($epoch_in_UTC);
2937
2938 $parsed_date = sprintf('%s %04d-%02d-%02d %02d:%02d:%02d',
2939 $our_TZ, $year + 1900, $mon + 1,
2940 $mday, $hour, $min, $sec);
2941
2942 # Reset us to the timezone in effect when we entered
2943 # this routine.
2944 if (defined $old_env_TZ) {
2945 $ENV{TZ} = $old_env_TZ;
2946 } else {
2947 delete $ENV{TZ};
2948 }
2949 } else {
2950 $parsed_date = "+0000 $Y-$m-$d $H:$M:$S";
2951 }
2952
2953 return $parsed_date;
Eric Wong1c8443b2007-01-14 02:17:00 -08002954}
2955
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002956sub other_gs {
Mattias Nissler0b2af452009-07-07 01:40:02 +02002957 my ($self, $new_url, $url,
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002958 $branch_from, $r, $old_ref_id) = @_;
Mattias Nissler0b2af452009-07-07 01:40:02 +02002959 my $gs = Git::SVN->find_by_url($new_url, $url, $branch_from);
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002960 unless ($gs) {
2961 my $ref_id = $old_ref_id;
David D. Kilzer54fb7f92010-08-15 06:15:54 -07002962 $ref_id =~ s/\@\d+-*$//;
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002963 $ref_id .= "\@$r";
2964 # just grow a tail if we're not unique enough :x
2965 $ref_id .= '-' while find_ref($ref_id);
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002966 my ($u, $p, $repo_id) = ($new_url, '', $ref_id);
2967 if ($u =~ s#^\Q$url\E(/|$)##) {
2968 $p = $u;
2969 $u = $url;
2970 $repo_id = $self->{repo_id};
2971 }
David D. Kilzer3235b702010-08-15 06:15:55 -07002972 while (1) {
2973 # It is possible to tag two different subdirectories at
2974 # the same revision. If the url for an existing ref
2975 # does not match, we must either find a ref with a
2976 # matching url or create a new ref by growing a tail.
2977 $gs = Git::SVN->init($u, $p, $repo_id, $ref_id, 1);
2978 my (undef, $max_commit) = $gs->rev_map_max(1);
2979 last if (!$max_commit);
2980 my ($url) = ::cmt_metadata($max_commit);
2981 last if ($url eq $gs->full_url);
2982 $ref_id .= '-';
2983 }
2984 print STDERR "Initializing parent: $ref_id\n" unless $::_q > 1;
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002985 }
2986 $gs
2987}
2988
Mark Lodato36db1ed2009-05-14 21:27:15 -04002989sub call_authors_prog {
2990 my ($orig_author) = @_;
Mark Lodatod3d7d472009-09-12 20:33:23 -04002991 $orig_author = command_oneline('rev-parse', '--sq-quote', $orig_author);
Mark Lodato36db1ed2009-05-14 21:27:15 -04002992 my $author = `$::_authors_prog $orig_author`;
2993 if ($? != 0) {
2994 die "$::_authors_prog failed with exit code $?\n"
2995 }
2996 if ($author =~ /^\s*(.+?)\s*<(.*)>\s*$/) {
2997 my ($name, $email) = ($1, $2);
2998 $email = undef if length $2 == 0;
2999 return [$name, $email];
3000 } else {
3001 die "Author: $orig_author: $::_authors_prog returned "
3002 . "invalid author format: $author\n";
3003 }
3004}
3005
Eric Wong1c8443b2007-01-14 02:17:00 -08003006sub check_author {
3007 my ($author) = @_;
3008 if (!defined $author || length $author == 0) {
3009 $author = '(no author)';
Mark Lodato36db1ed2009-05-14 21:27:15 -04003010 }
3011 if (!defined $::users{$author}) {
3012 if (defined $::_authors_prog) {
3013 $::users{$author} = call_authors_prog($author);
3014 } elsif (defined $::_authors) {
3015 die "Author: $author not defined in $::_authors file\n";
3016 }
Eric Wong1c8443b2007-01-14 02:17:00 -08003017 }
3018 $author;
3019}
3020
Sam Vilainf1264bd2009-10-20 15:42:01 +13003021sub find_extra_svk_parents {
3022 my ($self, $ed, $tickets, $parents) = @_;
3023 # aha! svk:merge property changed...
3024 my @tickets = split "\n", $tickets;
3025 my @known_parents;
3026 for my $ticket ( @tickets ) {
3027 my ($uuid, $path, $rev) = split /:/, $ticket;
3028 if ( $uuid eq $self->ra_uuid ) {
Tuomas Suutaribf60fff2010-02-24 20:09:01 +02003029 my $url = $self->{url};
Sam Vilainf1264bd2009-10-20 15:42:01 +13003030 my $repos_root = $url;
3031 my $branch_from = $path;
3032 $branch_from =~ s{^/}{};
3033 my $gs = $self->other_gs($repos_root."/".$branch_from,
3034 $url,
3035 $branch_from,
3036 $rev,
3037 $self->{ref_id});
3038 if ( my $commit = $gs->rev_map_get($rev, $uuid) ) {
3039 # wahey! we found it, but it might be
3040 # an old one (!)
Alex Vandivere9e4c8b2009-11-29 02:20:21 -05003041 push @known_parents, [ $rev, $commit ];
Sam Vilainf1264bd2009-10-20 15:42:01 +13003042 }
3043 }
3044 }
Alex Vandivere9e4c8b2009-11-29 02:20:21 -05003045 # Ordering matters; highest-numbered commit merge tickets
3046 # first, as they may account for later merge ticket additions
3047 # or changes.
3048 @known_parents = map {$_->[1]} sort {$b->[0] <=> $a->[0]} @known_parents;
Sam Vilainf1264bd2009-10-20 15:42:01 +13003049 for my $parent ( @known_parents ) {
3050 my @cmd = ('rev-list', $parent, map { "^$_" } @$parents );
3051 my ($msg_fh, $ctx) = command_output_pipe(@cmd);
3052 my $new;
3053 while ( <$msg_fh> ) {
3054 $new=1;last;
3055 }
3056 command_close_pipe($msg_fh, $ctx);
3057 if ( $new ) {
3058 print STDERR
3059 "Found merge parent (svk:merge ticket): $parent\n";
3060 push @$parents, $parent;
3061 }
3062 }
3063}
3064
Sam Vilain7d944c32009-12-20 00:55:13 +13003065sub lookup_svn_merge {
3066 my $uuid = shift;
3067 my $url = shift;
3068 my $merge = shift;
3069
3070 my ($source, $revs) = split ":", $merge;
3071 my $path = $source;
3072 $path =~ s{^/}{};
3073 my $gs = Git::SVN->find_by_url($url.$source, $url, $path);
3074 if ( !$gs ) {
3075 warn "Couldn't find revmap for $url$source\n";
3076 return;
3077 }
3078 my @ranges = split ",", $revs;
3079 my ($tip, $tip_commit);
3080 my @merged_commit_ranges;
3081 # find the tip
3082 for my $range ( @ranges ) {
3083 my ($bottom, $top) = split "-", $range;
3084 $top ||= $bottom;
Sam Vilain33973a52009-12-20 05:22:42 +13003085 my $bottom_commit = $gs->find_rev_after( $bottom, 1, $top );
3086 my $top_commit = $gs->find_rev_before( $top, 1, $bottom );
Sam Vilain7d944c32009-12-20 00:55:13 +13003087
3088 unless ($top_commit and $bottom_commit) {
3089 warn "W:unknown path/rev in svn:mergeinfo "
3090 ."dirprop: $source:$range\n";
3091 next;
3092 }
3093
3094 push @merged_commit_ranges,
Sam Vilain33973a52009-12-20 05:22:42 +13003095 "$bottom_commit^..$top_commit";
Sam Vilain7d944c32009-12-20 00:55:13 +13003096
3097 if ( !defined $tip or $top > $tip ) {
3098 $tip = $top;
3099 $tip_commit = $top_commit;
3100 }
3101 }
3102 return ($tip_commit, @merged_commit_ranges);
3103}
Sam Vilain7a955a52009-12-20 05:26:26 +13003104
3105sub _rev_list {
3106 my ($msg_fh, $ctx) = command_output_pipe(
3107 "rev-list", @_,
3108 );
3109 my @rv;
3110 while ( <$msg_fh> ) {
3111 chomp;
3112 push @rv, $_;
3113 }
3114 command_close_pipe($msg_fh, $ctx);
3115 @rv;
3116}
3117
3118sub check_cherry_pick {
3119 my $base = shift;
3120 my $tip = shift;
3121 my @ranges = @_;
3122 my %commits = map { $_ => 1 }
3123 _rev_list("--no-merges", $tip, "--not", $base);
3124 for my $range ( @ranges ) {
3125 delete @commits{_rev_list($range)};
3126 }
Andrew Myrick1cef6502010-01-06 16:25:21 -08003127 for my $commit (keys %commits) {
3128 if (has_no_changes($commit)) {
3129 delete $commits{$commit};
3130 }
3131 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003132 return (keys %commits);
3133}
3134
Andrew Myrick1cef6502010-01-06 16:25:21 -08003135sub has_no_changes {
3136 my $commit = shift;
3137
3138 my @revs = split / /, command_oneline(
3139 qw(rev-list --parents -1 -m), $commit);
3140
3141 # Commits with no parents, e.g. the start of a partial branch,
3142 # have changes by definition.
3143 return 1 if (@revs < 2);
3144
3145 # Commits with multiple parents, e.g a merge, have no changes
3146 # by definition.
3147 return 0 if (@revs > 2);
3148
3149 return (command_oneline("rev-parse", "$commit^{tree}") eq
3150 command_oneline("rev-parse", "$commit~1^{tree}"));
3151}
3152
Andrew Myrick8bff7c52010-01-30 03:14:22 +00003153# The GIT_DIR environment variable is not always set until after the command
3154# line arguments are processed, so we can't memoize in a BEGIN block.
3155{
3156 my $memoized = 0;
3157
3158 sub memoize_svn_mergeinfo_functions {
3159 return if $memoized;
3160 $memoized = 1;
3161
3162 my $cache_path = "$ENV{GIT_DIR}/svn/.caches/";
3163 mkpath([$cache_path]) unless -d $cache_path;
3164
3165 tie my %lookup_svn_merge_cache => 'Memoize::Storable',
3166 "$cache_path/lookup_svn_merge.db", 'nstore';
3167 memoize 'lookup_svn_merge',
3168 SCALAR_CACHE => 'FAULT',
3169 LIST_CACHE => ['HASH' => \%lookup_svn_merge_cache],
3170 ;
3171
3172 tie my %check_cherry_pick_cache => 'Memoize::Storable',
3173 "$cache_path/check_cherry_pick.db", 'nstore';
3174 memoize 'check_cherry_pick',
3175 SCALAR_CACHE => 'FAULT',
3176 LIST_CACHE => ['HASH' => \%check_cherry_pick_cache],
3177 ;
3178
3179 tie my %has_no_changes_cache => 'Memoize::Storable',
3180 "$cache_path/has_no_changes.db", 'nstore';
3181 memoize 'has_no_changes',
3182 SCALAR_CACHE => ['HASH' => \%has_no_changes_cache],
3183 LIST_CACHE => 'FAULT',
3184 ;
3185 }
Sergey Vlasov8ac3a662010-07-18 16:17:49 +04003186
3187 sub unmemoize_svn_mergeinfo_functions {
3188 return if not $memoized;
3189 $memoized = 0;
3190
3191 Memoize::unmemoize 'lookup_svn_merge';
3192 Memoize::unmemoize 'check_cherry_pick';
3193 Memoize::unmemoize 'has_no_changes';
3194 }
3195}
3196
3197END {
3198 # Force cache writeout explicitly instead of waiting for
3199 # global destruction to avoid segfault in Storable:
3200 # http://rt.cpan.org/Public/Bug/Display.html?id=36087
3201 unmemoize_svn_mergeinfo_functions();
Sam Vilain7d944c32009-12-20 00:55:13 +13003202}
3203
Sam Vilainea020cb2009-12-20 05:25:31 +13003204sub parents_exclude {
3205 my $parents = shift;
3206 my @commits = @_;
3207 return unless @commits;
3208
3209 my @excluded;
3210 my $excluded;
3211 do {
3212 my @cmd = ('rev-list', "-1", @commits, "--not", @$parents );
3213 $excluded = command_oneline(@cmd);
3214 if ( $excluded ) {
3215 my @new;
3216 my $found;
3217 for my $commit ( @commits ) {
3218 if ( $commit eq $excluded ) {
3219 push @excluded, $commit;
3220 $found++;
3221 last;
3222 }
3223 else {
3224 push @new, $commit;
3225 }
3226 }
3227 die "saw commit '$excluded' in rev-list output, "
3228 ."but we didn't ask for that commit (wanted: @commits --not @$parents)"
3229 unless $found;
3230 @commits = @new;
3231 }
3232 }
3233 while ($excluded and @commits);
3234
3235 return @excluded;
3236}
3237
3238
Sam Vilaindff589e2009-10-20 15:42:03 +13003239# note: this function should only be called if the various dirprops
3240# have actually changed
3241sub find_extra_svn_parents {
3242 my ($self, $ed, $mergeinfo, $parents) = @_;
3243 # aha! svk:merge property changed...
3244
Andrew Myrick8bff7c52010-01-30 03:14:22 +00003245 memoize_svn_mergeinfo_functions();
3246
Sam Vilaindff589e2009-10-20 15:42:03 +13003247 # We first search for merged tips which are not in our
3248 # history. Then, we figure out which git revisions are in
3249 # that tip, but not this revision. If all of those revisions
3250 # are now marked as merge, we can add the tip as a parent.
3251 my @merges = split "\n", $mergeinfo;
3252 my @merge_tips;
Tuomas Suutaribf60fff2010-02-24 20:09:01 +02003253 my $url = $self->{url};
Sam Vilain7d944c32009-12-20 00:55:13 +13003254 my $uuid = $self->ra_uuid;
Sam Vilainea020cb2009-12-20 05:25:31 +13003255 my %ranges;
Sam Vilaindff589e2009-10-20 15:42:03 +13003256 for my $merge ( @merges ) {
Sam Vilain7d944c32009-12-20 00:55:13 +13003257 my ($tip_commit, @ranges) =
3258 lookup_svn_merge( $uuid, $url, $merge );
Sam Vilaindff589e2009-10-20 15:42:03 +13003259 unless (!$tip_commit or
3260 grep { $_ eq $tip_commit } @$parents ) {
3261 push @merge_tips, $tip_commit;
Sam Vilainea020cb2009-12-20 05:25:31 +13003262 $ranges{$tip_commit} = \@ranges;
Sam Vilaindff589e2009-10-20 15:42:03 +13003263 } else {
3264 push @merge_tips, undef;
3265 }
3266 }
Sam Vilainea020cb2009-12-20 05:25:31 +13003267
3268 my %excluded = map { $_ => 1 }
3269 parents_exclude($parents, grep { defined } @merge_tips);
3270
3271 # check merge tips for new parents
3272 my @new_parents;
Sam Vilaindff589e2009-10-20 15:42:03 +13003273 for my $merge_tip ( @merge_tips ) {
3274 my $spec = shift @merges;
Sam Vilainea020cb2009-12-20 05:25:31 +13003275 next unless $merge_tip and $excluded{$merge_tip};
3276
3277 my $ranges = $ranges{$merge_tip};
3278
Sam Vilain7a955a52009-12-20 05:26:26 +13003279 # check out 'new' tips
Andrew Myrick41c01692010-01-06 16:25:22 -08003280 my $merge_base;
3281 eval {
3282 $merge_base = command_oneline(
3283 "merge-base",
3284 @$parents, $merge_tip,
3285 );
3286 };
3287 if ($@) {
3288 die "An error occurred during merge-base"
3289 unless $@->isa("Git::Error::Command");
3290
3291 warn "W: Cannot find common ancestor between ".
3292 "@$parents and $merge_tip. Ignoring merge info.\n";
3293 next;
3294 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003295
3296 # double check that there are no missing non-merge commits
3297 my (@incomplete) = check_cherry_pick(
3298 $merge_base, $merge_tip,
3299 @$ranges,
3300 );
3301
3302 if ( @incomplete ) {
3303 warn "W:svn cherry-pick ignored ($spec) - missing "
3304 .@incomplete." commit(s) (eg $incomplete[0])\n";
3305 } else {
3306 warn
3307 "Found merge parent (svn:mergeinfo prop): ",
3308 $merge_tip, "\n";
3309 push @new_parents, $merge_tip;
Sam Vilaindff589e2009-10-20 15:42:03 +13003310 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003311 }
3312
3313 # cater for merges which merge commits from multiple branches
3314 if ( @new_parents > 1 ) {
3315 for ( my $i = 0; $i <= $#new_parents; $i++ ) {
3316 for ( my $j = 0; $j <= $#new_parents; $j++ ) {
3317 next if $i == $j;
3318 next unless $new_parents[$i];
3319 next unless $new_parents[$j];
3320 my $revs = command_oneline(
Eric Wong0fe19752009-12-22 12:15:40 -08003321 "rev-list", "-1",
3322 "$new_parents[$i]..$new_parents[$j]",
Sam Vilain7a955a52009-12-20 05:26:26 +13003323 );
3324 if ( !$revs ) {
Tuomas Suutari6a2009e2010-02-22 20:12:53 +02003325 undef($new_parents[$j]);
Sam Vilain7a955a52009-12-20 05:26:26 +13003326 }
Sam Vilaindff589e2009-10-20 15:42:03 +13003327 }
3328 }
3329 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003330 push @$parents, grep { defined } @new_parents;
Sam Vilaindff589e2009-10-20 15:42:03 +13003331}
3332
Eric Wong9b981fc2007-01-11 12:14:21 -08003333sub make_log_entry {
Eric Wong97f69872007-01-25 11:53:13 -08003334 my ($self, $rev, $parents, $ed) = @_;
3335 my $untracked = $self->get_untracked($ed);
3336
Sam Vilainf1264bd2009-10-20 15:42:01 +13003337 my @parents = @$parents;
3338 my $ps = $ed->{path_strip} || "";
3339 for my $path ( grep { m/$ps/ } %{$ed->{dir_prop}} ) {
3340 my $props = $ed->{dir_prop}{$path};
3341 if ( $props->{"svk:merge"} ) {
3342 $self->find_extra_svk_parents
3343 ($ed, $props->{"svk:merge"}, \@parents);
3344 }
Sam Vilaindff589e2009-10-20 15:42:03 +13003345 if ( $props->{"svn:mergeinfo"} ) {
3346 $self->find_extra_svn_parents
3347 ($ed,
3348 $props->{"svn:mergeinfo"},
3349 \@parents);
3350 }
Sam Vilainf1264bd2009-10-20 15:42:01 +13003351 }
3352
Eric Wong9b981fc2007-01-11 12:14:21 -08003353 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
Eric Wong97f69872007-01-25 11:53:13 -08003354 print $un "r$rev\n" or croak $!;
3355 print $un $_, "\n" foreach @$untracked;
Sam Vilainf1264bd2009-10-20 15:42:01 +13003356 my %log_entry = ( parents => \@parents, revision => $rev,
Eric Wong97f69872007-01-25 11:53:13 -08003357 log => '');
Eric Wongfbcc1732007-02-06 18:35:30 -08003358
Eric Wong8a49ee92007-02-10 20:46:50 -08003359 my $headrev;
Eric Wongfbcc1732007-02-06 18:35:30 -08003360 my $logged = delete $self->{logged_rev_props};
Eric Wong8a49ee92007-02-10 20:46:50 -08003361 if (!$logged || $self->{-want_revprops}) {
Eric Wongfbcc1732007-02-06 18:35:30 -08003362 my $rp = $self->ra->rev_proplist($rev);
3363 foreach (sort keys %$rp) {
3364 my $v = $rp->{$_};
3365 if (/^svn:(author|date|log)$/) {
3366 $log_entry{$1} = $v;
Eric Wong8a49ee92007-02-10 20:46:50 -08003367 } elsif ($_ eq 'svm:headrev') {
3368 $headrev = $v;
Eric Wongfbcc1732007-02-06 18:35:30 -08003369 } else {
3370 print $un " rev_prop: ", uri_encode($_), ' ',
3371 uri_encode($v), "\n";
3372 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003373 }
Eric Wongfbcc1732007-02-06 18:35:30 -08003374 } else {
3375 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
Eric Wong9b981fc2007-01-11 12:14:21 -08003376 }
3377 close $un or croak $!;
Eric Wong97f69872007-01-25 11:53:13 -08003378
Eric Wong9b981fc2007-01-11 12:14:21 -08003379 $log_entry{date} = parse_svn_date($log_entry{date});
Eric Wong9b981fc2007-01-11 12:14:21 -08003380 $log_entry{log} .= "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08003381 my $author = $log_entry{author} = check_author($log_entry{author});
3382 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003383 : ($author, undef);
3384
3385 my ($commit_name, $commit_email) = ($name, $email);
3386 if ($_use_log_author) {
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00003387 my $name_field;
3388 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
3389 $name_field = $1;
3390 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
3391 $name_field = $1;
3392 }
3393 if (!defined $name_field) {
Stephen R. van den Bergabfa5332008-04-29 23:20:32 +02003394 if (!defined $email) {
3395 $email = $name;
3396 }
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00003397 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003398 ($name, $email) = ($1, $2);
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00003399 } elsif ($name_field =~ /(.*)@/) {
3400 ($name, $email) = ($1, $name_field);
3401 } else {
Stephen R. van den Bergabfa5332008-04-29 23:20:32 +02003402 ($name, $email) = ($name_field, $name_field);
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003403 }
3404 }
Eric Wong91b03282007-02-11 00:51:33 -08003405 if (defined $headrev && $self->use_svm_props) {
Eric Wongaea736c2007-02-16 19:15:21 -08003406 if ($self->rewrite_root) {
3407 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
3408 "options set!\n";
3409 }
Jay Soffian3e18ce12010-01-23 03:30:00 -05003410 if ($self->rewrite_uuid) {
3411 die "Can't have both 'useSvmProps' and 'rewriteUUID' ",
3412 "options set!\n";
3413 }
Eric Wongb3e95932009-07-11 14:13:12 -07003414 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$}i;
Eric Wongbefc9ad2007-02-17 02:53:07 -08003415 # we don't want "SVM: initializing mirror for junk" ...
3416 return undef if $r == 0;
3417 my $svm = $self->svm;
3418 if ($uuid ne $svm->{uuid}) {
Eric Wong8a49ee92007-02-10 20:46:50 -08003419 die "UUID mismatch on SVM path:\n",
Eric Wongbefc9ad2007-02-17 02:53:07 -08003420 "expected: $svm->{uuid}\n",
Eric Wong8a49ee92007-02-10 20:46:50 -08003421 " got: $uuid\n";
3422 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08003423 my $full_url = $self->full_url;
3424 $full_url =~ s#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
3425 die "Failed to replace '$svm->{replace}' with ",
3426 "'$svm->{source}' in $full_url\n";
Sam Vilain18ea92b2007-02-23 12:32:29 +13003427 # throw away username for storing in records
3428 remove_username($full_url);
Eric Wong8a49ee92007-02-10 20:46:50 -08003429 $log_entry{metadata} = "$full_url\@$r $uuid";
3430 $log_entry{svm_revision} = $r;
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003431 $email ||= "$author\@$uuid";
3432 $commit_email ||= "$author\@$uuid";
Eric Wong62e349d2007-02-16 19:57:29 -08003433 } elsif ($self->use_svnsync_props) {
3434 my $full_url = $self->svnsync->{url};
3435 $full_url .= "/$self->{path}" if length $self->{path};
Adam Robence118732007-04-24 18:02:07 -07003436 remove_username($full_url);
Eric Wong62e349d2007-02-16 19:57:29 -08003437 my $uuid = $self->svnsync->{uuid};
3438 $log_entry{metadata} = "$full_url\@$rev $uuid";
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003439 $email ||= "$author\@$uuid";
3440 $commit_email ||= "$author\@$uuid";
Eric Wong8a49ee92007-02-10 20:46:50 -08003441 } else {
Adam Robence118732007-04-24 18:02:07 -07003442 my $url = $self->metadata_url;
3443 remove_username($url);
Jay Soffian3e18ce12010-01-23 03:30:00 -05003444 my $uuid = $self->rewrite_uuid || $self->ra->get_uuid;
3445 $log_entry{metadata} = "$url\@$rev " . $uuid;
3446 $email ||= "$author\@" . $uuid;
3447 $commit_email ||= "$author\@" . $uuid;
Eric Wong8a49ee92007-02-10 20:46:50 -08003448 }
Eric Wongdb03cd22007-02-13 00:38:02 -08003449 $log_entry{name} = $name;
3450 $log_entry{email} = $email;
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003451 $log_entry{commit_name} = $commit_name;
3452 $log_entry{commit_email} = $commit_email;
Eric Wong9b981fc2007-01-11 12:14:21 -08003453 \%log_entry;
3454}
3455
3456sub fetch {
Eric Wong3ebe8df2007-01-25 17:35:40 -08003457 my ($self, $min_rev, $max_rev, @parents) = @_;
Eric Wong9b981fc2007-01-11 12:14:21 -08003458 my ($last_rev, $last_commit) = $self->last_rev_commit;
Eric Wong3ebe8df2007-01-25 17:35:40 -08003459 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
Eric Wonge5181922007-02-08 12:53:57 -08003460 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
Eric Wong9b981fc2007-01-11 12:14:21 -08003461}
3462
3463sub set_tree_cb {
3464 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
Eric Wong490f49e2007-02-10 13:58:33 -08003465 $self->{inject_parents} = { $rev => $tree };
3466 $self->fetch(undef, undef);
Eric Wong9b981fc2007-01-11 12:14:21 -08003467}
3468
3469sub set_tree {
3470 my ($self, $tree) = (shift, shift);
Eric Wong1ce255d2007-01-14 23:21:16 -08003471 my $log_entry = ::get_commit_entry($tree);
Eric Wong9b981fc2007-01-11 12:14:21 -08003472 unless ($self->{last_rev}) {
Luc Heinrich0a1a1c82008-09-29 15:58:18 +02003473 ::fatal("Must have an existing revision to commit");
Eric Wong9b981fc2007-01-11 12:14:21 -08003474 }
Eric Wong61395352007-01-27 14:33:08 -08003475 my %ed_opts = ( r => $self->{last_rev},
3476 log => $log_entry->{log},
3477 ra => $self->ra,
3478 tree_a => $self->{last_commit},
3479 tree_b => $tree,
3480 editor_cb => sub {
3481 $self->set_tree_cb($log_entry, $tree, @_) },
3482 svn_path => $self->{path} );
3483 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong9b981fc2007-01-11 12:14:21 -08003484 print "No changes\nr$self->{last_rev} = $tree\n";
3485 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003486}
3487
Eric Wong060610c2007-12-08 23:27:41 -08003488sub rebuild_from_rev_db {
3489 my ($self, $path) = @_;
3490 my $r = -1;
3491 open my $fh, '<', $path or croak "open: $!";
Michael Weber4f7ec792008-04-18 15:12:04 +02003492 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003493 while (<$fh>) {
3494 length($_) == 41 or croak "inconsistent size in ($_) != 41";
3495 chomp($_);
3496 ++$r;
3497 next if $_ eq ('0' x 40);
3498 $self->rev_map_set($r, $_);
3499 print "r$r = $_\n";
3500 }
3501 close $fh or croak "close: $!";
3502 unlink $path or croak "unlink: $!";
3503}
3504
Eric Wongf0ecca12007-01-30 13:11:14 -08003505sub rebuild {
3506 my ($self) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003507 my $map_path = $self->map_path;
Deskin Miller2beec892008-09-15 21:12:58 -04003508 my $partial = (-e $map_path && ! -z $map_path);
Eric Wongd6d33462007-02-16 04:05:33 -08003509 return unless ::verify_ref($self->refname.'^0');
Deskin Miller2beec892008-09-15 21:12:58 -04003510 if (!$partial && ($self->use_svm_props || $self->no_metadata)) {
Eric Wong060610c2007-12-08 23:27:41 -08003511 my $rev_db = $self->rev_db_path;
3512 $self->rebuild_from_rev_db($rev_db);
3513 if ($self->use_svm_props) {
3514 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
3515 $self->rebuild_from_rev_db($svm_rev_db);
3516 }
3517 $self->unlink_rev_db_symlink;
Eric Wong26a62d52007-02-12 13:25:25 -08003518 return;
3519 }
Deskin Miller2beec892008-09-15 21:12:58 -04003520 print "Rebuilding $map_path ...\n" if (!$partial);
3521 my ($base_rev, $head) = ($partial ? $self->rev_map_max_norebuild(1) :
3522 (undef, undef));
Eric Wong060610c2007-12-08 23:27:41 -08003523 my ($log, $ctx) =
3524 command_output_pipe(qw/rev-list --pretty=raw --no-color --reverse/,
Deskin Miller2beec892008-09-15 21:12:58 -04003525 ($head ? "$head.." : "") . $self->refname,
3526 '--');
Jan Krüger74b1e122008-06-24 02:17:36 +02003527 my $metadata_url = $self->metadata_url;
3528 remove_username($metadata_url);
Jay Soffian3e18ce12010-01-23 03:30:00 -05003529 my $svn_uuid = $self->rewrite_uuid || $self->ra_uuid;
Sam Vilain3dfab992007-06-30 20:56:13 +12003530 my $c;
3531 while (<$log>) {
3532 if ( m{^commit ($::sha1)$} ) {
3533 $c = $1;
3534 next;
3535 }
3536 next unless s{^\s*(git-svn-id:)}{$1};
3537 my ($url, $rev, $uuid) = ::extract_metadata($_);
Sam Vilain18ea92b2007-02-23 12:32:29 +13003538 remove_username($url);
Eric Wongf0ecca12007-01-30 13:11:14 -08003539
3540 # ignore merges (from set-tree)
3541 next if (!defined $rev || !$uuid);
3542
3543 # if we merged or otherwise started elsewhere, this is
3544 # how we break out of it
Eric Wong060610c2007-12-08 23:27:41 -08003545 if (($uuid ne $svn_uuid) ||
Jan Krüger74b1e122008-06-24 02:17:36 +02003546 ($metadata_url && $url && ($url ne $metadata_url))) {
Eric Wongf0ecca12007-01-30 13:11:14 -08003547 next;
3548 }
Deskin Miller2beec892008-09-15 21:12:58 -04003549 if ($partial && $head) {
3550 print "Partial-rebuilding $map_path ...\n";
3551 print "Currently at $base_rev = $head\n";
3552 $head = undef;
3553 }
Eric Wongf0ecca12007-01-30 13:11:14 -08003554
Eric Wong060610c2007-12-08 23:27:41 -08003555 $self->rev_map_set($rev, $c);
Eric Wongf0ecca12007-01-30 13:11:14 -08003556 print "r$rev = $c\n";
3557 }
Sam Vilain3dfab992007-06-30 20:56:13 +12003558 command_close_pipe($log, $ctx);
Deskin Miller2beec892008-09-15 21:12:58 -04003559 print "Done rebuilding $map_path\n" if (!$partial || !$head);
Eric Wong060610c2007-12-08 23:27:41 -08003560 my $rev_db_path = $self->rev_db_path;
3561 if (-f $self->rev_db_path) {
3562 unlink $self->rev_db_path or croak "unlink: $!";
3563 }
3564 $self->unlink_rev_db_symlink;
Eric Wongf0ecca12007-01-30 13:11:14 -08003565}
3566
Eric Wong060610c2007-12-08 23:27:41 -08003567# rev_map:
Eric Wong9b981fc2007-01-11 12:14:21 -08003568# Tie::File seems to be prone to offset errors if revisions get sparse,
3569# it's not that fast, either. Tie::File is also not in Perl 5.6. So
3570# one of my favorite modules is out :< Next up would be one of the DBM
Eric Wong060610c2007-12-08 23:27:41 -08003571# modules, but I'm not sure which is most portable...
3572#
3573# This is the replacement for the rev_db format, which was too big
3574# and inefficient for large repositories with a lot of sparse history
3575# (mainly tags)
3576#
3577# The format is this:
3578# - 24 bytes for every record,
3579# * 4 bytes for the integer representing an SVN revision number
3580# * 20 bytes representing the sha1 of a git commit
3581# - No empty padding records like the old format
Eric Wong66ab84b2007-12-08 23:27:42 -08003582# (except the last record, which can be overwritten)
Eric Wong060610c2007-12-08 23:27:41 -08003583# - new records are written append-only since SVN revision numbers
3584# increase monotonically
3585# - lookups on SVN revision number are done via a binary search
Eric Wong66ab84b2007-12-08 23:27:42 -08003586# - Piping the file to xxd -c24 is a good way of dumping it for
3587# viewing or editing (piped back through xxd -r), should the need
3588# ever arise.
3589# - The last record can be padding revision with an all-zero sha1
3590# This is used to optimize fetch performance when using multiple
3591# "fetch" directives in .git/config
Eric Wong060610c2007-12-08 23:27:41 -08003592#
Eric Wong97ae0912007-02-11 15:21:24 -08003593# These files are disposable unless noMetadata or useSvmProps is set
Eric Wong9b981fc2007-01-11 12:14:21 -08003594
Eric Wong060610c2007-12-08 23:27:41 -08003595sub _rev_map_set {
Eric Wong26a62d52007-02-12 13:25:25 -08003596 my ($fh, $rev, $commit) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003597
Michael Weber4f7ec792008-04-18 15:12:04 +02003598 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003599 my $size = (stat($fh))[7];
3600 ($size % 24) == 0 or croak "inconsistent size: $size";
3601
Eric Wong66ab84b2007-12-08 23:27:42 -08003602 my $wr_offset = 0;
Eric Wong060610c2007-12-08 23:27:41 -08003603 if ($size > 0) {
3604 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
3605 my $read = sysread($fh, my $buf, 24) or croak "read: $!";
3606 $read == 24 or croak "read only $read bytes (!= 24)";
3607 my ($last_rev, $last_commit) = unpack(rev_map_fmt, $buf);
Eric Wong66ab84b2007-12-08 23:27:42 -08003608 if ($last_commit eq ('0' x40)) {
3609 if ($size >= 48) {
3610 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
3611 $read = sysread($fh, $buf, 24) or
3612 croak "read: $!";
3613 $read == 24 or
3614 croak "read only $read bytes (!= 24)";
3615 ($last_rev, $last_commit) =
3616 unpack(rev_map_fmt, $buf);
3617 if ($last_commit eq ('0' x40)) {
3618 croak "inconsistent .rev_map\n";
3619 }
3620 }
3621 if ($last_rev >= $rev) {
3622 croak "last_rev is higher!: $last_rev >= $rev";
3623 }
3624 $wr_offset = -24;
Eric Wong47a0b752007-01-31 05:13:30 -08003625 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003626 }
Eric Wong66ab84b2007-12-08 23:27:42 -08003627 sysseek($fh, $wr_offset, SEEK_END) or croak "seek: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003628 syswrite($fh, pack(rev_map_fmt, $rev, $commit), 24) == 24 or
3629 croak "write: $!";
Eric Wong26a62d52007-02-12 13:25:25 -08003630}
3631
Ben Jackson195643f2009-06-03 20:45:52 -07003632sub _rev_map_reset {
3633 my ($fh, $rev, $commit) = @_;
3634 my $c = _rev_map_get($fh, $rev);
3635 $c eq $commit or die "_rev_map_reset(@_) commit $c does not match!\n";
3636 my $offset = sysseek($fh, 0, SEEK_CUR) or croak "seek: $!";
3637 truncate $fh, $offset or croak "truncate: $!";
3638}
3639
Eric Wong26a62d52007-02-12 13:25:25 -08003640sub mkfile {
3641 my ($path) = @_;
3642 unless (-e $path) {
3643 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
3644 mkpath([$dir]) unless -d $dir;
3645 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
3646 close $fh or die "Couldn't close (create) $path: $!\n";
3647 }
3648}
3649
Eric Wong060610c2007-12-08 23:27:41 -08003650sub rev_map_set {
Eric Wong26a62d52007-02-12 13:25:25 -08003651 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
Jonathan Nieder70ee0b72010-05-04 16:36:47 -07003652 defined $commit or die "missing arg3\n";
Eric Wong26a62d52007-02-12 13:25:25 -08003653 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
Eric Wong060610c2007-12-08 23:27:41 -08003654 my $db = $self->map_path($uuid);
Eric Wong26a62d52007-02-12 13:25:25 -08003655 my $db_lock = "$db.lock";
3656 my $sig;
Ben Jackson195643f2009-06-03 20:45:52 -07003657 $update_ref ||= 0;
Eric Wong26a62d52007-02-12 13:25:25 -08003658 if ($update_ref) {
3659 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
3660 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
3661 }
3662 mkfile($db);
3663
3664 $LOCKFILES{$db_lock} = 1;
3665 my $sync;
3666 # both of these options make our .rev_db file very, very important
3667 # and we can't afford to lose it because rebuild() won't work
3668 if ($self->use_svm_props || $self->no_metadata) {
3669 $sync = 1;
Eric Wong060610c2007-12-08 23:27:41 -08003670 copy($db, $db_lock) or die "rev_map_set(@_): ",
Eric Wong26a62d52007-02-12 13:25:25 -08003671 "Failed to copy: ",
3672 "$db => $db_lock ($!)\n";
3673 } else {
Eric Wong060610c2007-12-08 23:27:41 -08003674 rename $db, $db_lock or die "rev_map_set(@_): ",
Eric Wong26a62d52007-02-12 13:25:25 -08003675 "Failed to rename: ",
3676 "$db => $db_lock ($!)\n";
3677 }
Eric Wong060610c2007-12-08 23:27:41 -08003678
Eric Wong66ab84b2007-12-08 23:27:42 -08003679 sysopen(my $fh, $db_lock, O_RDWR | O_CREAT)
Eric Wong060610c2007-12-08 23:27:41 -08003680 or croak "Couldn't open $db_lock: $!\n";
Ben Jackson195643f2009-06-03 20:45:52 -07003681 $update_ref eq 'reset' ? _rev_map_reset($fh, $rev, $commit) :
3682 _rev_map_set($fh, $rev, $commit);
Eric Wong97ae0912007-02-11 15:21:24 -08003683 if ($sync) {
3684 $fh->flush or die "Couldn't flush $db_lock: $!\n";
3685 $fh->sync or die "Couldn't sync $db_lock: $!\n";
3686 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003687 close $fh or croak $!;
Eric Wong373274f2007-01-31 13:54:23 -08003688 if ($update_ref) {
Eric Wong1e889ef2007-02-16 01:45:13 -08003689 $_head = $self;
Ben Jackson195643f2009-06-03 20:45:52 -07003690 my $note = "";
3691 $note = " ($update_ref)" if ($update_ref !~ /^\d*$/);
3692 command_noisy('update-ref', '-m', "r$rev$note",
Eric Wong373274f2007-01-31 13:54:23 -08003693 $self->refname, $commit);
3694 }
Eric Wong060610c2007-12-08 23:27:41 -08003695 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
Eric Wong373274f2007-01-31 13:54:23 -08003696 "$db_lock => $db ($!)\n";
3697 delete $LOCKFILES{$db_lock};
3698 if ($update_ref) {
3699 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
3700 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
3701 kill $sig, $$ if defined $sig;
3702 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003703}
3704
Eric Wong66ab84b2007-12-08 23:27:42 -08003705# If want_commit, this will return an array of (rev, commit) where
3706# commit _must_ be a valid commit in the archive.
3707# Otherwise, it'll return the max revision (whether or not the
3708# commit is valid or just a 0x40 placeholder).
Eric Wong060610c2007-12-08 23:27:41 -08003709sub rev_map_max {
Eric Wong66ab84b2007-12-08 23:27:42 -08003710 my ($self, $want_commit) = @_;
Eric Wongd6d33462007-02-16 04:05:33 -08003711 $self->rebuild;
Deskin Miller2beec892008-09-15 21:12:58 -04003712 my ($r, $c) = $self->rev_map_max_norebuild($want_commit);
3713 $want_commit ? ($r, $c) : $r;
3714}
3715
3716sub rev_map_max_norebuild {
3717 my ($self, $want_commit) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003718 my $map_path = $self->map_path;
Eric Wong66ab84b2007-12-08 23:27:42 -08003719 stat $map_path or return $want_commit ? (0, undef) : 0;
Eric Wong060610c2007-12-08 23:27:41 -08003720 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
Michael Weber4f7ec792008-04-18 15:12:04 +02003721 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003722 my $size = (stat($fh))[7];
3723 ($size % 24) == 0 or croak "inconsistent size: $size";
3724
3725 if ($size == 0) {
3726 close $fh or croak "close: $!";
Eric Wong66ab84b2007-12-08 23:27:42 -08003727 return $want_commit ? (0, undef) : 0;
Eric Wong060610c2007-12-08 23:27:41 -08003728 }
3729
Eric Wong66ab84b2007-12-08 23:27:42 -08003730 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003731 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003732 my ($r, $c) = unpack(rev_map_fmt, $buf);
Eric Wong66ab84b2007-12-08 23:27:42 -08003733 if ($want_commit && $c eq ('0' x40)) {
3734 if ($size < 48) {
3735 return $want_commit ? (0, undef) : 0;
3736 }
3737 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
3738 sysread($fh, $buf, 24) == 24 or croak "read: $!";
3739 ($r, $c) = unpack(rev_map_fmt, $buf);
3740 if ($c eq ('0'x40)) {
3741 croak "Penultimate record is all-zeroes in $map_path";
3742 }
3743 }
3744 close $fh or croak "close: $!";
3745 $want_commit ? ($r, $c) : $r;
Eric Wong9c93fee2007-01-31 17:22:31 -08003746}
3747
Eric Wong060610c2007-12-08 23:27:41 -08003748sub rev_map_get {
Eric Wong26a62d52007-02-12 13:25:25 -08003749 my ($self, $rev, $uuid) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003750 my $map_path = $self->map_path($uuid);
3751 return undef unless -e $map_path;
3752
3753 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
Ben Jackson195643f2009-06-03 20:45:52 -07003754 my $c = _rev_map_get($fh, $rev);
3755 close($fh) or croak "close: $!";
3756 $c
3757}
3758
3759sub _rev_map_get {
3760 my ($fh, $rev) = @_;
3761
Michael Weber4f7ec792008-04-18 15:12:04 +02003762 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003763 my $size = (stat($fh))[7];
3764 ($size % 24) == 0 or croak "inconsistent size: $size";
3765
3766 if ($size == 0) {
Eric Wong060610c2007-12-08 23:27:41 -08003767 return undef;
Eric Wong9b981fc2007-01-11 12:14:21 -08003768 }
Eric Wong060610c2007-12-08 23:27:41 -08003769
3770 my ($l, $u) = (0, $size - 24);
3771 my ($r, $c, $buf);
3772
3773 while ($l <= $u) {
3774 my $i = int(($l/24 + $u/24) / 2) * 24;
3775 sysseek($fh, $i, SEEK_SET) or croak "seek: $!";
3776 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
Eric Wongc83f4e62009-08-12 22:20:02 -07003777 my ($r, $c) = unpack(rev_map_fmt, $buf);
Eric Wong060610c2007-12-08 23:27:41 -08003778
3779 if ($r < $rev) {
3780 $l = $i + 24;
3781 } elsif ($r > $rev) {
3782 $u = $i - 24;
3783 } else { # $r == $rev
Eric Wong66ab84b2007-12-08 23:27:42 -08003784 return $c eq ('0' x 40) ? undef : $c;
Eric Wong060610c2007-12-08 23:27:41 -08003785 }
3786 }
Eric Wong060610c2007-12-08 23:27:41 -08003787 undef;
Eric Wong9b981fc2007-01-11 12:14:21 -08003788}
3789
David D Kilzer111947e2007-11-11 22:56:52 -08003790# Finds the first svn revision that exists on (if $eq_ok is true) or
3791# before $rev for the current branch. It will not search any lower
3792# than $min_rev. Returns the git commit hash and svn revision number
3793# if found, else (undef, undef).
Eric Wong15710b62007-01-22 02:20:33 -08003794sub find_rev_before {
David D Kilzer111947e2007-11-11 22:56:52 -08003795 my ($self, $rev, $eq_ok, $min_rev) = @_;
Eric Wong15710b62007-01-22 02:20:33 -08003796 --$rev unless $eq_ok;
David D Kilzer111947e2007-11-11 22:56:52 -08003797 $min_rev ||= 1;
Ben Jacksonca5e8802009-06-03 20:45:51 -07003798 my $max_rev = $self->rev_map_max;
3799 $rev = $max_rev if ($rev > $max_rev);
David D Kilzer111947e2007-11-11 22:56:52 -08003800 while ($rev >= $min_rev) {
Eric Wong060610c2007-12-08 23:27:41 -08003801 if (my $c = $self->rev_map_get($rev)) {
Eric Wong15710b62007-01-22 02:20:33 -08003802 return ($rev, $c);
3803 }
3804 --$rev;
3805 }
3806 return (undef, undef);
3807}
3808
David D Kilzer111947e2007-11-11 22:56:52 -08003809# Finds the first svn revision that exists on (if $eq_ok is true) or
3810# after $rev for the current branch. It will not search any higher
3811# than $max_rev. Returns the git commit hash and svn revision number
3812# if found, else (undef, undef).
3813sub find_rev_after {
3814 my ($self, $rev, $eq_ok, $max_rev) = @_;
3815 ++$rev unless $eq_ok;
Eric Wong060610c2007-12-08 23:27:41 -08003816 $max_rev ||= $self->rev_map_max;
David D Kilzer111947e2007-11-11 22:56:52 -08003817 while ($rev <= $max_rev) {
Eric Wong060610c2007-12-08 23:27:41 -08003818 if (my $c = $self->rev_map_get($rev)) {
David D Kilzer111947e2007-11-11 22:56:52 -08003819 return ($rev, $c);
3820 }
3821 ++$rev;
3822 }
3823 return (undef, undef);
3824}
3825
Eric Wong9b981fc2007-01-11 12:14:21 -08003826sub _new {
Eric Wong706587f2007-01-18 17:50:01 -08003827 my ($class, $repo_id, $ref_id, $path) = @_;
3828 unless (defined $repo_id && length $repo_id) {
3829 $repo_id = $Git::SVN::default_repo_id;
3830 }
3831 unless (defined $ref_id && length $ref_id) {
Adam Brewster63de84a2009-08-03 21:40:38 -04003832 $_prefix = '' unless defined($_prefix);
Adam Brewster6f5748e2009-08-11 23:14:27 -04003833 $_[2] = $ref_id =
3834 "refs/remotes/$_prefix$Git::SVN::default_ref_id";
Eric Wong706587f2007-01-18 17:50:01 -08003835 }
Eric Wong7829f202008-06-28 20:40:32 -07003836 $_[1] = $repo_id;
Eric Wong706587f2007-01-18 17:50:01 -08003837 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
Adam Brewster6f5748e2009-08-11 23:14:27 -04003838
3839 # Older repos imported by us used $GIT_DIR/svn/foo instead of
3840 # $GIT_DIR/svn/refs/remotes/foo when tracking refs/remotes/foo
3841 if ($ref_id =~ m{^refs/remotes/(.*)}) {
3842 my $old_dir = "$ENV{GIT_DIR}/svn/$1";
3843 if (-d $old_dir && ! -d $dir) {
3844 $dir = $old_dir;
3845 }
3846 }
3847
Eric Wong706587f2007-01-18 17:50:01 -08003848 $_[3] = $path = '' unless (defined $path);
Adam Brewster6f5748e2009-08-11 23:14:27 -04003849 mkpath([$dir]);
Eric Wong26a62d52007-02-12 13:25:25 -08003850 bless {
3851 ref_id => $ref_id, dir => $dir, index => "$dir/index",
Eric Wong8a49ee92007-02-10 20:46:50 -08003852 path => $path, config => "$ENV{GIT_DIR}/svn/config",
Eric Wong060610c2007-12-08 23:27:41 -08003853 map_root => "$dir/.rev_map", repo_id => $repo_id }, $class;
Eric Wong26a62d52007-02-12 13:25:25 -08003854}
3855
Eric Wong060610c2007-12-08 23:27:41 -08003856# for read-only access of old .rev_db formats
3857sub unlink_rev_db_symlink {
3858 my ($self) = @_;
3859 my $link = $self->rev_db_path;
3860 $link =~ s/\.[\w-]+$// or croak "missing UUID at the end of $link";
3861 if (-l $link) {
3862 unlink $link or croak "unlink: $link failed!";
3863 }
3864}
3865
3866sub rev_db_path {
3867 my ($self, $uuid) = @_;
3868 my $db_path = $self->map_path($uuid);
3869 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
3870 or croak "map_path: $db_path does not contain '/.rev_map.' !";
3871 $db_path;
3872}
3873
3874# the new replacement for .rev_db
3875sub map_path {
Eric Wong26a62d52007-02-12 13:25:25 -08003876 my ($self, $uuid) = @_;
3877 $uuid ||= $self->ra_uuid;
Eric Wong060610c2007-12-08 23:27:41 -08003878 "$self->{map_root}.$uuid";
Eric Wong9b981fc2007-01-11 12:14:21 -08003879}
3880
Eric Wong1c8443b2007-01-14 02:17:00 -08003881sub uri_encode {
3882 my ($f) = @_;
3883 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
3884 $f
3885}
Eric Wong9b981fc2007-01-11 12:14:21 -08003886
Eric Wong6111b932009-11-15 18:57:16 -08003887sub uri_decode {
3888 my ($f) = @_;
3889 $f =~ s#%([0-9a-fA-F]{2})#chr(hex($1))#eg;
3890 $f
3891}
3892
Sam Vilain18ea92b2007-02-23 12:32:29 +13003893sub remove_username {
3894 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
3895}
3896
Eric Wongd976acf2007-01-04 00:45:03 -08003897package Git::SVN::Prompt;
3898use strict;
3899use warnings;
3900require SVN::Core;
3901use vars qw/$_no_auth_cache $_username/;
3902
3903sub simple {
Eric Wong30d055a2006-11-24 01:38:04 -08003904 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
3905 $may_save = undef if $_no_auth_cache;
3906 $default_username = $_username if defined $_username;
3907 if (defined $default_username && length $default_username) {
3908 if (defined $realm && length $realm) {
Eric Wong6f729592007-01-15 20:15:55 -08003909 print STDERR "Authentication realm: $realm\n";
3910 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003911 }
3912 $cred->username($default_username);
3913 } else {
Eric Wongd976acf2007-01-04 00:45:03 -08003914 username($cred, $realm, $may_save, $pool);
Eric Wong30d055a2006-11-24 01:38:04 -08003915 }
3916 $cred->password(_read_password("Password for '" .
3917 $cred->username . "': ", $realm));
3918 $cred->may_save($may_save);
3919 $SVN::_Core::SVN_NO_ERROR;
3920}
3921
Eric Wongd976acf2007-01-04 00:45:03 -08003922sub ssl_server_trust {
Eric Wong30d055a2006-11-24 01:38:04 -08003923 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
3924 $may_save = undef if $_no_auth_cache;
Eric Wong6f729592007-01-15 20:15:55 -08003925 print STDERR "Error validating server certificate for '$realm':\n";
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04003926 {
3927 no warnings 'once';
3928 # All variables SVN::Auth::SSL::* are used only once,
3929 # so we're shutting up Perl warnings about this.
3930 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
3931 print STDERR " - The certificate is not issued ",
3932 "by a trusted authority. Use the\n",
3933 " fingerprint to validate ",
3934 "the certificate manually!\n";
3935 }
3936 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
3937 print STDERR " - The certificate hostname ",
3938 "does not match.\n";
3939 }
3940 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
3941 print STDERR " - The certificate is not yet valid.\n";
3942 }
3943 if ($failures & $SVN::Auth::SSL::EXPIRED) {
3944 print STDERR " - The certificate has expired.\n";
3945 }
3946 if ($failures & $SVN::Auth::SSL::OTHER) {
3947 print STDERR " - The certificate has ",
3948 "an unknown error.\n";
3949 }
3950 } # no warnings 'once'
Eric Wong6f729592007-01-15 20:15:55 -08003951 printf STDERR
3952 "Certificate information:\n".
Eric Wong30d055a2006-11-24 01:38:04 -08003953 " - Hostname: %s\n".
3954 " - Valid: from %s until %s\n".
3955 " - Issuer: %s\n".
3956 " - Fingerprint: %s\n",
3957 map $cert_info->$_, qw(hostname valid_from valid_until
Eric Wong6f729592007-01-15 20:15:55 -08003958 issuer_dname fingerprint);
Eric Wong30d055a2006-11-24 01:38:04 -08003959 my $choice;
3960prompt:
Eric Wong6f729592007-01-15 20:15:55 -08003961 print STDERR $may_save ?
Eric Wong30d055a2006-11-24 01:38:04 -08003962 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
3963 "(R)eject or accept (t)emporarily? ";
Eric Wong6f729592007-01-15 20:15:55 -08003964 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003965 $choice = lc(substr(<STDIN> || 'R', 0, 1));
3966 if ($choice =~ /^t$/i) {
3967 $cred->may_save(undef);
3968 } elsif ($choice =~ /^r$/i) {
3969 return -1;
3970 } elsif ($may_save && $choice =~ /^p$/i) {
3971 $cred->may_save($may_save);
3972 } else {
3973 goto prompt;
3974 }
3975 $cred->accepted_failures($failures);
3976 $SVN::_Core::SVN_NO_ERROR;
3977}
3978
Eric Wongd976acf2007-01-04 00:45:03 -08003979sub ssl_client_cert {
Eric Wong30d055a2006-11-24 01:38:04 -08003980 my ($cred, $realm, $may_save, $pool) = @_;
3981 $may_save = undef if $_no_auth_cache;
Eric Wong6f729592007-01-15 20:15:55 -08003982 print STDERR "Client certificate filename: ";
3983 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003984 chomp(my $filename = <STDIN>);
3985 $cred->cert_file($filename);
3986 $cred->may_save($may_save);
3987 $SVN::_Core::SVN_NO_ERROR;
3988}
3989
Eric Wongd976acf2007-01-04 00:45:03 -08003990sub ssl_client_cert_pw {
Eric Wong30d055a2006-11-24 01:38:04 -08003991 my ($cred, $realm, $may_save, $pool) = @_;
3992 $may_save = undef if $_no_auth_cache;
3993 $cred->password(_read_password("Password: ", $realm));
3994 $cred->may_save($may_save);
3995 $SVN::_Core::SVN_NO_ERROR;
3996}
3997
Eric Wongd976acf2007-01-04 00:45:03 -08003998sub username {
Eric Wong30d055a2006-11-24 01:38:04 -08003999 my ($cred, $realm, $may_save, $pool) = @_;
4000 $may_save = undef if $_no_auth_cache;
4001 if (defined $realm && length $realm) {
Eric Wong6f729592007-01-15 20:15:55 -08004002 print STDERR "Authentication realm: $realm\n";
Eric Wong30d055a2006-11-24 01:38:04 -08004003 }
4004 my $username;
4005 if (defined $_username) {
4006 $username = $_username;
4007 } else {
Eric Wong6f729592007-01-15 20:15:55 -08004008 print STDERR "Username: ";
4009 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08004010 chomp($username = <STDIN>);
4011 }
4012 $cred->username($username);
4013 $cred->may_save($may_save);
4014 $SVN::_Core::SVN_NO_ERROR;
4015}
4016
4017sub _read_password {
4018 my ($prompt, $realm) = @_;
Eric Wong30d055a2006-11-24 01:38:04 -08004019 my $password = '';
Frank Li56a853b2010-03-02 19:47:52 +08004020 if (exists $ENV{GIT_ASKPASS}) {
4021 open(PH, "-|", $ENV{GIT_ASKPASS}, $prompt);
4022 $password = <PH>;
4023 $password =~ s/[\012\015]//; # \n\r
4024 close(PH);
4025 } else {
4026 print STDERR $prompt;
4027 STDERR->flush;
4028 require Term::ReadKey;
4029 Term::ReadKey::ReadMode('noecho');
4030 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
4031 last if $key =~ /[\012\015]/; # \n\r
4032 $password .= $key;
4033 }
4034 Term::ReadKey::ReadMode('restore');
4035 print STDERR "\n";
4036 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08004037 }
Eric Wong30d055a2006-11-24 01:38:04 -08004038 $password;
4039}
4040
Eric Wong27a1a802006-11-27 21:44:48 -08004041package SVN::Git::Fetcher;
4042use vars qw/@ISA/;
4043use strict;
4044use warnings;
4045use Carp qw/croak/;
4046use IO::File qw//;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004047use vars qw/$_ignore_regex/;
Eric Wong27a1a802006-11-27 21:44:48 -08004048
4049# file baton members: path, mode_a, mode_b, pool, fh, blob, base
4050sub new {
Eric Wong8841b372009-02-11 01:56:58 -08004051 my ($class, $git_svn, $switch_path) = @_;
Eric Wong27a1a802006-11-27 21:44:48 -08004052 my $self = SVN::Delta::Editor->new;
4053 bless $self, $class;
Eric Wongdbc6c742009-01-11 16:51:10 -08004054 if (exists $git_svn->{last_commit}) {
4055 $self->{c} = $git_svn->{last_commit};
Eric Wong8841b372009-02-11 01:56:58 -08004056 $self->{empty_symlinks} =
4057 _mark_empty_symlinks($git_svn, $switch_path);
Eric Wongdbc6c742009-01-11 16:51:10 -08004058 }
Ben Jackson0d8bee72009-04-11 10:46:17 -07004059 $self->{ignore_regex} = eval { command_oneline('config', '--get',
4060 "svn-remote.$git_svn->{repo_id}.ignore-paths") };
Eric Wongd2a9a872006-12-12 14:47:00 -08004061 $self->{empty} = {};
4062 $self->{dir_prop} = {};
4063 $self->{file_prop} = {};
4064 $self->{absent_dir} = {};
4065 $self->{absent_file} = {};
Eric Wongef3cfaa2007-01-24 03:30:57 -08004066 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
Dmitry Statyvka3713e222010-07-30 04:30:13 +02004067 $self->{pathnameencoding} = Git::config('svn.pathnameencoding');
Eric Wong27a1a802006-11-27 21:44:48 -08004068 $self;
4069}
4070
Eric Wongdbc6c742009-01-11 16:51:10 -08004071# this uses the Ra object, so it must be called before do_{switch,update},
4072# not inside them (when the Git::SVN::Fetcher object is passed) to
4073# do_{switch,update}
4074sub _mark_empty_symlinks {
Eric Wong8841b372009-02-11 01:56:58 -08004075 my ($git_svn, $switch_path) = @_;
Eric Wong4c58a712009-01-31 17:31:12 -08004076 my $bool = Git::config_bool('svn.brokenSymlinkWorkaround');
Eric Wong48679e52009-02-27 19:40:16 -08004077 return {} if (!defined($bool)) || (defined($bool) && ! $bool);
Eric Wong4c58a712009-01-31 17:31:12 -08004078
Eric Wongdbc6c742009-01-11 16:51:10 -08004079 my %ret;
4080 my ($rev, $cmt) = $git_svn->last_rev_commit;
4081 return {} unless ($rev && $cmt);
4082
Eric Wong4c58a712009-01-31 17:31:12 -08004083 # allow the warning to be printed for each revision we fetch to
4084 # ensure the user sees it. The user can also disable the workaround
4085 # on the repository even while git svn is running and the next
4086 # revision fetched will skip this expensive function.
4087 my $printed_warning;
Eric Wongdbc6c742009-01-11 16:51:10 -08004088 chomp(my $empty_blob = `git hash-object -t blob --stdin < /dev/null`);
4089 my ($ls, $ctx) = command_output_pipe(qw/ls-tree -r -z/, $cmt);
4090 local $/ = "\0";
Eric Wong8841b372009-02-11 01:56:58 -08004091 my $pfx = defined($switch_path) ? $switch_path : $git_svn->{path};
Eric Wongdbc6c742009-01-11 16:51:10 -08004092 $pfx .= '/' if length($pfx);
4093 while (<$ls>) {
4094 chomp;
4095 s/\A100644 blob $empty_blob\t//o or next;
Eric Wong4c58a712009-01-31 17:31:12 -08004096 unless ($printed_warning) {
4097 print STDERR "Scanning for empty symlinks, ",
4098 "this may take a while if you have ",
4099 "many empty files\n",
4100 "You may disable this with `",
4101 "git config svn.brokenSymlinkWorkaround ",
4102 "false'.\n",
4103 "This may be done in a different ",
4104 "terminal without restarting ",
4105 "git svn\n";
4106 $printed_warning = 1;
4107 }
Eric Wongdbc6c742009-01-11 16:51:10 -08004108 my $path = $_;
4109 my (undef, $props) =
4110 $git_svn->ra->get_file($pfx.$path, $rev, undef);
4111 if ($props->{'svn:special'}) {
4112 $ret{$path} = 1;
4113 }
4114 }
4115 command_close_pipe($ls, $ctx);
4116 \%ret;
4117}
4118
Eric Wongb03a71a2009-01-11 18:23:38 -08004119# returns true if a given path is inside a ".git" directory
4120sub in_dot_git {
4121 $_[0] =~ m{(?:^|/)\.git(?:/|$)};
4122}
4123
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004124# return value: 0 -- don't ignore, 1 -- ignore
4125sub is_path_ignored {
Ben Jackson0d8bee72009-04-11 10:46:17 -07004126 my ($self, $path) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004127 return 1 if in_dot_git($path);
Ben Jackson0d8bee72009-04-11 10:46:17 -07004128 return 1 if defined($self->{ignore_regex}) &&
4129 $path =~ m!$self->{ignore_regex}!;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004130 return 0 unless defined($_ignore_regex);
4131 return 1 if $path =~ m!$_ignore_regex!o;
4132 return 0;
4133}
4134
Eric Wong8b8fc062007-01-22 11:44:57 -08004135sub set_path_strip {
4136 my ($self, $path) = @_;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08004137 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
Eric Wong8b8fc062007-01-22 11:44:57 -08004138}
4139
Eric Wongd2a9a872006-12-12 14:47:00 -08004140sub open_root {
4141 { path => '' };
4142}
4143
4144sub open_directory {
4145 my ($self, $path, $pb, $rev) = @_;
4146 { path => $path };
4147}
4148
Eric Wong706587f2007-01-18 17:50:01 -08004149sub git_path {
4150 my ($self, $path) = @_;
Dmitry Statyvka3713e222010-07-30 04:30:13 +02004151 if (my $enc = $self->{pathnameencoding}) {
4152 require Encode;
4153 Encode::from_to($path, 'UTF-8', $enc);
4154 }
Eric Wong2b27f6c2007-01-28 04:59:05 -08004155 if ($self->{path_strip}) {
4156 $path =~ s!$self->{path_strip}!! or
4157 die "Failed to strip path '$path' ($self->{path_strip})\n";
4158 }
Eric Wong706587f2007-01-18 17:50:01 -08004159 $path;
4160}
4161
Eric Wong27a1a802006-11-27 21:44:48 -08004162sub delete_entry {
4163 my ($self, $path, $rev, $pb) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004164 return undef if $self->is_path_ignored($path);
Eric Wong4a87db02007-01-04 01:38:18 -08004165
Eric Wong706587f2007-01-18 17:50:01 -08004166 my $gpath = $self->git_path($path);
Eric Wong8a603772007-01-31 02:45:50 -08004167 return undef if ($gpath eq '');
4168
Eric Wong4a87db02007-01-04 01:38:18 -08004169 # remove entire directories.
Eric Wong4f821012009-03-28 22:10:08 -07004170 my ($tree) = (command('ls-tree', '-z', $self->{c}, "./$gpath")
4171 =~ /\A040000 tree ([a-f\d]{40})\t\Q$gpath\E\0/);
4172 if ($tree) {
Eric Wong4a87db02007-01-04 01:38:18 -08004173 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
4174 -r --name-only -z/,
Eric Wong4f821012009-03-28 22:10:08 -07004175 $tree);
Eric Wong4a87db02007-01-04 01:38:18 -08004176 local $/ = "\0";
4177 while (<$ls>) {
Eric Wongef3cfaa2007-01-24 03:30:57 -08004178 chomp;
Eric Wong4f821012009-03-28 22:10:08 -07004179 my $rmpath = "$gpath/$_";
4180 $self->{gii}->remove($rmpath);
4181 print "\tD\t$rmpath\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08004182 }
Eric Wong9e3cdbd2007-02-09 12:23:47 -08004183 print "\tD\t$gpath/\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08004184 command_close_pipe($ls, $ctx);
Eric Wong4a87db02007-01-04 01:38:18 -08004185 } else {
Eric Wongef3cfaa2007-01-24 03:30:57 -08004186 $self->{gii}->remove($gpath);
Eric Wong9e3cdbd2007-02-09 12:23:47 -08004187 print "\tD\t$gpath\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08004188 }
Eric Wongf9ad77a2009-12-07 20:49:38 -08004189 $self->{empty}->{$path} = 0;
Eric Wong27a1a802006-11-27 21:44:48 -08004190 undef;
4191}
4192
4193sub open_file {
4194 my ($self, $path, $pb, $rev) = @_;
Eric Wongb03a71a2009-01-11 18:23:38 -08004195 my ($mode, $blob);
4196
Ben Jackson0d8bee72009-04-11 10:46:17 -07004197 goto out if $self->is_path_ignored($path);
Eric Wongb03a71a2009-01-11 18:23:38 -08004198
Eric Wong706587f2007-01-18 17:50:01 -08004199 my $gpath = $self->git_path($path);
Eric Wong4f821012009-03-28 22:10:08 -07004200 ($mode, $blob) = (command('ls-tree', '-z', $self->{c}, "./$gpath")
4201 =~ /\A(\d{6}) blob ([a-f\d]{40})\t\Q$gpath\E\0/);
Eric Wong006ede52006-12-08 01:55:19 -08004202 unless (defined $mode && defined $blob) {
4203 die "$path was not found in commit $self->{c} (r$rev)\n";
4204 }
Eric Wongdbc6c742009-01-11 16:51:10 -08004205 if ($mode eq '100644' && $self->{empty_symlinks}->{$path}) {
4206 $mode = '120000';
4207 }
Eric Wongb03a71a2009-01-11 18:23:38 -08004208out:
Eric Wong27a1a802006-11-27 21:44:48 -08004209 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
Eric Wong0864e3b2006-11-28 02:50:17 -08004210 pool => SVN::Pool->new, action => 'M' };
Eric Wong27a1a802006-11-27 21:44:48 -08004211}
4212
4213sub add_file {
4214 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
Eric Wongb03a71a2009-01-11 18:23:38 -08004215 my $mode;
4216
Ben Jackson0d8bee72009-04-11 10:46:17 -07004217 if (!$self->is_path_ignored($path)) {
Eric Wongb03a71a2009-01-11 18:23:38 -08004218 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
4219 delete $self->{empty}->{$dir};
4220 $mode = '100644';
4221 }
4222 { path => $path, mode_a => $mode, mode_b => $mode,
Eric Wong0864e3b2006-11-28 02:50:17 -08004223 pool => SVN::Pool->new, action => 'A' };
Eric Wong27a1a802006-11-27 21:44:48 -08004224}
4225
Eric Wongd2a9a872006-12-12 14:47:00 -08004226sub add_directory {
4227 my ($self, $path, $cp_path, $cp_rev) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004228 goto out if $self->is_path_ignored($path);
Eric Wong12a6d752007-12-14 08:39:09 -08004229 my $gpath = $self->git_path($path);
4230 if ($gpath eq '') {
4231 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
4232 -r --name-only -z/,
4233 $self->{c});
4234 local $/ = "\0";
4235 while (<$ls>) {
4236 chomp;
4237 $self->{gii}->remove($_);
4238 print "\tD\t$_\n" unless $::_q;
4239 }
4240 command_close_pipe($ls, $ctx);
4241 $self->{empty}->{$path} = 0;
4242 }
Eric Wongd2a9a872006-12-12 14:47:00 -08004243 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
4244 delete $self->{empty}->{$dir};
4245 $self->{empty}->{$path} = 1;
Eric Wongb03a71a2009-01-11 18:23:38 -08004246out:
Eric Wongd2a9a872006-12-12 14:47:00 -08004247 { path => $path };
4248}
4249
4250sub change_dir_prop {
4251 my ($self, $db, $prop, $value) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004252 return undef if $self->is_path_ignored($db->{path});
Eric Wongd2a9a872006-12-12 14:47:00 -08004253 $self->{dir_prop}->{$db->{path}} ||= {};
4254 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
4255 undef;
4256}
4257
4258sub absent_directory {
4259 my ($self, $path, $pb) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004260 return undef if $self->is_path_ignored($path);
Eric Wongd2a9a872006-12-12 14:47:00 -08004261 $self->{absent_dir}->{$pb->{path}} ||= [];
4262 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
4263 undef;
4264}
4265
4266sub absent_file {
4267 my ($self, $path, $pb) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004268 return undef if $self->is_path_ignored($path);
Eric Wongd2a9a872006-12-12 14:47:00 -08004269 $self->{absent_file}->{$pb->{path}} ||= [];
4270 push @{$self->{absent_file}->{$pb->{path}}}, $path;
4271 undef;
4272}
4273
Eric Wong27a1a802006-11-27 21:44:48 -08004274sub change_file_prop {
4275 my ($self, $fb, $prop, $value) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004276 return undef if $self->is_path_ignored($fb->{path});
Eric Wong27a1a802006-11-27 21:44:48 -08004277 if ($prop eq 'svn:executable') {
4278 if ($fb->{mode_b} != 120000) {
4279 $fb->{mode_b} = defined $value ? 100755 : 100644;
4280 }
4281 } elsif ($prop eq 'svn:special') {
4282 $fb->{mode_b} = defined $value ? 120000 : 100644;
Eric Wongd2a9a872006-12-12 14:47:00 -08004283 } else {
4284 $self->{file_prop}->{$fb->{path}} ||= {};
4285 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
Eric Wong27a1a802006-11-27 21:44:48 -08004286 }
4287 undef;
4288}
4289
4290sub apply_textdelta {
4291 my ($self, $fb, $exp) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004292 return undef if $self->is_path_ignored($fb->{path});
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004293 my $fh = $::_repository->temp_acquire('svn_delta');
Eric Wong27a1a802006-11-27 21:44:48 -08004294 # $fh gets auto-closed() by SVN::TxDelta::apply(),
4295 # (but $base does not,) so dup() it for reading in close_file
4296 open my $dup, '<&', $fh or croak $!;
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004297 my $base = $::_repository->temp_acquire('git_blob');
Eric Wongb03a71a2009-01-11 18:23:38 -08004298
Eric Wong27a1a802006-11-27 21:44:48 -08004299 if ($fb->{blob}) {
Eric Wongbaf5fa82009-01-11 16:51:11 -08004300 my ($base_is_link, $size);
4301
Eric Wongdbc6c742009-01-11 16:51:10 -08004302 if ($fb->{mode_a} eq '120000' &&
4303 ! $self->{empty_symlinks}->{$fb->{path}}) {
4304 print $base 'link ' or die "print $!\n";
Eric Wongbaf5fa82009-01-11 16:51:11 -08004305 $base_is_link = 1;
Eric Wongdbc6c742009-01-11 16:51:10 -08004306 }
Eric Wongbaf5fa82009-01-11 16:51:11 -08004307 retry:
4308 $size = $::_repository->cat_blob($fb->{blob}, $base);
Junio C Hamanod683a0e2008-05-27 23:33:22 -07004309 die "Failed to read object $fb->{blob}" if ($size < 0);
Eric Wong27a1a802006-11-27 21:44:48 -08004310
4311 if (defined $exp) {
4312 seek $base, 0, 0 or croak $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08004313 my $got = ::md5sum($base);
Eric Wongbaf5fa82009-01-11 16:51:11 -08004314 if ($got ne $exp) {
4315 my $err = "Checksum mismatch: ".
4316 "$fb->{path} $fb->{blob}\n" .
4317 "expected: $exp\n" .
4318 " got: $got\n";
4319 if ($base_is_link) {
4320 warn $err,
4321 "Retrying... (possibly ",
4322 "a bad symlink from SVN)\n";
4323 $::_repository->temp_reset($base);
4324 $base_is_link = 0;
4325 goto retry;
4326 }
4327 die $err;
4328 }
Eric Wong27a1a802006-11-27 21:44:48 -08004329 }
4330 }
4331 seek $base, 0, 0 or croak $!;
Marcus Griep0b191382008-08-12 12:00:53 -04004332 $fb->{fh} = $fh;
Eric Wong27a1a802006-11-27 21:44:48 -08004333 $fb->{base} = $base;
Marcus Griep0b191382008-08-12 12:00:53 -04004334 [ SVN::TxDelta::apply($base, $dup, undef, $fb->{path}, $fb->{pool}) ];
Eric Wong27a1a802006-11-27 21:44:48 -08004335}
4336
4337sub close_file {
4338 my ($self, $fb, $exp) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004339 return undef if $self->is_path_ignored($fb->{path});
Eric Wongb03a71a2009-01-11 18:23:38 -08004340
Eric Wong27a1a802006-11-27 21:44:48 -08004341 my $hash;
Eric Wong706587f2007-01-18 17:50:01 -08004342 my $path = $self->git_path($fb->{path});
Eric Wong27a1a802006-11-27 21:44:48 -08004343 if (my $fh = $fb->{fh}) {
Eric Wong7faf0682007-05-27 15:59:01 -07004344 if (defined $exp) {
4345 seek($fh, 0, 0) or croak $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08004346 my $got = ::md5sum($fh);
Eric Wong7faf0682007-05-27 15:59:01 -07004347 if ($got ne $exp) {
4348 die "Checksum mismatch: $path\n",
4349 "expected: $exp\n got: $got\n";
4350 }
4351 }
Eric Wong27a1a802006-11-27 21:44:48 -08004352 if ($fb->{mode_b} == 120000) {
Marcus Griep510b0942008-08-12 12:45:39 -04004353 sysseek($fh, 0, 0) or croak $!;
Eric Wongdbc6c742009-01-11 16:51:10 -08004354 my $rd = sysread($fh, my $buf, 5);
Marcus Griep510b0942008-08-12 12:45:39 -04004355
Eric Wongdbc6c742009-01-11 16:51:10 -08004356 if (!defined $rd) {
4357 croak "sysread: $!\n";
4358 } elsif ($rd == 0) {
Marcus Griep510b0942008-08-12 12:45:39 -04004359 warn "$path has mode 120000",
Eric Wongdbc6c742009-01-11 16:51:10 -08004360 " but it points to nothing\n",
4361 "converting to an empty file with mode",
4362 " 100644\n";
4363 $fb->{mode_b} = '100644';
4364 } elsif ($buf ne 'link ') {
4365 warn "$path has mode 120000",
4366 " but is not a link\n";
Marcus Griep510b0942008-08-12 12:45:39 -04004367 } else {
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004368 my $tmp_fh = $::_repository->temp_acquire(
4369 'svn_hash');
Marcus Griep510b0942008-08-12 12:45:39 -04004370 my $res;
4371 while ($res = sysread($fh, my $str, 1024)) {
4372 my $out = syswrite($tmp_fh, $str, $res);
4373 defined($out) && $out == $res
4374 or croak("write ",
Marcus Griep836ff952008-09-08 12:53:01 -04004375 Git::temp_path($tmp_fh),
Marcus Griep510b0942008-08-12 12:45:39 -04004376 ": $!\n");
4377 }
4378 defined $res or croak $!;
4379
4380 ($fh, $tmp_fh) = ($tmp_fh, $fh);
4381 Git::temp_release($tmp_fh, 1);
Eric Wong7fc35e02007-12-19 00:06:45 -08004382 }
Eric Wong27a1a802006-11-27 21:44:48 -08004383 }
Adam Robenffe256f2008-05-23 16:19:41 +02004384
Marcus Griep0b191382008-08-12 12:00:53 -04004385 $hash = $::_repository->hash_and_insert_object(
Marcus Griep836ff952008-09-08 12:53:01 -04004386 Git::temp_path($fh));
Eric Wong27a1a802006-11-27 21:44:48 -08004387 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
Marcus Griep0b191382008-08-12 12:00:53 -04004388
4389 Git::temp_release($fb->{base}, 1);
Marcus Griep510b0942008-08-12 12:45:39 -04004390 Git::temp_release($fh, 1);
Eric Wong27a1a802006-11-27 21:44:48 -08004391 } else {
4392 $hash = $fb->{blob} or die "no blob information\n";
4393 }
4394 $fb->{pool}->clear;
Eric Wongef3cfaa2007-01-24 03:30:57 -08004395 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
Eric Wong9e3cdbd2007-02-09 12:23:47 -08004396 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
Eric Wong27a1a802006-11-27 21:44:48 -08004397 undef;
4398}
4399
4400sub abort_edit {
4401 my $self = shift;
Eric Wongef3cfaa2007-01-24 03:30:57 -08004402 $self->{nr} = $self->{gii}->{nr};
4403 delete $self->{gii};
Eric Wong27a1a802006-11-27 21:44:48 -08004404 $self->SUPER::abort_edit(@_);
4405}
4406
4407sub close_edit {
4408 my $self = shift;
Eric Wongdad73c02006-11-28 14:06:05 -08004409 $self->{git_commit_ok} = 1;
Eric Wongef3cfaa2007-01-24 03:30:57 -08004410 $self->{nr} = $self->{gii}->{nr};
4411 delete $self->{gii};
Eric Wong27a1a802006-11-27 21:44:48 -08004412 $self->SUPER::close_edit(@_);
4413}
Eric Wong1a82e792006-06-16 02:55:13 -07004414
Eric Wonga5e0ced2006-06-12 15:23:48 -07004415package SVN::Git::Editor;
Eric Wong24e22aa2007-01-29 00:07:49 -08004416use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004417use strict;
4418use warnings;
4419use Carp qw/croak/;
4420use IO::File;
4421
4422sub new {
Eric Wong61395352007-01-27 14:33:08 -08004423 my ($class, $opts) = @_;
4424 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
4425 die "$_ required!\n" unless (defined $opts->{$_});
Eric Wonga5e0ced2006-06-12 15:23:48 -07004426 }
Eric Wong61395352007-01-27 14:33:08 -08004427
4428 my $pool = SVN::Pool->new;
4429 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
4430 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
4431 $opts->{r}, $mods);
4432
4433 # $opts->{ra} functions should not be used after this:
4434 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
4435 $opts->{editor_cb}, $pool);
4436 my $self = SVN::Delta::Editor->new(@ce, $pool);
4437 bless $self, $class;
4438 foreach (qw/svn_path r tree_a tree_b/) {
4439 $self->{$_} = $opts->{$_};
4440 }
4441 $self->{url} = $opts->{ra}->{url};
4442 $self->{mods} = $mods;
4443 $self->{types} = $types;
4444 $self->{pool} = $pool;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004445 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
4446 $self->{rm} = { };
Eric Wongd3a840d2007-01-26 01:32:45 -08004447 $self->{path_prefix} = length $self->{svn_path} ?
4448 "$self->{svn_path}/" : '';
Brad King128de652008-07-25 11:32:37 -04004449 $self->{config} = $opts->{config};
Eric Wonga5e0ced2006-06-12 15:23:48 -07004450 return $self;
4451}
4452
Eric Wong61395352007-01-27 14:33:08 -08004453sub generate_diff {
4454 my ($tree_a, $tree_b) = @_;
4455 my @diff_tree = qw(diff-tree -z -r);
Eric Wong24e22aa2007-01-29 00:07:49 -08004456 if ($_cp_similarity) {
4457 push @diff_tree, "-C$_cp_similarity";
Eric Wong61395352007-01-27 14:33:08 -08004458 } else {
4459 push @diff_tree, '-C';
4460 }
Eric Wong24e22aa2007-01-29 00:07:49 -08004461 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
4462 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
Eric Wong61395352007-01-27 14:33:08 -08004463 push @diff_tree, $tree_a, $tree_b;
4464 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
4465 local $/ = "\0";
4466 my $state = 'meta';
4467 my @mods;
4468 while (<$diff_fh>) {
4469 chomp $_; # this gets rid of the trailing "\0"
4470 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
Florian Weimer2d0c8ac2008-08-31 17:05:09 +02004471 ($::sha1)\s($::sha1)\s
Eric Wong61395352007-01-27 14:33:08 -08004472 ([MTCRAD])\d*$/xo) {
4473 push @mods, { mode_a => $1, mode_b => $2,
Florian Weimer2d0c8ac2008-08-31 17:05:09 +02004474 sha1_a => $3, sha1_b => $4,
4475 chg => $5 };
4476 if ($5 =~ /^(?:C|R)$/) {
Eric Wong61395352007-01-27 14:33:08 -08004477 $state = 'file_a';
4478 } else {
4479 $state = 'file_b';
4480 }
4481 } elsif ($state eq 'file_a') {
4482 my $x = $mods[$#mods] or croak "Empty array\n";
4483 if ($x->{chg} !~ /^(?:C|R)$/) {
4484 croak "Error parsing $_, $x->{chg}\n";
4485 }
4486 $x->{file_a} = $_;
4487 $state = 'file_b';
4488 } elsif ($state eq 'file_b') {
4489 my $x = $mods[$#mods] or croak "Empty array\n";
4490 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
4491 croak "Error parsing $_, $x->{chg}\n";
4492 }
4493 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
4494 croak "Error parsing $_, $x->{chg}\n";
4495 }
4496 $x->{file_b} = $_;
4497 $state = 'meta';
4498 } else {
4499 croak "Error parsing $_\n";
4500 }
4501 }
4502 command_close_pipe($diff_fh, $ctx);
4503 \@mods;
4504}
4505
4506sub check_diff_paths {
4507 my ($ra, $pfx, $rev, $mods) = @_;
4508 my %types;
4509 $pfx .= '/' if length $pfx;
4510
4511 sub type_diff_paths {
4512 my ($ra, $types, $path, $rev) = @_;
4513 my @p = split m#/+#, $path;
4514 my $c = shift @p;
4515 unless (defined $types->{$c}) {
4516 $types->{$c} = $ra->check_path($c, $rev);
4517 }
4518 while (@p) {
4519 $c .= '/' . shift @p;
4520 next if defined $types->{$c};
4521 $types->{$c} = $ra->check_path($c, $rev);
4522 }
4523 }
4524
4525 foreach my $m (@$mods) {
4526 foreach my $f (qw/file_a file_b/) {
4527 next unless defined $m->{$f};
4528 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
4529 if (length $pfx.$dir && ! defined $types{$dir}) {
4530 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
4531 }
4532 }
4533 }
4534 \%types;
4535}
4536
Eric Wonga5e0ced2006-06-12 15:23:48 -07004537sub split_path {
4538 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
4539}
4540
4541sub repo_path {
Eric Wongd3a840d2007-01-26 01:32:45 -08004542 my ($self, $path) = @_;
Dmitry Statyvka3713e222010-07-30 04:30:13 +02004543 if (my $enc = $self->{pathnameencoding}) {
4544 require Encode;
4545 Encode::from_to($path, $enc, 'UTF-8');
4546 }
Eric Wongd3a840d2007-01-26 01:32:45 -08004547 $self->{path_prefix}.(defined $path ? $path : '');
Eric Wonga5e0ced2006-06-12 15:23:48 -07004548}
4549
4550sub url_path {
4551 my ($self, $path) = @_;
Eric Wong29633bb2007-07-15 21:53:50 -07004552 if ($self->{url} =~ m#^https?://#) {
Eric Wong884cce52009-07-25 02:29:28 -07004553 $path =~ s!([^~a-zA-Z0-9_./-])!uc sprintf("%%%02x",ord($1))!eg;
Eric Wong29633bb2007-07-15 21:53:50 -07004554 }
Eric Wong6e8548c2007-01-27 01:32:00 -08004555 $self->{url} . '/' . $self->repo_path($path);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004556}
4557
4558sub rmdirs {
Eric Wong61395352007-01-27 14:33:08 -08004559 my ($self) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004560 my $rm = $self->{rm};
4561 delete $rm->{''}; # we never delete the url we're tracking
4562 return unless %$rm;
4563
4564 foreach (keys %$rm) {
4565 my @d = split m#/#, $_;
4566 my $c = shift @d;
4567 $rm->{$c} = 1;
4568 while (@d) {
4569 $c .= '/' . shift @d;
4570 $rm->{$c} = 1;
4571 }
4572 }
4573 delete $rm->{$self->{svn_path}};
4574 delete $rm->{''}; # we never delete the url we're tracking
4575 return unless %$rm;
4576
Eric Wong61395352007-01-27 14:33:08 -08004577 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
4578 $self->{tree_b});
Eric Wonga5e0ced2006-06-12 15:23:48 -07004579 local $/ = "\0";
4580 while (<$fh>) {
4581 chomp;
Eric Wong747fa122006-11-24 22:38:17 -08004582 my @dn = split m#/#, $_;
Eric Wongc07eee12006-06-19 17:59:35 -07004583 while (pop @dn) {
4584 delete $rm->{join '/', @dn};
4585 }
4586 unless (%$rm) {
Eric Wong22600a22007-02-01 13:12:26 -08004587 close $fh;
Eric Wongc07eee12006-06-19 17:59:35 -07004588 return;
4589 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07004590 }
Eric Wongaef4e922006-12-15 10:59:54 -08004591 command_close_pipe($fh, $ctx);
Eric Wongc07eee12006-06-19 17:59:35 -07004592
Eric Wonga5e0ced2006-06-12 15:23:48 -07004593 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
4594 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
4595 $self->close_directory($bat->{$d}, $p);
4596 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
Eric Wong44320b92007-01-13 22:35:53 -08004597 print "\tD+\t$d/\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004598 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
4599 delete $bat->{$d};
4600 }
4601}
4602
4603sub open_or_add_dir {
4604 my ($self, $full_path, $baton) = @_;
Eric Wong6e8548c2007-01-27 01:32:00 -08004605 my $t = $self->{types}->{$full_path};
4606 if (!defined $t) {
4607 die "$full_path not known in r$self->{r} or we have a bug!\n";
4608 }
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004609 {
4610 no warnings 'once';
4611 # SVN::Node::none and SVN::Node::file are used only once,
4612 # so we're shutting up Perl's warnings about them.
4613 if ($t == $SVN::Node::none) {
4614 return $self->add_directory($full_path, $baton,
4615 undef, -1, $self->{pool});
4616 } elsif ($t == $SVN::Node::dir) {
4617 return $self->open_directory($full_path, $baton,
4618 $self->{r}, $self->{pool});
4619 } # no warnings 'once'
4620 print STDERR "$full_path already exists in repository at ",
4621 "r$self->{r} and it is not a directory (",
4622 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
4623 } # no warnings 'once'
Eric Wonga5e0ced2006-06-12 15:23:48 -07004624 exit 1;
4625}
4626
4627sub ensure_path {
4628 my ($self, $path) = @_;
4629 my $bat = $self->{bat};
Eric Wong6e8548c2007-01-27 01:32:00 -08004630 my $repo_path = $self->repo_path($path);
4631 return $bat->{''} unless (length $repo_path);
4632 my @p = split m#/+#, $repo_path;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004633 my $c = shift @p;
4634 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
4635 while (@p) {
4636 my $c0 = $c;
4637 $c .= '/' . shift @p;
4638 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
4639 }
4640 return $bat->{$c};
4641}
4642
Brad King128de652008-07-25 11:32:37 -04004643# Subroutine to convert a globbing pattern to a regular expression.
4644# From perl cookbook.
4645sub glob2pat {
4646 my $globstr = shift;
4647 my %patmap = ('*' => '.*', '?' => '.', '[' => '[', ']' => ']');
4648 $globstr =~ s{(.)} { $patmap{$1} || "\Q$1" }ge;
4649 return '^' . $globstr . '$';
4650}
4651
4652sub check_autoprop {
4653 my ($self, $pattern, $properties, $file, $fbat) = @_;
4654 # Convert the globbing pattern to a regular expression.
4655 my $regex = glob2pat($pattern);
4656 # Check if the pattern matches the file name.
4657 if($file =~ m/($regex)/) {
4658 # Parse the list of properties to set.
4659 my @props = split(/;/, $properties);
4660 foreach my $prop (@props) {
4661 # Parse 'name=value' syntax and set the property.
4662 if ($prop =~ /([^=]+)=(.*)/) {
4663 my ($n,$v) = ($1,$2);
4664 for ($n, $v) {
4665 s/^\s+//; s/\s+$//;
4666 }
4667 $self->change_file_prop($fbat, $n, $v);
4668 }
4669 }
4670 }
4671}
4672
4673sub apply_autoprops {
4674 my ($self, $file, $fbat) = @_;
4675 my $conf_t = ${$self->{config}}{'config'};
4676 no warnings 'once';
4677 # Check [miscellany]/enable-auto-props in svn configuration.
4678 if (SVN::_Core::svn_config_get_bool(
4679 $conf_t,
4680 $SVN::_Core::SVN_CONFIG_SECTION_MISCELLANY,
4681 $SVN::_Core::SVN_CONFIG_OPTION_ENABLE_AUTO_PROPS,
4682 0)) {
4683 # Auto-props are enabled. Enumerate them to look for matches.
4684 my $callback = sub {
4685 $self->check_autoprop($_[0], $_[1], $file, $fbat);
4686 };
4687 SVN::_Core::svn_config_enumerate(
4688 $conf_t,
4689 $SVN::_Core::SVN_CONFIG_SECTION_AUTO_PROPS,
4690 $callback);
4691 }
4692}
4693
Eric Wonga5e0ced2006-06-12 15:23:48 -07004694sub A {
Eric Wong44320b92007-01-13 22:35:53 -08004695 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004696 my ($dir, $file) = split_path($m->{file_b});
4697 my $pbat = $self->ensure_path($dir);
4698 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4699 undef, -1);
Eric Wong44320b92007-01-13 22:35:53 -08004700 print "\tA\t$m->{file_b}\n" unless $::_q;
Brad King128de652008-07-25 11:32:37 -04004701 $self->apply_autoprops($file, $fbat);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004702 $self->chg_file($fbat, $m);
4703 $self->close_file($fbat,undef,$self->{pool});
4704}
4705
4706sub C {
Eric Wong44320b92007-01-13 22:35:53 -08004707 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004708 my ($dir, $file) = split_path($m->{file_b});
4709 my $pbat = $self->ensure_path($dir);
4710 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4711 $self->url_path($m->{file_a}), $self->{r});
Eric Wong44320b92007-01-13 22:35:53 -08004712 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004713 $self->chg_file($fbat, $m);
4714 $self->close_file($fbat,undef,$self->{pool});
4715}
4716
4717sub delete_entry {
4718 my ($self, $path, $pbat) = @_;
4719 my $rpath = $self->repo_path($path);
4720 my ($dir, $file) = split_path($rpath);
4721 $self->{rm}->{$dir} = 1;
4722 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
4723}
4724
4725sub R {
Eric Wong44320b92007-01-13 22:35:53 -08004726 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004727 my ($dir, $file) = split_path($m->{file_b});
4728 my $pbat = $self->ensure_path($dir);
4729 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4730 $self->url_path($m->{file_a}), $self->{r});
Eric Wong44320b92007-01-13 22:35:53 -08004731 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
Paul Talacko7c4d0212008-09-06 18:50:38 -07004732 $self->apply_autoprops($file, $fbat);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004733 $self->chg_file($fbat, $m);
4734 $self->close_file($fbat,undef,$self->{pool});
4735
4736 ($dir, $file) = split_path($m->{file_a});
4737 $pbat = $self->ensure_path($dir);
4738 $self->delete_entry($m->{file_a}, $pbat);
4739}
4740
4741sub M {
Eric Wong44320b92007-01-13 22:35:53 -08004742 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004743 my ($dir, $file) = split_path($m->{file_b});
4744 my $pbat = $self->ensure_path($dir);
4745 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
4746 $pbat,$self->{r},$self->{pool});
Eric Wong44320b92007-01-13 22:35:53 -08004747 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004748 $self->chg_file($fbat, $m);
4749 $self->close_file($fbat,undef,$self->{pool});
4750}
4751
4752sub T { shift->M(@_) }
4753
4754sub change_file_prop {
4755 my ($self, $fbat, $pname, $pval) = @_;
4756 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
4757}
4758
Florian Weimer214a34d2008-08-31 17:45:04 +02004759sub _chg_file_get_blob ($$$$) {
4760 my ($self, $fbat, $m, $which) = @_;
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004761 my $fh = $::_repository->temp_acquire("git_blob_$which");
Florian Weimer214a34d2008-08-31 17:45:04 +02004762 if ($m->{"mode_$which"} =~ /^120/) {
4763 print $fh 'link ' or croak $!;
4764 $self->change_file_prop($fbat,'svn:special','*');
4765 } elsif ($m->{mode_a} =~ /^120/ && $m->{"mode_$which"} !~ /^120/) {
4766 $self->change_file_prop($fbat,'svn:special',undef);
4767 }
4768 my $blob = $m->{"sha1_$which"};
4769 return ($fh,) if ($blob =~ /^0{40}$/);
4770 my $size = $::_repository->cat_blob($blob, $fh);
4771 croak "Failed to read object $blob" if ($size < 0);
4772 $fh->flush == 0 or croak $!;
4773 seek $fh, 0, 0 or croak $!;
4774
4775 my $exp = ::md5sum($fh);
4776 seek $fh, 0, 0 or croak $!;
4777 return ($fh, $exp);
4778}
4779
Eric Wonga5e0ced2006-06-12 15:23:48 -07004780sub chg_file {
4781 my ($self, $fbat, $m) = @_;
4782 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
4783 $self->change_file_prop($fbat,'svn:executable','*');
4784 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
4785 $self->change_file_prop($fbat,'svn:executable',undef);
4786 }
Florian Weimer8598db932008-08-31 17:47:09 +02004787 my ($fh_a, $exp_a) = _chg_file_get_blob $self, $fbat, $m, 'a';
4788 my ($fh_b, $exp_b) = _chg_file_get_blob $self, $fbat, $m, 'b';
Eric Wongf7197df2006-10-14 15:48:35 -07004789 my $pool = SVN::Pool->new;
Florian Weimer8598db932008-08-31 17:47:09 +02004790 my $atd = $self->apply_textdelta($fbat, $exp_a, $pool);
4791 if (-s $fh_a) {
4792 my $txstream = SVN::TxDelta::new ($fh_a, $fh_b, $pool);
Eric Wong991255c2008-08-31 19:45:07 -07004793 my $res = SVN::TxDelta::send_txstream($txstream, @$atd, $pool);
4794 if (defined $res) {
4795 die "Unexpected result from send_txstream: $res\n",
4796 "(SVN::Core::VERSION: $SVN::Core::VERSION)\n";
4797 }
Florian Weimer8598db932008-08-31 17:47:09 +02004798 } else {
4799 my $got = SVN::TxDelta::send_stream($fh_b, @$atd, $pool);
4800 die "Checksum mismatch\nexpected: $exp_b\ngot: $got\n"
4801 if ($got ne $exp_b);
4802 }
4803 Git::temp_release($fh_b, 1);
4804 Git::temp_release($fh_a, 1);
Eric Wongf7197df2006-10-14 15:48:35 -07004805 $pool->clear;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004806}
4807
4808sub D {
Eric Wong44320b92007-01-13 22:35:53 -08004809 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004810 my ($dir, $file) = split_path($m->{file_b});
4811 my $pbat = $self->ensure_path($dir);
Eric Wong44320b92007-01-13 22:35:53 -08004812 print "\tD\t$m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004813 $self->delete_entry($m->{file_b}, $pbat);
4814}
4815
4816sub close_edit {
4817 my ($self) = @_;
4818 my ($p,$bat) = ($self->{pool}, $self->{bat});
4819 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
Eric Wong64427542007-05-19 02:58:37 -07004820 next if $_ eq '';
Eric Wonga5e0ced2006-06-12 15:23:48 -07004821 $self->close_directory($bat->{$_}, $p);
4822 }
Eric Wong64427542007-05-19 02:58:37 -07004823 $self->close_directory($bat->{''}, $p);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004824 $self->SUPER::close_edit($p);
4825 $p->clear;
4826}
4827
4828sub abort_edit {
4829 my ($self) = @_;
4830 $self->SUPER::abort_edit($self->{pool});
Eric Wong61395352007-01-27 14:33:08 -08004831}
4832
4833sub DESTROY {
4834 my $self = shift;
4835 $self->SUPER::DESTROY(@_);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004836 $self->{pool}->clear;
4837}
4838
Eric Wong44320b92007-01-13 22:35:53 -08004839# this drives the editor
4840sub apply_diff {
Eric Wong61395352007-01-27 14:33:08 -08004841 my ($self) = @_;
4842 my $mods = $self->{mods};
Eric Wong44320b92007-01-13 22:35:53 -08004843 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
Eric Wong6e8548c2007-01-27 01:32:00 -08004844 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
Eric Wong44320b92007-01-13 22:35:53 -08004845 my $f = $m->{chg};
4846 if (defined $o{$f}) {
4847 $self->$f($m);
4848 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004849 fatal("Invalid change type: $f");
Eric Wong44320b92007-01-13 22:35:53 -08004850 }
4851 }
Eric Wong24e22aa2007-01-29 00:07:49 -08004852 $self->rmdirs if $_rmdir;
Eric Wong6e8548c2007-01-27 01:32:00 -08004853 if (@$mods == 0) {
Eric Wong44320b92007-01-13 22:35:53 -08004854 $self->abort_edit;
4855 } else {
4856 $self->close_edit;
4857 }
Eric Wong6e8548c2007-01-27 01:32:00 -08004858 return scalar @$mods;
Eric Wong44320b92007-01-13 22:35:53 -08004859}
4860
Eric Wongd81bf822007-01-10 01:22:38 -08004861package Git::SVN::Ra;
Eric Wong6af1db42007-02-14 16:04:10 -08004862use vars qw/@ISA $config_dir $_log_window_size/;
Eric Wongd81bf822007-01-10 01:22:38 -08004863use strict;
4864use warnings;
Eric Wonga51cdb02007-09-07 04:00:40 -07004865my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
Eric Wongd81bf822007-01-10 01:22:38 -08004866
4867BEGIN {
4868 # enforce temporary pool usage for some simple functions
Sam Vilainc5f71ad2007-06-15 15:43:59 +12004869 no strict 'refs';
Eric Wongbf8a40b2009-01-25 15:35:52 -08004870 for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root
4871 get_file/) {
Sam Vilainc5f71ad2007-06-15 15:43:59 +12004872 my $SUPER = "SUPER::$f";
4873 *$f = sub {
4874 my $self = shift;
4875 my $pool = SVN::Pool->new;
4876 my @ret = $self->$SUPER(@_,$pool);
4877 $pool->clear;
4878 wantarray ? @ret : $ret[0];
4879 };
Eric Wongd81bf822007-01-10 01:22:38 -08004880 }
Eric Wongd81bf822007-01-10 01:22:38 -08004881}
4882
Steven Walter9ff74e92007-09-28 13:24:19 -04004883sub _auth_providers () {
4884 [
4885 SVN::Client::get_simple_provider(),
4886 SVN::Client::get_ssl_server_trust_file_provider(),
4887 SVN::Client::get_simple_prompt_provider(
4888 \&Git::SVN::Prompt::simple, 2),
4889 SVN::Client::get_ssl_client_cert_file_provider(),
4890 SVN::Client::get_ssl_client_cert_prompt_provider(
4891 \&Git::SVN::Prompt::ssl_client_cert, 2),
Sebastian Noack77266e92008-02-25 15:56:28 +01004892 SVN::Client::get_ssl_client_cert_pw_file_provider(),
Steven Walter9ff74e92007-09-28 13:24:19 -04004893 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
4894 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
4895 SVN::Client::get_username_provider(),
4896 SVN::Client::get_ssl_server_trust_prompt_provider(
4897 \&Git::SVN::Prompt::ssl_server_trust),
4898 SVN::Client::get_username_prompt_provider(
4899 \&Git::SVN::Prompt::username, 2)
4900 ]
4901}
4902
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004903sub escape_uri_only {
4904 my ($uri) = @_;
4905 my @tmp;
4906 foreach (split m{/}, $uri) {
Eric Wong6a004d32008-10-21 14:12:15 -07004907 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004908 push @tmp, $_;
4909 }
4910 join('/', @tmp);
4911}
4912
4913sub escape_url {
4914 my ($url) = @_;
4915 if ($url =~ m#^(https?)://([^/]+)(.*)$#) {
4916 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
4917 $url = "$scheme://$domain$uri";
4918 }
4919 $url;
4920}
4921
Eric Wongd81bf822007-01-10 01:22:38 -08004922sub new {
4923 my ($class, $url) = @_;
Eric Wongf6f09872007-01-18 18:22:18 -08004924 $url =~ s!/+$!!;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004925 return $RA if ($RA && $RA->{url} eq $url);
Eric Wongf6f09872007-01-18 18:22:18 -08004926
josh robbd32fad22010-02-24 16:13:50 +13004927 ::_req_svn();
4928
Eric Wongd81bf822007-01-10 01:22:38 -08004929 SVN::_Core::svn_config_ensure($config_dir, undef);
Steven Walter9ff74e92007-09-28 13:24:19 -04004930 my ($baton, $callbacks) = SVN::Core::auth_open_helper(_auth_providers);
Eric Wongd81bf822007-01-10 01:22:38 -08004931 my $config = SVN::Core::config_get_config($config_dir);
Eric Wong7730fbe2007-07-04 14:07:42 -07004932 $RA = undef;
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004933 my $dont_store_passwords = 1;
4934 my $conf_t = ${$config}{'config'};
4935 {
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004936 no warnings 'once';
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004937 # The usage of $SVN::_Core::SVN_CONFIG_* variables
4938 # produces warnings that variables are used only once.
4939 # I had not found the better way to shut them up, so
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004940 # the warnings of type 'once' are disabled in this block.
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004941 if (SVN::_Core::svn_config_get_bool($conf_t,
4942 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4943 $SVN::_Core::SVN_CONFIG_OPTION_STORE_PASSWORDS,
4944 1) == 0) {
4945 SVN::_Core::svn_auth_set_parameter($baton,
4946 $SVN::_Core::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS,
4947 bless (\$dont_store_passwords, "_p_void"));
4948 }
4949 if (SVN::_Core::svn_config_get_bool($conf_t,
4950 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4951 $SVN::_Core::SVN_CONFIG_OPTION_STORE_AUTH_CREDS,
4952 1) == 0) {
4953 $Git::SVN::Prompt::_no_auth_cache = 1;
4954 }
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004955 } # no warnings 'once'
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004956 my $self = SVN::Ra->new(url => escape_url($url), auth => $baton,
Eric Wongd81bf822007-01-10 01:22:38 -08004957 config => $config,
4958 pool => SVN::Pool->new,
4959 auth_provider_callbacks => $callbacks);
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004960 $self->{url} = $url;
Eric Wongd81bf822007-01-10 01:22:38 -08004961 $self->{svn_path} = $url;
4962 $self->{repos_root} = $self->get_repos_root;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08004963 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
Eric Wong0dc03d62007-05-13 01:04:43 -07004964 $self->{cache} = { check_path => { r => 0, data => {} },
4965 get_dir => { r => 0, data => {} } };
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004966 $RA = bless $self, $class;
Eric Wongd81bf822007-01-10 01:22:38 -08004967}
4968
Eric Wong0dc03d62007-05-13 01:04:43 -07004969sub check_path {
4970 my ($self, $path, $r) = @_;
4971 my $cache = $self->{cache}->{check_path};
4972 if ($r == $cache->{r} && exists $cache->{data}->{$path}) {
4973 return $cache->{data}->{$path};
4974 }
4975 my $pool = SVN::Pool->new;
4976 my $t = $self->SUPER::check_path($path, $r, $pool);
4977 $pool->clear;
4978 if ($r != $cache->{r}) {
4979 %{$cache->{data}} = ();
4980 $cache->{r} = $r;
4981 }
4982 $cache->{data}->{$path} = $t;
4983}
4984
4985sub get_dir {
4986 my ($self, $dir, $r) = @_;
4987 my $cache = $self->{cache}->{get_dir};
4988 if ($r == $cache->{r}) {
4989 if (my $x = $cache->{data}->{$dir}) {
4990 return wantarray ? @$x : $x->[0];
4991 }
4992 }
4993 my $pool = SVN::Pool->new;
4994 my ($d, undef, $props) = $self->SUPER::get_dir($dir, $r, $pool);
4995 my %dirents = map { $_ => { kind => $d->{$_}->kind } } keys %$d;
4996 $pool->clear;
4997 if ($r != $cache->{r}) {
4998 %{$cache->{data}} = ();
4999 $cache->{r} = $r;
5000 }
5001 $cache->{data}->{$dir} = [ \%dirents, $r, $props ];
5002 wantarray ? (\%dirents, $r, $props) : \%dirents;
5003}
5004
Eric Wongd81bf822007-01-10 01:22:38 -08005005sub DESTROY {
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005006 # do not call the real DESTROY since we store ourselves in $RA
Eric Wongd81bf822007-01-10 01:22:38 -08005007}
5008
Eric Wong1ef626b2009-01-17 22:11:44 -08005009# get_log(paths, start, end, limit,
5010# discover_changed_paths, strict_node_history, receiver)
Eric Wongd81bf822007-01-10 01:22:38 -08005011sub get_log {
5012 my ($self, @args) = @_;
5013 my $pool = SVN::Pool->new;
Eric Wong1ef626b2009-01-17 22:11:44 -08005014
Mattias Nissler3c49a032009-07-07 01:39:52 +02005015 # svn_log_changed_path_t objects passed to get_log are likely to be
5016 # overwritten even if only the refs are copied to an external variable,
5017 # so we should dup the structures in their entirety. Using an
5018 # externally passed pool (instead of our temporary and quickly cleared
5019 # pool in Git::SVN::Ra) does not help matters at all...
5020 my $receiver = pop @args;
Mattias Nissler0b2af452009-07-07 01:40:02 +02005021 my $prefix = "/".$self->{svn_path};
5022 $prefix =~ s#/+($)##;
5023 my $prefix_regex = qr#^\Q$prefix\E#;
Mattias Nissler3c49a032009-07-07 01:39:52 +02005024 push(@args, sub {
5025 my ($paths) = $_[0];
5026 return &$receiver(@_) unless $paths;
5027 $_[0] = ();
5028 foreach my $p (keys %$paths) {
5029 my $i = $paths->{$p};
Mattias Nissler0b2af452009-07-07 01:40:02 +02005030 # Make path relative to our url, not repos_root
5031 $p =~ s/$prefix_regex//;
5032 my %s = map { $_ => $i->$_; }
5033 qw/copyfrom_path copyfrom_rev action/;
5034 if ($s{'copyfrom_path'}) {
5035 $s{'copyfrom_path'} =~ s/$prefix_regex//;
5036 }
Mattias Nissler3c49a032009-07-07 01:39:52 +02005037 $_[0]{$p} = \%s;
5038 }
5039 &$receiver(@_);
5040 });
5041
5042
Eric Wong1ef626b2009-01-17 22:11:44 -08005043 # the limit parameter was not supported in SVN 1.1.x, so we
5044 # drop it. Therefore, the receiver callback passed to it
5045 # is made aware of this limitation by being wrapped if
5046 # the limit passed to is being wrapped.
5047 if ($SVN::Core::VERSION le '1.2.0') {
5048 my $limit = splice(@args, 3, 1);
5049 if ($limit > 0) {
5050 my $receiver = pop @args;
5051 push(@args, sub { &$receiver(@_) if (--$limit >= 0) });
5052 }
5053 }
Eric Wongd81bf822007-01-10 01:22:38 -08005054 my $ret = $self->SUPER::get_log(@args, $pool);
5055 $pool->clear;
5056 $ret;
5057}
5058
Steven Walter9ff74e92007-09-28 13:24:19 -04005059sub trees_match {
5060 my ($self, $url1, $rev1, $url2, $rev2) = @_;
5061 my $ctx = SVN::Client->new(auth => _auth_providers);
5062 my $out = IO::File->new_tmpfile;
5063
5064 # older SVN (1.1.x) doesn't take $pool as the last parameter for
5065 # $ctx->diff(), so we'll create a default one
5066 my $pool = SVN::Pool->new_default_sub;
5067
5068 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
5069 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
5070 $out->flush;
5071 my $ret = (($out->stat)[7] == 0);
5072 close $out or croak $!;
5073
5074 $ret;
5075}
5076
Eric Wongd81bf822007-01-10 01:22:38 -08005077sub get_commit_editor {
Eric Wong44320b92007-01-13 22:35:53 -08005078 my ($self, $log, $cb, $pool) = @_;
Eric Wongd81bf822007-01-10 01:22:38 -08005079 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
Eric Wong44320b92007-01-13 22:35:53 -08005080 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005081}
5082
Eric Wongd81bf822007-01-10 01:22:38 -08005083sub gs_do_update {
Eric Wong8a603772007-01-31 02:45:50 -08005084 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
5085 my $new = ($rev_a == $rev_b);
5086 my $path = $gs->{path};
5087
Eric Wong2e5e2482007-02-23 02:21:59 -08005088 if ($new && -e $gs->{index}) {
5089 unlink $gs->{index} or die
5090 "Couldn't unlink index: $gs->{index}: $!\n";
5091 }
Eric Wongd81bf822007-01-10 01:22:38 -08005092 my $pool = SVN::Pool->new;
Eric Wong8b8fc062007-01-22 11:44:57 -08005093 $editor->set_path_strip($path);
Eric Wong2b27f6c2007-01-28 04:59:05 -08005094 my (@pc) = split m#/#, $path;
5095 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
Eric Wong8a603772007-01-31 02:45:50 -08005096 1, $editor, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005097 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
Eric Wong2b27f6c2007-01-28 04:59:05 -08005098
5099 # Since we can't rely on svn_ra_reparent being available, we'll
5100 # just have to do some magic with set_path to make it so
5101 # we only want a partial path.
5102 my $sp = '';
5103 my $final = join('/', @pc);
5104 while (@pc) {
5105 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
5106 $sp .= '/' if length $sp;
5107 $sp .= shift @pc;
5108 }
5109 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
5110
Eric Wong2b27f6c2007-01-28 04:59:05 -08005111 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
5112
Eric Wongd81bf822007-01-10 01:22:38 -08005113 $reporter->finish_report($pool);
5114 $pool->clear;
5115 $editor->{git_commit_ok};
5116}
5117
Eric Wong2b27f6c2007-01-28 04:59:05 -08005118# this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
5119# svn_ra_reparent didn't work before 1.4)
Eric Wongd81bf822007-01-10 01:22:38 -08005120sub gs_do_switch {
Eric Wong8a603772007-01-31 02:45:50 -08005121 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
5122 my $path = $gs->{path};
Eric Wongd81bf822007-01-10 01:22:38 -08005123 my $pool = SVN::Pool->new;
Eric Wong2b27f6c2007-01-28 04:59:05 -08005124
5125 my $full_url = $self->{url};
5126 my $old_url = $full_url;
Eric Wong2a679c72009-07-19 22:08:45 -07005127 $full_url .= '/' . $path if length $path;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005128 my ($ra, $reparented);
Alec Berrymanad0a82b2008-09-14 17:14:16 -04005129
Eric Wong2a679c72009-07-19 22:08:45 -07005130 if ($old_url =~ m#^svn(\+ssh)?://# ||
5131 ($full_url =~ m#^https?://# &&
5132 escape_url($full_url) ne $full_url)) {
Alec Berrymanad0a82b2008-09-14 17:14:16 -04005133 $_[0] = undef;
5134 $self = undef;
5135 $RA = undef;
5136 $ra = Git::SVN::Ra->new($full_url);
5137 $ra_invalid = 1;
5138 } elsif ($old_url ne $full_url) {
5139 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url, $pool);
5140 $self->{url} = $full_url;
5141 $reparented = 1;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005142 }
Alec Berrymanad0a82b2008-09-14 17:14:16 -04005143
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005144 $ra ||= $self;
Eric Wongf4392df2008-09-06 20:18:18 -07005145 $url_b = escape_url($url_b);
Eric Wong8a603772007-01-31 02:45:50 -08005146 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005147 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
Eric Wong8b8fc062007-01-22 11:44:57 -08005148 $reporter->set_path('', $rev_a, 0, @lock, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005149 $reporter->finish_report($pool);
Eric Wong2b27f6c2007-01-28 04:59:05 -08005150
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005151 if ($reparented) {
5152 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
5153 $self->{url} = $old_url;
5154 }
Eric Wong2b27f6c2007-01-28 04:59:05 -08005155
Eric Wongd81bf822007-01-10 01:22:38 -08005156 $pool->clear;
5157 $editor->{git_commit_ok};
5158}
5159
Eric Wongb54a9012007-06-13 02:37:03 -07005160sub longest_common_path {
5161 my ($gsv, $globs) = @_;
Eric Wongd2ae1432007-02-07 11:50:16 -08005162 my %common;
Eric Wonge5181922007-02-08 12:53:57 -08005163 my $common_max = scalar @$gsv;
5164
5165 foreach my $gs (@$gsv) {
Eric Wongd2ae1432007-02-07 11:50:16 -08005166 my @tmp = split m#/#, $gs->{path};
5167 my $p = '';
5168 foreach (@tmp) {
5169 $p .= length($p) ? "/$_" : $_;
5170 $common{$p} ||= 0;
5171 $common{$p}++;
5172 }
5173 }
Eric Wonge5181922007-02-08 12:53:57 -08005174 $globs ||= [];
5175 $common_max += scalar @$globs;
5176 foreach my $glob (@$globs) {
5177 my @tmp = split m#/#, $glob->{path}->{left};
5178 my $p = '';
5179 foreach (@tmp) {
5180 $p .= length($p) ? "/$_" : $_;
5181 $common{$p} ||= 0;
5182 $common{$p}++;
5183 }
5184 }
5185
Eric Wongd2ae1432007-02-07 11:50:16 -08005186 my $longest_path = '';
5187 foreach (sort {length $b <=> length $a} keys %common) {
Eric Wonge5181922007-02-08 12:53:57 -08005188 if ($common{$_} == $common_max) {
Eric Wongd2ae1432007-02-07 11:50:16 -08005189 $longest_path = $_;
5190 last;
5191 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005192 }
Eric Wongb54a9012007-06-13 02:37:03 -07005193 $longest_path;
5194}
5195
5196sub gs_fetch_loop_common {
5197 my ($self, $base, $head, $gsv, $globs) = @_;
5198 return if ($base > $head);
5199 my $inc = $_log_window_size;
5200 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
5201 my $longest_path = longest_common_path($gsv, $globs);
Eric Wonga51cdb02007-09-07 04:00:40 -07005202 my $ra_url = $self->{url};
Alex Vandiverc69700f2009-05-06 16:18:52 -04005203 my $find_trailing_edge;
Eric Wong0af9c9f2007-01-27 22:28:56 -08005204 while (1) {
Eric Wongd4eff2b2007-01-30 14:04:22 -08005205 my %revs;
Eric Wongd2ae1432007-02-07 11:50:16 -08005206 my $err;
Eric Wongf7c3fc42007-01-29 18:34:55 -08005207 my $err_handler = $SVN::Error::handler;
Eric Wongd2ae1432007-02-07 11:50:16 -08005208 $SVN::Error::handler = sub {
5209 ($err) = @_;
5210 skip_unknown_revs($err);
5211 };
5212 sub _cb {
5213 my ($paths, $r, $author, $date, $log) = @_;
Mattias Nissler3c49a032009-07-07 01:39:52 +02005214 [ $paths,
Eric Wongd2ae1432007-02-07 11:50:16 -08005215 { author => $author, date => $date, log => $log } ];
5216 }
5217 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
5218 sub { $revs{$_[1]} = _cb(@_) });
Deskin Miller99366562009-02-08 19:33:18 -05005219 if ($err) {
5220 print "Checked through r$max\r";
Alex Vandiverc69700f2009-05-06 16:18:52 -04005221 } else {
5222 $find_trailing_edge = 1;
Deskin Miller99366562009-02-08 19:33:18 -05005223 }
Alex Vandiverc69700f2009-05-06 16:18:52 -04005224 if ($err and $find_trailing_edge) {
Eric Wongd2ae1432007-02-07 11:50:16 -08005225 print STDERR "Path '$longest_path' ",
5226 "was probably deleted:\n",
5227 $err->expanded_message,
5228 "\nWill attempt to follow ",
5229 "revisions r$min .. r$max ",
5230 "committed before the deletion\n";
5231 my $hi = $max;
5232 while (--$hi >= $min) {
5233 my $ok;
5234 $self->get_log([$longest_path], $min, $hi,
5235 0, 1, 1, sub {
Alex Vandiverb6c61772009-05-06 16:18:53 -04005236 $ok = $_[1];
Eric Wongd2ae1432007-02-07 11:50:16 -08005237 $revs{$_[1]} = _cb(@_) });
5238 if ($ok) {
5239 print STDERR "r$min .. r$ok OK\n";
5240 last;
5241 }
5242 }
Alex Vandiverc69700f2009-05-06 16:18:52 -04005243 $find_trailing_edge = 0;
Eric Wongd2ae1432007-02-07 11:50:16 -08005244 }
Eric Wongd4eff2b2007-01-30 14:04:22 -08005245 $SVN::Error::handler = $err_handler;
Eric Wongfbcc1732007-02-06 18:35:30 -08005246
Eric Wonge5181922007-02-08 12:53:57 -08005247 my %exists = map { $_->{path} => $_ } @$gsv;
Eric Wongd4eff2b2007-01-30 14:04:22 -08005248 foreach my $r (sort {$a <=> $b} keys %revs) {
Eric Wongfbcc1732007-02-06 18:35:30 -08005249 my ($paths, $logged) = @{$revs{$r}};
Eric Wonge5181922007-02-08 12:53:57 -08005250
5251 foreach my $gs ($self->match_globs(\%exists, $paths,
5252 $globs, $r)) {
Eric Wong060610c2007-12-08 23:27:41 -08005253 if ($gs->rev_map_max >= $r) {
Eric Wongfbcc1732007-02-06 18:35:30 -08005254 next;
5255 }
5256 next unless $gs->match_paths($paths, $r);
5257 $gs->{logged_rev_props} = $logged;
Eric Wonge8d120b2007-02-14 16:29:52 -08005258 if (my $last_commit = $gs->last_commit) {
5259 $gs->assert_index_clean($last_commit);
5260 }
Eric Wongfbcc1732007-02-06 18:35:30 -08005261 my $log_entry = $gs->do_fetch($paths, $r);
5262 if ($log_entry) {
Eric Wong0af9c9f2007-01-27 22:28:56 -08005263 $gs->do_git_commit($log_entry);
5264 }
Eric Wong321b1842008-01-02 10:10:03 -08005265 $INDEX_FILES{$gs->{index}} = 1;
Eric Wong0af9c9f2007-01-27 22:28:56 -08005266 }
Eric Wonge5181922007-02-08 12:53:57 -08005267 foreach my $g (@$globs) {
Eric Wong93f26892007-02-11 01:20:26 -08005268 my $k = "svn-remote.$g->{remote}." .
5269 "$g->{t}-maxRev";
5270 Git::SVN::tmp_config($k, $r);
Eric Wonge5181922007-02-08 12:53:57 -08005271 }
Eric Wonga51cdb02007-09-07 04:00:40 -07005272 if ($ra_invalid) {
5273 $_[0] = undef;
5274 $self = undef;
5275 $RA = undef;
5276 $self = Git::SVN::Ra->new($ra_url);
5277 $ra_invalid = undef;
5278 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005279 }
Eric Wong9c93fee2007-01-31 17:22:31 -08005280 # pre-fill the .rev_db since it'll eventually get filled in
5281 # with '0' x40 if something new gets committed
Eric Wonge5181922007-02-08 12:53:57 -08005282 foreach my $gs (@$gsv) {
Eric Wong66ab84b2007-12-08 23:27:42 -08005283 next if $gs->rev_map_max >= $max;
5284 next if defined $gs->rev_map_get($max);
5285 $gs->rev_map_set($max, 0 x40);
Eric Wong9c93fee2007-01-31 17:22:31 -08005286 }
Eric Wongc3560e52007-02-12 16:03:32 -08005287 foreach my $g (@$globs) {
5288 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
5289 Git::SVN::tmp_config($k, $max);
5290 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005291 last if $max >= $head;
5292 $min = $max + 1;
5293 $max += $inc;
5294 $max = $head if ($max > $head);
5295 }
Karl Hasselström94bc9142008-02-03 17:56:18 +01005296 Git::SVN::gc();
Eric Wong0af9c9f2007-01-27 22:28:56 -08005297}
5298
Marcus Griep570d35c2008-08-08 01:41:57 -07005299sub get_dir_globbed {
5300 my ($self, $left, $depth, $r) = @_;
5301
5302 my @x = eval { $self->get_dir($left, $r) };
5303 return unless scalar @x == 3;
5304 my $dirents = $x[0];
5305 my @finalents;
5306 foreach my $de (keys %$dirents) {
5307 next if $dirents->{$de}->{kind} != $SVN::Node::dir;
5308 if ($depth > 1) {
5309 my @args = ("$left/$de", $depth - 1, $r);
5310 foreach my $dir ($self->get_dir_globbed(@args)) {
5311 push @finalents, "$de/$dir";
5312 }
5313 } else {
5314 push @finalents, $de;
5315 }
5316 }
5317 @finalents;
5318}
5319
Eric Wonge5181922007-02-08 12:53:57 -08005320sub match_globs {
5321 my ($self, $exists, $paths, $globs, $r) = @_;
Eric Wong74a81222007-02-10 13:28:50 -08005322
5323 sub get_dir_check {
5324 my ($self, $exists, $g, $r) = @_;
Marcus Griep570d35c2008-08-08 01:41:57 -07005325
5326 my @dirs = $self->get_dir_globbed($g->{path}->{left},
5327 $g->{path}->{depth},
5328 $r);
5329
5330 foreach my $de (@dirs) {
Eric Wong74a81222007-02-10 13:28:50 -08005331 my $p = $g->{path}->full_path($de);
5332 next if $exists->{$p};
5333 next if (length $g->{path}->{right} &&
5334 ($self->check_path($p, $r) !=
5335 $SVN::Node::dir));
Jay Soffian07576202010-01-23 03:30:01 -05005336 next unless $p =~ /$g->{path}->{regex}/;
Eric Wong74a81222007-02-10 13:28:50 -08005337 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
5338 $g->{ref}->full_path($de), 1);
5339 }
5340 }
Eric Wonge5181922007-02-08 12:53:57 -08005341 foreach my $g (@$globs) {
Eric Wong74a81222007-02-10 13:28:50 -08005342 if (my $path = $paths->{"/$g->{path}->{left}"}) {
5343 if ($path->{action} =~ /^[AR]$/) {
5344 get_dir_check($self, $exists, $g, $r);
5345 }
5346 }
Eric Wonge5181922007-02-08 12:53:57 -08005347 foreach (keys %$paths) {
Eric Wong28710f72007-02-14 13:32:21 -08005348 if (/$g->{path}->{left_regex}/ &&
5349 !/$g->{path}->{regex}/) {
Eric Wong74a81222007-02-10 13:28:50 -08005350 next if $paths->{$_}->{action} !~ /^[AR]$/;
5351 get_dir_check($self, $exists, $g, $r);
5352 }
Eric Wonge5181922007-02-08 12:53:57 -08005353 next unless /$g->{path}->{regex}/;
5354 my $p = $1;
5355 my $pathname = $g->{path}->full_path($p);
5356 next if $exists->{$pathname};
Eric Wong0c1ec5a2007-04-18 00:17:33 -07005357 next if ($self->check_path($pathname, $r) !=
5358 $SVN::Node::dir);
Eric Wonge5181922007-02-08 12:53:57 -08005359 $exists->{$pathname} = Git::SVN->init(
5360 $self->{url}, $pathname, undef,
5361 $g->{ref}->full_path($p), 1);
5362 }
5363 my $c = '';
5364 foreach (split m#/#, $g->{path}->{left}) {
5365 $c .= "/$_";
5366 next unless ($paths->{$c} &&
Eric Wong74a81222007-02-10 13:28:50 -08005367 ($paths->{$c}->{action} =~ /^[AR]$/));
5368 get_dir_check($self, $exists, $g, $r);
Eric Wonge5181922007-02-08 12:53:57 -08005369 }
5370 }
5371 values %$exists;
5372}
5373
Eric Wonge6434f82007-01-23 16:29:23 -08005374sub minimize_url {
5375 my ($self) = @_;
5376 return $self->{url} if ($self->{url} eq $self->{repos_root});
5377 my $url = $self->{repos_root};
5378 my @components = split(m!/!, $self->{svn_path});
5379 my $c = '';
5380 do {
5381 $url .= "/$c" if length $c;
Eric Wong5f8b2cb2009-07-25 13:14:16 -07005382 eval {
5383 my $ra = (ref $self)->new($url);
5384 my $latest = $ra->get_latest_revnum;
5385 $ra->get_log("", $latest, 0, 1, 0, 1, sub {});
5386 };
Eric Wonge6434f82007-01-23 16:29:23 -08005387 } while ($@ && ($c = shift @components));
5388 $url;
5389}
5390
Eric Wongd81bf822007-01-10 01:22:38 -08005391sub can_do_switch {
5392 my $self = shift;
5393 unless (defined $can_do_switch) {
5394 my $pool = SVN::Pool->new;
5395 my $rep = eval {
5396 $self->do_switch(1, '', 0, $self->{url},
5397 SVN::Delta::Editor->new, $pool);
5398 };
5399 if ($@) {
5400 $can_do_switch = 0;
5401 } else {
5402 $rep->abort_report($pool);
5403 $can_do_switch = 1;
5404 }
5405 $pool->clear;
5406 }
5407 $can_do_switch;
5408}
5409
Eric Wong0af9c9f2007-01-27 22:28:56 -08005410sub skip_unknown_revs {
5411 my ($err) = @_;
5412 my $errno = $err->apr_err();
5413 # Maybe the branch we're tracking didn't
5414 # exist when the repo started, so it's
5415 # not an error if it doesn't, just continue
5416 #
5417 # Wonderfully consistent library, eh?
5418 # 160013 - svn:// and file://
5419 # 175002 - http(s)://
5420 # 175007 - http(s):// (this repo required authorization, too...)
5421 # More codes may be discovered later...
5422 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
Eric Wonga6a15a92007-03-30 17:54:48 -07005423 my $err_key = $err->expanded_message;
5424 # revision numbers change every time, filter them out
5425 $err_key =~ s/\d+/\0/g;
5426 $err_key = "$errno\0$err_key";
5427 unless ($ignored_err{$err_key}) {
5428 warn "W: Ignoring error from SVN, path probably ",
5429 "does not exist: ($errno): ",
5430 $err->expanded_message,"\n";
Eric Wongeee8a172008-01-07 02:40:40 -08005431 warn "W: Do not be alarmed at the above message ",
5432 "git-svn is just searching aggressively for ",
5433 "old history.\n",
5434 "This may take a while on large repositories\n";
Eric Wonga6a15a92007-03-30 17:54:48 -07005435 $ignored_err{$err_key} = 1;
5436 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005437 return;
5438 }
5439 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
5440}
5441
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005442package Git::SVN::Log;
5443use strict;
5444use warnings;
5445use POSIX qw/strftime/;
Ben Waltone8717842009-02-24 14:44:49 -05005446use Time::Local;
David D Kilzer111947e2007-11-11 22:56:52 -08005447use constant commit_log_separator => ('-' x 72) . "\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005448use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
5449 %rusers $show_commit $incremental/;
5450my $l_fmt;
5451
5452sub cmt_showable {
5453 my ($c) = @_;
5454 return 1 if defined $c->{r};
Eric Wongc16d0872007-04-08 00:59:22 -07005455
5456 # big commit message got truncated by the 16k pretty buffer in rev-list
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005457 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
5458 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
Eric Wongc16d0872007-04-08 00:59:22 -07005459 @{$c->{l}} = ();
Eric Wong44320b92007-01-13 22:35:53 -08005460 my @log = command(qw/cat-file commit/, $c->{c});
Eric Wongc16d0872007-04-08 00:59:22 -07005461
5462 # shift off the headers
5463 shift @log while ($log[0] ne '');
Eric Wong44320b92007-01-13 22:35:53 -08005464 shift @log;
Eric Wongc16d0872007-04-08 00:59:22 -07005465
5466 # TODO: make $c->{l} not have a trailing newline in the future
5467 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005468
5469 (undef, $c->{r}, undef) = ::extract_metadata(
Eric Wong44320b92007-01-13 22:35:53 -08005470 (grep(/^git-svn-id: /, @log))[-1]);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005471 }
5472 return defined $c->{r};
5473}
5474
5475sub log_use_color {
Jeff Kingcd459e32007-12-11 01:28:42 -05005476 return $color || Git->repository->get_colorbool('color.diff');
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005477}
5478
5479sub git_svn_log_cmd {
Eric Wong3bc718b2007-02-13 17:09:40 -08005480 my ($r_min, $r_max, @args) = @_;
5481 my $head = 'HEAD';
Eric Wong6ed77262007-08-15 09:55:18 -07005482 my (@files, @log_opts);
Eric Wong3bc718b2007-02-13 17:09:40 -08005483 foreach my $x (@args) {
Eric Wong6ed77262007-08-15 09:55:18 -07005484 if ($x eq '--' || @files) {
5485 push @files, $x;
5486 } else {
5487 if (::verify_ref("$x^0")) {
5488 $head = $x;
5489 } else {
5490 push @log_opts, $x;
5491 }
5492 }
Eric Wong3bc718b2007-02-13 17:09:40 -08005493 }
5494
Eric Wong13c823f2007-04-08 00:59:19 -07005495 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
5496 $gs ||= Git::SVN->_new;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005497 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
5498 $gs->refname);
5499 push @cmd, '-r' unless $non_recursive;
5500 push @cmd, qw/--raw --name-status/ if $verbose;
5501 push @cmd, '--color' if log_use_color();
Eric Wong6ed77262007-08-15 09:55:18 -07005502 push @cmd, @log_opts;
5503 if (defined $r_max && $r_max == $r_min) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005504 push @cmd, '--max-count=1';
Eric Wong060610c2007-12-08 23:27:41 -08005505 if (my $c = $gs->rev_map_get($r_max)) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005506 push @cmd, $c;
5507 }
Eric Wong6ed77262007-08-15 09:55:18 -07005508 } elsif (defined $r_max) {
David D Kilzer111947e2007-11-11 22:56:52 -08005509 if ($r_max < $r_min) {
5510 ($r_min, $r_max) = ($r_max, $r_min);
5511 }
5512 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
5513 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
5514 # If there are no commits in the range, both $c_max and $c_min
5515 # will be undefined. If there is at least 1 commit in the
5516 # range, both will be defined.
5517 return () if !defined $c_min || !defined $c_max;
5518 if ($c_min eq $c_max) {
5519 push @cmd, '--max-count=1', $c_min;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005520 } else {
David D Kilzer111947e2007-11-11 22:56:52 -08005521 push @cmd, '--boundary', "$c_min..$c_max";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005522 }
5523 }
Eric Wong6ed77262007-08-15 09:55:18 -07005524 return (@cmd, @files);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005525}
5526
5527# adapted from pager.c
5528sub config_pager {
Jonathan Nieder190c1cd2010-02-14 06:06:10 -06005529 if (! -t *STDOUT) {
5530 $ENV{GIT_PAGER_IN_USE} = 'false';
5531 $pager = undef;
5532 return;
5533 }
5534 chomp($pager = command_oneline(qw(var GIT_PAGER)));
Jonathan Niederdec543e2009-10-30 20:43:19 -05005535 if ($pager eq 'cat') {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005536 $pager = undef;
5537 }
Jeff Kingcd459e32007-12-11 01:28:42 -05005538 $ENV{GIT_PAGER_IN_USE} = defined($pager);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005539}
5540
5541sub run_pager {
Jonathan Nieder190c1cd2010-02-14 06:06:10 -06005542 return unless defined $pager;
Marcus Griep971e6282008-09-10 11:09:46 -04005543 pipe my ($rfd, $wfd) or return;
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005544 defined(my $pid = fork) or ::fatal "Can't fork: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005545 if (!$pid) {
5546 open STDOUT, '>&', $wfd or
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005547 ::fatal "Can't redirect to stdout: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005548 return;
5549 }
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005550 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005551 $ENV{LESS} ||= 'FRSX';
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005552 exec $pager or ::fatal "Can't run pager: $! ($pager)";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005553}
5554
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005555sub format_svn_date {
Ben Waltone8717842009-02-24 14:44:49 -05005556 # some systmes don't handle or mishandle %z, so be creative.
Ben Walton736e6192009-02-27 22:11:45 -05005557 my $t = shift || time;
Ben Waltone8717842009-02-24 14:44:49 -05005558 my $gm = timelocal(gmtime($t));
5559 my $sign = qw( + + - )[ $t <=> $gm ];
5560 my $gmoff = sprintf("%s%02d%02d", $sign, (gmtime(abs($t - $gm)))[2,1]);
5561 return strftime("%Y-%m-%d %H:%M:%S $gmoff (%a, %d %b %Y)", localtime($t));
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005562}
5563
5564sub parse_git_date {
5565 my ($t, $tz) = @_;
5566 # Date::Parse isn't in the standard Perl distro :(
5567 if ($tz =~ s/^\+//) {
5568 $t += tz_to_s_offset($tz);
5569 } elsif ($tz =~ s/^\-//) {
5570 $t -= tz_to_s_offset($tz);
5571 }
5572 return $t;
5573}
5574
5575sub set_local_timezone {
5576 if (defined $TZ) {
5577 $ENV{TZ} = $TZ;
5578 } else {
5579 delete $ENV{TZ};
5580 }
5581}
5582
Eric Wong21819a32007-01-27 14:38:10 -08005583sub tz_to_s_offset {
5584 my ($tz) = @_;
5585 $tz =~ s/(\d\d)$//;
5586 return ($1 * 60) + ($tz * 3600);
5587}
5588
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005589sub get_author_info {
5590 my ($dest, $author, $t, $tz) = @_;
5591 $author =~ s/(?:^\s*|\s*$)//g;
5592 $dest->{a_raw} = $author;
5593 my $au;
Eric Wong1c8443b2007-01-14 02:17:00 -08005594 if ($::_authors) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005595 $au = $rusers{$author} || undef;
5596 }
5597 if (!$au) {
5598 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
5599 }
5600 $dest->{t} = $t;
5601 $dest->{tz} = $tz;
5602 $dest->{a} = $au;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005603 $dest->{t_utc} = parse_git_date($t, $tz);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005604}
5605
5606sub process_commit {
5607 my ($c, $r_min, $r_max, $defer) = @_;
5608 if (defined $r_min && defined $r_max) {
5609 if ($r_min == $c->{r} && $r_min == $r_max) {
5610 show_commit($c);
5611 return 0;
5612 }
5613 return 1 if $r_min == $r_max;
5614 if ($r_min < $r_max) {
5615 # we need to reverse the print order
5616 return 0 if (defined $limit && --$limit < 0);
5617 push @$defer, $c;
5618 return 1;
5619 }
5620 if ($r_min != $r_max) {
5621 return 1 if ($r_min < $c->{r});
5622 return 1 if ($r_max > $c->{r});
5623 }
5624 }
5625 return 0 if (defined $limit && --$limit < 0);
5626 show_commit($c);
5627 return 1;
5628}
5629
5630sub show_commit {
5631 my $c = shift;
5632 if ($oneline) {
5633 my $x = "\n";
5634 if (my $l = $c->{l}) {
5635 while ($l->[0] =~ /^\s*$/) { shift @$l }
5636 $x = $l->[0];
5637 }
5638 $l_fmt ||= 'A' . length($c->{r});
5639 print 'r',pack($l_fmt, $c->{r}),' | ';
5640 print "$c->{c} | " if $show_commit;
5641 print $x;
5642 } else {
5643 show_commit_normal($c);
5644 }
5645}
5646
5647sub show_commit_changed_paths {
5648 my ($c) = @_;
5649 return unless $c->{changed};
5650 print "Changed paths:\n", @{$c->{changed}};
5651}
5652
5653sub show_commit_normal {
5654 my ($c) = @_;
David D Kilzer111947e2007-11-11 22:56:52 -08005655 print commit_log_separator, "r$c->{r} | ";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005656 print "$c->{c} | " if $show_commit;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005657 print "$c->{a} | ", format_svn_date($c->{t_utc}), ' | ';
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005658 my $nr_line = 0;
5659
5660 if (my $l = $c->{l}) {
5661 while ($l->[$#$l] eq "\n" && $#$l > 0
5662 && $l->[($#$l - 1)] eq "\n") {
5663 pop @$l;
5664 }
5665 $nr_line = scalar @$l;
5666 if (!$nr_line) {
5667 print "1 line\n\n\n";
5668 } else {
5669 if ($nr_line == 1) {
5670 $nr_line = '1 line';
5671 } else {
5672 $nr_line .= ' lines';
5673 }
5674 print $nr_line, "\n";
5675 show_commit_changed_paths($c);
5676 print "\n";
5677 print $_ foreach @$l;
5678 }
5679 } else {
5680 print "1 line\n";
5681 show_commit_changed_paths($c);
5682 print "\n";
5683
5684 }
Eric Wong488a63e2007-02-15 00:40:42 -08005685 foreach my $x (qw/raw stat diff/) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005686 if ($c->{$x}) {
5687 print "\n";
5688 print $_ foreach @{$c->{$x}}
5689 }
5690 }
5691}
5692
5693sub cmd_show_log {
5694 my (@args) = @_;
5695 my ($r_min, $r_max);
5696 my $r_last = -1; # prevent dupes
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005697 set_local_timezone();
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005698 if (defined $::_revision) {
5699 if ($::_revision =~ /^(\d+):(\d+)$/) {
5700 ($r_min, $r_max) = ($1, $2);
5701 } elsif ($::_revision =~ /^\d+$/) {
5702 $r_min = $r_max = $::_revision;
5703 } else {
5704 ::fatal "-r$::_revision is not supported, use ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005705 "standard 'git log' arguments instead";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005706 }
5707 }
5708
5709 config_pager();
Eric Wong6ed77262007-08-15 09:55:18 -07005710 @args = git_svn_log_cmd($r_min, $r_max, @args);
David D Kilzer111947e2007-11-11 22:56:52 -08005711 if (!@args) {
5712 print commit_log_separator unless $incremental || $oneline;
5713 return;
5714 }
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005715 my $log = command_output_pipe(@args);
5716 run_pager();
Eric Wong488a63e2007-02-15 00:40:42 -08005717 my (@k, $c, $d, $stat);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005718 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
5719 while (<$log>) {
David D Kilzer60f3ff12007-11-10 22:10:34 -08005720 if (/^${esc_color}commit -?($::sha1_short)/o) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005721 my $cmt = $1;
5722 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
5723 $r_last = $c->{r};
5724 process_commit($c, $r_min, $r_max, \@k) or
5725 goto out;
5726 }
5727 $d = undef;
5728 $c = { c => $cmt };
5729 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
5730 get_author_info($c, $1, $2, $3);
5731 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
5732 # ignore
5733 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
5734 push @{$c->{raw}}, $_;
5735 } elsif (/^${esc_color}[ACRMDT]\t/) {
5736 # we could add $SVN->{svn_path} here, but that requires
5737 # remote access at the moment (repo_path_split)...
5738 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
5739 push @{$c->{changed}}, $_;
5740 } elsif (/^${esc_color}diff /o) {
5741 $d = 1;
5742 push @{$c->{diff}}, $_;
5743 } elsif ($d) {
5744 push @{$c->{diff}}, $_;
Eric Wong488a63e2007-02-15 00:40:42 -08005745 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
5746 $esc_color*[\+\-]*$esc_color$/x) {
5747 $stat = 1;
5748 push @{$c->{stat}}, $_;
5749 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
5750 push @{$c->{stat}}, $_;
5751 $stat = undef;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005752 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
5753 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
5754 } elsif (s/^${esc_color} //o) {
5755 push @{$c->{l}}, $_;
5756 }
5757 }
5758 if ($c && defined $c->{r} && $c->{r} != $r_last) {
5759 $r_last = $c->{r};
5760 process_commit($c, $r_min, $r_max, \@k);
5761 }
5762 if (@k) {
David D Kilzer111947e2007-11-11 22:56:52 -08005763 ($r_min, $r_max) = ($r_max, $r_min);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005764 process_commit($_, $r_min, $r_max) foreach reverse @k;
5765 }
5766out:
Eric Wongc843c462007-01-12 03:07:31 -08005767 close $log;
David D Kilzer111947e2007-11-11 22:56:52 -08005768 print commit_log_separator unless $incremental || $oneline;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005769}
5770
Tim Stoakes6fb53752008-02-10 15:21:08 +10305771sub cmd_blame {
Steven Grimm4be40382008-05-10 22:11:18 -07005772 my $path = pop;
Tim Stoakes6fb53752008-02-10 15:21:08 +10305773
5774 config_pager();
5775 run_pager();
5776
Steven Grimm4be40382008-05-10 22:11:18 -07005777 my ($fh, $ctx, $rev);
5778
5779 if ($_git_format) {
5780 ($fh, $ctx) = command_output_pipe('blame', @_, $path);
5781 while (my $line = <$fh>) {
5782 if ($line =~ /^\^?([[:xdigit:]]+)\s/) {
5783 # Uncommitted edits show up as a rev ID of
5784 # all zeros, which we can't look up with
5785 # cmt_metadata
5786 if ($1 !~ /^0+$/) {
5787 (undef, $rev, undef) =
5788 ::cmt_metadata($1);
5789 $rev = '0' if (!$rev);
5790 } else {
5791 $rev = '0';
5792 }
5793 $rev = sprintf('%-10s', $rev);
5794 $line =~ s/^\^?[[:xdigit:]]+(\s)/$rev$1/;
5795 }
5796 print $line;
Tim Stoakes6fb53752008-02-10 15:21:08 +10305797 }
Steven Grimm4be40382008-05-10 22:11:18 -07005798 } else {
5799 ($fh, $ctx) = command_output_pipe('blame', '-p', @_, 'HEAD',
5800 '--', $path);
5801 my ($sha1);
5802 my %authors;
Boris Byk6ea42032009-04-11 00:32:41 +04005803 my @buffer;
5804 my %dsha; #distinct sha keys
5805
Steven Grimm4be40382008-05-10 22:11:18 -07005806 while (my $line = <$fh>) {
Boris Byk6ea42032009-04-11 00:32:41 +04005807 push @buffer, $line;
Steven Grimm4be40382008-05-10 22:11:18 -07005808 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
Boris Byk6ea42032009-04-11 00:32:41 +04005809 $dsha{$1} = 1;
5810 }
5811 }
5812
5813 my $s2r = ::cmt_sha2rev_batch([keys %dsha]);
5814
5815 foreach my $line (@buffer) {
5816 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
5817 $rev = $s2r->{$1};
5818 $rev = '0' if (!$rev)
Steven Grimm4be40382008-05-10 22:11:18 -07005819 }
5820 elsif ($line =~ /^author (.*)/) {
5821 $authors{$rev} = $1;
5822 $authors{$rev} =~ s/\s/_/g;
5823 }
5824 elsif ($line =~ /^\t(.*)$/) {
5825 printf("%6s %10s %s\n", $rev, $authors{$rev}, $1);
5826 }
5827 }
Tim Stoakes6fb53752008-02-10 15:21:08 +10305828 }
5829 command_close_pipe($fh, $ctx);
5830}
5831
Eric Wong706587f2007-01-18 17:50:01 -08005832package Git::SVN::Migration;
5833# these version numbers do NOT correspond to actual version numbers
5834# of git nor git-svn. They are just relative.
5835#
5836# v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
5837#
5838# v1 layout: .git/$id/info/url, refs/remotes/$id
5839#
5840# v2 layout: .git/svn/$id/info/url, refs/remotes/$id
5841#
5842# v3 layout: .git/svn/$id, refs/remotes/$id
5843# - info/url may remain for backwards compatibility
5844# - this is what we migrate up to this layout automatically,
5845# - this will be used by git svn init on single branches
Eric Wong26a62d52007-02-12 13:25:25 -08005846# v3.1 layout (auto migrated):
5847# - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
5848# for backwards compatibility
Eric Wong706587f2007-01-18 17:50:01 -08005849#
5850# v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
5851# - this is only created for newly multi-init-ed
5852# repositories. Similar in spirit to the
5853# --use-separate-remotes option in git-clone (now default)
5854# - we do not automatically migrate to this (following
5855# the example set by core git)
Eric Wong060610c2007-12-08 23:27:41 -08005856#
5857# v5 layout: .rev_db.$UUID => .rev_map.$UUID
5858# - newer, more-efficient format that uses 24-bytes per record
5859# with no filler space.
5860# - use xxd -c24 < .rev_map.$UUID to view and debug
5861# - This is a one-way migration, repositories updated to the
5862# new format will not be able to use old git-svn without
5863# rebuilding the .rev_db. Rebuilding the rev_db is not
5864# possible if noMetadata or useSvmProps are set; but should
5865# be no problem for users that use the (sensible) defaults.
Eric Wong706587f2007-01-18 17:50:01 -08005866use strict;
5867use warnings;
5868use Carp qw/croak/;
5869use File::Path qw/mkpath/;
Eric Wong47e39c52007-01-21 04:27:09 -08005870use File::Basename qw/dirname basename/;
5871use vars qw/$_minimize/;
Eric Wong706587f2007-01-18 17:50:01 -08005872
5873sub migrate_from_v0 {
5874 my $git_dir = $ENV{GIT_DIR};
5875 return undef unless -d $git_dir;
5876 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5877 my $migrated = 0;
5878 while (<$fh>) {
5879 chomp;
5880 my ($id, $orig_ref) = ($_, $_);
5881 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
5882 next unless -f "$git_dir/$id/info/url";
5883 my $new_ref = "refs/remotes/$id";
5884 if (::verify_ref("$new_ref^0")) {
5885 print STDERR "W: $orig_ref is probably an old ",
5886 "branch used by an ancient version of ",
5887 "git-svn.\n",
5888 "However, $new_ref also exists.\n",
5889 "We will not be able ",
5890 "to use this branch until this ",
5891 "ambiguity is resolved.\n";
5892 next;
5893 }
5894 print STDERR "Migrating from v0 layout...\n" if !$migrated;
5895 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
5896 command_noisy('update-ref', $new_ref, $orig_ref);
5897 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
5898 $migrated++;
5899 }
5900 command_close_pipe($fh, $ctx);
5901 print STDERR "Done migrating from v0 layout...\n" if $migrated;
5902 $migrated;
5903}
5904
5905sub migrate_from_v1 {
5906 my $git_dir = $ENV{GIT_DIR};
5907 my $migrated = 0;
5908 return $migrated unless -d $git_dir;
5909 my $svn_dir = "$git_dir/svn";
5910
5911 # just in case somebody used 'svn' as their $id at some point...
5912 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
5913
5914 print STDERR "Migrating from a git-svn v1 layout...\n";
5915 mkpath([$svn_dir]);
5916 print STDERR "Data from a previous version of git-svn exists, but\n\t",
5917 "$svn_dir\n\t(required for this version ",
Frederik Schwarzer8f510be2008-07-14 18:30:24 +02005918 "($::VERSION) of git-svn) does not exist.\n";
Eric Wong706587f2007-01-18 17:50:01 -08005919 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5920 while (<$fh>) {
5921 my $x = $_;
5922 next unless $x =~ s#^refs/remotes/##;
5923 chomp $x;
5924 next unless -f "$git_dir/$x/info/url";
5925 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
5926 next unless $u;
5927 my $dn = dirname("$git_dir/svn/$x");
5928 mkpath([$dn]) unless -d $dn;
5929 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
5930 mkpath(["$git_dir/svn/svn"]);
5931 print STDERR " - $git_dir/$x/info => ",
5932 "$git_dir/svn/$x/info\n";
5933 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
5934 croak "$!: $x";
5935 # don't worry too much about these, they probably
5936 # don't exist with repos this old (save for index,
5937 # and we can easily regenerate that)
5938 foreach my $f (qw/unhandled.log index .rev_db/) {
5939 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
5940 }
5941 } else {
5942 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
5943 rename "$git_dir/$x", "$git_dir/svn/$x" or
5944 croak "$!: $x";
5945 }
5946 $migrated++;
5947 }
5948 command_close_pipe($fh, $ctx);
5949 print STDERR "Done migrating from a git-svn v1 layout\n";
5950 $migrated;
5951}
5952
5953sub read_old_urls {
5954 my ($l_map, $pfx, $path) = @_;
5955 my @dir;
5956 foreach (<$path/*>) {
5957 if (-r "$_/info/url") {
5958 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
5959 my $ref_id = $pfx . basename $_;
5960 my $url = ::file_to_s("$_/info/url");
5961 $l_map->{$ref_id} = $url;
5962 } elsif (-d $_) {
5963 push @dir, $_;
5964 }
5965 }
5966 foreach (@dir) {
5967 my $x = $_;
5968 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
5969 read_old_urls($l_map, $x, $_);
5970 }
5971}
5972
5973sub migrate_from_v2 {
5974 my @cfg = command(qw/config -l/);
5975 return if grep /^svn-remote\..+\.url=/, @cfg;
5976 my %l_map;
5977 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
5978 my $migrated = 0;
5979
5980 foreach my $ref_id (sort keys %l_map) {
Eric Wong471bc002007-02-01 04:06:27 -08005981 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
5982 if ($@) {
5983 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
5984 }
Eric Wong706587f2007-01-18 17:50:01 -08005985 $migrated++;
5986 }
5987 $migrated;
5988}
5989
Eric Wong47e39c52007-01-21 04:27:09 -08005990sub minimize_connections {
5991 my $r = Git::SVN::read_all_remotes();
5992 my $new_urls = {};
5993 my $root_repos = {};
5994 foreach my $repo_id (keys %$r) {
5995 my $url = $r->{$repo_id}->{url} or next;
5996 my $fetch = $r->{$repo_id}->{fetch} or next;
5997 my $ra = Git::SVN::Ra->new($url);
5998
5999 # skip existing cases where we already connect to the root
6000 if (($ra->{url} eq $ra->{repos_root}) ||
Eric Wong7829f202008-06-28 20:40:32 -07006001 ($ra->{repos_root} eq $repo_id)) {
Eric Wong47e39c52007-01-21 04:27:09 -08006002 $root_repos->{$ra->{url}} = $repo_id;
6003 next;
6004 }
6005
6006 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
6007 my $root_path = $ra->{url};
Eric Wong4e9f6cc2007-02-09 12:17:57 -08006008 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
Eric Wong47e39c52007-01-21 04:27:09 -08006009 foreach my $path (keys %$fetch) {
6010 my $ref_id = $fetch->{$path};
6011 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
6012
6013 # make sure we can read when connecting to
6014 # a higher level of a repository
6015 my ($last_rev, undef) = $gs->last_rev_commit;
6016 if (!defined $last_rev) {
6017 $last_rev = eval {
6018 $root_ra->get_latest_revnum;
6019 };
6020 next if $@;
6021 }
6022 my $new = $root_path;
6023 $new .= length $path ? "/$path" : '';
6024 eval {
6025 $root_ra->get_log([$new], $last_rev, $last_rev,
6026 0, 0, 1, sub { });
6027 };
6028 next if $@;
6029 $new_urls->{$ra->{repos_root}}->{$new} =
6030 { ref_id => $ref_id,
6031 old_repo_id => $repo_id,
6032 old_path => $path };
6033 }
6034 }
6035
6036 my @emptied;
6037 foreach my $url (keys %$new_urls) {
6038 # see if we can re-use an existing [svn-remote "repo_id"]
6039 # instead of creating a(n ugly) new section:
Eric Wong7829f202008-06-28 20:40:32 -07006040 my $repo_id = $root_repos->{$url} || $url;
Eric Wong47e39c52007-01-21 04:27:09 -08006041
6042 my $fetch = $new_urls->{$url};
6043 foreach my $path (keys %$fetch) {
6044 my $x = $fetch->{$path};
6045 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
6046 my $pfx = "svn-remote.$x->{old_repo_id}";
6047
6048 my $old_fetch = quotemeta("$x->{old_path}:".
Adam Brewster6f5748e2009-08-11 23:14:27 -04006049 "$x->{ref_id}");
Eric Wong8b8fc062007-01-22 11:44:57 -08006050 command_noisy(qw/config --unset/,
Eric Wong47e39c52007-01-21 04:27:09 -08006051 "$pfx.fetch", '^'. $old_fetch . '$');
6052 delete $r->{$x->{old_repo_id}}->
6053 {fetch}->{$x->{old_path}};
6054 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
Eric Wong8b8fc062007-01-22 11:44:57 -08006055 command_noisy(qw/config --unset/,
Eric Wong47e39c52007-01-21 04:27:09 -08006056 "$pfx.url");
6057 push @emptied, $x->{old_repo_id}
6058 }
6059 }
6060 }
6061 if (@emptied) {
Johannes Schindelin8befc502008-12-14 23:10:52 +01006062 my $file = $ENV{GIT_CONFIG} || "$ENV{GIT_DIR}/config";
Eric Wong47e39c52007-01-21 04:27:09 -08006063 print STDERR <<EOF;
6064The following [svn-remote] sections in your config file ($file) are empty
6065and can be safely removed:
6066EOF
6067 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
6068 }
6069}
6070
Eric Wong706587f2007-01-18 17:50:01 -08006071sub migration_check {
6072 migrate_from_v0();
6073 migrate_from_v1();
6074 migrate_from_v2();
Eric Wong47e39c52007-01-21 04:27:09 -08006075 minimize_connections() if $_minimize;
Eric Wong706587f2007-01-18 17:50:01 -08006076}
6077
Eric Wongef3cfaa2007-01-24 03:30:57 -08006078package Git::IndexInfo;
6079use strict;
6080use warnings;
6081use Git qw/command_input_pipe command_close_pipe/;
6082
6083sub new {
6084 my ($class) = @_;
6085 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
6086 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
6087}
6088
6089sub remove {
6090 my ($self, $path) = @_;
6091 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
6092 return ++$self->{nr};
6093 }
6094 undef;
6095}
6096
6097sub update {
6098 my ($self, $mode, $hash, $path) = @_;
6099 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
6100 return ++$self->{nr};
6101 }
6102 undef;
6103}
6104
6105sub DESTROY {
6106 my ($self) = @_;
6107 command_close_pipe($self->{gui}, $self->{ctx});
6108}
6109
Eric Wong4bb9ed02007-02-03 13:29:17 -08006110package Git::SVN::GlobSpec;
6111use strict;
6112use warnings;
6113
6114sub new {
Jay Soffian07576202010-01-23 03:30:01 -05006115 my ($class, $glob, $pattern_ok) = @_;
Eric Wong4bb9ed02007-02-03 13:29:17 -08006116 my $re = $glob;
6117 $re =~ s!/+$!!g; # no need for trailing slashes
Jay Soffian07576202010-01-23 03:30:01 -05006118 my (@left, @right, @patterns);
6119 my $state = "left";
6120 my $die_msg = "Only one set of wildcard directories " .
6121 "(e.g. '*' or '*/*/*') is supported: '$glob'\n";
6122 for my $part (split(m|/|, $glob)) {
6123 if ($part =~ /\*/ && $part ne "*") {
6124 die "Invalid pattern in '$glob': $part\n";
6125 } elsif ($pattern_ok && $part =~ /[{}]/ &&
6126 $part !~ /^\{[^{}]+\}/) {
6127 die "Invalid pattern in '$glob': $part\n";
6128 }
6129 if ($part eq "*") {
6130 die $die_msg if $state eq "right";
6131 $state = "pattern";
6132 push(@patterns, "[^/]*");
6133 } elsif ($pattern_ok && $part =~ /^\{(.*)\}$/) {
6134 die $die_msg if $state eq "right";
6135 $state = "pattern";
6136 my $p = quotemeta($1);
6137 $p =~ s/\\,/|/g;
6138 push(@patterns, "(?:$p)");
6139 } else {
6140 if ($state eq "left") {
6141 push(@left, $part);
6142 } else {
6143 push(@right, $part);
6144 $state = "right";
6145 }
6146 }
Marcus Griep570d35c2008-08-08 01:41:57 -07006147 }
Jay Soffian07576202010-01-23 03:30:01 -05006148 my $depth = @patterns;
Marcus Griep570d35c2008-08-08 01:41:57 -07006149 if ($depth == 0) {
Jay Soffian07576202010-01-23 03:30:01 -05006150 die "One '*' is needed in glob: '$glob'\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08006151 }
Jay Soffian07576202010-01-23 03:30:01 -05006152 my $left = join('/', @left);
6153 my $right = join('/', @right);
6154 $re = join('/', @patterns);
6155 $re = join('\/',
6156 grep(length, quotemeta($left), "($re)", quotemeta($right)));
Eric Wong74a81222007-02-10 13:28:50 -08006157 my $left_re = qr/^\/\Q$left\E(\/|$)/;
6158 bless { left => $left, right => $right, left_regex => $left_re,
Marcus Griep570d35c2008-08-08 01:41:57 -07006159 regex => qr/$re/, glob => $glob, depth => $depth }, $class;
Eric Wong4bb9ed02007-02-03 13:29:17 -08006160}
6161
6162sub full_path {
6163 my ($self, $path) = @_;
6164 return (length $self->{left} ? "$self->{left}/" : '') .
6165 $path . (length $self->{right} ? "/$self->{right}" : '');
6166}
6167
Eric Wong3397f9d2006-02-16 01:24:16 -08006168__END__
6169
6170Data structures:
6171
Eric Wong4bb9ed02007-02-03 13:29:17 -08006172
6173$remotes = { # returned by read_all_remotes()
6174 'svn' => {
6175 # svn-remote.svn.url=https://svn.musicpd.org
6176 url => 'https://svn.musicpd.org',
6177 # svn-remote.svn.fetch=mpd/trunk:trunk
6178 fetch => {
6179 'mpd/trunk' => 'trunk',
6180 },
6181 # svn-remote.svn.tags=mpd/tags/*:tags/*
6182 tags => {
6183 path => {
6184 left => 'mpd/tags',
6185 right => '',
6186 regex => qr!mpd/tags/([^/]+)$!,
6187 glob => 'tags/*',
6188 },
6189 ref => {
6190 left => 'tags',
6191 right => '',
6192 regex => qr!tags/([^/]+)$!,
6193 glob => 'tags/*',
6194 },
6195 }
6196 }
6197};
6198
Eric Wong44320b92007-01-13 22:35:53 -08006199$log_entry hashref as returned by libsvn_log_entry()
Eric Wong3397f9d2006-02-16 01:24:16 -08006200{
Eric Wong44320b92007-01-13 22:35:53 -08006201 log => 'whitespace-formatted log entry
Eric Wong3397f9d2006-02-16 01:24:16 -08006202', # trailing newline is preserved
6203 revision => '8', # integer
6204 date => '2004-02-24T17:01:44.108345Z', # commit date
6205 author => 'committer name'
6206};
6207
Eric Wong6e8548c2007-01-27 01:32:00 -08006208
6209# this is generated by generate_diff();
Eric Wong3397f9d2006-02-16 01:24:16 -08006210@mods = array of diff-index line hashes, each element represents one line
6211 of diff-index output
6212
6213diff-index line ($m hash)
6214{
6215 mode_a => first column of diff-index output, no leading ':',
6216 mode_b => second column of diff-index output,
6217 sha1_b => sha1sum of the final blob,
Eric Wongac8e0b92006-03-03 01:20:07 -08006218 chg => change type [MCRADT],
Eric Wong3397f9d2006-02-16 01:24:16 -08006219 file_a => original file name of a file (iff chg is 'C' or 'R')
6220 file_b => new/current file name of a file (any chg)
6221}
6222;
Eric Wonga5e0ced2006-06-12 15:23:48 -07006223
Eric Wonga00439a2006-06-27 19:39:13 -07006224# retval of read_url_paths{,_all}();
6225$l_map = {
6226 # repository root url
6227 'https://svn.musicpd.org' => {
6228 # repository path # GIT_SVN_ID
6229 'mpd/trunk' => 'trunk',
6230 'mpd/tags/0.11.5' => 'tags/0.11.5',
6231 },
6232}
6233
Eric Wonga5e0ced2006-06-12 15:23:48 -07006234Notes:
6235 I don't trust the each() function on unless I created %hash myself
6236 because the internal iterator may not have started at base.