blob: 7849cfc141d384bc28479c2f37fd128c77fe0fbe [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
Ævar Arnfjörð Bjarmasond48b2842010-09-24 20:00:52 +00004use 5.008;
Eric Wong3397f9d2006-02-16 01:24:16 -08005use warnings;
6use strict;
7use vars qw/ $AUTHOR $VERSION
Adam Robenffe256f2008-05-23 16:19:41 +02008 $sha1 $sha1_short $_revision $_repository
Mark Lodato36db1ed2009-05-14 21:27:15 -04009 $_q $_authors $_authors_prog %users/;
Eric Wong3397f9d2006-02-16 01:24:16 -080010$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
Eric Wong60d02cc2006-07-06 00:14:16 -070011$VERSION = '@@GIT_VERSION@@';
Eric Wong13ccd6d2006-03-29 22:37:18 -080012
Benoit Sigoure15153452007-10-16 16:36:50 +020013# From which subdir have we been invoked?
14my $cmd_dir_prefix = eval {
15 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
16} || '';
17
Eric Wong5253dc32007-02-20 01:36:30 -080018my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
Eric Wong706587f2007-01-18 17:50:01 -080019$ENV{GIT_DIR} ||= '.git';
Eric Wong9fa00b62007-02-03 12:49:48 -080020$Git::SVN::default_repo_id = 'svn';
Eric Wong8b8fc062007-01-22 11:44:57 -080021$Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn';
Eric Wong6af1db42007-02-14 16:04:10 -080022$Git::SVN::Ra::_log_window_size = 100;
Eric Wong6b488292009-07-25 00:00:50 -070023$Git::SVN::_minimize_url = 'unset';
Eric Wong13ccd6d2006-03-29 22:37:18 -080024
Karthik Rf3a87d92009-08-18 18:54:40 -050025if (! exists $ENV{SVN_SSH}) {
26 if (exists $ENV{GIT_SSH}) {
27 $ENV{SVN_SSH} = $ENV{GIT_SSH};
28 if ($^O eq 'msys') {
29 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
Sebastian Schubertha004fb92010-01-23 15:20:28 +010030 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
Karthik Rf3a87d92009-08-18 18:54:40 -050031 }
32 }
33}
34
Eric Wongf8c9d1d2007-01-12 02:35:20 -080035$Git::SVN::Log::TZ = $ENV{TZ};
Eric Wong3397f9d2006-02-16 01:24:16 -080036$ENV{TZ} = 'UTC';
Eric Wonga00439a2006-06-27 19:39:13 -070037$| = 1; # unbuffer STDOUT
Eric Wong3397f9d2006-02-16 01:24:16 -080038
Benoit Sigoure207f1a72007-10-16 16:36:52 +020039sub fatal (@) { print STDERR "@_\n"; exit 1 }
josh robbd32fad22010-02-24 16:13:50 +130040sub _req_svn {
41 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
42 require SVN::Ra;
43 require SVN::Delta;
44 if ($SVN::Core::VERSION lt '1.1.0') {
45 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
46 }
Eric Wongb9c85182006-12-15 23:58:07 -080047}
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -050048my $can_compress = eval { require Compress::Zlib; 1};
Eric Wongd81bf822007-01-10 01:22:38 -080049push @Git::SVN::Ra::ISA, 'SVN::Ra';
Eric Wongb9c85182006-12-15 23:58:07 -080050push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
51push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
Eric Wong3397f9d2006-02-16 01:24:16 -080052use Carp qw/croak/;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -080053use Digest::MD5;
Eric Wong3397f9d2006-02-16 01:24:16 -080054use IO::File qw//;
55use File::Basename qw/dirname basename/;
56use File::Path qw/mkpath/;
Mark Lodato36db1ed2009-05-14 21:27:15 -040057use File::Spec;
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -050058use File::Find;
Eric Wong512b6202007-04-03 01:57:08 -070059use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
Eric Wong968bdf12006-06-15 13:36:12 -070060use IPC::Open3;
Eric Wong336f1712007-01-11 02:14:43 -080061use Git;
James Y Knightf5549af2011-04-04 15:09:08 -040062use Memoize; # core since 5.8.0, Jul 2002
Eric Wonga5e0ced2006-06-12 15:23:48 -070063
Eric Wong336f1712007-01-11 02:14:43 -080064BEGIN {
Sam Vilainc5f71ad2007-06-15 15:43:59 +120065 # import functions from Git into our packages, en masse
66 no strict 'refs';
Eric Wong336f1712007-01-11 02:14:43 -080067 foreach (qw/command command_oneline command_noisy command_output_pipe
Boris Byk6ea42032009-04-11 00:32:41 +040068 command_input_pipe command_close_pipe
69 command_bidi_pipe command_close_bidi_pipe/) {
Sam Vilainc5f71ad2007-06-15 15:43:59 +120070 for my $package ( qw(SVN::Git::Editor SVN::Git::Fetcher
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -080071 Git::SVN::Migration Git::SVN::Log Git::SVN),
Sam Vilainc5f71ad2007-06-15 15:43:59 +120072 __PACKAGE__) {
73 *{"${package}::$_"} = \&{"Git::$_"};
74 }
Eric Wong336f1712007-01-11 02:14:43 -080075 }
James Y Knightf5549af2011-04-04 15:09:08 -040076 Memoize::memoize 'Git::config';
77 Memoize::memoize 'Git::config_bool';
Eric Wong336f1712007-01-11 02:14:43 -080078}
79
Eric Wongb9c85182006-12-15 23:58:07 -080080my ($SVN);
Eric Wong83e99402006-10-11 18:19:55 -070081
Eric Wongf8c9d1d2007-01-12 02:35:20 -080082$sha1 = qr/[a-f\d]{40}/;
83$sha1_short = qr/[a-f\d]{4,40}/;
Eric Wong44320b92007-01-13 22:35:53 -080084my ($_stdin, $_help, $_edit,
Marc Branchaud62244062009-06-23 13:02:08 -040085 $_message, $_file, $_branch_dest,
Eric Wongd05d72e2007-01-15 22:59:26 -080086 $_template, $_shared,
Jason Merrillc2abd832009-04-06 16:37:59 -040087 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
Eric Wongdee41f32007-03-13 11:40:36 -070088 $_merge, $_strategy, $_dry_run, $_local,
Steven Grimm4be40382008-05-10 22:11:18 -070089 $_prefix, $_no_checkout, $_url, $_verbose,
Steven Walter6abd9332010-09-24 23:51:50 -040090 $_git_format, $_commit_url, $_tag, $_merge_info);
Eric Wong0bed5ea2007-02-09 02:45:03 -080091$Git::SVN::_follow_parent = 1;
Simon Arlott49750f32009-03-30 19:31:41 +010092$_q ||= 0;
Eric Wong706587f2007-01-18 17:50:01 -080093my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
94 'config-dir=s' => \$Git::SVN::Ra::config_dir,
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +020095 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
96 'ignore-paths=s' => \$SVN::Git::Fetcher::_ignore_regex );
Eric Wong0bed5ea2007-02-09 02:45:03 -080097my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
Eric Wongdc5869c2006-05-24 02:07:32 -070098 'authors-file|A=s' => \$_authors,
Mark Lodato36db1ed2009-05-14 21:27:15 -040099 'authors-prog=s' => \$_authors_prog,
Eric Wongecc712d2007-01-31 12:28:10 -0800100 'repack:i' => \$Git::SVN::_repack,
Eric Wong97ae0912007-02-11 15:21:24 -0800101 'noMetadata' => \$Git::SVN::_no_metadata,
102 'useSvmProps' => \$Git::SVN::_use_svm_props,
Eric Wong62e349d2007-02-16 19:57:29 -0800103 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
Eric Wong6af1db42007-02-14 16:04:10 -0800104 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
Eric Wong1e889ef2007-02-16 01:45:13 -0800105 'no-checkout' => \$_no_checkout,
Simon Arlott49750f32009-03-30 19:31:41 +0100106 'quiet|q+' => \$_q,
Eric Wongecc712d2007-01-31 12:28:10 -0800107 'repack-flags|repack-args|repack-opts=s' =>
108 \$Git::SVN::_repack_flags,
Andy Whitcroft70ae04e2007-11-22 13:44:42 +0000109 'use-log-author' => \$Git::SVN::_use_log_author,
Avery Pennarun6aa9ba12008-04-15 21:04:17 -0400110 'add-author-from' => \$Git::SVN::_add_author_from,
Pete Harlane82f0d72009-01-17 20:10:14 -0800111 'localtime' => \$Git::SVN::_localtime,
Eric Wong706587f2007-01-18 17:50:01 -0800112 %remote_opts );
Eric Wong36f5b1f2006-05-23 19:23:41 -0700113
Marc Branchaud62244062009-06-23 13:02:08 -0400114my ($_trunk, @_tags, @_branches, $_stdlayout);
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800115my %icv;
Eric Wongdadc6d22007-02-14 12:27:41 -0800116my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
Marc Branchaud62244062009-06-23 13:02:08 -0400117 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
118 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
martin f. krafft8f728fb2007-07-14 11:25:28 +0200119 'stdlayout|s' => \$_stdlayout,
Eric Wong6b488292009-07-25 00:00:50 -0700120 'minimize-url|m!' => \$Git::SVN::_minimize_url,
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800121 'no-metadata' => sub { $icv{noMetadata} = 1 },
122 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
123 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
124 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
Jay Soffian3e18ce12010-01-23 03:30:00 -0500125 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
Eric Wongdadc6d22007-02-14 12:27:41 -0800126 %remote_opts );
Eric Wong27e9fb82006-06-27 19:39:12 -0700127my %cmt_opts = ( 'edit|e' => \$_edit,
Eric Wong24e22aa2007-01-29 00:07:49 -0800128 'rmdir' => \$SVN::Git::Editor::_rmdir,
129 'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
130 'l=i' => \$SVN::Git::Editor::_rename_limit,
131 'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
Eric Wong27e9fb82006-06-27 19:39:12 -0700132);
Eric Wong9d55b412006-06-12 15:53:13 -0700133
Eric Wong3397f9d2006-02-16 01:24:16 -0800134my %cmd = (
Eric Wong2a3240b2007-01-04 18:09:56 -0800135 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
Eric Wonge98671e2007-02-14 02:21:19 -0800136 { 'revision|r=s' => \$_revision,
Eric Wong905f8b72007-02-16 03:22:40 -0800137 'fetch-all|all' => \$_fetch_all,
Jason Merrillc2abd832009-04-06 16:37:59 -0400138 'parent|p' => \$_fetch_parent,
Eric Wonge98671e2007-02-14 02:21:19 -0800139 %fc_opts } ],
Eric Wong0425ea92007-02-16 18:45:01 -0800140 clone => [ \&cmd_clone, "Initialize and fetch revisions",
141 { 'revision|r=s' => \$_revision,
142 %fc_opts, %init_opts } ],
Eric Wongd2866f92007-01-11 12:26:16 -0800143 init => [ \&cmd_init, "Initialize a repo for tracking" .
Eric Wongf8ab6b72006-05-31 15:49:56 -0700144 " (requires URL argument)",
Eric Wong9d55b412006-06-12 15:53:13 -0700145 \%init_opts ],
Eric Wongdadc6d22007-02-14 12:27:41 -0800146 'multi-init' => [ \&cmd_multi_init,
147 "Deprecated alias for ".
148 "'$0 init -T<trunk> -b<branches> -t<tags>'",
149 \%init_opts ],
Eric Wongd7ad3be2007-01-14 03:14:28 -0800150 dcommit => [ \&cmd_dcommit,
151 'Commit several diffs to merge with upstream',
Eric Wong3289e862006-12-15 23:58:08 -0800152 { 'merge|m|M' => \$_merge,
153 'strategy|s=s' => \$_strategy,
Eric Wong905f8b72007-02-16 03:22:40 -0800154 'verbose|v' => \$_verbose,
Eric Wong3289e862006-12-15 23:58:08 -0800155 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800156 'fetch-all|all' => \$_fetch_all,
Eric Wongba24e742008-08-07 02:06:16 -0700157 'commit-url=s' => \$_commit_url,
158 'revision|r=i' => \$_revision,
Karl Hasselström171af112007-05-03 07:51:35 +0200159 'no-rebase' => \$_no_rebase,
Steven Walter6abd9332010-09-24 23:51:50 -0400160 'mergeinfo=s' => \$_merge_info,
Eric Wong4b155222006-12-22 21:59:24 -0800161 %cmt_opts, %fc_opts } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700162 branch => [ \&cmd_branch,
163 'Create a branch in the SVN repository',
164 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400165 'destination|d=s' => \$_branch_dest,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700166 'dry-run|n' => \$_dry_run,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100167 'tag|t' => \$_tag,
168 'username=s' => \$Git::SVN::Prompt::_username,
169 'commit-url=s' => \$_commit_url } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700170 tag => [ sub { $_tag = 1; cmd_branch(@_) },
171 'Create a tag in the SVN repository',
172 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400173 'destination|d=s' => \$_branch_dest,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100174 'dry-run|n' => \$_dry_run,
175 'username=s' => \$Git::SVN::Prompt::_username,
176 'commit-url=s' => \$_commit_url } ],
Eric Wong1ce255d2007-01-14 23:21:16 -0800177 'set-tree' => [ \&cmd_set_tree,
178 "Set an SVN repository to a git tree-ish",
Robin H. Johnsone84dc6d2009-05-05 11:16:14 -0700179 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200180 'create-ignore' => [ \&cmd_create_ignore,
181 'Create a .gitignore per svn:ignore',
182 { 'revision|r=i' => \$_revision
183 } ],
Eric Wong6111b932009-11-15 18:57:16 -0800184 'mkdirs' => [ \&cmd_mkdirs ,
185 "recreate empty directories after a checkout",
186 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure15153452007-10-16 16:36:50 +0200187 'propget' => [ \&cmd_propget,
188 'Print the value of a property on a file or directory',
189 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200190 'proplist' => [ \&cmd_proplist,
191 'List all properties of a file or directory',
192 { 'revision|r=i' => \$_revision } ],
Eric Wong5969cbe2007-01-11 17:58:39 -0800193 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200194 { 'revision|r=i' => \$_revision
Lars Hjemli05b4df32007-09-05 11:35:29 +0200195 } ],
Vineet Kumar2d879792007-11-19 14:56:15 -0800196 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
197 { 'revision|r=i' => \$_revision
198 } ],
Eric Wong1c8443b2007-01-14 02:17:00 -0800199 'multi-fetch' => [ \&cmd_multi_fetch,
Eric Wonge98671e2007-02-14 02:21:19 -0800200 "Deprecated alias for $0 fetch --all",
201 { 'revision|r=s' => \$_revision, %fc_opts } ],
Eric Wong706587f2007-01-18 17:50:01 -0800202 'migrate' => [ sub { },
203 # no-op, we automatically run this anyways,
Eric Wong706587f2007-01-18 17:50:01 -0800204 'Migrate configuration/metadata/layout from
205 previous versions of git-svn',
Eric Wonga836a0e2007-02-14 19:34:56 -0800206 { 'minimize' => \$Git::SVN::Migration::_minimize,
207 %remote_opts } ],
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800208 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
209 { 'limit=i' => \$Git::SVN::Log::limit,
Eric Wong79bb8d82006-06-01 02:35:44 -0700210 'revision|r=s' => \$_revision,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800211 'verbose|v' => \$Git::SVN::Log::verbose,
212 'incremental' => \$Git::SVN::Log::incremental,
213 'oneline' => \$Git::SVN::Log::oneline,
214 'show-commit' => \$Git::SVN::Log::show_commit,
215 'non-recursive' => \$Git::SVN::Log::non_recursive,
Eric Wong79bb8d82006-06-01 02:35:44 -0700216 'authors-file|A=s' => \$_authors,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800217 'color' => \$Git::SVN::Log::color,
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200218 'pager=s' => \$Git::SVN::Log::pager
Eric Wong79bb8d82006-06-01 02:35:44 -0700219 } ],
Eric Wong222566e2008-08-08 01:41:58 -0700220 'find-rev' => [ \&cmd_find_rev,
221 "Translate between SVN revision numbers and tree-ish",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200222 {} ],
Eric Wong905f8b72007-02-16 03:22:40 -0800223 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
224 { 'merge|m|M' => \$_merge,
225 'verbose|v' => \$_verbose,
226 'strategy|s=s' => \$_strategy,
Eric Wongdee41f32007-03-13 11:40:36 -0700227 'local|l' => \$_local,
Eric Wong905f8b72007-02-16 03:22:40 -0800228 'fetch-all|all' => \$_fetch_all,
Seth Falcon7d45e142008-05-19 20:29:17 -0700229 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800230 %fc_opts } ],
Eric Wong44320b92007-01-13 22:35:53 -0800231 'commit-diff' => [ \&cmd_commit_diff,
232 'Commit a diff between two trees',
Eric Wong27e9fb82006-06-27 19:39:12 -0700233 { 'message|m=s' => \$_message,
234 'file|F=s' => \$_file,
Eric Wong45bf4732006-11-09 01:19:37 -0800235 'revision|r=s' => \$_revision,
Eric Wong27e9fb82006-06-27 19:39:12 -0700236 %cmt_opts } ],
David D. Kilzere6fefa92007-11-21 11:57:18 -0800237 'info' => [ \&cmd_info,
238 "Show info about the latest SVN revision
239 on the current branch",
David D. Kilzer8b014d72007-11-21 11:57:19 -0800240 { 'url' => \$_url, } ],
Tim Stoakes6fb53752008-02-10 15:21:08 +1030241 'blame' => [ \&Git::SVN::Log::cmd_blame,
242 "Show what revision and author last modified each line of a file",
Steven Grimm4be40382008-05-10 22:11:18 -0700243 { 'git-format' => \$_git_format } ],
Ben Jackson195643f2009-06-03 20:45:52 -0700244 'reset' => [ \&cmd_reset,
245 "Undo fetches back to the specified SVN revision",
246 { 'revision|r=s' => \$_revision,
247 'parent|p' => \$_fetch_parent } ],
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -0500248 'gc' => [ \&cmd_gc,
249 "Compress unhandled.log files in .git/svn and remove " .
250 "index files in .git/svn",
251 {} ],
Eric Wong3397f9d2006-02-16 01:24:16 -0800252);
Eric Wong9d55b412006-06-12 15:53:13 -0700253
Eric Wong3397f9d2006-02-16 01:24:16 -0800254my $cmd;
255for (my $i = 0; $i < @ARGV; $i++) {
256 if (defined $cmd{$ARGV[$i]}) {
257 $cmd = $ARGV[$i];
258 splice @ARGV, $i, 1;
259 last;
Ben Jackson9a8c92a2009-05-30 18:17:06 -0700260 } elsif ($ARGV[$i] eq 'help') {
261 $cmd = $ARGV[$i+1];
262 usage(0);
Eric Wong3397f9d2006-02-16 01:24:16 -0800263 }
264};
265
Eric Wong540424b2007-12-19 00:31:43 -0800266# make sure we're always running at the top-level working directory
267unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
Eric Wong5253dc32007-02-20 01:36:30 -0800268 unless (-d $ENV{GIT_DIR}) {
269 if ($git_dir_user_set) {
270 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
271 "but it is not a directory\n";
272 }
273 my $git_dir = delete $ENV{GIT_DIR};
Deskin Millerfe4003f2008-11-06 00:07:39 -0500274 my $cdup = undef;
275 git_cmd_try {
276 $cdup = command_oneline(qw/rev-parse --show-cdup/);
277 $git_dir = '.' unless ($cdup);
278 chomp $cdup if ($cdup);
279 $cdup = "." unless ($cdup && length $cdup);
280 } "Already at toplevel, but $git_dir not found\n";
Eric Wong5253dc32007-02-20 01:36:30 -0800281 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
282 unless (-d $git_dir) {
283 die "$git_dir still not found after going to ",
284 "'$cdup'\n";
285 }
286 $ENV{GIT_DIR} = $git_dir;
287 }
Adam Robenffe256f2008-05-23 16:19:41 +0200288 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wong5253dc32007-02-20 01:36:30 -0800289}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100290
291my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
292
Eric Wong1a305822009-11-14 14:25:11 -0800293read_git_config(\%opts);
Eric Wong222566e2008-08-08 01:41:58 -0700294if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
295 Getopt::Long::Configure('pass_through');
296}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100297my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
298 'minimize-connections' => \$Git::SVN::Migration::_minimize,
299 'id|i=s' => \$Git::SVN::default_ref_id,
300 'svn-remote|remote|R=s' => sub {
301 $Git::SVN::no_reuse_existing = 1;
302 $Git::SVN::default_repo_id = $_[1] });
303exit 1 if (!$rv && $cmd && $cmd ne 'log');
304
305usage(0) if $_help;
306version() if $_version;
307usage(1) unless defined $cmd;
308load_authors() if $_authors;
Mark Lodato36db1ed2009-05-14 21:27:15 -0400309if (defined $_authors_prog) {
310 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
311}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100312
Eric Wong0425ea92007-02-16 18:45:01 -0800313unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
Eric Wong706587f2007-01-18 17:50:01 -0800314 Git::SVN::Migration::migration_check();
315}
Eric Wongecc712d2007-01-31 12:28:10 -0800316Git::SVN::init_vars();
Eric Wongb805b442007-01-22 13:52:04 -0800317eval {
318 Git::SVN::verify_remotes_sanity();
319 $cmd{$cmd}->[0]->(@ARGV);
320};
321fatal $@ if $@;
Eric Wong1e889ef2007-02-16 01:45:13 -0800322post_fetch_checkout();
Eric Wong3397f9d2006-02-16 01:24:16 -0800323exit 0;
324
325####################### primary functions ######################
326sub usage {
327 my $exit = shift || 0;
328 my $fd = $exit ? \*STDERR : \*STDOUT;
329 print $fd <<"";
330git-svn - bidirectional operations between a single Subversion tree and git
Stephan Beyer1b1dd232008-07-13 15:36:15 +0200331Usage: git svn <command> [options] [arguments]\n
Eric Wong448c81b2006-03-03 01:20:09 -0800332
333 print $fd "Available commands:\n" unless $cmd;
Eric Wong3397f9d2006-02-16 01:24:16 -0800334
335 foreach (sort keys %cmd) {
Eric Wong448c81b2006-03-03 01:20:09 -0800336 next if $cmd && $cmd ne $_;
Eric Wonga836a0e2007-02-14 19:34:56 -0800337 next if /^multi-/; # don't show deprecated commands
Eric Wongb203b762006-10-11 14:53:36 -0700338 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
Benoit Sigoureaa807bc2007-11-03 19:53:34 +0100339 foreach (sort keys %{$cmd{$_}->[2]}) {
Eric Wong512b6202007-04-03 01:57:08 -0700340 # mixed-case options are for .git/config only
341 next if /[A-Z]/ && /^[a-z]+$/i;
Eric Wong448c81b2006-03-03 01:20:09 -0800342 # prints out arguments as they should be passed:
Eric Wongb8c92ca2006-05-24 01:40:37 -0700343 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
Eric Wongb203b762006-10-11 14:53:36 -0700344 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
Eric Wong448c81b2006-03-03 01:20:09 -0800345 "--$_" : "-$_" }
346 split /\|/,$_)," $x\n";
347 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800348 }
349 print $fd <<"";
Eric Wong448c81b2006-03-03 01:20:09 -0800350\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
351arbitrary identifier if you're tracking multiple SVN branches/repositories in
352one git repository and want to keep them separate. See git-svn(1) for more
353information.
Eric Wong3397f9d2006-02-16 01:24:16 -0800354
355 exit $exit;
356}
357
Eric Wong551ce282006-02-20 10:57:29 -0800358sub version {
Michael J Gruberb0779242010-03-04 11:23:53 +0100359 ::_req_svn();
Eric Wong7d60ab22006-12-28 01:16:20 -0800360 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
Eric Wong551ce282006-02-20 10:57:29 -0800361 exit 0;
362}
363
Eric Wong8164b652007-01-11 15:35:55 -0800364sub do_git_init_db {
365 unless (-d $ENV{GIT_DIR}) {
366 my @init_db = ('init');
367 push @init_db, "--template=$_template" if defined $_template;
Eric Wongdadc6d22007-02-14 12:27:41 -0800368 if (defined $_shared) {
369 if ($_shared =~ /[a-z]/) {
370 push @init_db, "--shared=$_shared";
371 } else {
372 push @init_db, "--shared";
373 }
374 }
Eric Wong8164b652007-01-11 15:35:55 -0800375 command_noisy(@init_db);
Adam Robenffe256f2008-05-23 16:19:41 +0200376 $_repository = Git->repository(Repository => ".git");
Eric Wong8164b652007-01-11 15:35:55 -0800377 }
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800378 my $set;
379 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
380 foreach my $i (keys %icv) {
381 die "'$set' and '$i' cannot both be set\n" if $set;
382 next unless defined $icv{$i};
383 command_noisy('config', "$pfx.$i", $icv{$i});
384 $set = $i;
385 }
Ben Jackson88ec2052009-04-11 10:46:18 -0700386 my $ignore_regex = \$SVN::Git::Fetcher::_ignore_regex;
387 command_noisy('config', "$pfx.ignore-paths", $$ignore_regex)
388 if defined $$ignore_regex;
Eric Wong8164b652007-01-11 15:35:55 -0800389}
390
Eric Wongdadc6d22007-02-14 12:27:41 -0800391sub init_subdir {
392 my $repo_path = shift or return;
393 mkpath([$repo_path]) unless -d $repo_path;
394 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
Eric Wongf30603f2007-02-23 01:26:26 -0800395 $ENV{GIT_DIR} = '.git';
Adam Robenffe256f2008-05-23 16:19:41 +0200396 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wongdadc6d22007-02-14 12:27:41 -0800397}
398
Eric Wong0425ea92007-02-16 18:45:01 -0800399sub cmd_clone {
400 my ($url, $path) = @_;
401 if (!defined $path &&
Marc Branchaud62244062009-06-23 13:02:08 -0400402 (defined $_trunk || @_branches || @_tags ||
martin f. krafft8f728fb2007-07-14 11:25:28 +0200403 defined $_stdlayout) &&
Eric Wong0425ea92007-02-16 18:45:01 -0800404 $url !~ m#^[a-z\+]+://#) {
405 $path = $url;
406 }
Eric Wong0425ea92007-02-16 18:45:01 -0800407 $path = basename($url) if !defined $path || !length $path;
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500408 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
Eric Wongf30603f2007-02-23 01:26:26 -0800409 cmd_init($url, $path);
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500410 command_oneline('config', 'svn.authorsfile', $authors_absolute)
411 if $_authors;
Alex Vandiverf5841502009-12-08 15:54:11 -0500412 Git::SVN::fetch_all($Git::SVN::default_repo_id);
Eric Wong0425ea92007-02-16 18:45:01 -0800413}
414
Eric Wongd2866f92007-01-11 12:26:16 -0800415sub cmd_init {
martin f. krafft8f728fb2007-07-14 11:25:28 +0200416 if (defined $_stdlayout) {
417 $_trunk = 'trunk' if (!defined $_trunk);
Marc Branchaud62244062009-06-23 13:02:08 -0400418 @_tags = 'tags' if (! @_tags);
419 @_branches = 'branches' if (! @_branches);
martin f. krafft8f728fb2007-07-14 11:25:28 +0200420 }
Marc Branchaud62244062009-06-23 13:02:08 -0400421 if (defined $_trunk || @_branches || @_tags) {
Eric Wongdadc6d22007-02-14 12:27:41 -0800422 return cmd_multi_init(@_);
Eric Wong03e0ea82006-06-30 21:42:53 -0700423 }
Eric Wongdadc6d22007-02-14 12:27:41 -0800424 my $url = shift or die "SVN repository location required ",
425 "as a command-line argument\n";
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200426 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -0800427 init_subdir(@_);
Eric Wong8164b652007-01-11 15:35:55 -0800428 do_git_init_db();
Eric Wong03e0ea82006-06-30 21:42:53 -0700429
Eric Wong6b488292009-07-25 00:00:50 -0700430 if ($Git::SVN::_minimize_url eq 'unset') {
431 $Git::SVN::_minimize_url = 0;
432 }
433
Eric Wong706587f2007-01-18 17:50:01 -0800434 Git::SVN->init($url);
Eric Wong3397f9d2006-02-16 01:24:16 -0800435}
436
Eric Wong2a3240b2007-01-04 18:09:56 -0800437sub cmd_fetch {
Eric Wonge98671e2007-02-14 02:21:19 -0800438 if (grep /^\d+=./, @_) {
439 die "'<rev>=<commit>' fetch arguments are ",
440 "no longer supported.\n";
Eric Wong07a1c952007-01-22 15:47:41 -0800441 }
Eric Wonge98671e2007-02-14 02:21:19 -0800442 my ($remote) = @_;
443 if (@_ > 1) {
Jason Merrillc2abd832009-04-06 16:37:59 -0400444 die "Usage: $0 fetch [--all] [--parent] [svn-remote]\n";
Eric Wonge98671e2007-02-14 02:21:19 -0800445 }
Eric Wong4d0157d2009-11-22 12:37:06 -0800446 $Git::SVN::no_reuse_existing = undef;
Jason Merrillc2abd832009-04-06 16:37:59 -0400447 if ($_fetch_parent) {
448 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
449 unless ($gs) {
450 die "Unable to determine upstream SVN information from ",
451 "working tree history\n";
452 }
453 # just fetch, don't checkout.
454 $_no_checkout = 'true';
455 $_fetch_all ? $gs->fetch_all : $gs->fetch;
456 } elsif ($_fetch_all) {
Eric Wonge98671e2007-02-14 02:21:19 -0800457 cmd_multi_fetch();
458 } else {
Jason Merrillc2abd832009-04-06 16:37:59 -0400459 $remote ||= $Git::SVN::default_repo_id;
Eric Wonge98671e2007-02-14 02:21:19 -0800460 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
Eric Wong1c8443b2007-01-14 02:17:00 -0800461 }
Eric Wong2a3240b2007-01-04 18:09:56 -0800462}
463
Eric Wong1ce255d2007-01-14 23:21:16 -0800464sub cmd_set_tree {
Eric Wong3397f9d2006-02-16 01:24:16 -0800465 my (@commits) = @_;
466 if ($_stdin || !@commits) {
467 print "Reading from stdin...\n";
468 @commits = ();
469 while (<STDIN>) {
Eric Wong1ca72ae2006-03-03 01:20:09 -0800470 if (/\b($sha1_short)\b/o) {
Eric Wong3397f9d2006-02-16 01:24:16 -0800471 unshift @commits, $1;
472 }
473 }
474 }
475 my @revs;
Eric Wong8de010a2006-02-20 10:57:26 -0800476 foreach my $c (@commits) {
Eric Wongaef4e922006-12-15 10:59:54 -0800477 my @tmp = command('rev-parse',$c);
Eric Wong8de010a2006-02-20 10:57:26 -0800478 if (scalar @tmp == 1) {
479 push @revs, $tmp[0];
480 } elsif (scalar @tmp > 1) {
Eric Wongaef4e922006-12-15 10:59:54 -0800481 push @revs, reverse(command('rev-list',@tmp));
Eric Wong8de010a2006-02-20 10:57:26 -0800482 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200483 fatal "Failed to rev-parse $c";
Eric Wong8de010a2006-02-20 10:57:26 -0800484 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800485 }
Eric Wong1ce255d2007-01-14 23:21:16 -0800486 my $gs = Git::SVN->new;
487 my ($r_last, $cmt_last) = $gs->last_rev_commit;
488 $gs->fetch;
Eric Wong97f69872007-01-25 11:53:13 -0800489 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
Eric Wong1ce255d2007-01-14 23:21:16 -0800490 fatal "There are new revisions that were fetched ",
491 "and need to be merged (or acknowledged) ",
492 "before committing.\nlast rev: $r_last\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200493 " current: $gs->{last_rev}";
Eric Wong1ce255d2007-01-14 23:21:16 -0800494 }
495 $gs->set_tree($_) foreach @revs;
Eric Wonga5e0ced2006-06-12 15:23:48 -0700496 print "Done committing ",scalar @revs," revisions to SVN\n";
Eric Wong3157dd92007-12-13 08:27:34 -0800497 unlink $gs->{index};
Eric Wonga5e0ced2006-06-12 15:23:48 -0700498}
499
Eric Wongd7ad3be2007-01-14 03:14:28 -0800500sub cmd_dcommit {
501 my $head = shift;
David D. Kilzer181264a2010-08-02 12:58:19 -0700502 command_noisy(qw/update-index --refresh/);
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100503 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
David Reiss826a9332007-11-13 13:47:26 -0800504 'Cannot dcommit with a dirty index. Commit your changes first, '
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100505 . "or stash them with `git stash'.\n";
Eric Wongd7ad3be2007-01-14 03:14:28 -0800506 $head ||= 'HEAD';
Thomas Rast5eec27e2009-05-29 17:09:42 +0200507
508 my $old_head;
509 if ($head ne 'HEAD') {
510 $old_head = eval {
511 command_oneline([qw/symbolic-ref -q HEAD/])
512 };
513 if ($old_head) {
514 $old_head =~ s{^refs/heads/}{};
515 } else {
516 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
517 }
518 command(['checkout', $head], STDERR => 0);
519 }
520
Eric Wonga8ae2622007-02-13 14:22:11 -0800521 my @refs;
Thomas Rast5eec27e2009-05-29 17:09:42 +0200522 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
Thomas Rast2cb61102008-08-31 15:50:59 +0200523 unless ($gs) {
524 die "Unable to determine upstream SVN information from ",
525 "$head history.\nPerhaps the repository is empty.";
526 }
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100527
528 if (defined $_commit_url) {
529 $url = $_commit_url;
530 } else {
531 $url = eval { command_oneline('config', '--get',
532 "svn-remote.$gs->{repo_id}.commiturl") };
533 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -0400534 $url = $gs->full_pushurl
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100535 }
536 }
537
Eric Wongba24e742008-08-07 02:06:16 -0700538 my $last_rev = $_revision if defined $_revision;
Matthieu Moy59b0c242008-04-24 20:06:36 +0200539 if ($url) {
540 print "Committing to $url ...\n";
541 }
Eric Wong733a65a2007-06-13 02:23:28 -0700542 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
Eric Wong751eb392007-08-31 18:16:12 -0700543 if ($_no_rebase && scalar(@$linear_refs) > 1) {
544 warn "Attempting to commit more than one change while ",
545 "--no-rebase is enabled.\n",
546 "If these changes depend on each other, re-running ",
Eric Wong7dfa16b2008-01-02 10:09:49 -0800547 "without --no-rebase may be required."
Eric Wong751eb392007-08-31 18:16:12 -0700548 }
Eric Wong711521e2008-08-20 00:30:06 -0700549 my $expect_url = $url;
550 Git::SVN::remove_username($expect_url);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800551 while (1) {
552 my $d = shift @$linear_refs or last;
Eric Wong45bf4732006-11-09 01:19:37 -0800553 unless (defined $last_rev) {
554 (undef, $last_rev, undef) = cmt_metadata("$d~1");
555 unless (defined $last_rev) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800556 fatal "Unable to extract revision information ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200557 "from commit $d~1";
Eric Wong45bf4732006-11-09 01:19:37 -0800558 }
559 }
Eric Wongb22d4492006-08-26 00:01:23 -0700560 if ($_dry_run) {
561 print "diff-tree $d~1 $d\n";
562 } else {
Eric Wong751eb392007-08-31 18:16:12 -0700563 my $cmt_rev;
Eric Wongd7ad3be2007-01-14 03:14:28 -0800564 my %ed_opts = ( r => $last_rev,
Eric Wong61395352007-01-27 14:33:08 -0800565 log => get_commit_entry($d)->{log},
Eric Wongba24e742008-08-07 02:06:16 -0700566 ra => Git::SVN::Ra->new($url),
Konstantin V. Arkhipov3caf3202007-11-14 03:52:02 +0300567 config => SVN::Core::config_get_config(
568 $Git::SVN::Ra::config_dir
569 ),
Eric Wong61395352007-01-27 14:33:08 -0800570 tree_a => "$d~1",
571 tree_b => $d,
572 editor_cb => sub {
573 print "Committed r$_[0]\n";
Eric Wong751eb392007-08-31 18:16:12 -0700574 $cmt_rev = $_[0];
575 },
Steven Walter6abd9332010-09-24 23:51:50 -0400576 mergeinfo => $_merge_info,
Eric Wonga8ae2622007-02-13 14:22:11 -0800577 svn_path => '');
Eric Wong61395352007-01-27 14:33:08 -0800578 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800579 print "No changes\n$d~1 == $d\n";
Eric Wong733a65a2007-06-13 02:23:28 -0700580 } elsif ($parents->{$d} && @{$parents->{$d}}) {
Eric Wong751eb392007-08-31 18:16:12 -0700581 $gs->{inject_parents_dcommit}->{$cmt_rev} =
Eric Wong733a65a2007-06-13 02:23:28 -0700582 $parents->{$d};
Eric Wongd7ad3be2007-01-14 03:14:28 -0800583 }
Eric Wong751eb392007-08-31 18:16:12 -0700584 $_fetch_all ? $gs->fetch_all : $gs->fetch;
Eric Wong7dfa16b2008-01-02 10:09:49 -0800585 $last_rev = $cmt_rev;
Eric Wong751eb392007-08-31 18:16:12 -0700586 next if $_no_rebase;
587
588 # we always want to rebase against the current HEAD,
589 # not any head that was passed to us
Eric Wongc74d9ac2007-11-05 03:21:47 -0800590 my @diff = command('diff-tree', $d,
Eric Wong751eb392007-08-31 18:16:12 -0700591 $gs->refname, '--');
592 my @finish;
593 if (@diff) {
594 @finish = rebase_cmd();
Eric Wongc74d9ac2007-11-05 03:21:47 -0800595 print STDERR "W: $d and ", $gs->refname,
Eric Wong751eb392007-08-31 18:16:12 -0700596 " differ, using @finish:\n",
Eric Wongc74d9ac2007-11-05 03:21:47 -0800597 join("\n", @diff), "\n";
Eric Wong751eb392007-08-31 18:16:12 -0700598 } else {
599 print "No changes between current HEAD and ",
600 $gs->refname,
601 "\nResetting to the latest ",
602 $gs->refname, "\n";
603 @finish = qw/reset --mixed/;
604 }
605 command_noisy(@finish, $gs->refname);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800606 if (@diff) {
607 @refs = ();
608 my ($url_, $rev_, $uuid_, $gs_) =
Thomas Rast5eec27e2009-05-29 17:09:42 +0200609 working_head_info('HEAD', \@refs);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800610 my ($linear_refs_, $parents_) =
611 linearize_history($gs_, \@refs);
612 if (scalar(@$linear_refs) !=
613 scalar(@$linear_refs_)) {
614 fatal "# of revisions changed ",
615 "\nbefore:\n",
616 join("\n", @$linear_refs),
617 "\n\nafter:\n",
618 join("\n", @$linear_refs_), "\n",
619 'If you are attempting to commit ',
620 "merges, try running:\n\t",
621 'git rebase --interactive',
622 '--preserve-merges ',
623 $gs->refname,
624 "\nBefore dcommitting";
625 }
Eric Wong711521e2008-08-20 00:30:06 -0700626 if ($url_ ne $expect_url) {
Alexander Gavrilovc03c1f72009-10-09 11:01:04 +0400627 if ($url_ eq $gs->metadata_url) {
628 print
629 "Accepting rewritten URL:",
630 " $url_\n";
631 } else {
632 fatal
633 "URL mismatch after rebase:",
634 " $url_ != $expect_url";
635 }
Eric Wongc74d9ac2007-11-05 03:21:47 -0800636 }
637 if ($uuid_ ne $uuid) {
638 fatal "uuid mismatch after rebase: ",
639 "$uuid_ != $uuid";
640 }
641 # remap parents
642 my (%p, @l, $i);
643 for ($i = 0; $i < scalar @$linear_refs; $i++) {
644 my $new = $linear_refs_->[$i] or next;
645 $p{$new} =
646 $parents->{$linear_refs->[$i]};
647 push @l, $new;
648 }
649 $parents = \%p;
650 $linear_refs = \@l;
651 }
Eric Wongb22d4492006-08-26 00:01:23 -0700652 }
653 }
Thomas Rast5eec27e2009-05-29 17:09:42 +0200654
655 if ($old_head) {
656 my $new_head = command_oneline(qw/rev-parse HEAD/);
657 my $new_is_symbolic = eval {
658 command_oneline(qw/symbolic-ref -q HEAD/);
659 };
660 if ($new_is_symbolic) {
661 print "dcommitted the branch ", $head, "\n";
662 } else {
663 print "dcommitted on a detached HEAD because you gave ",
664 "a revision argument.\n",
665 "The rewritten commit is: ", $new_head, "\n";
666 }
667 command(['checkout', $old_head], STDERR => 0);
668 }
669
Eric Wong3157dd92007-12-13 08:27:34 -0800670 unlink $gs->{index};
Eric Wongb22d4492006-08-26 00:01:23 -0700671}
672
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700673sub cmd_branch {
674 my ($branch_name, $head) = @_;
675
676 unless (defined $branch_name && length $branch_name) {
677 die(($_tag ? "tag" : "branch") . " name required\n");
678 }
679 $head ||= 'HEAD';
680
Eric Wong150d38c2009-12-22 22:40:18 -0800681 my (undef, $rev, undef, $gs) = working_head_info($head);
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -0400682 my $src = $gs->full_pushurl;
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700683
Deskin Millera0fbc872008-12-01 21:43:00 -0500684 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
Marc Branchaud62244062009-06-23 13:02:08 -0400685 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
686 my $glob;
687 if ($#{$allglobs} == 0) {
688 $glob = $allglobs->[0];
689 } else {
690 unless(defined $_branch_dest) {
691 die "Multiple ",
692 $_tag ? "tag" : "branch",
693 " paths defined for Subversion repository.\n",
694 "You must specify where you want to create the ",
695 $_tag ? "tag" : "branch",
696 " with the --destination argument.\n";
697 }
698 foreach my $g (@{$allglobs}) {
Eric Wongf7050592009-06-25 02:28:15 -0700699 # SVN::Git::Editor could probably be moved to Git.pm..
700 my $re = SVN::Git::Editor::glob2pat($g->{path}->{left});
701 if ($_branch_dest =~ /$re/) {
Marc Branchaud62244062009-06-23 13:02:08 -0400702 $glob = $g;
703 last;
704 }
705 }
706 unless (defined $glob) {
Eric Wongeaa14ff2009-07-25 01:36:06 -0700707 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
708 foreach my $g (@{$allglobs}) {
709 $g->{path}->{left} =~ /$dest_re/ or next;
710 if (defined $glob) {
711 die "Ambiguous destination: ",
712 $_branch_dest, "\nmatches both '",
713 $glob->{path}->{left}, "' and '",
714 $g->{path}->{left}, "'\n";
715 }
716 $glob = $g;
717 }
718 unless (defined $glob) {
719 die "Unknown ",
720 $_tag ? "tag" : "branch",
721 " destination $_branch_dest\n";
722 }
Marc Branchaud62244062009-06-23 13:02:08 -0400723 }
724 }
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700725 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
Igor Mironov99bacd62010-01-12 03:21:23 +1100726 my $url;
727 if (defined $_commit_url) {
728 $url = $_commit_url;
729 } else {
730 $url = eval { command_oneline('config', '--get',
731 "svn-remote.$gs->{repo_id}.commiturl") };
732 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -0400733 $url = $remote->{pushurl} || $remote->{url};
Igor Mironov99bacd62010-01-12 03:21:23 +1100734 }
735 }
736 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700737
Igor Mironova83b91e2010-01-12 03:20:43 +1100738 if ($dst =~ /^https:/ && $src =~ /^http:/) {
739 $src=~s/^http:/https:/;
740 }
741
josh robbd32fad22010-02-24 16:13:50 +1300742 ::_req_svn();
743
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700744 my $ctx = SVN::Client->new(
745 auth => Git::SVN::Ra::_auth_providers(),
746 log_msg => sub {
747 ${ $_[0] } = defined $_message
748 ? $_message
749 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
750 . $branch_name;
751 },
752 );
753
754 eval {
755 $ctx->ls($dst, 'HEAD', 0);
756 } and die "branch ${branch_name} already exists\n";
757
758 print "Copying ${src} at r${rev} to ${dst}...\n";
759 $ctx->copy($src, $rev, $dst)
760 unless $_dry_run;
761
762 $gs->fetch_all;
763}
764
Adam Roben26e60162007-04-27 11:57:53 -0700765sub cmd_find_rev {
Marc-Andre Lureauea14e6c2008-03-11 10:00:45 +0200766 my $revision_or_hash = shift or die "SVN or git revision required ",
767 "as a command-line argument\n";
Adam Roben26e60162007-04-27 11:57:53 -0700768 my $result;
769 if ($revision_or_hash =~ /^r\d+$/) {
Adam Robenb3cb7e42007-04-29 01:35:27 -0700770 my $head = shift;
771 $head ||= 'HEAD';
772 my @refs;
João Abecasis63c56022008-07-14 16:28:04 +0100773 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
Adam Robenb3cb7e42007-04-29 01:35:27 -0700774 unless ($gs) {
775 die "Unable to determine upstream SVN information from ",
776 "$head history\n";
Adam Roben26e60162007-04-27 11:57:53 -0700777 }
Adam Robenb3cb7e42007-04-29 01:35:27 -0700778 my $desired_revision = substr($revision_or_hash, 1);
João Abecasis63c56022008-07-14 16:28:04 +0100779 $result = $gs->rev_map_get($desired_revision, $uuid);
Adam Roben26e60162007-04-27 11:57:53 -0700780 } else {
781 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
782 $result = $rev;
783 }
784 print "$result\n" if $result;
785}
786
Michael Haggerty55f9d7a2011-04-01 12:26:00 +0200787sub auto_create_empty_directories {
788 my ($gs) = @_;
789 my $var = eval { command_oneline('config', '--get', '--bool',
790 "svn-remote.$gs->{repo_id}.automkdirs") };
791 # By default, create empty directories by consulting the unhandled log,
792 # but allow setting it to 'false' to skip it.
793 return !($var && $var eq 'false');
794}
795
Eric Wong905f8b72007-02-16 03:22:40 -0800796sub cmd_rebase {
797 command_noisy(qw/update-index --refresh/);
Eric Wong13c823f2007-04-08 00:59:19 -0700798 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
799 unless ($gs) {
Eric Wong905f8b72007-02-16 03:22:40 -0800800 die "Unable to determine upstream SVN information from ",
801 "working tree history\n";
802 }
Seth Falcon7d45e142008-05-19 20:29:17 -0700803 if ($_dry_run) {
804 print "Remote Branch: " . $gs->refname . "\n";
805 print "SVN URL: " . $url . "\n";
806 return;
807 }
Eric Wong905f8b72007-02-16 03:22:40 -0800808 if (command(qw/diff-index HEAD --/)) {
809 print STDERR "Cannot rebase with uncommited changes:\n";
810 command_noisy('status');
811 exit 1;
812 }
Eric Wongdee41f32007-03-13 11:40:36 -0700813 unless ($_local) {
Steven Grimmcec0d5a2007-11-29 11:54:39 -0800814 # rebase will checkout for us, so no need to do it explicitly
815 $_no_checkout = 'true';
Eric Wongdee41f32007-03-13 11:40:36 -0700816 $_fetch_all ? $gs->fetch_all : $gs->fetch;
817 }
Eric Wong905f8b72007-02-16 03:22:40 -0800818 command_noisy(rebase_cmd(), $gs->refname);
Michael Haggerty55f9d7a2011-04-01 12:26:00 +0200819 if (auto_create_empty_directories($gs)) {
820 $gs->mkemptydirs;
821 }
Eric Wong905f8b72007-02-16 03:22:40 -0800822}
823
Eric Wong5969cbe2007-01-11 17:58:39 -0800824sub cmd_show_ignore {
Eric Wong13c823f2007-04-08 00:59:19 -0700825 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
826 $gs ||= Git::SVN->new;
Eric Wong5969cbe2007-01-11 17:58:39 -0800827 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Benoit Sigoure01bdab82007-10-16 16:36:48 +0200828 $gs->prop_walk($gs->{path}, $r, sub {
829 my ($gs, $path, $props) = @_;
830 print STDOUT "\n# $path\n";
831 my $s = $props->{'svn:ignore'} or return;
832 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +0200833 $s =~ s/^\n+//;
Benoit Sigoure01bdab82007-10-16 16:36:48 +0200834 chomp $s;
835 $s =~ s#^#$path#gm;
836 print STDOUT "$s\n";
837 });
Eric Wonga5e0ced2006-06-12 15:23:48 -0700838}
839
Vineet Kumar2d879792007-11-19 14:56:15 -0800840sub cmd_show_externals {
841 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
842 $gs ||= Git::SVN->new;
843 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
844 $gs->prop_walk($gs->{path}, $r, sub {
845 my ($gs, $path, $props) = @_;
846 print STDOUT "\n# $path\n";
847 my $s = $props->{'svn:externals'} or return;
848 $s =~ s/[\r\n]+/\n/g;
849 chomp $s;
850 $s =~ s#^#$path#gm;
851 print STDOUT "$s\n";
852 });
853}
854
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200855sub cmd_create_ignore {
856 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
857 $gs ||= Git::SVN->new;
858 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
859 $gs->prop_walk($gs->{path}, $r, sub {
860 my ($gs, $path, $props) = @_;
861 # $path is of the form /path/to/dir/
Brian Gernhardt7d9fd452009-02-19 13:08:04 -0500862 $path = '.' . $path;
863 # SVN can have attributes on empty directories,
864 # which git won't track
865 mkpath([$path]) unless -d $path;
866 my $ignore = $path . '.gitignore';
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200867 my $s = $props->{'svn:ignore'} or return;
868 open(GITIGNORE, '>', $ignore)
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200869 or fatal("Failed to open `$ignore' for writing: $!");
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200870 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +0200871 $s =~ s/^\n+//;
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200872 chomp $s;
873 # Prefix all patterns so that the ignore doesn't apply
874 # to sub-directories.
875 $s =~ s#^#/#gm;
876 print GITIGNORE "$s\n";
877 close(GITIGNORE)
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200878 or fatal("Failed to close `$ignore': $!");
Gustaf Hendebyc4c66b22008-05-05 00:33:09 +0200879 command_noisy('add', '-f', $ignore);
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200880 });
881}
882
Eric Wong6111b932009-11-15 18:57:16 -0800883sub cmd_mkdirs {
884 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
885 $gs ||= Git::SVN->new;
886 $gs->mkemptydirs($_revision);
887}
888
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800889sub canonicalize_path {
890 my ($path) = @_;
David D. Kilzere6fefa92007-11-21 11:57:18 -0800891 my $dot_slash_added = 0;
892 if (substr($path, 0, 1) ne "/") {
893 $path = "./" . $path;
894 $dot_slash_added = 1;
895 }
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800896 # File::Spec->canonpath doesn't collapse x/../y into y (for a
897 # good reason), so let's do this manually.
898 $path =~ s#/+#/#g;
899 $path =~ s#/\.(?:/|$)#/#g;
900 $path =~ s#/[^/]+/\.\.##g;
901 $path =~ s#/$##g;
David D. Kilzere6fefa92007-11-21 11:57:18 -0800902 $path =~ s#^\./## if $dot_slash_added;
Gerrit Pape2fe403e2008-07-06 19:28:50 +0000903 $path =~ s#^/##;
904 $path =~ s#^\.$##;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800905 return $path;
906}
907
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200908sub canonicalize_url {
909 my ($url) = @_;
910 $url =~ s#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
911 return $url;
912}
913
Benoit Sigoure15153452007-10-16 16:36:50 +0200914# get_svnprops(PATH)
915# ------------------
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200916# Helper for cmd_propget and cmd_proplist below.
Benoit Sigoure15153452007-10-16 16:36:50 +0200917sub get_svnprops {
918 my $path = shift;
919 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
920 $gs ||= Git::SVN->new;
921
922 # prefix THE PATH by the sub-directory from which the user
923 # invoked us.
924 $path = $cmd_dir_prefix . $path;
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200925 fatal("No such file or directory: $path") unless -e $path;
Benoit Sigoure15153452007-10-16 16:36:50 +0200926 my $is_dir = -d $path ? 1 : 0;
927 $path = $gs->{path} . '/' . $path;
928
929 # canonicalize the path (otherwise libsvn will abort or fail to
930 # find the file)
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800931 $path = canonicalize_path($path);
Benoit Sigoure15153452007-10-16 16:36:50 +0200932
933 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
934 my $props;
935 if ($is_dir) {
936 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
937 }
938 else {
939 (undef, $props) = $gs->ra->get_file($path, $r, undef);
940 }
941 return $props;
942}
943
944# cmd_propget (PROP, PATH)
945# ------------------------
946# Print the SVN property PROP for PATH.
947sub cmd_propget {
948 my ($prop, $path) = @_;
949 $path = '.' if not defined $path;
950 usage(1) if not defined $prop;
951 my $props = get_svnprops($path);
952 if (not defined $props->{$prop}) {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200953 fatal("`$path' does not have a `$prop' SVN property.");
Benoit Sigoure15153452007-10-16 16:36:50 +0200954 }
955 print $props->{$prop} . "\n";
956}
957
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200958# cmd_proplist (PATH)
959# -------------------
960# Print the list of SVN properties for PATH.
961sub cmd_proplist {
962 my $path = shift;
963 $path = '.' if not defined $path;
964 my $props = get_svnprops($path);
965 print "Properties on '$path':\n";
966 foreach (sort keys %{$props}) {
967 print " $_\n";
968 }
969}
970
Eric Wong8164b652007-01-11 15:35:55 -0800971sub cmd_multi_init {
Eric Wong9d55b412006-06-12 15:53:13 -0700972 my $url = shift;
Marc Branchaud62244062009-06-23 13:02:08 -0400973 unless (defined $_trunk || @_branches || @_tags) {
Eric Wong98327e52007-01-04 18:02:00 -0800974 usage(1);
975 }
Eric Wongdc431662007-05-19 03:59:02 -0700976
Eric Wong8164b652007-01-11 15:35:55 -0800977 $_prefix = '' unless defined $_prefix;
Eric Wongdadc6d22007-02-14 12:27:41 -0800978 if (defined $url) {
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200979 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -0800980 init_subdir(@_);
981 }
Eric Wongf30603f2007-02-23 01:26:26 -0800982 do_git_init_db();
Eric Wong98327e52007-01-04 18:02:00 -0800983 if (defined $_trunk) {
Jonathan Niederb4b33602010-06-13 06:27:43 -0500984 $_trunk =~ s#^/+##;
Adam Brewster6f5748e2009-08-11 23:14:27 -0400985 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
Eric Wong706587f2007-01-18 17:50:01 -0800986 # try both old-style and new-style lookups:
987 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
Eric Wong8164b652007-01-11 15:35:55 -0800988 unless ($gs_trunk) {
Eric Wong706587f2007-01-18 17:50:01 -0800989 my ($trunk_url, $trunk_path) =
990 complete_svn_url($url, $_trunk);
991 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
992 undef, $trunk_ref);
Eric Wong98327e52007-01-04 18:02:00 -0800993 }
Eric Wongc35b96e2006-10-11 11:53:21 -0700994 }
Marc Branchaud62244062009-06-23 13:02:08 -0400995 return unless @_branches || @_tags;
Eric Wonge7db67e2007-01-11 17:09:26 -0800996 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
Marc Branchaud62244062009-06-23 13:02:08 -0400997 foreach my $path (@_branches) {
998 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
999 }
1000 foreach my $path (@_tags) {
1001 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
1002 }
Eric Wong9d55b412006-06-12 15:53:13 -07001003}
1004
Eric Wong1c8443b2007-01-14 02:17:00 -08001005sub cmd_multi_fetch {
Eric Wong4d0157d2009-11-22 12:37:06 -08001006 $Git::SVN::no_reuse_existing = undef;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001007 my $remotes = Git::SVN::read_all_remotes();
1008 foreach my $repo_id (sort keys %$remotes) {
Eric Wongdb03cd22007-02-13 00:38:02 -08001009 if ($remotes->{$repo_id}->{url}) {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001010 Git::SVN::fetch_all($repo_id, $remotes);
1011 }
Eric Wong706587f2007-01-18 17:50:01 -08001012 }
Eric Wong9d55b412006-06-12 15:53:13 -07001013}
1014
Eric Wong44320b92007-01-13 22:35:53 -08001015# this command is special because it requires no metadata
1016sub cmd_commit_diff {
1017 my ($ta, $tb, $url) = @_;
1018 my $usage = "Usage: $0 commit-diff -r<revision> ".
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001019 "<tree-ish> <tree-ish> [<URL>]";
Eric Wong44320b92007-01-13 22:35:53 -08001020 fatal($usage) if (!defined $ta || !defined $tb);
Karl Hasselströmd72ab8c2008-05-17 17:07:09 +02001021 my $svn_path = '';
Eric Wong44320b92007-01-13 22:35:53 -08001022 if (!defined $url) {
1023 my $gs = eval { Git::SVN->new };
1024 if (!$gs) {
1025 fatal("Needed URL or usable git-svn --id in ",
1026 "the command-line\n", $usage);
1027 }
1028 $url = $gs->{url};
Eric Wongd3a840d2007-01-26 01:32:45 -08001029 $svn_path = $gs->{path};
Eric Wong44320b92007-01-13 22:35:53 -08001030 }
1031 unless (defined $_revision) {
1032 fatal("-r|--revision is a required argument\n", $usage);
1033 }
1034 if (defined $_message && defined $_file) {
1035 fatal("Both --message/-m and --file/-F specified ",
1036 "for the commit message.\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001037 "I have no idea what you mean");
Eric Wong44320b92007-01-13 22:35:53 -08001038 }
1039 if (defined $_file) {
1040 $_message = file_to_s($_file);
1041 } else {
1042 $_message ||= get_commit_entry($tb)->{log};
1043 }
1044 my $ra ||= Git::SVN::Ra->new($url);
1045 my $r = $_revision;
1046 if ($r eq 'HEAD') {
1047 $r = $ra->get_latest_revnum;
1048 } elsif ($r !~ /^\d+$/) {
1049 die "revision argument: $r not understood by git-svn\n";
1050 }
Eric Wong61395352007-01-27 14:33:08 -08001051 my %ed_opts = ( r => $r,
1052 log => $_message,
1053 ra => $ra,
1054 tree_a => $ta,
1055 tree_b => $tb,
1056 editor_cb => sub { print "Committed r$_[0]\n" },
1057 svn_path => $svn_path );
1058 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong44320b92007-01-13 22:35:53 -08001059 print "No changes\n$ta == $tb\n";
1060 }
Eric Wong44320b92007-01-13 22:35:53 -08001061}
1062
Thomas Rast05427b92008-08-26 21:32:37 +02001063sub escape_uri_only {
1064 my ($uri) = @_;
1065 my @tmp;
1066 foreach (split m{/}, $uri) {
Eric Wong6a004d32008-10-21 14:12:15 -07001067 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
Thomas Rast05427b92008-08-26 21:32:37 +02001068 push @tmp, $_;
1069 }
1070 join('/', @tmp);
1071}
1072
1073sub escape_url {
1074 my ($url) = @_;
1075 if ($url =~ m#^([^:]+)://([^/]*)(.*)$#) {
1076 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
1077 $url = "$scheme://$domain$uri";
1078 }
1079 $url;
1080}
1081
David D. Kilzere6fefa92007-11-21 11:57:18 -08001082sub cmd_info {
Eric Wongbd2d4f92008-08-05 00:35:16 -07001083 my $path = canonicalize_path(defined($_[0]) ? $_[0] : ".");
Thomas Rastedde9112008-08-26 21:32:36 +02001084 my $fullpath = canonicalize_path($cmd_dir_prefix . $path);
Eric Wongbd2d4f92008-08-05 00:35:16 -07001085 if (exists $_[1]) {
David D. Kilzere6fefa92007-11-21 11:57:18 -08001086 die "Too many arguments specified\n";
1087 }
1088
1089 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1090
1091 if (!$file_type && !$diff_status) {
Thomas Rast2cf3e3a2008-08-29 15:42:48 +02001092 print STDERR "svn: '$path' is not under version control\n";
1093 exit 1;
David D. Kilzere6fefa92007-11-21 11:57:18 -08001094 }
1095
1096 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1097 unless ($gs) {
1098 die "Unable to determine upstream SVN information from ",
1099 "working tree history\n";
1100 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001101
1102 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1103 $path = "." if $path eq "";
1104
Thomas Rastedde9112008-08-26 21:32:36 +02001105 my $full_url = $url . ($fullpath eq "" ? "" : "/$fullpath");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001106
David D. Kilzer8b014d72007-11-21 11:57:19 -08001107 if ($_url) {
Thomas Rast05427b92008-08-26 21:32:37 +02001108 print escape_url($full_url), "\n";
David D. Kilzer8b014d72007-11-21 11:57:19 -08001109 return;
1110 }
1111
David D. Kilzere6fefa92007-11-21 11:57:18 -08001112 my $result = "Path: $path\n";
1113 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
Thomas Rast05427b92008-08-26 21:32:37 +02001114 $result .= "URL: " . escape_url($full_url) . "\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001115
Eric Wonga5460eb2007-11-21 18:20:57 -08001116 eval {
1117 my $repos_root = $gs->repos_root;
1118 Git::SVN::remove_username($repos_root);
Thomas Rast05427b92008-08-26 21:32:37 +02001119 $result .= "Repository Root: " . escape_url($repos_root) . "\n";
Eric Wonga5460eb2007-11-21 18:20:57 -08001120 };
1121 if ($@) {
1122 $result .= "Repository Root: (offline)\n";
1123 }
Michael J Gruberb91a8a32010-03-03 21:34:31 +01001124 ::_req_svn();
Marcel Koeppen22ba47f2009-01-19 03:02:01 +01001125 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
1126 ($SVN::Core::VERSION le '1.5.4' || $file_type ne "dir");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001127 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1128
1129 $result .= "Node Kind: " .
1130 ($file_type eq "dir" ? "directory" : "file") . "\n";
1131
1132 my $schedule = $diff_status eq "A"
1133 ? "add"
1134 : ($diff_status eq "D" ? "delete" : "normal");
1135 $result .= "Schedule: $schedule\n";
1136
1137 if ($diff_status eq "A") {
1138 print $result, "\n";
1139 return;
1140 }
1141
1142 my ($lc_author, $lc_rev, $lc_date_utc);
Thomas Rastedde9112008-08-26 21:32:36 +02001143 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001144 my $log = command_output_pipe(@args);
1145 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1146 while (<$log>) {
1147 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1148 $lc_author = $1;
1149 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1150 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1151 (undef, $lc_rev, undef) = ::extract_metadata($1);
1152 }
1153 }
1154 close $log;
1155
1156 Git::SVN::Log::set_local_timezone();
1157
1158 $result .= "Last Changed Author: $lc_author\n";
1159 $result .= "Last Changed Rev: $lc_rev\n";
1160 $result .= "Last Changed Date: " .
1161 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1162
1163 if ($file_type ne "dir") {
1164 my $text_last_updated_date =
1165 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1166 $result .=
1167 "Text Last Updated: " .
1168 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1169 "\n";
1170 my $checksum;
1171 if ($diff_status eq "D") {
1172 my ($fh, $ctx) =
1173 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1174 if ($file_type eq "link") {
1175 my $file_name = <$fh>;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001176 $checksum = md5sum("link $file_name");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001177 } else {
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001178 $checksum = md5sum($fh);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001179 }
1180 command_close_pipe($fh, $ctx);
1181 } elsif ($file_type eq "link") {
1182 my $file_name =
1183 command(qw(cat-file blob), "HEAD:$path");
1184 $checksum =
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001185 md5sum("link " . $file_name);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001186 } else {
1187 open FILE, "<", $path or die $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001188 $checksum = md5sum(\*FILE);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001189 close FILE or die $!;
1190 }
1191 $result .= "Checksum: " . $checksum . "\n";
1192 }
1193
1194 print $result, "\n";
1195}
1196
Ben Jackson195643f2009-06-03 20:45:52 -07001197sub cmd_reset {
1198 my $target = shift || $_revision or die "SVN revision required\n";
1199 $target = $1 if $target =~ /^r(\d+)$/;
1200 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1201 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1202 unless ($gs) {
1203 die "Unable to determine upstream SVN information from ".
1204 "history\n";
1205 }
1206 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
Jonathan Nieder70ee0b72010-05-04 16:36:47 -07001207 die "Cannot find SVN revision $target\n" unless defined($c);
Ben Jackson195643f2009-06-03 20:45:52 -07001208 $gs->rev_map_set($r, $c, 'reset', $uuid);
1209 print "r$r = $c ($gs->{ref_id})\n";
1210}
1211
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001212sub cmd_gc {
1213 if (!$can_compress) {
1214 warn "Compress::Zlib could not be found; unhandled.log " .
1215 "files will not be compressed.\n";
1216 }
1217 find({ wanted => \&gc_directory, no_chdir => 1}, "$ENV{GIT_DIR}/svn");
1218}
1219
Eric Wong3397f9d2006-02-16 01:24:16 -08001220########################### utility functions #########################
1221
Eric Wong905f8b72007-02-16 03:22:40 -08001222sub rebase_cmd {
1223 my @cmd = qw/rebase/;
1224 push @cmd, '-v' if $_verbose;
1225 push @cmd, qw/--merge/ if $_merge;
1226 push @cmd, "--strategy=$_strategy" if $_strategy;
1227 @cmd;
1228}
1229
Eric Wong1e889ef2007-02-16 01:45:13 -08001230sub post_fetch_checkout {
1231 return if $_no_checkout;
1232 my $gs = $Git::SVN::_head or return;
1233 return if verify_ref('refs/heads/master^0');
1234
Eric Wongb186a262009-08-12 16:01:59 -07001235 # look for "trunk" ref if it exists
1236 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1237 my $fetch = $remote->{fetch};
1238 if ($fetch) {
1239 foreach my $p (keys %$fetch) {
1240 basename($fetch->{$p}) eq 'trunk' or next;
1241 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1242 last;
1243 }
1244 }
1245
Eric Wong1e889ef2007-02-16 01:45:13 -08001246 my $valid_head = verify_ref('HEAD^0');
1247 command_noisy(qw(update-ref refs/heads/master), $gs->refname);
1248 return if ($valid_head || !verify_ref('HEAD^0'));
1249
1250 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1251 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1252 return if -f $index;
1253
Matthias Lederhofer7ae3df82007-06-03 16:48:16 +02001254 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
Eric Wong1e889ef2007-02-16 01:45:13 -08001255 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1256 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1257 print STDERR "Checked out HEAD:\n ",
1258 $gs->full_url, " r", $gs->last_rev, "\n";
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001259 if (auto_create_empty_directories($gs)) {
1260 $gs->mkemptydirs($gs->last_rev);
1261 }
Eric Wong1e889ef2007-02-16 01:45:13 -08001262}
1263
Eric Wong98327e52007-01-04 18:02:00 -08001264sub complete_svn_url {
1265 my ($url, $path) = @_;
1266 $path =~ s#/+$##;
Eric Wong98327e52007-01-04 18:02:00 -08001267 if ($path !~ m#^[a-z\+]+://#) {
Eric Wong98327e52007-01-04 18:02:00 -08001268 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1269 fatal("E: '$path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001270 "and a separate URL is not specified");
Eric Wong98327e52007-01-04 18:02:00 -08001271 }
Eric Wong706587f2007-01-18 17:50:01 -08001272 return ($url, $path);
Eric Wong98327e52007-01-04 18:02:00 -08001273 }
Eric Wong706587f2007-01-18 17:50:01 -08001274 return ($path, '');
Eric Wong98327e52007-01-04 18:02:00 -08001275}
1276
Eric Wong9d55b412006-06-12 15:53:13 -07001277sub complete_url_ls_init {
Eric Wong706587f2007-01-18 17:50:01 -08001278 my ($ra, $repo_path, $switch, $pfx) = @_;
1279 unless ($repo_path) {
Eric Wong9d55b412006-06-12 15:53:13 -07001280 print STDERR "W: $switch not specified\n";
1281 return;
1282 }
Eric Wong706587f2007-01-18 17:50:01 -08001283 $repo_path =~ s#/+$##;
1284 if ($repo_path =~ m#^[a-z\+]+://#) {
1285 $ra = Git::SVN::Ra->new($repo_path);
1286 $repo_path = '';
Eric Wonge7db67e2007-01-11 17:09:26 -08001287 } else {
Eric Wong706587f2007-01-18 17:50:01 -08001288 $repo_path =~ s#^/+##;
Eric Wonge7db67e2007-01-11 17:09:26 -08001289 unless ($ra) {
Eric Wong706587f2007-01-18 17:50:01 -08001290 fatal("E: '$repo_path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001291 "and a separate URL is not specified");
Eric Wong9d55b412006-06-12 15:53:13 -07001292 }
Eric Wonge7db67e2007-01-11 17:09:26 -08001293 }
Eric Wong706587f2007-01-18 17:50:01 -08001294 my $url = $ra->{url};
Eric Wongb4d57e52007-02-14 15:10:44 -08001295 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1296 my $k = "svn-remote.$gs->{repo_id}.url";
1297 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
1298 if ($orig_url && ($orig_url ne $gs->{url})) {
1299 die "$k already set: $orig_url\n",
1300 "wanted to set to: $gs->{url}\n";
Eric Wong88cf4102007-02-01 03:59:07 -08001301 }
Eric Wongb4d57e52007-02-14 15:10:44 -08001302 command_oneline('config', $k, $gs->{url}) unless $orig_url;
Mattias Nissler0b2af452009-07-07 01:40:02 +02001303 my $remote_path = "$gs->{path}/$repo_path";
Eric Wong5268f9e2009-08-16 14:22:12 -07001304 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
Eric Wongb4d57e52007-02-14 15:10:44 -08001305 $remote_path =~ s#/+#/#g;
1306 $remote_path =~ s#^/##g;
Eric Wonged0b9d42008-03-14 11:01:23 -07001307 $remote_path .= "/*" if $remote_path !~ /\*/;
Eric Wongb4d57e52007-02-14 15:10:44 -08001308 my ($n) = ($switch =~ /^--(\w+)/);
1309 if (length $pfx && $pfx !~ m#/$#) {
1310 die "--prefix='$pfx' must have a trailing slash '/'\n";
Eric Wong9d55b412006-06-12 15:53:13 -07001311 }
Marcus Griep570d35c2008-08-08 01:41:57 -07001312 command_noisy('config',
Marc Branchaud62244062009-06-23 13:02:08 -04001313 '--add',
Marcus Griep570d35c2008-08-08 01:41:57 -07001314 "svn-remote.$gs->{repo_id}.$n",
1315 "$remote_path:refs/remotes/$pfx*" .
1316 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
Eric Wong9d55b412006-06-12 15:53:13 -07001317}
1318
Eric Wongaef4e922006-12-15 10:59:54 -08001319sub verify_ref {
1320 my ($ref) = @_;
Eric Wong2c5c1d52006-12-28 01:16:21 -08001321 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1322 { STDERR => 0 }); };
Eric Wongaef4e922006-12-15 10:59:54 -08001323}
1324
Eric Wonga5e0ced2006-06-12 15:23:48 -07001325sub get_tree_from_treeish {
Eric Wongcf52b8f2006-02-20 10:57:28 -08001326 my ($treeish) = @_;
Eric Wong44320b92007-01-13 22:35:53 -08001327 # $treeish can be a symbolic ref, too:
Eric Wongaef4e922006-12-15 10:59:54 -08001328 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001329 my $expected;
1330 while ($type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001331 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001332 }
1333 if ($type eq 'commit') {
Eric Wongaef4e922006-12-15 10:59:54 -08001334 $expected = (grep /^tree /, command(qw/cat-file commit/,
1335 $treeish))[0];
Eric Wong44320b92007-01-13 22:35:53 -08001336 ($expected) = ($expected =~ /^tree ($sha1)$/o);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001337 die "Unable to get tree from $treeish\n" unless $expected;
1338 } elsif ($type eq 'tree') {
1339 $expected = $treeish;
1340 } else {
1341 die "$treeish is a $type, expected tree, tag or commit\n";
1342 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07001343 return $expected;
1344}
Eric Wongcf52b8f2006-02-20 10:57:28 -08001345
Eric Wong44320b92007-01-13 22:35:53 -08001346sub get_commit_entry {
1347 my ($treeish) = shift;
1348 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1349 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1350 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1351 open my $log_fh, '>', $commit_editmsg or croak $!;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001352
Eric Wong44320b92007-01-13 22:35:53 -08001353 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wong4ad45152006-07-09 20:20:48 -07001354 if ($type eq 'commit' || $type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001355 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
Eric Wong44320b92007-01-13 22:35:53 -08001356 $type, $treeish);
Eric Wong3397f9d2006-02-16 01:24:16 -08001357 my $in_msg = 0;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001358 my $author;
1359 my $saw_from = 0;
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001360 my $msgbuf = "";
Eric Wong3397f9d2006-02-16 01:24:16 -08001361 while (<$msg_fh>) {
1362 if (!$in_msg) {
1363 $in_msg = 1 if (/^\s*$/);
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001364 $author = $1 if (/^author (.*>)/);
Eric Wongdf746c52006-03-03 01:20:08 -08001365 } elsif (/^git-svn-id: /) {
Eric Wong44320b92007-01-13 22:35:53 -08001366 # skip this for now, we regenerate the
1367 # correct one on re-fetch anyways
1368 # TODO: set *:merge properties or like...
Eric Wong3397f9d2006-02-16 01:24:16 -08001369 } else {
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001370 if (/^From:/ || /^Signed-off-by:/) {
1371 $saw_from = 1;
1372 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001373 $msgbuf .= $_;
Eric Wong3397f9d2006-02-16 01:24:16 -08001374 }
1375 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001376 $msgbuf =~ s/\s+$//s;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001377 if ($Git::SVN::_add_author_from && defined($author)
1378 && !$saw_from) {
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001379 $msgbuf .= "\n\nFrom: $author";
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001380 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001381 print $log_fh $msgbuf or croak $!;
Eric Wongaef4e922006-12-15 10:59:54 -08001382 command_close_pipe($msg_fh, $ctx);
Eric Wong3397f9d2006-02-16 01:24:16 -08001383 }
Eric Wong44320b92007-01-13 22:35:53 -08001384 close $log_fh or croak $!;
Eric Wong3397f9d2006-02-16 01:24:16 -08001385
1386 if ($_edit || ($type eq 'tree')) {
Jonathan Niederb4479f02009-10-30 20:42:34 -05001387 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1388 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
Eric Wong3397f9d2006-02-16 01:24:16 -08001389 }
Eric Wong44320b92007-01-13 22:35:53 -08001390 rename $commit_editmsg, $commit_msg or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07001391 {
Eric Wongb510df82009-05-28 00:56:23 -07001392 require Encode;
Eric Wong16fc08e2008-10-29 23:49:26 -07001393 # SVN requires messages to be UTF-8 when entering the repo
1394 local $/;
1395 open $log_fh, '<', $commit_msg or croak $!;
1396 binmode $log_fh;
1397 chomp($log_entry{log} = <$log_fh>);
1398
Eric Wongb510df82009-05-28 00:56:23 -07001399 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1400 my $msg = $log_entry{log};
1401
1402 eval { $msg = Encode::decode($enc, $msg, 1) };
1403 if ($@) {
1404 die "Could not decode as $enc:\n", $msg,
1405 "\nPerhaps you need to set i18n.commitencoding\n";
Eric Wong16fc08e2008-10-29 23:49:26 -07001406 }
Eric Wongb510df82009-05-28 00:56:23 -07001407
1408 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1409 die "Could not encode as UTF-8:\n$msg\n" if $@;
1410
1411 $log_entry{log} = $msg;
1412
Eric Wong16fc08e2008-10-29 23:49:26 -07001413 close $log_fh or croak $!;
1414 }
Eric Wong44320b92007-01-13 22:35:53 -08001415 unlink $commit_msg;
1416 \%log_entry;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001417}
1418
Eric Wong3397f9d2006-02-16 01:24:16 -08001419sub s_to_file {
1420 my ($str, $file, $mode) = @_;
1421 open my $fd,'>',$file or croak $!;
1422 print $fd $str,"\n" or croak $!;
1423 close $fd or croak $!;
1424 chmod ($mode &~ umask, $file) if (defined $mode);
1425}
1426
1427sub file_to_s {
1428 my $file = shift;
1429 open my $fd,'<',$file or croak "$!: file: $file\n";
1430 local $/;
1431 my $ret = <$fd>;
1432 close $fd or croak $!;
1433 $ret =~ s/\s*$//s;
1434 return $ret;
1435}
1436
Eric Wongeeb0abe2006-03-03 01:20:08 -08001437# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1438sub load_authors {
1439 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001440 my $log = $cmd eq 'log';
Eric Wongeeb0abe2006-03-03 01:20:08 -08001441 while (<$authors>) {
1442 chomp;
Richard MUSIL575d0252007-07-17 19:02:57 +02001443 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
Eric Wongeeb0abe2006-03-03 01:20:08 -08001444 my ($user, $name, $email) = ($1, $2, $3);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001445 if ($log) {
1446 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1447 } else {
1448 $users{$user} = [$name, $email];
1449 }
Eric Wong79bb8d82006-06-01 02:35:44 -07001450 }
1451 close $authors or croak $!;
1452}
1453
Tom Princee0d10e12007-01-28 16:16:53 -08001454# convert GetOpt::Long specs for use by git-config
Eric Wong1a305822009-11-14 14:25:11 -08001455sub read_git_config {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001456 my $opts = shift;
Eric Wong97ae0912007-02-11 15:21:24 -08001457 my @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001458 foreach my $o (keys %$opts) {
Eric Wong97ae0912007-02-11 15:21:24 -08001459 # if we have mixedCase and a long option-only, then
1460 # it's a config-only variable that we don't need for
1461 # the command-line.
1462 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001463 my $v = $opts->{$o};
Eric Wong97ae0912007-02-11 15:21:24 -08001464 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001465 $key =~ s/-//g;
Deskin Miller225f1d02008-10-23 15:21:34 -04001466 my $arg = 'git config';
Eric Wongb8c92ca2006-05-24 01:40:37 -07001467 $arg .= ' --int' if ($o =~ /[:=]i$/);
1468 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1469 if (ref $v eq 'ARRAY') {
1470 chomp(my @tmp = `$arg --get-all svn.$key`);
1471 @$v = @tmp if @tmp;
1472 } else {
1473 chomp(my $tmp = `$arg --get svn.$key`);
Eric Wong77742842007-02-10 21:07:12 -08001474 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001475 $$v = $tmp;
1476 }
1477 }
1478 }
Eric Wong97ae0912007-02-11 15:21:24 -08001479 delete @$opts{@config_only} if @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001480}
1481
Eric Wong79bb8d82006-06-01 02:35:44 -07001482sub extract_metadata {
Eric Wongc1927a82006-06-27 19:39:11 -07001483 my $id = shift or return (undef, undef, undef);
Sam Vilain3dfab992007-06-30 20:56:13 +12001484 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
Eric Wongb3e95932009-07-11 14:13:12 -07001485 \s([a-f\d\-]+)$/ix);
Eric Wonge70dc782006-11-23 14:54:04 -08001486 if (!defined $rev || !$uuid || !$url) {
Eric Wong79bb8d82006-06-01 02:35:44 -07001487 # some of the original repositories I made had
Pavel Roskin82e5a822006-07-10 01:50:18 -04001488 # identifiers like this:
Eric Wongb3e95932009-07-11 14:13:12 -07001489 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
Eric Wong79bb8d82006-06-01 02:35:44 -07001490 }
1491 return ($url, $rev, $uuid);
1492}
1493
Eric Wongc1927a82006-06-27 19:39:11 -07001494sub cmt_metadata {
1495 return extract_metadata((grep(/^git-svn-id: /,
Eric Wongaef4e922006-12-15 10:59:54 -08001496 command(qw/cat-file commit/, shift)))[-1]);
Eric Wongc1927a82006-06-27 19:39:11 -07001497}
1498
Boris Byk6ea42032009-04-11 00:32:41 +04001499sub cmt_sha2rev_batch {
1500 my %s2r;
1501 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1502 my $list = shift;
1503
1504 foreach my $sha (@{$list}) {
1505 my $first = 1;
1506 my $size = 0;
1507 print $out $sha, "\n";
1508
1509 while (my $line = <$in>) {
1510 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1511 last;
1512 } elsif ($first &&
1513 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1514 $first = 0;
1515 $size = $1;
1516 next;
1517 } elsif ($line =~ /^(git-svn-id: )/) {
1518 my (undef, $rev, undef) =
1519 extract_metadata($line);
1520 $s2r{$sha} = $rev;
1521 }
1522
1523 $size -= length($line);
1524 last if ($size == 0);
1525 }
1526 }
1527
1528 command_close_bidi_pipe($pid, $in, $out, $ctx);
1529
1530 return \%s2r;
1531}
1532
Eric Wong905f8b72007-02-16 03:22:40 -08001533sub working_head_info {
1534 my ($head, $refs) = @_;
Mathias Lafeldt8565a562010-09-24 00:05:03 +02001535 my @args = qw/log --no-color --no-decorate --first-parent
1536 --pretty=medium/;
Lars Hjemli05b4df32007-09-05 11:35:29 +02001537 my ($fh, $ctx) = command_output_pipe(@args, $head);
Sam Vilain3dfab992007-06-30 20:56:13 +12001538 my $hash;
Sam Vilain40cb8f82007-06-30 20:56:14 +12001539 my %max;
Sam Vilain3dfab992007-06-30 20:56:13 +12001540 while (<$fh>) {
1541 if ( m{^commit ($::sha1)$} ) {
1542 unshift @$refs, $hash if $hash and $refs;
1543 $hash = $1;
1544 next;
1545 }
1546 next unless s{^\s*(git-svn-id:)}{$1};
1547 my ($url, $rev, $uuid) = extract_metadata($_);
Eric Wong13c823f2007-04-08 00:59:19 -07001548 if (defined $url && defined $rev) {
Sam Vilain40cb8f82007-06-30 20:56:14 +12001549 next if $max{$url} and $max{$url} < $rev;
Eric Wong13c823f2007-04-08 00:59:19 -07001550 if (my $gs = Git::SVN->find_by_url($url)) {
João Abecasis63c56022008-07-14 16:28:04 +01001551 my $c = $gs->rev_map_get($rev, $uuid);
Adam Robenb03c7a62007-04-25 11:50:32 -07001552 if ($c && $c eq $hash) {
Eric Wong13c823f2007-04-08 00:59:19 -07001553 close $fh; # break the pipe
1554 return ($url, $rev, $uuid, $gs);
Sam Vilain40cb8f82007-06-30 20:56:14 +12001555 } else {
Eric Wong060610c2007-12-08 23:27:41 -08001556 $max{$url} ||= $gs->rev_map_max;
Eric Wong13c823f2007-04-08 00:59:19 -07001557 }
1558 }
1559 }
Eric Wong905f8b72007-02-16 03:22:40 -08001560 }
Eric Wong13c823f2007-04-08 00:59:19 -07001561 command_close_pipe($fh, $ctx);
1562 (undef, undef, undef, undef);
Eric Wong905f8b72007-02-16 03:22:40 -08001563}
1564
Eric Wong733a65a2007-06-13 02:23:28 -07001565sub read_commit_parents {
1566 my ($parents, $c) = @_;
Eric Wong7b02b852007-09-08 16:33:08 -07001567 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1568 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1569 @{$parents->{$c}} = split(/ /, $p);
Eric Wong733a65a2007-06-13 02:23:28 -07001570}
1571
1572sub linearize_history {
1573 my ($gs, $refs) = @_;
1574 my %parents;
1575 foreach my $c (@$refs) {
1576 read_commit_parents(\%parents, $c);
1577 }
1578
1579 my @linear_refs;
1580 my %skip = ();
1581 my $last_svn_commit = $gs->last_commit;
1582 foreach my $c (reverse @$refs) {
1583 next if $c eq $last_svn_commit;
1584 last if $skip{$c};
1585
1586 unshift @linear_refs, $c;
1587 $skip{$c} = 1;
1588
1589 # we only want the first parent to diff against for linear
1590 # history, we save the rest to inject when we finalize the
1591 # svn commit
1592 my $fp_a = verify_ref("$c~1");
1593 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1594 if (!$fp_a || !$fp_b) {
1595 die "Commit $c\n",
1596 "has no parent commit, and therefore ",
1597 "nothing to diff against.\n",
1598 "You should be working from a repository ",
1599 "originally created by git-svn\n";
1600 }
1601 if ($fp_a ne $fp_b) {
1602 die "$c~1 = $fp_a, however parsing commit $c ",
1603 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1604 }
1605
1606 foreach my $p (@{$parents{$c}}) {
1607 $skip{$p} = 1;
1608 }
1609 }
1610 (\@linear_refs, \%parents);
1611}
1612
David D. Kilzere6fefa92007-11-21 11:57:18 -08001613sub find_file_type_and_diff_status {
1614 my ($path) = @_;
Dmitry Potapov107cee52008-07-21 00:14:07 +04001615 return ('dir', '') if $path eq '';
David D. Kilzere6fefa92007-11-21 11:57:18 -08001616
1617 my $diff_output =
1618 command_oneline(qw(diff --cached --name-status --), $path) || "";
1619 my $diff_status = (split(' ', $diff_output))[0] || "";
1620
1621 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1622
1623 return (undef, undef) if !$diff_status && !$ls_tree;
1624
1625 if ($diff_status eq "A") {
1626 return ("link", $diff_status) if -l $path;
1627 return ("dir", $diff_status) if -d $path;
1628 return ("file", $diff_status);
1629 }
1630
1631 my $mode = (split(' ', $ls_tree))[0] || "";
1632
1633 return ("link", $diff_status) if $mode eq "120000";
1634 return ("dir", $diff_status) if $mode eq "040000";
1635 return ("file", $diff_status);
1636}
1637
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001638sub md5sum {
1639 my $arg = shift;
1640 my $ref = ref $arg;
1641 my $md5 = Digest::MD5->new();
Marcus Griep0b191382008-08-12 12:00:53 -04001642 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001643 $md5->addfile($arg) or croak $!;
1644 } elsif ($ref eq 'SCALAR') {
1645 $md5->add($$arg) or croak $!;
1646 } elsif (!$ref) {
1647 $md5->add($arg) or croak $!;
1648 } else {
1649 ::fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1650 }
1651 return $md5->hexdigest();
1652}
1653
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001654sub gc_directory {
1655 if ($can_compress && -f $_ && basename($_) eq "unhandled.log") {
1656 my $out_filename = $_ . ".gz";
1657 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
1658 binmode $in_fh;
1659 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
1660 die "Unable to open $out_filename: $!\n";
1661
1662 my $res;
1663 while ($res = sysread($in_fh, my $str, 1024)) {
1664 $gz->gzwrite($str) or
1665 die "Unable to write: ".$gz->gzerror()."!\n";
1666 }
1667 unlink $_ or die "unlink $File::Find::name: $!\n";
1668 } elsif (-f $_ && basename($_) eq "index") {
1669 unlink $_ or die "unlink $_: $!\n";
1670 }
1671}
1672
Eric Wong9b981fc2007-01-11 12:14:21 -08001673package Git::SVN;
1674use strict;
1675use warnings;
Eric Wong060610c2007-12-08 23:27:41 -08001676use Fcntl qw/:DEFAULT :seek/;
1677use constant rev_map_fmt => 'NH40';
Eric Wongecc712d2007-01-31 12:28:10 -08001678use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
Eric Wong62e349d2007-02-16 19:57:29 -08001679 $_repack $_repack_flags $_use_svm_props $_head
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00001680 $_use_svnsync_props $no_reuse_existing $_minimize_url
Pete Harlane82f0d72009-01-17 20:10:14 -08001681 $_use_log_author $_add_author_from $_localtime/;
Eric Wong9b981fc2007-01-11 12:14:21 -08001682use Carp qw/croak/;
1683use File::Path qw/mkpath/;
Eric Wong373274f2007-01-31 13:54:23 -08001684use File::Copy qw/copy/;
Eric Wong9b981fc2007-01-11 12:14:21 -08001685use IPC::Open3;
Sam Vilain7d944c32009-12-20 00:55:13 +13001686use Memoize; # core since 5.8.0, Jul 2002
Andrew Myrick8bff7c52010-01-30 03:14:22 +00001687use Memoize::Storable;
Eric Wong9b981fc2007-01-11 12:14:21 -08001688
Karl Hasselström94bc9142008-02-03 17:56:18 +01001689my ($_gc_nr, $_gc_period);
1690
Eric Wong9b981fc2007-01-11 12:14:21 -08001691# properties that we do not log:
1692my %SKIP_PROP;
1693BEGIN {
1694 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
1695 svn:special svn:executable
1696 svn:entry:committed-rev
1697 svn:entry:last-author
1698 svn:entry:uuid
1699 svn:entry:committed-date/;
Eric Wong91b03282007-02-11 00:51:33 -08001700
1701 # some options are read globally, but can be overridden locally
1702 # per [svn-remote "..."] section. Command-line options will *NOT*
1703 # override options set in an [svn-remote "..."] section
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001704 no strict 'refs';
1705 for my $option (qw/follow_parent no_metadata use_svm_props
1706 use_svnsync_props/) {
1707 my $key = $option;
Eric Wong91b03282007-02-11 00:51:33 -08001708 $key =~ tr/_//d;
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001709 my $prop = "-$option";
1710 *$option = sub {
1711 my ($self) = @_;
1712 return $self->{$prop} if exists $self->{$prop};
1713 my $k = "svn-remote.$self->{repo_id}.$key";
1714 eval { command_oneline(qw/config --get/, $k) };
1715 if ($@) {
1716 $self->{$prop} = ${"Git::SVN::_$option"};
Eric Wong91b03282007-02-11 00:51:33 -08001717 } else {
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001718 my $v = command_oneline(qw/config --bool/,$k);
1719 $self->{$prop} = $v eq 'false' ? 0 : 1;
Eric Wong91b03282007-02-11 00:51:33 -08001720 }
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001721 return $self->{$prop};
1722 }
Eric Wong91b03282007-02-11 00:51:33 -08001723 }
Eric Wong9b981fc2007-01-11 12:14:21 -08001724}
1725
Marcus Griep0b191382008-08-12 12:00:53 -04001726
Eric Wong321b1842008-01-02 10:10:03 -08001727my (%LOCKFILES, %INDEX_FILES);
1728END {
1729 unlink keys %LOCKFILES if %LOCKFILES;
1730 unlink keys %INDEX_FILES if %INDEX_FILES;
1731}
Eric Wong373274f2007-01-31 13:54:23 -08001732
Eric Wong4bb9ed02007-02-03 13:29:17 -08001733sub resolve_local_globs {
1734 my ($url, $fetch, $glob_spec) = @_;
1735 return unless defined $glob_spec;
1736 my $ref = $glob_spec->{ref};
1737 my $path = $glob_spec->{path};
Adam Brewster6f5748e2009-08-11 23:14:27 -04001738 foreach (command(qw#for-each-ref --format=%(refname) refs/#)) {
1739 next unless m#^$ref->{regex}$#;
Eric Wong4bb9ed02007-02-03 13:29:17 -08001740 my $p = $1;
Robert Ewaldbf655fd2007-07-30 11:08:21 +02001741 my $pathname = desanitize_refname($path->full_path($p));
1742 my $refname = desanitize_refname($ref->full_path($p));
Eric Wong4bb9ed02007-02-03 13:29:17 -08001743 if (my $existing = $fetch->{$pathname}) {
1744 if ($existing ne $refname) {
1745 die "Refspec conflict:\n",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001746 "existing: $existing\n",
1747 " globbed: $refname\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08001748 }
Adam Brewster6f5748e2009-08-11 23:14:27 -04001749 my $u = (::cmt_metadata("$refname"))[0];
Eric Wong4e9f6cc2007-02-09 12:17:57 -08001750 $u =~ s!^\Q$url\E(/|$)!! or die
Adam Brewster6f5748e2009-08-11 23:14:27 -04001751 "$refname: '$url' not found in '$u'\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08001752 if ($pathname ne $u) {
1753 warn "W: Refspec glob conflict ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001754 "(ref: $refname):\n",
Eric Wong4bb9ed02007-02-03 13:29:17 -08001755 "expected path: $pathname\n",
1756 " real path: $u\n",
1757 "Continuing ahead with $u\n";
1758 next;
1759 }
1760 } else {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001761 $fetch->{$pathname} = $refname;
1762 }
1763 }
1764}
1765
Eric Wonge98671e2007-02-14 02:21:19 -08001766sub parse_revision_argument {
1767 my ($base, $head) = @_;
1768 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
1769 return ($base, $head);
1770 }
1771 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
1772 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
1773 return ($head, $head) if ($::_revision eq 'HEAD');
1774 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
1775 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
1776 die "revision argument: $::_revision not understood by git-svn\n";
1777}
1778
Eric Wong0af9c9f2007-01-27 22:28:56 -08001779sub fetch_all {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001780 my ($repo_id, $remotes) = @_;
Eric Wong905f8b72007-02-16 03:22:40 -08001781 if (ref $repo_id) {
1782 my $gs = $repo_id;
1783 $repo_id = undef;
1784 $repo_id = $gs->{repo_id};
1785 }
1786 $remotes ||= read_all_remotes();
Eric Wong7447b4b2007-02-14 18:38:46 -08001787 my $remote = $remotes->{$repo_id} or
1788 die "[svn-remote \"$repo_id\"] unknown\n";
Eric Wonge5181922007-02-08 12:53:57 -08001789 my $fetch = $remote->{fetch};
Eric Wong7447b4b2007-02-14 18:38:46 -08001790 my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
Eric Wonge5181922007-02-08 12:53:57 -08001791 my (@gs, @globs);
Eric Wong0af9c9f2007-01-27 22:28:56 -08001792 my $ra = Git::SVN::Ra->new($url);
Eric Wong26a62d52007-02-12 13:25:25 -08001793 my $uuid = $ra->get_uuid;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001794 my $head = $ra->get_latest_revnum;
Eric Wong577e9fc2009-12-21 02:06:04 -08001795
1796 # ignore errors, $head revision may not even exist anymore
1797 eval { $ra->get_log("", $head, 0, 1, 0, 1, sub { $head = $_[1] }) };
1798 warn "W: $@\n" if $@;
1799
Eric Wong28710f72007-02-14 13:32:21 -08001800 my $base = defined $fetch ? $head : 0;
Eric Wonge5181922007-02-08 12:53:57 -08001801
1802 # read the max revs for wildcard expansion (branches/*, tags/*)
1803 foreach my $t (qw/branches tags/) {
1804 defined $remote->{$t} or next;
Marc Branchaud62244062009-06-23 13:02:08 -04001805 push @globs, @{$remote->{$t}};
1806
Eric Wong93f26892007-02-11 01:20:26 -08001807 my $max_rev = eval { tmp_config(qw/--int --get/,
1808 "svn-remote.$repo_id.${t}-maxRev") };
1809 if (defined $max_rev && ($max_rev < $base)) {
1810 $base = $max_rev;
Eric Wongd6d33462007-02-16 04:05:33 -08001811 } elsif (!defined $max_rev) {
1812 $base = 0;
Eric Wonge5181922007-02-08 12:53:57 -08001813 }
1814 }
1815
Eric Wongdb03cd22007-02-13 00:38:02 -08001816 if ($fetch) {
1817 foreach my $p (sort keys %$fetch) {
1818 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
Eric Wong060610c2007-12-08 23:27:41 -08001819 my $lr = $gs->rev_map_max;
Eric Wongdb03cd22007-02-13 00:38:02 -08001820 if (defined $lr) {
1821 $base = $lr if ($lr < $base);
1822 }
1823 push @gs, $gs;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001824 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08001825 }
Eric Wonge98671e2007-02-14 02:21:19 -08001826
1827 ($base, $head) = parse_revision_argument($base, $head);
Eric Wonge5181922007-02-08 12:53:57 -08001828 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
Eric Wong0af9c9f2007-01-27 22:28:56 -08001829}
1830
Eric Wong47e39c52007-01-21 04:27:09 -08001831sub read_all_remotes {
1832 my $r = {};
João Abecasis63c56022008-07-14 16:28:04 +01001833 my $use_svm_props = eval { command_oneline(qw/config --bool
1834 svn.useSvmProps/) };
1835 $use_svm_props = $use_svm_props eq 'true' if $use_svm_props;
Eric Wongffd5c8e2009-10-22 23:39:04 -07001836 my $svn_refspec = qr{\s*(.*?)\s*:\s*(.+?)\s*};
Eric Wong8b8fc062007-01-22 11:44:57 -08001837 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
Adam Brewster6f5748e2009-08-11 23:14:27 -04001838 if (m!^(.+)\.fetch=$svn_refspec$!) {
1839 my ($remote, $local_ref, $remote_ref) = ($1, $2, $3);
1840 die("svn-remote.$remote: remote ref '$remote_ref' "
1841 . "must start with 'refs/'\n")
1842 unless $remote_ref =~ m{^refs/};
Steven Walter46cb16f2010-08-03 19:21:25 -04001843 $local_ref = uri_decode($local_ref);
Eric Wong46cf98b2007-07-14 12:40:32 -07001844 $r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
João Abecasis63c56022008-07-14 16:28:04 +01001845 $r->{$remote}->{svm} = {} if $use_svm_props;
1846 } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
1847 $r->{$1}->{svm} = {};
Eric Wong47e39c52007-01-21 04:27:09 -08001848 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
1849 $r->{$1}->{url} = $2;
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04001850 } elsif (m!^(.+)\.pushurl=\s*(.*)\s*$!) {
1851 $r->{$1}->{pushurl} = $2;
Adam Brewster6f5748e2009-08-11 23:14:27 -04001852 } elsif (m!^(.+)\.(branches|tags)=$svn_refspec$!) {
1853 my ($remote, $t, $local_ref, $remote_ref) =
1854 ($1, $2, $3, $4);
1855 die("svn-remote.$remote: remote ref '$remote_ref' ($t) "
1856 . "must start with 'refs/'\n")
1857 unless $remote_ref =~ m{^refs/};
Steven Walter46cb16f2010-08-03 19:21:25 -04001858 $local_ref = uri_decode($local_ref);
Marc Branchaud62244062009-06-23 13:02:08 -04001859 my $rs = {
Adam Brewster6f5748e2009-08-11 23:14:27 -04001860 t => $t,
1861 remote => $remote,
Jay Soffian07576202010-01-23 03:30:01 -05001862 path => Git::SVN::GlobSpec->new($local_ref, 1),
1863 ref => Git::SVN::GlobSpec->new($remote_ref, 0) };
Eric Wong4bb9ed02007-02-03 13:29:17 -08001864 if (length($rs->{ref}->{right}) != 0) {
1865 die "The '*' glob character must be the last ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001866 "character of '$remote_ref'\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08001867 }
Adam Brewster6f5748e2009-08-11 23:14:27 -04001868 push @{ $r->{$remote}->{$t} }, $rs;
Eric Wong47e39c52007-01-21 04:27:09 -08001869 }
1870 }
João Abecasis63c56022008-07-14 16:28:04 +01001871
1872 map {
1873 if (defined $r->{$_}->{svm}) {
1874 my $svm;
1875 eval {
1876 my $section = "svn-remote.$_";
1877 $svm = {
1878 source => tmp_config('--get',
1879 "$section.svm-source"),
1880 replace => tmp_config('--get',
1881 "$section.svm-replace"),
1882 }
1883 };
1884 $r->{$_}->{svm} = $svm;
1885 }
1886 } keys %$r;
1887
Eric Wong47e39c52007-01-21 04:27:09 -08001888 $r;
1889}
1890
Eric Wongecc712d2007-01-31 12:28:10 -08001891sub init_vars {
Karl Hasselström94bc9142008-02-03 17:56:18 +01001892 $_gc_nr = $_gc_period = 1000;
Karl Hasselströmaf788a62008-02-03 17:56:12 +01001893 if (defined $_repack || defined $_repack_flags) {
1894 warn "Repack options are obsolete; they have no effect.\n";
1895 }
Eric Wongecc712d2007-01-31 12:28:10 -08001896}
1897
Eric Wongb805b442007-01-22 13:52:04 -08001898sub verify_remotes_sanity {
Eric Wong536c4b02007-01-23 11:35:53 -08001899 return unless -d $ENV{GIT_DIR};
Eric Wongb805b442007-01-22 13:52:04 -08001900 my %seen;
1901 foreach (command(qw/config -l/)) {
1902 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
1903 if ($seen{$1}) {
1904 die "Remote ref refs/remote/$1 is tracked by",
1905 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
1906 "Please resolve this ambiguity in ",
1907 "your git configuration file before ",
1908 "continuing\n";
1909 }
1910 $seen{$1} = $_;
1911 }
1912 }
1913}
1914
Eric Wonge6434f82007-01-23 16:29:23 -08001915sub find_existing_remote {
1916 my ($url, $remotes) = @_;
Eric Wongbefc9ad2007-02-17 02:53:07 -08001917 return undef if $no_reuse_existing;
Eric Wonge6434f82007-01-23 16:29:23 -08001918 my $existing;
1919 foreach my $repo_id (keys %$remotes) {
1920 my $u = $remotes->{$repo_id}->{url} or next;
1921 next if $u ne $url;
1922 $existing = $repo_id;
1923 last;
1924 }
1925 $existing;
1926}
1927
1928sub init_remote_config {
Eric Wongd8115c52007-02-01 03:30:31 -08001929 my ($self, $url, $no_write) = @_;
Eric Wonge6434f82007-01-23 16:29:23 -08001930 $url =~ s!/+$!!; # strip trailing slash
1931 my $r = read_all_remotes();
1932 my $existing = find_existing_remote($url, $r);
1933 if ($existing) {
Eric Wonge5181922007-02-08 12:53:57 -08001934 unless ($no_write) {
1935 print STDERR "Using existing ",
1936 "[svn-remote \"$existing\"]\n";
1937 }
Eric Wonge6434f82007-01-23 16:29:23 -08001938 $self->{repo_id} = $existing;
Eric Wong4a1bb4c2007-05-13 09:58:14 -07001939 } elsif ($_minimize_url) {
Eric Wonge6434f82007-01-23 16:29:23 -08001940 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1941 $existing = find_existing_remote($min_url, $r);
1942 if ($existing) {
Eric Wonge5181922007-02-08 12:53:57 -08001943 unless ($no_write) {
1944 print STDERR "Using existing ",
1945 "[svn-remote \"$existing\"]\n";
1946 }
Eric Wonge6434f82007-01-23 16:29:23 -08001947 $self->{repo_id} = $existing;
1948 }
1949 if ($min_url ne $url) {
Eric Wonge5181922007-02-08 12:53:57 -08001950 unless ($no_write) {
1951 print STDERR "Using higher level of URL: ",
1952 "$url => $min_url\n";
1953 }
Eric Wonge6434f82007-01-23 16:29:23 -08001954 my $old_path = $self->{path};
1955 $self->{path} = $url;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08001956 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
Eric Wonge6434f82007-01-23 16:29:23 -08001957 if (length $old_path) {
1958 $self->{path} .= "/$old_path";
1959 }
1960 $url = $min_url;
1961 }
1962 }
1963 my $orig_url;
1964 if (!$existing) {
1965 # verify that we aren't overwriting anything:
1966 $orig_url = eval {
1967 command_oneline('config', '--get',
1968 "svn-remote.$self->{repo_id}.url")
1969 };
1970 if ($orig_url && ($orig_url ne $url)) {
1971 die "svn-remote.$self->{repo_id}.url already set: ",
1972 "$orig_url\nwanted to set to: $url\n";
1973 }
1974 }
1975 my ($xrepo_id, $xpath) = find_ref($self->refname);
Adam Brewster6f5748e2009-08-11 23:14:27 -04001976 if (!$no_write && defined $xpath) {
Eric Wonge6434f82007-01-23 16:29:23 -08001977 die "svn-remote.$xrepo_id.fetch already set to track ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04001978 "$xpath:", $self->refname, "\n";
Eric Wonge6434f82007-01-23 16:29:23 -08001979 }
Eric Wongd8115c52007-02-01 03:30:31 -08001980 unless ($no_write) {
1981 command_noisy('config',
1982 "svn-remote.$self->{repo_id}.url", $url);
Eric Wong46cf98b2007-07-14 12:40:32 -07001983 $self->{path} =~ s{^/}{};
Eric Wong5268f9e2009-08-16 14:22:12 -07001984 $self->{path} =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
Eric Wongd8115c52007-02-01 03:30:31 -08001985 command_noisy('config', '--add',
1986 "svn-remote.$self->{repo_id}.fetch",
1987 "$self->{path}:".$self->refname);
1988 }
Eric Wonge6434f82007-01-23 16:29:23 -08001989 $self->{url} = $url;
1990}
1991
Eric Wonga8ae2622007-02-13 14:22:11 -08001992sub find_by_url { # repos_root and, path are optional
1993 my ($class, $full_url, $repos_root, $path) = @_;
Adam Roben56973d22007-04-25 12:42:58 -07001994
Eric Wong1a97a502007-02-20 00:43:19 -08001995 return undef unless defined $full_url;
Adam Roben56973d22007-04-25 12:42:58 -07001996 remove_username($full_url);
1997 remove_username($repos_root) if defined $repos_root;
Eric Wonga8ae2622007-02-13 14:22:11 -08001998 my $remotes = read_all_remotes();
1999 if (defined $full_url && defined $repos_root && !defined $path) {
2000 $path = $full_url;
2001 $path =~ s#^\Q$repos_root\E(?:/|$)##;
2002 }
2003 foreach my $repo_id (keys %$remotes) {
2004 my $u = $remotes->{$repo_id}->{url} or next;
Adam Roben56973d22007-04-25 12:42:58 -07002005 remove_username($u);
Eric Wonga8ae2622007-02-13 14:22:11 -08002006 next if defined $repos_root && $repos_root ne $u;
2007
2008 my $fetch = $remotes->{$repo_id}->{fetch} || {};
Marc Branchaud62244062009-06-23 13:02:08 -04002009 foreach my $t (qw/branches tags/) {
2010 foreach my $globspec (@{$remotes->{$repo_id}->{$t}}) {
2011 resolve_local_globs($u, $fetch, $globspec);
2012 }
Eric Wonga8ae2622007-02-13 14:22:11 -08002013 }
2014 my $p = $path;
John Goerzen0bb91d92008-03-08 16:04:05 -06002015 my $rwr = rewrite_root({repo_id => $repo_id});
João Abecasis63c56022008-07-14 16:28:04 +01002016 my $svm = $remotes->{$repo_id}->{svm}
2017 if defined $remotes->{$repo_id}->{svm};
Eric Wonga8ae2622007-02-13 14:22:11 -08002018 unless (defined $p) {
2019 $p = $full_url;
John Goerzen0bb91d92008-03-08 16:04:05 -06002020 my $z = $u;
João Abecasis63c56022008-07-14 16:28:04 +01002021 my $prefix = '';
John Goerzen0bb91d92008-03-08 16:04:05 -06002022 if ($rwr) {
2023 $z = $rwr;
Dévai Tamás1b7e5432009-02-12 00:14:02 +01002024 remove_username($z);
João Abecasis63c56022008-07-14 16:28:04 +01002025 } elsif (defined $svm) {
2026 $z = $svm->{source};
2027 $prefix = $svm->{replace};
2028 $prefix =~ s#^\Q$u\E(?:/|$)##;
2029 $prefix =~ s#/$##;
John Goerzen0bb91d92008-03-08 16:04:05 -06002030 }
João Abecasis63c56022008-07-14 16:28:04 +01002031 $p =~ s#^\Q$z\E(?:/|$)#$prefix# or next;
Eric Wonga8ae2622007-02-13 14:22:11 -08002032 }
2033 foreach my $f (keys %$fetch) {
2034 next if $f ne $p;
2035 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
2036 }
2037 }
2038 undef;
2039}
2040
Eric Wong9b981fc2007-01-11 12:14:21 -08002041sub init {
Eric Wongd8115c52007-02-01 03:30:31 -08002042 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
Eric Wong706587f2007-01-18 17:50:01 -08002043 my $self = _new($class, $repo_id, $ref_id, $path);
Eric Wong9b981fc2007-01-11 12:14:21 -08002044 if (defined $url) {
Eric Wongd8115c52007-02-01 03:30:31 -08002045 $self->init_remote_config($url, $no_write);
Eric Wong9b981fc2007-01-11 12:14:21 -08002046 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002047 $self;
2048}
2049
Eric Wong706587f2007-01-18 17:50:01 -08002050sub find_ref {
2051 my ($ref_id) = @_;
2052 foreach (command(qw/config -l/)) {
2053 next unless m!^svn-remote\.(.+)\.fetch=
Eric Wongffd5c8e2009-10-22 23:39:04 -07002054 \s*(.*?)\s*:\s*(.+?)\s*$!x;
Eric Wong706587f2007-01-18 17:50:01 -08002055 my ($repo_id, $path, $ref) = ($1, $2, $3);
2056 if ($ref eq $ref_id) {
2057 $path = '' if ($path =~ m#^\./?#);
2058 return ($repo_id, $path);
2059 }
2060 }
2061 (undef, undef, undef);
2062}
2063
Eric Wong9b981fc2007-01-11 12:14:21 -08002064sub new {
Eric Wong706587f2007-01-18 17:50:01 -08002065 my ($class, $ref_id, $repo_id, $path) = @_;
2066 if (defined $ref_id && !defined $repo_id && !defined $path) {
2067 ($repo_id, $path) = find_ref($ref_id);
2068 if (!defined $repo_id) {
2069 die "Could not find a \"svn-remote.*.fetch\" key ",
2070 "in the repository configuration matching: ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04002071 "$ref_id\n";
Eric Wong706587f2007-01-18 17:50:01 -08002072 }
2073 }
2074 my $self = _new($class, $repo_id, $ref_id, $path);
Eric Wong8b8fc062007-01-22 11:44:57 -08002075 if (!defined $self->{path} || !length $self->{path}) {
2076 my $fetch = command_oneline('config', '--get',
2077 "svn-remote.$repo_id.fetch",
Adam Brewster6f5748e2009-08-11 23:14:27 -04002078 ":$ref_id\$") or
Eric Wong8b8fc062007-01-22 11:44:57 -08002079 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
Adam Brewster6f5748e2009-08-11 23:14:27 -04002080 "\":$ref_id\$\" in config\n";
Eric Wong8b8fc062007-01-22 11:44:57 -08002081 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
2082 }
Eric Wongb1a954a2010-06-14 04:31:10 +00002083 $self->{path} =~ s{/+}{/}g;
2084 $self->{path} =~ s{\A/}{};
2085 $self->{path} =~ s{/\z}{};
Eric Wong706587f2007-01-18 17:50:01 -08002086 $self->{url} = command_oneline('config', '--get',
2087 "svn-remote.$repo_id.url") or
2088 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04002089 $self->{pushurl} = eval { command_oneline('config', '--get',
2090 "svn-remote.$repo_id.pushurl") };
Eric Wongd6d33462007-02-16 04:05:33 -08002091 $self->rebuild;
Eric Wong9b981fc2007-01-11 12:14:21 -08002092 $self;
2093}
2094
Robert Ewaldbf655fd2007-07-30 11:08:21 +02002095sub refname {
Adam Brewster6f5748e2009-08-11 23:14:27 -04002096 my ($refname) = $_[0]->{ref_id} ;
Robert Ewaldbf655fd2007-07-30 11:08:21 +02002097
2098 # It cannot end with a slash /, we'll throw up on this because
2099 # SVN can't have directories with a slash in their name, either:
2100 if ($refname =~ m{/$}) {
2101 die "ref: '$refname' ends with a trailing slash, this is ",
2102 "not permitted by git nor Subversion\n";
2103 }
2104
2105 # It cannot have ASCII control character space, tilde ~, caret ^,
2106 # colon :, question-mark ?, asterisk *, space, or open bracket [
2107 # anywhere.
2108 #
2109 # Additionally, % must be escaped because it is used for escaping
2110 # and we want our escaped refname to be reversible
2111 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
2112
2113 # no slash-separated component can begin with a dot .
2114 # /.* becomes /%2E*
2115 $refname =~ s{/\.}{/%2E}g;
2116
2117 # It cannot have two consecutive dots .. anywhere
2118 # .. becomes %2E%2E
2119 $refname =~ s{\.\.}{%2E%2E}g;
2120
Torsten Schmutzler73d41952010-05-06 22:20:43 +02002121 # trailing dots and .lock are not allowed
2122 # .$ becomes %2E and .lock becomes %2Elock
2123 $refname =~ s{\.(?=$|lock$)}{%2E};
2124
2125 # the sequence @{ is used to access the reflog
2126 # @{ becomes %40{
2127 $refname =~ s{\@\{}{%40\{}g;
2128
Robert Ewaldbf655fd2007-07-30 11:08:21 +02002129 return $refname;
2130}
2131
2132sub desanitize_refname {
2133 my ($refname) = @_;
2134 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
2135 return $refname;
2136}
Eric Wong9b981fc2007-01-11 12:14:21 -08002137
Eric Wong26a62d52007-02-12 13:25:25 -08002138sub svm_uuid {
2139 my ($self) = @_;
2140 return $self->{svm}->{uuid} if $self->svm;
2141 $self->ra;
2142 unless ($self->{svm}) {
2143 die "SVM UUID not cached, and reading remotely failed\n";
2144 }
2145 $self->{svm}->{uuid};
2146}
Eric Wong8a49ee92007-02-10 20:46:50 -08002147
Eric Wong26a62d52007-02-12 13:25:25 -08002148sub svm {
2149 my ($self) = @_;
2150 return $self->{svm} if $self->{svm};
2151 my $svm;
Eric Wong8a49ee92007-02-10 20:46:50 -08002152 # see if we have it in our config, first:
2153 eval {
Eric Wong26a62d52007-02-12 13:25:25 -08002154 my $section = "svn-remote.$self->{repo_id}";
2155 $svm = {
Eric Wong93f26892007-02-11 01:20:26 -08002156 source => tmp_config('--get', "$section.svm-source"),
2157 uuid => tmp_config('--get', "$section.svm-uuid"),
Eric Wongbefc9ad2007-02-17 02:53:07 -08002158 replace => tmp_config('--get', "$section.svm-replace"),
Eric Wong8a49ee92007-02-10 20:46:50 -08002159 }
2160 };
Eric Wongbefc9ad2007-02-17 02:53:07 -08002161 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
2162 $self->{svm} = $svm;
2163 }
Eric Wong26a62d52007-02-12 13:25:25 -08002164 $self->{svm};
2165}
2166
2167sub _set_svm_vars {
2168 my ($self, $ra) = @_;
Eric Wongdb03cd22007-02-13 00:38:02 -08002169 return $ra if $self->svm;
Eric Wong26a62d52007-02-12 13:25:25 -08002170
Eric Wongdb03cd22007-02-13 00:38:02 -08002171 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
Eric Wongbefc9ad2007-02-17 02:53:07 -08002172 "(svm:source, svm:uuid) ",
Eric Wongdb03cd22007-02-13 00:38:02 -08002173 "from the following URLs:\n" );
2174 sub read_svm_props {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002175 my ($self, $ra, $path, $r) = @_;
2176 my $props = ($ra->get_dir($path, $r))[2];
Eric Wongdb03cd22007-02-13 00:38:02 -08002177 my $src = $props->{'svm:source'};
Eric Wong8a49ee92007-02-10 20:46:50 -08002178 my $uuid = $props->{'svm:uuid'};
Eric Wongbefc9ad2007-02-17 02:53:07 -08002179 return undef if (!$src || !$uuid);
Eric Wongdb03cd22007-02-13 00:38:02 -08002180
Eric Wongbefc9ad2007-02-17 02:53:07 -08002181 chomp($src, $uuid);
Eric Wongdb03cd22007-02-13 00:38:02 -08002182
Eric Wongb3e95932009-07-11 14:13:12 -07002183 $uuid =~ m{^[0-9a-f\-]{30,}$}i
Eric Wong8a49ee92007-02-10 20:46:50 -08002184 or die "doesn't look right - svm:uuid is '$uuid'\n";
Eric Wongbefc9ad2007-02-17 02:53:07 -08002185
2186 # the '!' is used to mark the repos_root!/relative/path
2187 $src =~ s{/?!/?}{/};
Eric Wongdb03cd22007-02-13 00:38:02 -08002188 $src =~ s{/+$}{}; # no trailing slashes please
Eric Wongbefc9ad2007-02-17 02:53:07 -08002189 # username is of no interest
Eric Wongdb03cd22007-02-13 00:38:02 -08002190 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
Eric Wong8a49ee92007-02-10 20:46:50 -08002191
Eric Wongbefc9ad2007-02-17 02:53:07 -08002192 my $replace = $ra->{url};
2193 $replace .= "/$path" if length $path;
2194
Eric Wongdb03cd22007-02-13 00:38:02 -08002195 my $section = "svn-remote.$self->{repo_id}";
Eric Wongbefc9ad2007-02-17 02:53:07 -08002196 tmp_config("$section.svm-source", $src);
2197 tmp_config("$section.svm-replace", $replace);
2198 tmp_config("$section.svm-uuid", $uuid);
2199 $self->{svm} = {
2200 source => $src,
2201 uuid => $uuid,
2202 replace => $replace
2203 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002204 }
Eric Wongdb03cd22007-02-13 00:38:02 -08002205
2206 my $r = $ra->get_latest_revnum;
2207 my $path = $self->{path};
Eric Wongbefc9ad2007-02-17 02:53:07 -08002208 my %tried;
Eric Wongdb03cd22007-02-13 00:38:02 -08002209 while (length $path) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002210 unless ($tried{"$self->{url}/$path"}) {
2211 return $ra if $self->read_svm_props($ra, $path, $r);
2212 $tried{"$self->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08002213 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08002214 $path =~ s#/?[^/]+$##;
Eric Wong8a49ee92007-02-10 20:46:50 -08002215 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08002216 die "Path: '$path' should be ''\n" if $path ne '';
2217 return $ra if $self->read_svm_props($ra, $path, $r);
2218 $tried{"$self->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08002219
2220 if ($ra->{repos_root} eq $self->{url}) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002221 die @err, (map { " $_\n" } keys %tried), "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08002222 }
2223
2224 # nope, make sure we're connected to the repository root:
2225 my $ok;
2226 my @tried_b;
2227 $path = $ra->{svn_path};
Eric Wongdb03cd22007-02-13 00:38:02 -08002228 $ra = Git::SVN::Ra->new($ra->{repos_root});
2229 while (length $path) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002230 unless ($tried{"$ra->{url}/$path"}) {
2231 $ok = $self->read_svm_props($ra, $path, $r);
2232 last if $ok;
2233 $tried{"$ra->{url}/$path"} = 1;
2234 }
2235 $path =~ s#/?[^/]+$##;
Eric Wongdb03cd22007-02-13 00:38:02 -08002236 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08002237 die "Path: '$path' should be ''\n" if $path ne '';
2238 $ok ||= $self->read_svm_props($ra, $path, $r);
2239 $tried{"$ra->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08002240 if (!$ok) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08002241 die @err, (map { " $_\n" } keys %tried), "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08002242 }
2243 Git::SVN::Ra->new($self->{url});
Eric Wong8a49ee92007-02-10 20:46:50 -08002244}
2245
Eric Wong62e349d2007-02-16 19:57:29 -08002246sub svnsync {
2247 my ($self) = @_;
2248 return $self->{svnsync} if $self->{svnsync};
2249
2250 if ($self->no_metadata) {
2251 die "Can't have both 'noMetadata' and ",
2252 "'useSvnsyncProps' options set!\n";
2253 }
2254 if ($self->rewrite_root) {
2255 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
2256 "options set!\n";
2257 }
Jay Soffian3e18ce12010-01-23 03:30:00 -05002258 if ($self->rewrite_uuid) {
2259 die "Can't have both 'useSvnsyncProps' and 'rewriteUUID' ",
2260 "options set!\n";
2261 }
Eric Wong62e349d2007-02-16 19:57:29 -08002262
2263 my $svnsync;
2264 # see if we have it in our config, first:
2265 eval {
2266 my $section = "svn-remote.$self->{repo_id}";
Eric Wong98fa5b62008-01-11 23:13:55 -08002267
2268 my $url = tmp_config('--get', "$section.svnsync-url");
2269 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
2270 die "doesn't look right - svn:sync-from-url is '$url'\n";
2271
2272 my $uuid = tmp_config('--get', "$section.svnsync-uuid");
Eric Wongb3e95932009-07-11 14:13:12 -07002273 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or
Eric Wong98fa5b62008-01-11 23:13:55 -08002274 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2275
2276 $svnsync = { url => $url, uuid => $uuid }
Eric Wong62e349d2007-02-16 19:57:29 -08002277 };
2278 if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) {
2279 return $self->{svnsync} = $svnsync;
2280 }
2281
2282 my $err = "useSvnsyncProps set, but failed to read " .
2283 "svnsync property: svn:sync-from-";
2284 my $rp = $self->ra->rev_proplist(0);
2285
2286 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
Eric Wong98fa5b62008-01-11 23:13:55 -08002287 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
Eric Wong62e349d2007-02-16 19:57:29 -08002288 die "doesn't look right - svn:sync-from-url is '$url'\n";
2289
2290 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
Eric Wongb3e95932009-07-11 14:13:12 -07002291 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}i) or
Eric Wong62e349d2007-02-16 19:57:29 -08002292 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
2293
2294 my $section = "svn-remote.$self->{repo_id}";
2295 tmp_config('--add', "$section.svnsync-uuid", $uuid);
2296 tmp_config('--add', "$section.svnsync-url", $url);
2297 return $self->{svnsync} = { url => $url, uuid => $uuid };
2298}
2299
Eric Wong26a62d52007-02-12 13:25:25 -08002300# this allows us to memoize our SVN::Ra UUID locally and avoid a
2301# remote lookup (useful for 'git svn log').
2302sub ra_uuid {
2303 my ($self) = @_;
2304 unless ($self->{ra_uuid}) {
2305 my $key = "svn-remote.$self->{repo_id}.uuid";
2306 my $uuid = eval { tmp_config('--get', $key) };
Eric Wongb3e95932009-07-11 14:13:12 -07002307 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/i) {
Eric Wong26a62d52007-02-12 13:25:25 -08002308 $self->{ra_uuid} = $uuid;
2309 } else {
2310 die "ra_uuid called without URL\n" unless $self->{url};
2311 $self->{ra_uuid} = $self->ra->get_uuid;
2312 tmp_config('--add', $key, $self->{ra_uuid});
2313 }
2314 }
2315 $self->{ra_uuid};
2316}
2317
Eric Wonga5460eb2007-11-21 18:20:57 -08002318sub _set_repos_root {
2319 my ($self, $repos_root) = @_;
2320 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2321 $repos_root ||= $self->ra->{repos_root};
2322 tmp_config($k, $repos_root);
2323 $repos_root;
2324}
2325
2326sub repos_root {
2327 my ($self) = @_;
2328 my $k = "svn-remote.$self->{repo_id}.reposRoot";
2329 eval { tmp_config('--get', $k) } || $self->_set_repos_root;
2330}
2331
Eric Wong9b981fc2007-01-11 12:14:21 -08002332sub ra {
2333 my ($self) = shift;
Eric Wong8a49ee92007-02-10 20:46:50 -08002334 my $ra = Git::SVN::Ra->new($self->{url});
Eric Wonga5460eb2007-11-21 18:20:57 -08002335 $self->_set_repos_root($ra->{repos_root});
Eric Wong91b03282007-02-11 00:51:33 -08002336 if ($self->use_svm_props && !$self->{svm}) {
2337 if ($self->no_metadata) {
Eric Wong97ae0912007-02-11 15:21:24 -08002338 die "Can't have both 'noMetadata' and ",
2339 "'useSvmProps' options set!\n";
Eric Wong62e349d2007-02-16 19:57:29 -08002340 } elsif ($self->use_svnsync_props) {
2341 die "Can't have both 'useSvnsyncProps' and ",
2342 "'useSvmProps' options set!\n";
Eric Wong91b03282007-02-11 00:51:33 -08002343 }
Eric Wong26a62d52007-02-12 13:25:25 -08002344 $ra = $self->_set_svm_vars($ra);
Eric Wong8a49ee92007-02-10 20:46:50 -08002345 $self->{-want_revprops} = 1;
2346 }
2347 $ra;
Eric Wong9b981fc2007-01-11 12:14:21 -08002348}
2349
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002350# prop_walk(PATH, REV, SUB)
2351# -------------------------
2352# Recursively traverse PATH at revision REV and invoke SUB for each
2353# directory that contains a SVN property. SUB will be invoked as
2354# follows: &SUB(gs, path, props); where `gs' is this instance of
2355# Git::SVN, `path' the path to the directory where the properties
2356# `props' were found. The `path' will be relative to point of checkout,
2357# that is, if url://repo/trunk is the current Git branch, and that
2358# directory contains a sub-directory `d', SUB will be invoked with `/d/'
2359# as `path' (note the trailing `/').
2360sub prop_walk {
2361 my ($self, $path, $rev, $sub) = @_;
2362
Kevin Ballard35cda062008-01-09 01:37:20 -05002363 $path =~ s#^/##;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002364 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
2365 $path =~ s#^/*#/#g;
Eric Wong9b981fc2007-01-11 12:14:21 -08002366 my $p = $path;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002367 # Strip the irrelevant part of the path.
2368 $p =~ s#^/+\Q$self->{path}\E(/|$)#/#;
2369 # Ensure the path is terminated by a `/'.
2370 $p =~ s#/*$#/#;
2371
2372 # The properties contain all the internal SVN stuff nobody
2373 # (usually) cares about.
2374 my $interesting_props = 0;
2375 foreach (keys %{$props}) {
2376 # If it doesn't start with `svn:', it must be a
2377 # user-defined property.
2378 ++$interesting_props and next if $_ !~ /^svn:/;
2379 # FIXME: Fragile, if SVN adds new public properties,
2380 # this needs to be updated.
2381 ++$interesting_props if /^svn:(?:ignore|keywords|executable
2382 |eol-style|mime-type
2383 |externals|needs-lock)$/x;
Eric Wong9b981fc2007-01-11 12:14:21 -08002384 }
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002385 &$sub($self, $p, $props) if $interesting_props;
2386
Eric Wong9b981fc2007-01-11 12:14:21 -08002387 foreach (sort keys %$dirent) {
Eric Wong0dc03d62007-05-13 01:04:43 -07002388 next if $dirent->{$_}->{kind} != $SVN::Node::dir;
Christian Engwerb7166cc2008-05-27 08:46:55 +00002389 $self->prop_walk($self->{path} . $p . $_, $rev, $sub);
Eric Wong9b981fc2007-01-11 12:14:21 -08002390 }
2391}
2392
Eric Wong3ebe8df2007-01-25 17:35:40 -08002393sub last_rev { ($_[0]->last_rev_commit)[0] }
2394sub last_commit { ($_[0]->last_rev_commit)[1] }
2395
Eric Wong9b981fc2007-01-11 12:14:21 -08002396# returns the newest SVN revision number and newest commit SHA1
2397sub last_rev_commit {
2398 my ($self) = @_;
2399 if (defined $self->{last_rev} && defined $self->{last_commit}) {
2400 return ($self->{last_rev}, $self->{last_commit});
2401 }
Eric Wongd2866f92007-01-11 12:26:16 -08002402 my $c = ::verify_ref($self->refname.'^0');
Eric Wong91b03282007-02-11 00:51:33 -08002403 if ($c && !$self->use_svm_props && !$self->no_metadata) {
Eric Wongd2866f92007-01-11 12:26:16 -08002404 my $rev = (::cmt_metadata($c))[1];
Eric Wong9b981fc2007-01-11 12:14:21 -08002405 if (defined $rev) {
2406 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
2407 return ($rev, $c);
2408 }
2409 }
Eric Wong060610c2007-12-08 23:27:41 -08002410 my $map_path = $self->map_path;
2411 unless (-e $map_path) {
Eric Wong26a62d52007-02-12 13:25:25 -08002412 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
2413 return (undef, undef);
2414 }
Eric Wong66ab84b2007-12-08 23:27:42 -08002415 my ($rev, $commit) = $self->rev_map_max(1);
Eric Wong060610c2007-12-08 23:27:41 -08002416 ($self->{last_rev}, $self->{last_commit}) = ($rev, $commit);
2417 return ($rev, $commit);
Eric Wong9b981fc2007-01-11 12:14:21 -08002418}
2419
Eric Wong3ebe8df2007-01-25 17:35:40 -08002420sub get_fetch_range {
2421 my ($self, $min, $max) = @_;
2422 $max ||= $self->ra->get_latest_revnum;
Eric Wong060610c2007-12-08 23:27:41 -08002423 $min ||= $self->rev_map_max;
Eric Wong3ebe8df2007-01-25 17:35:40 -08002424 (++$min, $max);
Eric Wong9b981fc2007-01-11 12:14:21 -08002425}
2426
Eric Wong8a49ee92007-02-10 20:46:50 -08002427sub tmp_config {
Eric Wong93f26892007-02-11 01:20:26 -08002428 my (@args) = @_;
Eric Wongb7e53482007-02-16 04:09:28 -08002429 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
2430 my $config = "$ENV{GIT_DIR}/svn/.metadata";
Eric Wong38570a42007-06-13 02:37:05 -07002431 if (! -f $config && -f $old_def_config) {
Eric Wongb7e53482007-02-16 04:09:28 -08002432 rename $old_def_config, $config or
2433 die "Failed rename $old_def_config => $config: $!\n";
2434 }
Eric Wong8a49ee92007-02-10 20:46:50 -08002435 my $old_config = $ENV{GIT_CONFIG};
Eric Wong93f26892007-02-11 01:20:26 -08002436 $ENV{GIT_CONFIG} = $config;
Eric Wong8a49ee92007-02-10 20:46:50 -08002437 $@ = undef;
Eric Wongb4d57e52007-02-14 15:10:44 -08002438 my @ret = eval {
2439 unless (-f $config) {
2440 mkfile($config);
2441 open my $fh, '>', $config or
2442 die "Can't open $config: $!\n";
2443 print $fh "; This file is used internally by ",
2444 "git-svn\n" or die
2445 "Couldn't write to $config: $!\n";
2446 print $fh "; You should not have to edit it\n" or
2447 die "Couldn't write to $config: $!\n";
2448 close $fh or die "Couldn't close $config: $!\n";
2449 }
2450 command('config', @args);
2451 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002452 my $err = $@;
2453 if (defined $old_config) {
2454 $ENV{GIT_CONFIG} = $old_config;
2455 } else {
2456 delete $ENV{GIT_CONFIG};
2457 }
2458 die $err if $err;
2459 wantarray ? @ret : $ret[0];
2460}
2461
Eric Wong9b981fc2007-01-11 12:14:21 -08002462sub tmp_index_do {
2463 my ($self, $sub) = @_;
2464 my $old_index = $ENV{GIT_INDEX_FILE};
2465 $ENV{GIT_INDEX_FILE} = $self->{index};
Eric Wong8a49ee92007-02-10 20:46:50 -08002466 $@ = undef;
Eric Wongb4d57e52007-02-14 15:10:44 -08002467 my @ret = eval {
2468 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
2469 mkpath([$dir]) unless -d $dir;
2470 &$sub;
2471 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002472 my $err = $@;
2473 if (defined $old_index) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002474 $ENV{GIT_INDEX_FILE} = $old_index;
2475 } else {
2476 delete $ENV{GIT_INDEX_FILE};
2477 }
Eric Wong8a49ee92007-02-10 20:46:50 -08002478 die $err if $err;
Eric Wong9b981fc2007-01-11 12:14:21 -08002479 wantarray ? @ret : $ret[0];
2480}
2481
2482sub assert_index_clean {
2483 my ($self, $treeish) = @_;
2484
2485 $self->tmp_index_do(sub {
2486 command_noisy('read-tree', $treeish) unless -e $self->{index};
2487 my $x = command_oneline('write-tree');
2488 my ($y) = (command(qw/cat-file commit/, $treeish) =~
2489 /^tree ($::sha1)/mo);
Eric Wonge8d120b2007-02-14 16:29:52 -08002490 return if $y eq $x;
2491
2492 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2493 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2494 command_noisy('read-tree', $treeish);
Eric Wong9b981fc2007-01-11 12:14:21 -08002495 $x = command_oneline('write-tree');
2496 if ($y ne $x) {
2497 ::fatal "trees ($treeish) $y != $x\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02002498 "Something is seriously wrong...";
Eric Wong9b981fc2007-01-11 12:14:21 -08002499 }
2500 });
2501}
2502
2503sub get_commit_parents {
Eric Wong0af9c9f2007-01-27 22:28:56 -08002504 my ($self, $log_entry) = @_;
Eric Wong9b981fc2007-01-11 12:14:21 -08002505 my (%seen, @ret, @tmp);
Eric Wong0af9c9f2007-01-27 22:28:56 -08002506 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2507 if (my $ip = $self->{inject_parents}) {
2508 if (my $commit = delete $ip->{$log_entry->{revision}}) {
2509 push @tmp, $commit;
Eric Wong9b981fc2007-01-11 12:14:21 -08002510 }
2511 }
Eric Wongd2866f92007-01-11 12:26:16 -08002512 if (my $cur = ::verify_ref($self->refname.'^0')) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002513 push @tmp, $cur;
2514 }
Eric Wong733a65a2007-06-13 02:23:28 -07002515 if (my $ipd = $self->{inject_parents_dcommit}) {
2516 if (my $commit = delete $ipd->{$log_entry->{revision}}) {
2517 push @tmp, @$commit;
2518 }
2519 }
Eric Wong44320b92007-01-13 22:35:53 -08002520 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
Eric Wong9b981fc2007-01-11 12:14:21 -08002521 while (my $p = shift @tmp) {
2522 next if $seen{$p};
2523 $seen{$p} = 1;
2524 push @ret, $p;
Eric Wong9b981fc2007-01-11 12:14:21 -08002525 }
2526 @ret;
2527}
2528
Eric Wongaea736c2007-02-16 19:15:21 -08002529sub rewrite_root {
2530 my ($self) = @_;
2531 return $self->{-rewrite_root} if exists $self->{-rewrite_root};
2532 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2533 my $rwr = eval { command_oneline(qw/config --get/, $k) };
2534 if ($rwr) {
2535 $rwr =~ s#/+$##;
2536 if ($rwr !~ m#^[a-z\+]+://#) {
2537 die "$rwr is not a valid URL (key: $k)\n";
2538 }
2539 }
2540 $self->{-rewrite_root} = $rwr;
2541}
2542
Jay Soffian3e18ce12010-01-23 03:30:00 -05002543sub rewrite_uuid {
2544 my ($self) = @_;
2545 return $self->{-rewrite_uuid} if exists $self->{-rewrite_uuid};
2546 my $k = "svn-remote.$self->{repo_id}.rewriteUUID";
2547 my $rwid = eval { command_oneline(qw/config --get/, $k) };
2548 if ($rwid) {
2549 $rwid =~ s#/+$##;
2550 if ($rwid !~ m#^[a-f0-9]{8}-(?:[a-f0-9]{4}-){3}[a-f0-9]{12}$#) {
2551 die "$rwid is not a valid UUID (key: $k)\n";
2552 }
2553 }
2554 $self->{-rewrite_uuid} = $rwid;
2555}
2556
Eric Wongaea736c2007-02-16 19:15:21 -08002557sub metadata_url {
2558 my ($self) = @_;
2559 ($self->rewrite_root || $self->{url}) .
2560 (length $self->{path} ? '/' . $self->{path} : '');
2561}
2562
Eric Wong706587f2007-01-18 17:50:01 -08002563sub full_url {
Eric Wong9b981fc2007-01-11 12:14:21 -08002564 my ($self) = @_;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08002565 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
Eric Wong9b981fc2007-01-11 12:14:21 -08002566}
2567
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04002568sub full_pushurl {
2569 my ($self) = @_;
2570 if ($self->{pushurl}) {
2571 return $self->{pushurl} . (length $self->{path} ? '/' .
2572 $self->{path} : '');
2573 } else {
2574 return $self->full_url;
2575 }
2576}
Eric Wongad948022007-12-15 19:08:22 -08002577
2578sub set_commit_header_env {
2579 my ($log_entry) = @_;
2580 my %env;
2581 foreach my $ned (qw/NAME EMAIL DATE/) {
2582 foreach my $ac (qw/AUTHOR COMMITTER/) {
2583 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2584 }
2585 }
2586
2587 $ENV{GIT_AUTHOR_NAME} = $log_entry->{name};
2588 $ENV{GIT_AUTHOR_EMAIL} = $log_entry->{email};
2589 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
2590
2591 $ENV{GIT_COMMITTER_NAME} = (defined $log_entry->{commit_name})
2592 ? $log_entry->{commit_name}
2593 : $log_entry->{name};
2594 $ENV{GIT_COMMITTER_EMAIL} = (defined $log_entry->{commit_email})
2595 ? $log_entry->{commit_email}
2596 : $log_entry->{email};
2597 \%env;
2598}
2599
2600sub restore_commit_header_env {
2601 my ($env) = @_;
2602 foreach my $ned (qw/NAME EMAIL DATE/) {
2603 foreach my $ac (qw/AUTHOR COMMITTER/) {
2604 my $k = "GIT_${ac}_${ned}";
2605 if (defined $env->{$k}) {
2606 $ENV{$k} = $env->{$k};
2607 } else {
2608 delete $ENV{$k};
2609 }
2610 }
2611 }
2612}
2613
Karl Hasselström94bc9142008-02-03 17:56:18 +01002614sub gc {
2615 command_noisy('gc', '--auto');
2616};
2617
Eric Wong9b981fc2007-01-11 12:14:21 -08002618sub do_git_commit {
Eric Wong0af9c9f2007-01-27 22:28:56 -08002619 my ($self, $log_entry) = @_;
Eric Wong8a603772007-01-31 02:45:50 -08002620 my $lr = $self->last_rev;
2621 if (defined $lr && $lr >= $log_entry->{revision}) {
2622 die "Last fetched revision of ", $self->refname,
2623 " was r$lr, but we are about to fetch: ",
2624 "r$log_entry->{revision}!\n";
2625 }
Eric Wong060610c2007-12-08 23:27:41 -08002626 if (my $c = $self->rev_map_get($log_entry->{revision})) {
Eric Wong44320b92007-01-13 22:35:53 -08002627 croak "$log_entry->{revision} = $c already exists! ",
Eric Wong9b981fc2007-01-11 12:14:21 -08002628 "Why are we refetching it?\n";
2629 }
Eric Wongad948022007-12-15 19:08:22 -08002630 my $old_env = set_commit_header_env($log_entry);
Eric Wong44320b92007-01-13 22:35:53 -08002631 my $tree = $log_entry->{tree};
Eric Wong9b981fc2007-01-11 12:14:21 -08002632 if (!defined $tree) {
2633 $tree = $self->tmp_index_do(sub {
2634 command_oneline('write-tree') });
2635 }
2636 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2637
Deskin Millere855bfc2008-10-31 00:10:25 -04002638 my @exec = ('git', 'commit-tree', $tree);
Eric Wong0af9c9f2007-01-27 22:28:56 -08002639 foreach ($self->get_commit_parents($log_entry)) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002640 push @exec, '-p', $_;
2641 }
2642 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2643 or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07002644 binmode $msg_fh;
2645
2646 # we always get UTF-8 from SVN, but we may want our commits in
2647 # a different encoding.
2648 if (my $enc = Git::config('i18n.commitencoding')) {
2649 require Encode;
2650 Encode::from_to($log_entry->{log}, 'UTF-8', $enc);
2651 }
Eric Wong44320b92007-01-13 22:35:53 -08002652 print $msg_fh $log_entry->{log} or croak $!;
Eric Wongad948022007-12-15 19:08:22 -08002653 restore_commit_header_env($old_env);
Eric Wong91b03282007-02-11 00:51:33 -08002654 unless ($self->no_metadata) {
Eric Wong8a49ee92007-02-10 20:46:50 -08002655 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
2656 or croak $!;
Eric Wong9760adc2007-01-31 03:06:56 -08002657 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002658 $msg_fh->flush == 0 or croak $!;
2659 close $msg_fh or croak $!;
2660 chomp(my $commit = do { local $/; <$out_fh> });
2661 close $out_fh or croak $!;
2662 waitpid $pid, 0;
2663 croak $? if $?;
2664 if ($commit !~ /^$::sha1$/o) {
2665 die "Failed to commit, invalid sha1: $commit\n";
2666 }
2667
Eric Wong060610c2007-12-08 23:27:41 -08002668 $self->rev_map_set($log_entry->{revision}, $commit, 1);
Eric Wong9b981fc2007-01-11 12:14:21 -08002669
Eric Wong44320b92007-01-13 22:35:53 -08002670 $self->{last_rev} = $log_entry->{revision};
Eric Wong9b981fc2007-01-11 12:14:21 -08002671 $self->{last_commit} = $commit;
Simon Arlott49750f32009-03-30 19:31:41 +01002672 print "r$log_entry->{revision}" unless $::_q > 1;
Eric Wong8a49ee92007-02-10 20:46:50 -08002673 if (defined $log_entry->{svm_revision}) {
Simon Arlott49750f32009-03-30 19:31:41 +01002674 print " (\@$log_entry->{svm_revision})" unless $::_q > 1;
Eric Wong060610c2007-12-08 23:27:41 -08002675 $self->rev_map_set($log_entry->{svm_revision}, $commit,
Eric Wong26a62d52007-02-12 13:25:25 -08002676 0, $self->svm_uuid);
Eric Wong8a49ee92007-02-10 20:46:50 -08002677 }
Simon Arlott49750f32009-03-30 19:31:41 +01002678 print " = $commit ($self->{ref_id})\n" unless $::_q > 1;
Karl Hasselström94bc9142008-02-03 17:56:18 +01002679 if (--$_gc_nr == 0) {
2680 $_gc_nr = $_gc_period;
2681 gc();
2682 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002683 return $commit;
2684}
2685
Eric Wongfbcc1732007-02-06 18:35:30 -08002686sub match_paths {
2687 my ($self, $paths, $r) = @_;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08002688 return 1 if $self->{path} eq '';
Eric Wongd542aed2007-02-09 02:19:41 -08002689 if (my $path = $paths->{"/$self->{path}"}) {
2690 return ($path->{action} eq 'D') ? 0 : 1;
2691 }
Mattias Nissler0b2af452009-07-07 01:40:02 +02002692 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
Eric Wongfbcc1732007-02-06 18:35:30 -08002693 if (grep /$self->{path_regex}/, keys %$paths) {
2694 return 1;
2695 }
2696 my $c = '';
2697 foreach (split m#/#, $self->{path}) {
2698 $c .= "/$_";
Eric Wong74a81222007-02-10 13:28:50 -08002699 next unless ($paths->{$c} &&
2700 ($paths->{$c}->{action} =~ /^[AR]$/));
Eric Wonge5181922007-02-08 12:53:57 -08002701 if ($self->ra->check_path($self->{path}, $r) ==
2702 $SVN::Node::dir) {
Eric Wongfbcc1732007-02-06 18:35:30 -08002703 return 1;
2704 }
2705 }
2706 return 0;
2707}
2708
Eric Wong15710b62007-01-22 02:20:33 -08002709sub find_parent_branch {
2710 my ($self, $paths, $rev) = @_;
Eric Wong91b03282007-02-11 00:51:33 -08002711 return undef unless $self->follow_parent;
Eric Wonge5a0b242007-01-25 15:44:54 -08002712 unless (defined $paths) {
Eric Wongc7eba712007-01-31 03:45:28 -08002713 my $err_handler = $SVN::Error::handler;
2714 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
Mattias Nissler3c49a032009-07-07 01:39:52 +02002715 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1,
2716 sub { $paths = $_[0] });
Eric Wongc7eba712007-01-31 03:45:28 -08002717 $SVN::Error::handler = $err_handler;
Eric Wonge5a0b242007-01-25 15:44:54 -08002718 }
2719 return undef unless defined $paths;
Eric Wong15710b62007-01-22 02:20:33 -08002720
2721 # look for a parent from another branch:
Mattias Nissler0b2af452009-07-07 01:40:02 +02002722 my @b_path_components = split m#/#, $self->{path};
Eric Wong7f578c52007-01-24 02:16:25 -08002723 my @a_path_components;
2724 my $i;
2725 while (@b_path_components) {
2726 $i = $paths->{'/'.join('/', @b_path_components)};
Eric Wong74a81222007-02-10 13:28:50 -08002727 last if $i && defined $i->{copyfrom_path};
Eric Wong7f578c52007-01-24 02:16:25 -08002728 unshift(@a_path_components, pop(@b_path_components));
2729 }
Eric Wong74a81222007-02-10 13:28:50 -08002730 return undef unless defined $i && defined $i->{copyfrom_path};
2731 my $branch_from = $i->{copyfrom_path};
Eric Wong7f578c52007-01-24 02:16:25 -08002732 if (@a_path_components) {
2733 print STDERR "branch_from: $branch_from => ";
2734 $branch_from .= '/'.join('/', @a_path_components);
2735 print STDERR $branch_from, "\n";
2736 }
Eric Wong3ebe8df2007-01-25 17:35:40 -08002737 my $r = $i->{copyfrom_rev};
Eric Wong15710b62007-01-22 02:20:33 -08002738 my $repos_root = $self->ra->{repos_root};
2739 my $url = $self->ra->{url};
Mattias Nissler0b2af452009-07-07 01:40:02 +02002740 my $new_url = $url . $branch_from;
Eric Wong15710b62007-01-22 02:20:33 -08002741 print STDERR "Found possible branch point: ",
Simon Arlott85886162009-10-09 13:21:13 +01002742 "$new_url => ", $self->full_url, ", $r\n"
2743 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002744 $branch_from =~ s#^/##;
Mattias Nissler0b2af452009-07-07 01:40:02 +02002745 my $gs = $self->other_gs($new_url, $url,
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002746 $branch_from, $r, $self->{ref_id});
Eric Wong15710b62007-01-22 02:20:33 -08002747 my ($r0, $parent) = $gs->find_rev_before($r, 1);
Deskin Miller553589f2008-12-08 08:31:31 -05002748 {
2749 my ($base, $head);
2750 if (!defined $r0 || !defined $parent) {
2751 ($base, $head) = parse_revision_argument(0, $r);
2752 } else {
2753 if ($r0 < $r) {
2754 $gs->ra->get_log([$gs->{path}], $r0 + 1, $r, 1,
2755 0, 1, sub { $base = $_[1] - 1 });
2756 }
2757 }
2758 if (defined $base && $base <= $r) {
Eric Wongd627de62007-04-15 03:01:29 -07002759 $gs->fetch($base, $r);
2760 }
Deskin Miller553589f2008-12-08 08:31:31 -05002761 ($r0, $parent) = $gs->find_rev_before($r, 1);
Eric Wong15710b62007-01-22 02:20:33 -08002762 }
Eric Wongef70de92007-02-01 04:12:41 -08002763 if (defined $r0 && defined $parent) {
Simon Arlott85886162009-10-09 13:21:13 +01002764 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n"
2765 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002766 my $ed;
2767 if ($self->ra->can_do_switch) {
Eric Wong2e5e2482007-02-23 02:21:59 -08002768 $self->assert_index_clean($parent);
Simon Arlott85886162009-10-09 13:21:13 +01002769 print STDERR "Following parent with do_switch\n"
2770 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002771 # do_switch works with svn/trunk >= r22312, but that
Eric Wong2b27f6c2007-01-28 04:59:05 -08002772 # is not included with SVN 1.4.3 (the latest version
Eric Wong15710b62007-01-22 02:20:33 -08002773 # at the moment), so we can't rely on it
Eric Wong83c2fcf2009-02-22 20:25:00 -08002774 $self->{last_rev} = $r0;
Eric Wong15710b62007-01-22 02:20:33 -08002775 $self->{last_commit} = $parent;
Eric Wong8841b372009-02-11 01:56:58 -08002776 $ed = SVN::Git::Fetcher->new($self, $gs->{path});
Eric Wong8a603772007-01-31 02:45:50 -08002777 $gs->ra->gs_do_switch($r0, $rev, $gs,
Eric Wong15710b62007-01-22 02:20:33 -08002778 $self->full_url, $ed)
2779 or die "SVN connection failed somewhere...\n";
Steven Walter9ff74e92007-09-28 13:24:19 -04002780 } elsif ($self->ra->trees_match($new_url, $r0,
2781 $self->full_url, $rev)) {
2782 print STDERR "Trees match:\n",
2783 " $new_url\@$r0\n",
2784 " ${\$self->full_url}\@$rev\n",
Simon Arlott85886162009-10-09 13:21:13 +01002785 "Following parent with no changes\n"
2786 unless $::_q > 1;
Steven Walter9ff74e92007-09-28 13:24:19 -04002787 $self->tmp_index_do(sub {
2788 command_noisy('read-tree', $parent);
2789 });
2790 $self->{last_commit} = $parent;
Eric Wong15710b62007-01-22 02:20:33 -08002791 } else {
Simon Arlott85886162009-10-09 13:21:13 +01002792 print STDERR "Following parent with do_update\n"
2793 unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002794 $ed = SVN::Git::Fetcher->new($self);
Eric Wong8a603772007-01-31 02:45:50 -08002795 $self->ra->gs_do_update($rev, $rev, $self, $ed)
Eric Wong15710b62007-01-22 02:20:33 -08002796 or die "SVN connection failed somewhere...\n";
2797 }
Simon Arlott85886162009-10-09 13:21:13 +01002798 print STDERR "Successfully followed parent\n" unless $::_q > 1;
Eric Wong15710b62007-01-22 02:20:33 -08002799 return $self->make_log_entry($rev, [$parent], $ed);
2800 }
Eric Wong15710b62007-01-22 02:20:33 -08002801 return undef;
2802}
2803
Eric Wong9b981fc2007-01-11 12:14:21 -08002804sub do_fetch {
Eric Wong706587f2007-01-18 17:50:01 -08002805 my ($self, $paths, $rev) = @_;
Eric Wong15710b62007-01-22 02:20:33 -08002806 my $ed;
Eric Wong9b981fc2007-01-11 12:14:21 -08002807 my ($last_rev, @parents);
Eric Wongb9dffd82007-02-09 01:28:30 -08002808 if (my $lc = $self->last_commit) {
2809 # we can have a branch that was deleted, then re-added
2810 # under the same name but copied from another path, in
2811 # which case we'll have multiple parents (we don't
2812 # want to break the original ref, nor lose copypath info):
2813 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2814 push @{$log_entry->{parents}}, $lc;
2815 return $log_entry;
2816 }
Eric Wong15710b62007-01-22 02:20:33 -08002817 $ed = SVN::Git::Fetcher->new($self);
Eric Wong9b981fc2007-01-11 12:14:21 -08002818 $last_rev = $self->{last_rev};
Eric Wongb9dffd82007-02-09 01:28:30 -08002819 $ed->{c} = $lc;
2820 @parents = ($lc);
Eric Wong9b981fc2007-01-11 12:14:21 -08002821 } else {
2822 $last_rev = $rev;
Eric Wong15710b62007-01-22 02:20:33 -08002823 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2824 return $log_entry;
2825 }
2826 $ed = SVN::Git::Fetcher->new($self);
Eric Wong9b981fc2007-01-11 12:14:21 -08002827 }
Eric Wong8a603772007-01-31 02:45:50 -08002828 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002829 die "SVN connection failed somewhere...\n";
2830 }
2831 $self->make_log_entry($rev, \@parents, $ed);
2832}
2833
Eric Wong6111b932009-11-15 18:57:16 -08002834sub mkemptydirs {
2835 my ($self, $r) = @_;
Eric Wong6111b932009-11-15 18:57:16 -08002836
Eric Wonga5b80d92009-12-19 13:49:00 -08002837 sub scan {
2838 my ($r, $empty_dirs, $line) = @_;
2839 if (defined $r && $line =~ /^r(\d+)$/) {
2840 return 0 if $1 > $r;
2841 } elsif ($line =~ /^ \+empty_dir: (.+)$/) {
2842 $empty_dirs->{$1} = 1;
2843 } elsif ($line =~ /^ \-empty_dir: (.+)$/) {
2844 my @d = grep {m[^\Q$1\E(/|$)]} (keys %$empty_dirs);
2845 delete @$empty_dirs{@d};
2846 }
2847 1; # continue
2848 };
2849
2850 my %empty_dirs = ();
2851 my $gz_file = "$self->{dir}/unhandled.log.gz";
2852 if (-f $gz_file) {
2853 if (!$can_compress) {
2854 warn "Compress::Zlib could not be found; ",
2855 "empty directories in $gz_file will not be read\n";
2856 } else {
2857 my $gz = Compress::Zlib::gzopen($gz_file, "rb") or
2858 die "Unable to open $gz_file: $!\n";
2859 my $line;
2860 while ($gz->gzreadline($line) > 0) {
2861 scan($r, \%empty_dirs, $line) or last;
2862 }
2863 $gz->gzclose;
Eric Wong6111b932009-11-15 18:57:16 -08002864 }
2865 }
Eric Wonga5b80d92009-12-19 13:49:00 -08002866
2867 if (open my $fh, '<', "$self->{dir}/unhandled.log") {
2868 binmode $fh or croak "binmode: $!";
2869 while (<$fh>) {
2870 scan($r, \%empty_dirs, $_) or last;
2871 }
2872 close $fh;
2873 }
Eric Wong9be30ee2009-11-22 18:11:32 -08002874
2875 my $strip = qr/\A\Q$self->{path}\E(?:\/|$)/;
Eric Wong6111b932009-11-15 18:57:16 -08002876 foreach my $d (sort keys %empty_dirs) {
2877 $d = uri_decode($d);
Eric Wong9be30ee2009-11-22 18:11:32 -08002878 $d =~ s/$strip//;
Michael J. Kiwala7c42e392010-06-01 16:24:57 -05002879 next unless length($d);
Eric Wong6111b932009-11-15 18:57:16 -08002880 next if -d $d;
Michael J. Kiwala7c42e392010-06-01 16:24:57 -05002881 if (-e $d) {
Eric Wong6111b932009-11-15 18:57:16 -08002882 warn "$d exists but is not a directory\n";
2883 } else {
2884 print "creating empty directory: $d\n";
2885 mkpath([$d]);
2886 }
2887 }
2888}
2889
Eric Wong97f69872007-01-25 11:53:13 -08002890sub get_untracked {
2891 my ($self, $ed) = @_;
2892 my @out;
2893 my $h = $ed->{empty};
Eric Wong9b981fc2007-01-11 12:14:21 -08002894 foreach (sort keys %$h) {
2895 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
Eric Wong97f69872007-01-25 11:53:13 -08002896 push @out, " $act: " . uri_encode($_);
Eric Wong9b981fc2007-01-11 12:14:21 -08002897 warn "W: $act: $_\n";
2898 }
2899 foreach my $t (qw/dir_prop file_prop/) {
Eric Wong97f69872007-01-25 11:53:13 -08002900 $h = $ed->{$t} or next;
Eric Wong9b981fc2007-01-11 12:14:21 -08002901 foreach my $path (sort keys %$h) {
2902 my $ppath = $path eq '' ? '.' : $path;
2903 foreach my $prop (sort keys %{$h->{$path}}) {
Eric Wong1ce255d2007-01-14 23:21:16 -08002904 next if $SKIP_PROP{$prop};
Eric Wong9b981fc2007-01-11 12:14:21 -08002905 my $v = $h->{$path}->{$prop};
Eric Wong97f69872007-01-25 11:53:13 -08002906 my $t_ppath_prop = "$t: " .
2907 uri_encode($ppath) . ' ' .
2908 uri_encode($prop);
Eric Wong9b981fc2007-01-11 12:14:21 -08002909 if (defined $v) {
Eric Wong97f69872007-01-25 11:53:13 -08002910 push @out, " +$t_ppath_prop " .
2911 uri_encode($v);
Eric Wong9b981fc2007-01-11 12:14:21 -08002912 } else {
Eric Wong97f69872007-01-25 11:53:13 -08002913 push @out, " -$t_ppath_prop";
Eric Wong9b981fc2007-01-11 12:14:21 -08002914 }
2915 }
2916 }
2917 }
2918 foreach my $t (qw/absent_file absent_directory/) {
Eric Wong97f69872007-01-25 11:53:13 -08002919 $h = $ed->{$t} or next;
Eric Wong9b981fc2007-01-11 12:14:21 -08002920 foreach my $parent (sort keys %$h) {
2921 foreach my $path (sort @{$h->{$parent}}) {
Eric Wong97f69872007-01-25 11:53:13 -08002922 push @out, " $t: " .
2923 uri_encode("$parent/$path");
Eric Wong9b981fc2007-01-11 12:14:21 -08002924 warn "W: $t: $parent/$path ",
2925 "Insufficient permissions?\n";
2926 }
2927 }
2928 }
Eric Wong97f69872007-01-25 11:53:13 -08002929 \@out;
Eric Wong9b981fc2007-01-11 12:14:21 -08002930}
2931
Pete Harlane82f0d72009-01-17 20:10:14 -08002932# parse_svn_date(DATE)
2933# --------------------
2934# Given a date (in UTC) from Subversion, return a string in the format
2935# "<TZ Offset> <local date/time>" that Git will use.
2936#
2937# By default the parsed date will be in UTC; if $Git::SVN::_localtime
2938# is true we'll convert it to the local timezone instead.
Eric Wong1c8443b2007-01-14 02:17:00 -08002939sub parse_svn_date {
2940 my $date = shift || return '+0000 1970-01-01 00:00:00';
2941 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
Junio C Hamanob94ead72009-02-18 10:48:01 -08002942 (\d\d)\:(\d\d)\:(\d\d)\.\d*Z$/x) or
Eric Wong1c8443b2007-01-14 02:17:00 -08002943 croak "Unable to parse date: $date\n";
Pete Harlane82f0d72009-01-17 20:10:14 -08002944 my $parsed_date; # Set next.
2945
2946 if ($Git::SVN::_localtime) {
2947 # Translate the Subversion datetime to an epoch time.
2948 # Begin by switching ourselves to $date's timezone, UTC.
2949 my $old_env_TZ = $ENV{TZ};
2950 $ENV{TZ} = 'UTC';
2951
2952 my $epoch_in_UTC =
2953 POSIX::strftime('%s', $S, $M, $H, $d, $m - 1, $Y - 1900);
2954
2955 # Determine our local timezone (including DST) at the
2956 # time of $epoch_in_UTC. $Git::SVN::Log::TZ stored the
2957 # value of TZ, if any, at the time we were run.
2958 if (defined $Git::SVN::Log::TZ) {
2959 $ENV{TZ} = $Git::SVN::Log::TZ;
2960 } else {
2961 delete $ENV{TZ};
2962 }
2963
2964 my $our_TZ =
2965 POSIX::strftime('%Z', $S, $M, $H, $d, $m - 1, $Y - 1900);
2966
2967 # This converts $epoch_in_UTC into our local timezone.
2968 my ($sec, $min, $hour, $mday, $mon, $year,
2969 $wday, $yday, $isdst) = localtime($epoch_in_UTC);
2970
2971 $parsed_date = sprintf('%s %04d-%02d-%02d %02d:%02d:%02d',
2972 $our_TZ, $year + 1900, $mon + 1,
2973 $mday, $hour, $min, $sec);
2974
2975 # Reset us to the timezone in effect when we entered
2976 # this routine.
2977 if (defined $old_env_TZ) {
2978 $ENV{TZ} = $old_env_TZ;
2979 } else {
2980 delete $ENV{TZ};
2981 }
2982 } else {
2983 $parsed_date = "+0000 $Y-$m-$d $H:$M:$S";
2984 }
2985
2986 return $parsed_date;
Eric Wong1c8443b2007-01-14 02:17:00 -08002987}
2988
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002989sub other_gs {
Mattias Nissler0b2af452009-07-07 01:40:02 +02002990 my ($self, $new_url, $url,
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002991 $branch_from, $r, $old_ref_id) = @_;
Mattias Nissler0b2af452009-07-07 01:40:02 +02002992 my $gs = Git::SVN->find_by_url($new_url, $url, $branch_from);
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002993 unless ($gs) {
2994 my $ref_id = $old_ref_id;
David D. Kilzer54fb7f92010-08-15 06:15:54 -07002995 $ref_id =~ s/\@\d+-*$//;
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002996 $ref_id .= "\@$r";
2997 # just grow a tail if we're not unique enough :x
2998 $ref_id .= '-' while find_ref($ref_id);
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002999 my ($u, $p, $repo_id) = ($new_url, '', $ref_id);
3000 if ($u =~ s#^\Q$url\E(/|$)##) {
3001 $p = $u;
3002 $u = $url;
3003 $repo_id = $self->{repo_id};
3004 }
David D. Kilzer3235b702010-08-15 06:15:55 -07003005 while (1) {
3006 # It is possible to tag two different subdirectories at
3007 # the same revision. If the url for an existing ref
3008 # does not match, we must either find a ref with a
3009 # matching url or create a new ref by growing a tail.
3010 $gs = Git::SVN->init($u, $p, $repo_id, $ref_id, 1);
3011 my (undef, $max_commit) = $gs->rev_map_max(1);
3012 last if (!$max_commit);
3013 my ($url) = ::cmt_metadata($max_commit);
3014 last if ($url eq $gs->full_url);
3015 $ref_id .= '-';
3016 }
3017 print STDERR "Initializing parent: $ref_id\n" unless $::_q > 1;
Sam Vilain8e3f9b12007-06-26 19:23:59 +12003018 }
3019 $gs
3020}
3021
Mark Lodato36db1ed2009-05-14 21:27:15 -04003022sub call_authors_prog {
3023 my ($orig_author) = @_;
Mark Lodatod3d7d472009-09-12 20:33:23 -04003024 $orig_author = command_oneline('rev-parse', '--sq-quote', $orig_author);
Mark Lodato36db1ed2009-05-14 21:27:15 -04003025 my $author = `$::_authors_prog $orig_author`;
3026 if ($? != 0) {
3027 die "$::_authors_prog failed with exit code $?\n"
3028 }
3029 if ($author =~ /^\s*(.+?)\s*<(.*)>\s*$/) {
3030 my ($name, $email) = ($1, $2);
3031 $email = undef if length $2 == 0;
3032 return [$name, $email];
3033 } else {
3034 die "Author: $orig_author: $::_authors_prog returned "
3035 . "invalid author format: $author\n";
3036 }
3037}
3038
Eric Wong1c8443b2007-01-14 02:17:00 -08003039sub check_author {
3040 my ($author) = @_;
3041 if (!defined $author || length $author == 0) {
3042 $author = '(no author)';
Mark Lodato36db1ed2009-05-14 21:27:15 -04003043 }
3044 if (!defined $::users{$author}) {
3045 if (defined $::_authors_prog) {
3046 $::users{$author} = call_authors_prog($author);
3047 } elsif (defined $::_authors) {
3048 die "Author: $author not defined in $::_authors file\n";
3049 }
Eric Wong1c8443b2007-01-14 02:17:00 -08003050 }
3051 $author;
3052}
3053
Sam Vilainf1264bd2009-10-20 15:42:01 +13003054sub find_extra_svk_parents {
3055 my ($self, $ed, $tickets, $parents) = @_;
3056 # aha! svk:merge property changed...
3057 my @tickets = split "\n", $tickets;
3058 my @known_parents;
3059 for my $ticket ( @tickets ) {
3060 my ($uuid, $path, $rev) = split /:/, $ticket;
3061 if ( $uuid eq $self->ra_uuid ) {
Tuomas Suutaribf60fff2010-02-24 20:09:01 +02003062 my $url = $self->{url};
Sam Vilainf1264bd2009-10-20 15:42:01 +13003063 my $repos_root = $url;
3064 my $branch_from = $path;
3065 $branch_from =~ s{^/}{};
3066 my $gs = $self->other_gs($repos_root."/".$branch_from,
3067 $url,
3068 $branch_from,
3069 $rev,
3070 $self->{ref_id});
3071 if ( my $commit = $gs->rev_map_get($rev, $uuid) ) {
3072 # wahey! we found it, but it might be
3073 # an old one (!)
Alex Vandivere9e4c8b2009-11-29 02:20:21 -05003074 push @known_parents, [ $rev, $commit ];
Sam Vilainf1264bd2009-10-20 15:42:01 +13003075 }
3076 }
3077 }
Alex Vandivere9e4c8b2009-11-29 02:20:21 -05003078 # Ordering matters; highest-numbered commit merge tickets
3079 # first, as they may account for later merge ticket additions
3080 # or changes.
3081 @known_parents = map {$_->[1]} sort {$b->[0] <=> $a->[0]} @known_parents;
Sam Vilainf1264bd2009-10-20 15:42:01 +13003082 for my $parent ( @known_parents ) {
3083 my @cmd = ('rev-list', $parent, map { "^$_" } @$parents );
3084 my ($msg_fh, $ctx) = command_output_pipe(@cmd);
3085 my $new;
3086 while ( <$msg_fh> ) {
3087 $new=1;last;
3088 }
3089 command_close_pipe($msg_fh, $ctx);
3090 if ( $new ) {
3091 print STDERR
3092 "Found merge parent (svk:merge ticket): $parent\n";
3093 push @$parents, $parent;
3094 }
3095 }
3096}
3097
Sam Vilain7d944c32009-12-20 00:55:13 +13003098sub lookup_svn_merge {
3099 my $uuid = shift;
3100 my $url = shift;
3101 my $merge = shift;
3102
3103 my ($source, $revs) = split ":", $merge;
3104 my $path = $source;
3105 $path =~ s{^/}{};
3106 my $gs = Git::SVN->find_by_url($url.$source, $url, $path);
3107 if ( !$gs ) {
3108 warn "Couldn't find revmap for $url$source\n";
3109 return;
3110 }
3111 my @ranges = split ",", $revs;
3112 my ($tip, $tip_commit);
3113 my @merged_commit_ranges;
3114 # find the tip
3115 for my $range ( @ranges ) {
3116 my ($bottom, $top) = split "-", $range;
3117 $top ||= $bottom;
Sam Vilain33973a52009-12-20 05:22:42 +13003118 my $bottom_commit = $gs->find_rev_after( $bottom, 1, $top );
3119 my $top_commit = $gs->find_rev_before( $top, 1, $bottom );
Sam Vilain7d944c32009-12-20 00:55:13 +13003120
3121 unless ($top_commit and $bottom_commit) {
3122 warn "W:unknown path/rev in svn:mergeinfo "
3123 ."dirprop: $source:$range\n";
3124 next;
3125 }
3126
3127 push @merged_commit_ranges,
Sam Vilain33973a52009-12-20 05:22:42 +13003128 "$bottom_commit^..$top_commit";
Sam Vilain7d944c32009-12-20 00:55:13 +13003129
3130 if ( !defined $tip or $top > $tip ) {
3131 $tip = $top;
3132 $tip_commit = $top_commit;
3133 }
3134 }
3135 return ($tip_commit, @merged_commit_ranges);
3136}
Sam Vilain7a955a52009-12-20 05:26:26 +13003137
3138sub _rev_list {
3139 my ($msg_fh, $ctx) = command_output_pipe(
3140 "rev-list", @_,
3141 );
3142 my @rv;
3143 while ( <$msg_fh> ) {
3144 chomp;
3145 push @rv, $_;
3146 }
3147 command_close_pipe($msg_fh, $ctx);
3148 @rv;
3149}
3150
3151sub check_cherry_pick {
3152 my $base = shift;
3153 my $tip = shift;
Steven Waltera3c75052010-09-02 18:32:06 -04003154 my $parents = shift;
Sam Vilain7a955a52009-12-20 05:26:26 +13003155 my @ranges = @_;
3156 my %commits = map { $_ => 1 }
Steven Waltera3c75052010-09-02 18:32:06 -04003157 _rev_list("--no-merges", $tip, "--not", $base, @$parents);
Sam Vilain7a955a52009-12-20 05:26:26 +13003158 for my $range ( @ranges ) {
3159 delete @commits{_rev_list($range)};
3160 }
Andrew Myrick1cef6502010-01-06 16:25:21 -08003161 for my $commit (keys %commits) {
3162 if (has_no_changes($commit)) {
3163 delete $commits{$commit};
3164 }
3165 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003166 return (keys %commits);
3167}
3168
Andrew Myrick1cef6502010-01-06 16:25:21 -08003169sub has_no_changes {
3170 my $commit = shift;
3171
3172 my @revs = split / /, command_oneline(
3173 qw(rev-list --parents -1 -m), $commit);
3174
3175 # Commits with no parents, e.g. the start of a partial branch,
3176 # have changes by definition.
3177 return 1 if (@revs < 2);
3178
3179 # Commits with multiple parents, e.g a merge, have no changes
3180 # by definition.
3181 return 0 if (@revs > 2);
3182
3183 return (command_oneline("rev-parse", "$commit^{tree}") eq
3184 command_oneline("rev-parse", "$commit~1^{tree}"));
3185}
3186
Andrew Myrick8bff7c52010-01-30 03:14:22 +00003187# The GIT_DIR environment variable is not always set until after the command
3188# line arguments are processed, so we can't memoize in a BEGIN block.
3189{
3190 my $memoized = 0;
3191
3192 sub memoize_svn_mergeinfo_functions {
3193 return if $memoized;
3194 $memoized = 1;
3195
3196 my $cache_path = "$ENV{GIT_DIR}/svn/.caches/";
3197 mkpath([$cache_path]) unless -d $cache_path;
3198
3199 tie my %lookup_svn_merge_cache => 'Memoize::Storable',
3200 "$cache_path/lookup_svn_merge.db", 'nstore';
3201 memoize 'lookup_svn_merge',
3202 SCALAR_CACHE => 'FAULT',
3203 LIST_CACHE => ['HASH' => \%lookup_svn_merge_cache],
3204 ;
3205
3206 tie my %check_cherry_pick_cache => 'Memoize::Storable',
3207 "$cache_path/check_cherry_pick.db", 'nstore';
3208 memoize 'check_cherry_pick',
3209 SCALAR_CACHE => 'FAULT',
3210 LIST_CACHE => ['HASH' => \%check_cherry_pick_cache],
3211 ;
3212
3213 tie my %has_no_changes_cache => 'Memoize::Storable',
3214 "$cache_path/has_no_changes.db", 'nstore';
3215 memoize 'has_no_changes',
3216 SCALAR_CACHE => ['HASH' => \%has_no_changes_cache],
3217 LIST_CACHE => 'FAULT',
3218 ;
3219 }
Sergey Vlasov8ac3a662010-07-18 16:17:49 +04003220
3221 sub unmemoize_svn_mergeinfo_functions {
3222 return if not $memoized;
3223 $memoized = 0;
3224
3225 Memoize::unmemoize 'lookup_svn_merge';
3226 Memoize::unmemoize 'check_cherry_pick';
3227 Memoize::unmemoize 'has_no_changes';
3228 }
James Y Knightf5549af2011-04-04 15:09:08 -04003229
3230 Memoize::memoize 'Git::SVN::repos_root';
Sergey Vlasov8ac3a662010-07-18 16:17:49 +04003231}
3232
3233END {
3234 # Force cache writeout explicitly instead of waiting for
3235 # global destruction to avoid segfault in Storable:
3236 # http://rt.cpan.org/Public/Bug/Display.html?id=36087
3237 unmemoize_svn_mergeinfo_functions();
Sam Vilain7d944c32009-12-20 00:55:13 +13003238}
3239
Sam Vilainea020cb2009-12-20 05:25:31 +13003240sub parents_exclude {
3241 my $parents = shift;
3242 my @commits = @_;
3243 return unless @commits;
3244
3245 my @excluded;
3246 my $excluded;
3247 do {
3248 my @cmd = ('rev-list', "-1", @commits, "--not", @$parents );
3249 $excluded = command_oneline(@cmd);
3250 if ( $excluded ) {
3251 my @new;
3252 my $found;
3253 for my $commit ( @commits ) {
3254 if ( $commit eq $excluded ) {
3255 push @excluded, $commit;
3256 $found++;
3257 last;
3258 }
3259 else {
3260 push @new, $commit;
3261 }
3262 }
3263 die "saw commit '$excluded' in rev-list output, "
3264 ."but we didn't ask for that commit (wanted: @commits --not @$parents)"
3265 unless $found;
3266 @commits = @new;
3267 }
3268 }
3269 while ($excluded and @commits);
3270
3271 return @excluded;
3272}
3273
3274
Sam Vilaindff589e2009-10-20 15:42:03 +13003275# note: this function should only be called if the various dirprops
3276# have actually changed
3277sub find_extra_svn_parents {
3278 my ($self, $ed, $mergeinfo, $parents) = @_;
3279 # aha! svk:merge property changed...
3280
Andrew Myrick8bff7c52010-01-30 03:14:22 +00003281 memoize_svn_mergeinfo_functions();
3282
Sam Vilaindff589e2009-10-20 15:42:03 +13003283 # We first search for merged tips which are not in our
3284 # history. Then, we figure out which git revisions are in
3285 # that tip, but not this revision. If all of those revisions
3286 # are now marked as merge, we can add the tip as a parent.
3287 my @merges = split "\n", $mergeinfo;
3288 my @merge_tips;
Tuomas Suutaribf60fff2010-02-24 20:09:01 +02003289 my $url = $self->{url};
Sam Vilain7d944c32009-12-20 00:55:13 +13003290 my $uuid = $self->ra_uuid;
Sam Vilainea020cb2009-12-20 05:25:31 +13003291 my %ranges;
Sam Vilaindff589e2009-10-20 15:42:03 +13003292 for my $merge ( @merges ) {
Sam Vilain7d944c32009-12-20 00:55:13 +13003293 my ($tip_commit, @ranges) =
3294 lookup_svn_merge( $uuid, $url, $merge );
Sam Vilaindff589e2009-10-20 15:42:03 +13003295 unless (!$tip_commit or
3296 grep { $_ eq $tip_commit } @$parents ) {
3297 push @merge_tips, $tip_commit;
Sam Vilainea020cb2009-12-20 05:25:31 +13003298 $ranges{$tip_commit} = \@ranges;
Sam Vilaindff589e2009-10-20 15:42:03 +13003299 } else {
3300 push @merge_tips, undef;
3301 }
3302 }
Sam Vilainea020cb2009-12-20 05:25:31 +13003303
3304 my %excluded = map { $_ => 1 }
3305 parents_exclude($parents, grep { defined } @merge_tips);
3306
3307 # check merge tips for new parents
3308 my @new_parents;
Sam Vilaindff589e2009-10-20 15:42:03 +13003309 for my $merge_tip ( @merge_tips ) {
3310 my $spec = shift @merges;
Sam Vilainea020cb2009-12-20 05:25:31 +13003311 next unless $merge_tip and $excluded{$merge_tip};
3312
3313 my $ranges = $ranges{$merge_tip};
3314
Sam Vilain7a955a52009-12-20 05:26:26 +13003315 # check out 'new' tips
Andrew Myrick41c01692010-01-06 16:25:22 -08003316 my $merge_base;
3317 eval {
3318 $merge_base = command_oneline(
3319 "merge-base",
3320 @$parents, $merge_tip,
3321 );
3322 };
3323 if ($@) {
3324 die "An error occurred during merge-base"
3325 unless $@->isa("Git::Error::Command");
3326
3327 warn "W: Cannot find common ancestor between ".
3328 "@$parents and $merge_tip. Ignoring merge info.\n";
3329 next;
3330 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003331
3332 # double check that there are no missing non-merge commits
3333 my (@incomplete) = check_cherry_pick(
3334 $merge_base, $merge_tip,
Steven Waltera3c75052010-09-02 18:32:06 -04003335 $parents,
Sam Vilain7a955a52009-12-20 05:26:26 +13003336 @$ranges,
3337 );
3338
3339 if ( @incomplete ) {
3340 warn "W:svn cherry-pick ignored ($spec) - missing "
3341 .@incomplete." commit(s) (eg $incomplete[0])\n";
3342 } else {
3343 warn
3344 "Found merge parent (svn:mergeinfo prop): ",
3345 $merge_tip, "\n";
3346 push @new_parents, $merge_tip;
Sam Vilaindff589e2009-10-20 15:42:03 +13003347 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003348 }
3349
3350 # cater for merges which merge commits from multiple branches
3351 if ( @new_parents > 1 ) {
3352 for ( my $i = 0; $i <= $#new_parents; $i++ ) {
3353 for ( my $j = 0; $j <= $#new_parents; $j++ ) {
3354 next if $i == $j;
3355 next unless $new_parents[$i];
3356 next unless $new_parents[$j];
3357 my $revs = command_oneline(
Eric Wong0fe19752009-12-22 12:15:40 -08003358 "rev-list", "-1",
3359 "$new_parents[$i]..$new_parents[$j]",
Sam Vilain7a955a52009-12-20 05:26:26 +13003360 );
3361 if ( !$revs ) {
Tuomas Suutari6a2009e2010-02-22 20:12:53 +02003362 undef($new_parents[$j]);
Sam Vilain7a955a52009-12-20 05:26:26 +13003363 }
Sam Vilaindff589e2009-10-20 15:42:03 +13003364 }
3365 }
3366 }
Sam Vilain7a955a52009-12-20 05:26:26 +13003367 push @$parents, grep { defined } @new_parents;
Sam Vilaindff589e2009-10-20 15:42:03 +13003368}
3369
Eric Wong9b981fc2007-01-11 12:14:21 -08003370sub make_log_entry {
Eric Wong97f69872007-01-25 11:53:13 -08003371 my ($self, $rev, $parents, $ed) = @_;
3372 my $untracked = $self->get_untracked($ed);
3373
Sam Vilainf1264bd2009-10-20 15:42:01 +13003374 my @parents = @$parents;
3375 my $ps = $ed->{path_strip} || "";
3376 for my $path ( grep { m/$ps/ } %{$ed->{dir_prop}} ) {
3377 my $props = $ed->{dir_prop}{$path};
3378 if ( $props->{"svk:merge"} ) {
3379 $self->find_extra_svk_parents
3380 ($ed, $props->{"svk:merge"}, \@parents);
3381 }
Sam Vilaindff589e2009-10-20 15:42:03 +13003382 if ( $props->{"svn:mergeinfo"} ) {
3383 $self->find_extra_svn_parents
3384 ($ed,
3385 $props->{"svn:mergeinfo"},
3386 \@parents);
3387 }
Sam Vilainf1264bd2009-10-20 15:42:01 +13003388 }
3389
Eric Wong9b981fc2007-01-11 12:14:21 -08003390 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
Eric Wong97f69872007-01-25 11:53:13 -08003391 print $un "r$rev\n" or croak $!;
3392 print $un $_, "\n" foreach @$untracked;
Sam Vilainf1264bd2009-10-20 15:42:01 +13003393 my %log_entry = ( parents => \@parents, revision => $rev,
Eric Wong97f69872007-01-25 11:53:13 -08003394 log => '');
Eric Wongfbcc1732007-02-06 18:35:30 -08003395
Eric Wong8a49ee92007-02-10 20:46:50 -08003396 my $headrev;
Eric Wongfbcc1732007-02-06 18:35:30 -08003397 my $logged = delete $self->{logged_rev_props};
Eric Wong8a49ee92007-02-10 20:46:50 -08003398 if (!$logged || $self->{-want_revprops}) {
Eric Wongfbcc1732007-02-06 18:35:30 -08003399 my $rp = $self->ra->rev_proplist($rev);
3400 foreach (sort keys %$rp) {
3401 my $v = $rp->{$_};
3402 if (/^svn:(author|date|log)$/) {
3403 $log_entry{$1} = $v;
Eric Wong8a49ee92007-02-10 20:46:50 -08003404 } elsif ($_ eq 'svm:headrev') {
3405 $headrev = $v;
Eric Wongfbcc1732007-02-06 18:35:30 -08003406 } else {
3407 print $un " rev_prop: ", uri_encode($_), ' ',
3408 uri_encode($v), "\n";
3409 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003410 }
Eric Wongfbcc1732007-02-06 18:35:30 -08003411 } else {
3412 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
Eric Wong9b981fc2007-01-11 12:14:21 -08003413 }
3414 close $un or croak $!;
Eric Wong97f69872007-01-25 11:53:13 -08003415
Eric Wong9b981fc2007-01-11 12:14:21 -08003416 $log_entry{date} = parse_svn_date($log_entry{date});
Eric Wong9b981fc2007-01-11 12:14:21 -08003417 $log_entry{log} .= "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08003418 my $author = $log_entry{author} = check_author($log_entry{author});
3419 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003420 : ($author, undef);
3421
3422 my ($commit_name, $commit_email) = ($name, $email);
3423 if ($_use_log_author) {
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00003424 my $name_field;
3425 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
3426 $name_field = $1;
3427 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
3428 $name_field = $1;
3429 }
3430 if (!defined $name_field) {
Stephen R. van den Bergabfa5332008-04-29 23:20:32 +02003431 if (!defined $email) {
3432 $email = $name;
3433 }
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00003434 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003435 ($name, $email) = ($1, $2);
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00003436 } elsif ($name_field =~ /(.*)@/) {
3437 ($name, $email) = ($1, $name_field);
3438 } else {
Stephen R. van den Bergabfa5332008-04-29 23:20:32 +02003439 ($name, $email) = ($name_field, $name_field);
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003440 }
3441 }
Eric Wong91b03282007-02-11 00:51:33 -08003442 if (defined $headrev && $self->use_svm_props) {
Eric Wongaea736c2007-02-16 19:15:21 -08003443 if ($self->rewrite_root) {
3444 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
3445 "options set!\n";
3446 }
Jay Soffian3e18ce12010-01-23 03:30:00 -05003447 if ($self->rewrite_uuid) {
3448 die "Can't have both 'useSvmProps' and 'rewriteUUID' ",
3449 "options set!\n";
3450 }
Eric Wongb3e95932009-07-11 14:13:12 -07003451 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$}i;
Eric Wongbefc9ad2007-02-17 02:53:07 -08003452 # we don't want "SVM: initializing mirror for junk" ...
3453 return undef if $r == 0;
3454 my $svm = $self->svm;
3455 if ($uuid ne $svm->{uuid}) {
Eric Wong8a49ee92007-02-10 20:46:50 -08003456 die "UUID mismatch on SVM path:\n",
Eric Wongbefc9ad2007-02-17 02:53:07 -08003457 "expected: $svm->{uuid}\n",
Eric Wong8a49ee92007-02-10 20:46:50 -08003458 " got: $uuid\n";
3459 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08003460 my $full_url = $self->full_url;
3461 $full_url =~ s#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
3462 die "Failed to replace '$svm->{replace}' with ",
3463 "'$svm->{source}' in $full_url\n";
Sam Vilain18ea92b2007-02-23 12:32:29 +13003464 # throw away username for storing in records
3465 remove_username($full_url);
Eric Wong8a49ee92007-02-10 20:46:50 -08003466 $log_entry{metadata} = "$full_url\@$r $uuid";
3467 $log_entry{svm_revision} = $r;
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003468 $email ||= "$author\@$uuid";
3469 $commit_email ||= "$author\@$uuid";
Eric Wong62e349d2007-02-16 19:57:29 -08003470 } elsif ($self->use_svnsync_props) {
3471 my $full_url = $self->svnsync->{url};
3472 $full_url .= "/$self->{path}" if length $self->{path};
Adam Robence118732007-04-24 18:02:07 -07003473 remove_username($full_url);
Eric Wong62e349d2007-02-16 19:57:29 -08003474 my $uuid = $self->svnsync->{uuid};
3475 $log_entry{metadata} = "$full_url\@$rev $uuid";
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003476 $email ||= "$author\@$uuid";
3477 $commit_email ||= "$author\@$uuid";
Eric Wong8a49ee92007-02-10 20:46:50 -08003478 } else {
Adam Robence118732007-04-24 18:02:07 -07003479 my $url = $self->metadata_url;
3480 remove_username($url);
Jay Soffian3e18ce12010-01-23 03:30:00 -05003481 my $uuid = $self->rewrite_uuid || $self->ra->get_uuid;
3482 $log_entry{metadata} = "$url\@$rev " . $uuid;
3483 $email ||= "$author\@" . $uuid;
3484 $commit_email ||= "$author\@" . $uuid;
Eric Wong8a49ee92007-02-10 20:46:50 -08003485 }
Eric Wongdb03cd22007-02-13 00:38:02 -08003486 $log_entry{name} = $name;
3487 $log_entry{email} = $email;
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00003488 $log_entry{commit_name} = $commit_name;
3489 $log_entry{commit_email} = $commit_email;
Eric Wong9b981fc2007-01-11 12:14:21 -08003490 \%log_entry;
3491}
3492
3493sub fetch {
Eric Wong3ebe8df2007-01-25 17:35:40 -08003494 my ($self, $min_rev, $max_rev, @parents) = @_;
Eric Wong9b981fc2007-01-11 12:14:21 -08003495 my ($last_rev, $last_commit) = $self->last_rev_commit;
Eric Wong3ebe8df2007-01-25 17:35:40 -08003496 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
Eric Wonge5181922007-02-08 12:53:57 -08003497 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
Eric Wong9b981fc2007-01-11 12:14:21 -08003498}
3499
3500sub set_tree_cb {
3501 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
Eric Wong490f49e2007-02-10 13:58:33 -08003502 $self->{inject_parents} = { $rev => $tree };
3503 $self->fetch(undef, undef);
Eric Wong9b981fc2007-01-11 12:14:21 -08003504}
3505
3506sub set_tree {
3507 my ($self, $tree) = (shift, shift);
Eric Wong1ce255d2007-01-14 23:21:16 -08003508 my $log_entry = ::get_commit_entry($tree);
Eric Wong9b981fc2007-01-11 12:14:21 -08003509 unless ($self->{last_rev}) {
Luc Heinrich0a1a1c82008-09-29 15:58:18 +02003510 ::fatal("Must have an existing revision to commit");
Eric Wong9b981fc2007-01-11 12:14:21 -08003511 }
Eric Wong61395352007-01-27 14:33:08 -08003512 my %ed_opts = ( r => $self->{last_rev},
3513 log => $log_entry->{log},
3514 ra => $self->ra,
3515 tree_a => $self->{last_commit},
3516 tree_b => $tree,
3517 editor_cb => sub {
3518 $self->set_tree_cb($log_entry, $tree, @_) },
3519 svn_path => $self->{path} );
3520 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong9b981fc2007-01-11 12:14:21 -08003521 print "No changes\nr$self->{last_rev} = $tree\n";
3522 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003523}
3524
Eric Wong060610c2007-12-08 23:27:41 -08003525sub rebuild_from_rev_db {
3526 my ($self, $path) = @_;
3527 my $r = -1;
3528 open my $fh, '<', $path or croak "open: $!";
Michael Weber4f7ec792008-04-18 15:12:04 +02003529 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003530 while (<$fh>) {
3531 length($_) == 41 or croak "inconsistent size in ($_) != 41";
3532 chomp($_);
3533 ++$r;
3534 next if $_ eq ('0' x 40);
3535 $self->rev_map_set($r, $_);
3536 print "r$r = $_\n";
3537 }
3538 close $fh or croak "close: $!";
3539 unlink $path or croak "unlink: $!";
3540}
3541
Eric Wongf0ecca12007-01-30 13:11:14 -08003542sub rebuild {
3543 my ($self) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003544 my $map_path = $self->map_path;
Deskin Miller2beec892008-09-15 21:12:58 -04003545 my $partial = (-e $map_path && ! -z $map_path);
Eric Wongd6d33462007-02-16 04:05:33 -08003546 return unless ::verify_ref($self->refname.'^0');
Deskin Miller2beec892008-09-15 21:12:58 -04003547 if (!$partial && ($self->use_svm_props || $self->no_metadata)) {
Eric Wong060610c2007-12-08 23:27:41 -08003548 my $rev_db = $self->rev_db_path;
3549 $self->rebuild_from_rev_db($rev_db);
3550 if ($self->use_svm_props) {
3551 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
3552 $self->rebuild_from_rev_db($svm_rev_db);
3553 }
3554 $self->unlink_rev_db_symlink;
Eric Wong26a62d52007-02-12 13:25:25 -08003555 return;
3556 }
Deskin Miller2beec892008-09-15 21:12:58 -04003557 print "Rebuilding $map_path ...\n" if (!$partial);
3558 my ($base_rev, $head) = ($partial ? $self->rev_map_max_norebuild(1) :
3559 (undef, undef));
Eric Wong060610c2007-12-08 23:27:41 -08003560 my ($log, $ctx) =
3561 command_output_pipe(qw/rev-list --pretty=raw --no-color --reverse/,
Deskin Miller2beec892008-09-15 21:12:58 -04003562 ($head ? "$head.." : "") . $self->refname,
3563 '--');
Jan Krüger74b1e122008-06-24 02:17:36 +02003564 my $metadata_url = $self->metadata_url;
3565 remove_username($metadata_url);
Jay Soffian3e18ce12010-01-23 03:30:00 -05003566 my $svn_uuid = $self->rewrite_uuid || $self->ra_uuid;
Sam Vilain3dfab992007-06-30 20:56:13 +12003567 my $c;
3568 while (<$log>) {
3569 if ( m{^commit ($::sha1)$} ) {
3570 $c = $1;
3571 next;
3572 }
3573 next unless s{^\s*(git-svn-id:)}{$1};
3574 my ($url, $rev, $uuid) = ::extract_metadata($_);
Sam Vilain18ea92b2007-02-23 12:32:29 +13003575 remove_username($url);
Eric Wongf0ecca12007-01-30 13:11:14 -08003576
3577 # ignore merges (from set-tree)
3578 next if (!defined $rev || !$uuid);
3579
3580 # if we merged or otherwise started elsewhere, this is
3581 # how we break out of it
Eric Wong060610c2007-12-08 23:27:41 -08003582 if (($uuid ne $svn_uuid) ||
Jan Krüger74b1e122008-06-24 02:17:36 +02003583 ($metadata_url && $url && ($url ne $metadata_url))) {
Eric Wongf0ecca12007-01-30 13:11:14 -08003584 next;
3585 }
Deskin Miller2beec892008-09-15 21:12:58 -04003586 if ($partial && $head) {
3587 print "Partial-rebuilding $map_path ...\n";
3588 print "Currently at $base_rev = $head\n";
3589 $head = undef;
3590 }
Eric Wongf0ecca12007-01-30 13:11:14 -08003591
Eric Wong060610c2007-12-08 23:27:41 -08003592 $self->rev_map_set($rev, $c);
Eric Wongf0ecca12007-01-30 13:11:14 -08003593 print "r$rev = $c\n";
3594 }
Sam Vilain3dfab992007-06-30 20:56:13 +12003595 command_close_pipe($log, $ctx);
Deskin Miller2beec892008-09-15 21:12:58 -04003596 print "Done rebuilding $map_path\n" if (!$partial || !$head);
Eric Wong060610c2007-12-08 23:27:41 -08003597 my $rev_db_path = $self->rev_db_path;
3598 if (-f $self->rev_db_path) {
3599 unlink $self->rev_db_path or croak "unlink: $!";
3600 }
3601 $self->unlink_rev_db_symlink;
Eric Wongf0ecca12007-01-30 13:11:14 -08003602}
3603
Eric Wong060610c2007-12-08 23:27:41 -08003604# rev_map:
Eric Wong9b981fc2007-01-11 12:14:21 -08003605# Tie::File seems to be prone to offset errors if revisions get sparse,
3606# it's not that fast, either. Tie::File is also not in Perl 5.6. So
3607# one of my favorite modules is out :< Next up would be one of the DBM
Eric Wong060610c2007-12-08 23:27:41 -08003608# modules, but I'm not sure which is most portable...
3609#
3610# This is the replacement for the rev_db format, which was too big
3611# and inefficient for large repositories with a lot of sparse history
3612# (mainly tags)
3613#
3614# The format is this:
3615# - 24 bytes for every record,
3616# * 4 bytes for the integer representing an SVN revision number
3617# * 20 bytes representing the sha1 of a git commit
3618# - No empty padding records like the old format
Eric Wong66ab84b2007-12-08 23:27:42 -08003619# (except the last record, which can be overwritten)
Eric Wong060610c2007-12-08 23:27:41 -08003620# - new records are written append-only since SVN revision numbers
3621# increase monotonically
3622# - lookups on SVN revision number are done via a binary search
Eric Wong66ab84b2007-12-08 23:27:42 -08003623# - Piping the file to xxd -c24 is a good way of dumping it for
3624# viewing or editing (piped back through xxd -r), should the need
3625# ever arise.
3626# - The last record can be padding revision with an all-zero sha1
3627# This is used to optimize fetch performance when using multiple
3628# "fetch" directives in .git/config
Eric Wong060610c2007-12-08 23:27:41 -08003629#
Eric Wong97ae0912007-02-11 15:21:24 -08003630# These files are disposable unless noMetadata or useSvmProps is set
Eric Wong9b981fc2007-01-11 12:14:21 -08003631
Eric Wong060610c2007-12-08 23:27:41 -08003632sub _rev_map_set {
Eric Wong26a62d52007-02-12 13:25:25 -08003633 my ($fh, $rev, $commit) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003634
Michael Weber4f7ec792008-04-18 15:12:04 +02003635 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003636 my $size = (stat($fh))[7];
3637 ($size % 24) == 0 or croak "inconsistent size: $size";
3638
Eric Wong66ab84b2007-12-08 23:27:42 -08003639 my $wr_offset = 0;
Eric Wong060610c2007-12-08 23:27:41 -08003640 if ($size > 0) {
3641 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
3642 my $read = sysread($fh, my $buf, 24) or croak "read: $!";
3643 $read == 24 or croak "read only $read bytes (!= 24)";
3644 my ($last_rev, $last_commit) = unpack(rev_map_fmt, $buf);
Eric Wong66ab84b2007-12-08 23:27:42 -08003645 if ($last_commit eq ('0' x40)) {
3646 if ($size >= 48) {
3647 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
3648 $read = sysread($fh, $buf, 24) or
3649 croak "read: $!";
3650 $read == 24 or
3651 croak "read only $read bytes (!= 24)";
3652 ($last_rev, $last_commit) =
3653 unpack(rev_map_fmt, $buf);
3654 if ($last_commit eq ('0' x40)) {
3655 croak "inconsistent .rev_map\n";
3656 }
3657 }
3658 if ($last_rev >= $rev) {
3659 croak "last_rev is higher!: $last_rev >= $rev";
3660 }
3661 $wr_offset = -24;
Eric Wong47a0b752007-01-31 05:13:30 -08003662 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003663 }
Eric Wong66ab84b2007-12-08 23:27:42 -08003664 sysseek($fh, $wr_offset, SEEK_END) or croak "seek: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003665 syswrite($fh, pack(rev_map_fmt, $rev, $commit), 24) == 24 or
3666 croak "write: $!";
Eric Wong26a62d52007-02-12 13:25:25 -08003667}
3668
Ben Jackson195643f2009-06-03 20:45:52 -07003669sub _rev_map_reset {
3670 my ($fh, $rev, $commit) = @_;
3671 my $c = _rev_map_get($fh, $rev);
3672 $c eq $commit or die "_rev_map_reset(@_) commit $c does not match!\n";
3673 my $offset = sysseek($fh, 0, SEEK_CUR) or croak "seek: $!";
3674 truncate $fh, $offset or croak "truncate: $!";
3675}
3676
Eric Wong26a62d52007-02-12 13:25:25 -08003677sub mkfile {
3678 my ($path) = @_;
3679 unless (-e $path) {
3680 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
3681 mkpath([$dir]) unless -d $dir;
3682 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
3683 close $fh or die "Couldn't close (create) $path: $!\n";
3684 }
3685}
3686
Eric Wong060610c2007-12-08 23:27:41 -08003687sub rev_map_set {
Eric Wong26a62d52007-02-12 13:25:25 -08003688 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
Jonathan Nieder70ee0b72010-05-04 16:36:47 -07003689 defined $commit or die "missing arg3\n";
Eric Wong26a62d52007-02-12 13:25:25 -08003690 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
Eric Wong060610c2007-12-08 23:27:41 -08003691 my $db = $self->map_path($uuid);
Eric Wong26a62d52007-02-12 13:25:25 -08003692 my $db_lock = "$db.lock";
3693 my $sig;
Ben Jackson195643f2009-06-03 20:45:52 -07003694 $update_ref ||= 0;
Eric Wong26a62d52007-02-12 13:25:25 -08003695 if ($update_ref) {
3696 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
3697 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
3698 }
3699 mkfile($db);
3700
3701 $LOCKFILES{$db_lock} = 1;
3702 my $sync;
3703 # both of these options make our .rev_db file very, very important
3704 # and we can't afford to lose it because rebuild() won't work
3705 if ($self->use_svm_props || $self->no_metadata) {
3706 $sync = 1;
Eric Wong060610c2007-12-08 23:27:41 -08003707 copy($db, $db_lock) or die "rev_map_set(@_): ",
Eric Wong26a62d52007-02-12 13:25:25 -08003708 "Failed to copy: ",
3709 "$db => $db_lock ($!)\n";
3710 } else {
Eric Wong060610c2007-12-08 23:27:41 -08003711 rename $db, $db_lock or die "rev_map_set(@_): ",
Eric Wong26a62d52007-02-12 13:25:25 -08003712 "Failed to rename: ",
3713 "$db => $db_lock ($!)\n";
3714 }
Eric Wong060610c2007-12-08 23:27:41 -08003715
Eric Wong66ab84b2007-12-08 23:27:42 -08003716 sysopen(my $fh, $db_lock, O_RDWR | O_CREAT)
Eric Wong060610c2007-12-08 23:27:41 -08003717 or croak "Couldn't open $db_lock: $!\n";
Ben Jackson195643f2009-06-03 20:45:52 -07003718 $update_ref eq 'reset' ? _rev_map_reset($fh, $rev, $commit) :
3719 _rev_map_set($fh, $rev, $commit);
Eric Wong97ae0912007-02-11 15:21:24 -08003720 if ($sync) {
3721 $fh->flush or die "Couldn't flush $db_lock: $!\n";
3722 $fh->sync or die "Couldn't sync $db_lock: $!\n";
3723 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003724 close $fh or croak $!;
Eric Wong373274f2007-01-31 13:54:23 -08003725 if ($update_ref) {
Eric Wong1e889ef2007-02-16 01:45:13 -08003726 $_head = $self;
Ben Jackson195643f2009-06-03 20:45:52 -07003727 my $note = "";
3728 $note = " ($update_ref)" if ($update_ref !~ /^\d*$/);
3729 command_noisy('update-ref', '-m', "r$rev$note",
Eric Wong373274f2007-01-31 13:54:23 -08003730 $self->refname, $commit);
3731 }
Eric Wong060610c2007-12-08 23:27:41 -08003732 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
Eric Wong373274f2007-01-31 13:54:23 -08003733 "$db_lock => $db ($!)\n";
3734 delete $LOCKFILES{$db_lock};
3735 if ($update_ref) {
3736 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
3737 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
3738 kill $sig, $$ if defined $sig;
3739 }
Eric Wong9b981fc2007-01-11 12:14:21 -08003740}
3741
Eric Wong66ab84b2007-12-08 23:27:42 -08003742# If want_commit, this will return an array of (rev, commit) where
3743# commit _must_ be a valid commit in the archive.
3744# Otherwise, it'll return the max revision (whether or not the
3745# commit is valid or just a 0x40 placeholder).
Eric Wong060610c2007-12-08 23:27:41 -08003746sub rev_map_max {
Eric Wong66ab84b2007-12-08 23:27:42 -08003747 my ($self, $want_commit) = @_;
Eric Wongd6d33462007-02-16 04:05:33 -08003748 $self->rebuild;
Deskin Miller2beec892008-09-15 21:12:58 -04003749 my ($r, $c) = $self->rev_map_max_norebuild($want_commit);
3750 $want_commit ? ($r, $c) : $r;
3751}
3752
3753sub rev_map_max_norebuild {
3754 my ($self, $want_commit) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003755 my $map_path = $self->map_path;
Eric Wong66ab84b2007-12-08 23:27:42 -08003756 stat $map_path or return $want_commit ? (0, undef) : 0;
Eric Wong060610c2007-12-08 23:27:41 -08003757 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
Michael Weber4f7ec792008-04-18 15:12:04 +02003758 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003759 my $size = (stat($fh))[7];
3760 ($size % 24) == 0 or croak "inconsistent size: $size";
3761
3762 if ($size == 0) {
3763 close $fh or croak "close: $!";
Eric Wong66ab84b2007-12-08 23:27:42 -08003764 return $want_commit ? (0, undef) : 0;
Eric Wong060610c2007-12-08 23:27:41 -08003765 }
3766
Eric Wong66ab84b2007-12-08 23:27:42 -08003767 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003768 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003769 my ($r, $c) = unpack(rev_map_fmt, $buf);
Eric Wong66ab84b2007-12-08 23:27:42 -08003770 if ($want_commit && $c eq ('0' x40)) {
3771 if ($size < 48) {
3772 return $want_commit ? (0, undef) : 0;
3773 }
3774 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
3775 sysread($fh, $buf, 24) == 24 or croak "read: $!";
3776 ($r, $c) = unpack(rev_map_fmt, $buf);
3777 if ($c eq ('0'x40)) {
3778 croak "Penultimate record is all-zeroes in $map_path";
3779 }
3780 }
3781 close $fh or croak "close: $!";
3782 $want_commit ? ($r, $c) : $r;
Eric Wong9c93fee2007-01-31 17:22:31 -08003783}
3784
Eric Wong060610c2007-12-08 23:27:41 -08003785sub rev_map_get {
Eric Wong26a62d52007-02-12 13:25:25 -08003786 my ($self, $rev, $uuid) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003787 my $map_path = $self->map_path($uuid);
3788 return undef unless -e $map_path;
3789
3790 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
Ben Jackson195643f2009-06-03 20:45:52 -07003791 my $c = _rev_map_get($fh, $rev);
3792 close($fh) or croak "close: $!";
3793 $c
3794}
3795
3796sub _rev_map_get {
3797 my ($fh, $rev) = @_;
3798
Michael Weber4f7ec792008-04-18 15:12:04 +02003799 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003800 my $size = (stat($fh))[7];
3801 ($size % 24) == 0 or croak "inconsistent size: $size";
3802
3803 if ($size == 0) {
Eric Wong060610c2007-12-08 23:27:41 -08003804 return undef;
Eric Wong9b981fc2007-01-11 12:14:21 -08003805 }
Eric Wong060610c2007-12-08 23:27:41 -08003806
3807 my ($l, $u) = (0, $size - 24);
3808 my ($r, $c, $buf);
3809
3810 while ($l <= $u) {
3811 my $i = int(($l/24 + $u/24) / 2) * 24;
3812 sysseek($fh, $i, SEEK_SET) or croak "seek: $!";
3813 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
Eric Wongc83f4e62009-08-12 22:20:02 -07003814 my ($r, $c) = unpack(rev_map_fmt, $buf);
Eric Wong060610c2007-12-08 23:27:41 -08003815
3816 if ($r < $rev) {
3817 $l = $i + 24;
3818 } elsif ($r > $rev) {
3819 $u = $i - 24;
3820 } else { # $r == $rev
Eric Wong66ab84b2007-12-08 23:27:42 -08003821 return $c eq ('0' x 40) ? undef : $c;
Eric Wong060610c2007-12-08 23:27:41 -08003822 }
3823 }
Eric Wong060610c2007-12-08 23:27:41 -08003824 undef;
Eric Wong9b981fc2007-01-11 12:14:21 -08003825}
3826
David D Kilzer111947e2007-11-11 22:56:52 -08003827# Finds the first svn revision that exists on (if $eq_ok is true) or
3828# before $rev for the current branch. It will not search any lower
3829# than $min_rev. Returns the git commit hash and svn revision number
3830# if found, else (undef, undef).
Eric Wong15710b62007-01-22 02:20:33 -08003831sub find_rev_before {
David D Kilzer111947e2007-11-11 22:56:52 -08003832 my ($self, $rev, $eq_ok, $min_rev) = @_;
Eric Wong15710b62007-01-22 02:20:33 -08003833 --$rev unless $eq_ok;
David D Kilzer111947e2007-11-11 22:56:52 -08003834 $min_rev ||= 1;
Ben Jacksonca5e8802009-06-03 20:45:51 -07003835 my $max_rev = $self->rev_map_max;
3836 $rev = $max_rev if ($rev > $max_rev);
David D Kilzer111947e2007-11-11 22:56:52 -08003837 while ($rev >= $min_rev) {
Eric Wong060610c2007-12-08 23:27:41 -08003838 if (my $c = $self->rev_map_get($rev)) {
Eric Wong15710b62007-01-22 02:20:33 -08003839 return ($rev, $c);
3840 }
3841 --$rev;
3842 }
3843 return (undef, undef);
3844}
3845
David D Kilzer111947e2007-11-11 22:56:52 -08003846# Finds the first svn revision that exists on (if $eq_ok is true) or
3847# after $rev for the current branch. It will not search any higher
3848# than $max_rev. Returns the git commit hash and svn revision number
3849# if found, else (undef, undef).
3850sub find_rev_after {
3851 my ($self, $rev, $eq_ok, $max_rev) = @_;
3852 ++$rev unless $eq_ok;
Eric Wong060610c2007-12-08 23:27:41 -08003853 $max_rev ||= $self->rev_map_max;
David D Kilzer111947e2007-11-11 22:56:52 -08003854 while ($rev <= $max_rev) {
Eric Wong060610c2007-12-08 23:27:41 -08003855 if (my $c = $self->rev_map_get($rev)) {
David D Kilzer111947e2007-11-11 22:56:52 -08003856 return ($rev, $c);
3857 }
3858 ++$rev;
3859 }
3860 return (undef, undef);
3861}
3862
Eric Wong9b981fc2007-01-11 12:14:21 -08003863sub _new {
Eric Wong706587f2007-01-18 17:50:01 -08003864 my ($class, $repo_id, $ref_id, $path) = @_;
3865 unless (defined $repo_id && length $repo_id) {
3866 $repo_id = $Git::SVN::default_repo_id;
3867 }
3868 unless (defined $ref_id && length $ref_id) {
Adam Brewster63de84a2009-08-03 21:40:38 -04003869 $_prefix = '' unless defined($_prefix);
Adam Brewster6f5748e2009-08-11 23:14:27 -04003870 $_[2] = $ref_id =
3871 "refs/remotes/$_prefix$Git::SVN::default_ref_id";
Eric Wong706587f2007-01-18 17:50:01 -08003872 }
Eric Wong7829f202008-06-28 20:40:32 -07003873 $_[1] = $repo_id;
Eric Wong706587f2007-01-18 17:50:01 -08003874 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
Adam Brewster6f5748e2009-08-11 23:14:27 -04003875
3876 # Older repos imported by us used $GIT_DIR/svn/foo instead of
3877 # $GIT_DIR/svn/refs/remotes/foo when tracking refs/remotes/foo
3878 if ($ref_id =~ m{^refs/remotes/(.*)}) {
3879 my $old_dir = "$ENV{GIT_DIR}/svn/$1";
3880 if (-d $old_dir && ! -d $dir) {
3881 $dir = $old_dir;
3882 }
3883 }
3884
Eric Wong706587f2007-01-18 17:50:01 -08003885 $_[3] = $path = '' unless (defined $path);
Adam Brewster6f5748e2009-08-11 23:14:27 -04003886 mkpath([$dir]);
Eric Wong26a62d52007-02-12 13:25:25 -08003887 bless {
3888 ref_id => $ref_id, dir => $dir, index => "$dir/index",
Eric Wong8a49ee92007-02-10 20:46:50 -08003889 path => $path, config => "$ENV{GIT_DIR}/svn/config",
Eric Wong060610c2007-12-08 23:27:41 -08003890 map_root => "$dir/.rev_map", repo_id => $repo_id }, $class;
Eric Wong26a62d52007-02-12 13:25:25 -08003891}
3892
Eric Wong060610c2007-12-08 23:27:41 -08003893# for read-only access of old .rev_db formats
3894sub unlink_rev_db_symlink {
3895 my ($self) = @_;
3896 my $link = $self->rev_db_path;
3897 $link =~ s/\.[\w-]+$// or croak "missing UUID at the end of $link";
3898 if (-l $link) {
3899 unlink $link or croak "unlink: $link failed!";
3900 }
3901}
3902
3903sub rev_db_path {
3904 my ($self, $uuid) = @_;
3905 my $db_path = $self->map_path($uuid);
3906 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
3907 or croak "map_path: $db_path does not contain '/.rev_map.' !";
3908 $db_path;
3909}
3910
3911# the new replacement for .rev_db
3912sub map_path {
Eric Wong26a62d52007-02-12 13:25:25 -08003913 my ($self, $uuid) = @_;
3914 $uuid ||= $self->ra_uuid;
Eric Wong060610c2007-12-08 23:27:41 -08003915 "$self->{map_root}.$uuid";
Eric Wong9b981fc2007-01-11 12:14:21 -08003916}
3917
Eric Wong1c8443b2007-01-14 02:17:00 -08003918sub uri_encode {
3919 my ($f) = @_;
3920 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
3921 $f
3922}
Eric Wong9b981fc2007-01-11 12:14:21 -08003923
Eric Wong6111b932009-11-15 18:57:16 -08003924sub uri_decode {
3925 my ($f) = @_;
3926 $f =~ s#%([0-9a-fA-F]{2})#chr(hex($1))#eg;
3927 $f
3928}
3929
Sam Vilain18ea92b2007-02-23 12:32:29 +13003930sub remove_username {
3931 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
3932}
3933
Eric Wongd976acf2007-01-04 00:45:03 -08003934package Git::SVN::Prompt;
3935use strict;
3936use warnings;
3937require SVN::Core;
3938use vars qw/$_no_auth_cache $_username/;
3939
3940sub simple {
Eric Wong30d055a2006-11-24 01:38:04 -08003941 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
3942 $may_save = undef if $_no_auth_cache;
3943 $default_username = $_username if defined $_username;
3944 if (defined $default_username && length $default_username) {
3945 if (defined $realm && length $realm) {
Eric Wong6f729592007-01-15 20:15:55 -08003946 print STDERR "Authentication realm: $realm\n";
3947 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003948 }
3949 $cred->username($default_username);
3950 } else {
Eric Wongd976acf2007-01-04 00:45:03 -08003951 username($cred, $realm, $may_save, $pool);
Eric Wong30d055a2006-11-24 01:38:04 -08003952 }
3953 $cred->password(_read_password("Password for '" .
3954 $cred->username . "': ", $realm));
3955 $cred->may_save($may_save);
3956 $SVN::_Core::SVN_NO_ERROR;
3957}
3958
Eric Wongd976acf2007-01-04 00:45:03 -08003959sub ssl_server_trust {
Eric Wong30d055a2006-11-24 01:38:04 -08003960 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
3961 $may_save = undef if $_no_auth_cache;
Eric Wong6f729592007-01-15 20:15:55 -08003962 print STDERR "Error validating server certificate for '$realm':\n";
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04003963 {
3964 no warnings 'once';
3965 # All variables SVN::Auth::SSL::* are used only once,
3966 # so we're shutting up Perl warnings about this.
3967 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
3968 print STDERR " - The certificate is not issued ",
3969 "by a trusted authority. Use the\n",
3970 " fingerprint to validate ",
3971 "the certificate manually!\n";
3972 }
3973 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
3974 print STDERR " - The certificate hostname ",
3975 "does not match.\n";
3976 }
3977 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
3978 print STDERR " - The certificate is not yet valid.\n";
3979 }
3980 if ($failures & $SVN::Auth::SSL::EXPIRED) {
3981 print STDERR " - The certificate has expired.\n";
3982 }
3983 if ($failures & $SVN::Auth::SSL::OTHER) {
3984 print STDERR " - The certificate has ",
3985 "an unknown error.\n";
3986 }
3987 } # no warnings 'once'
Eric Wong6f729592007-01-15 20:15:55 -08003988 printf STDERR
3989 "Certificate information:\n".
Eric Wong30d055a2006-11-24 01:38:04 -08003990 " - Hostname: %s\n".
3991 " - Valid: from %s until %s\n".
3992 " - Issuer: %s\n".
3993 " - Fingerprint: %s\n",
3994 map $cert_info->$_, qw(hostname valid_from valid_until
Eric Wong6f729592007-01-15 20:15:55 -08003995 issuer_dname fingerprint);
Eric Wong30d055a2006-11-24 01:38:04 -08003996 my $choice;
3997prompt:
Eric Wong6f729592007-01-15 20:15:55 -08003998 print STDERR $may_save ?
Eric Wong30d055a2006-11-24 01:38:04 -08003999 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
4000 "(R)eject or accept (t)emporarily? ";
Eric Wong6f729592007-01-15 20:15:55 -08004001 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08004002 $choice = lc(substr(<STDIN> || 'R', 0, 1));
4003 if ($choice =~ /^t$/i) {
4004 $cred->may_save(undef);
4005 } elsif ($choice =~ /^r$/i) {
4006 return -1;
4007 } elsif ($may_save && $choice =~ /^p$/i) {
4008 $cred->may_save($may_save);
4009 } else {
4010 goto prompt;
4011 }
4012 $cred->accepted_failures($failures);
4013 $SVN::_Core::SVN_NO_ERROR;
4014}
4015
Eric Wongd976acf2007-01-04 00:45:03 -08004016sub ssl_client_cert {
Eric Wong30d055a2006-11-24 01:38:04 -08004017 my ($cred, $realm, $may_save, $pool) = @_;
4018 $may_save = undef if $_no_auth_cache;
Eric Wong6f729592007-01-15 20:15:55 -08004019 print STDERR "Client certificate filename: ";
4020 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08004021 chomp(my $filename = <STDIN>);
4022 $cred->cert_file($filename);
4023 $cred->may_save($may_save);
4024 $SVN::_Core::SVN_NO_ERROR;
4025}
4026
Eric Wongd976acf2007-01-04 00:45:03 -08004027sub ssl_client_cert_pw {
Eric Wong30d055a2006-11-24 01:38:04 -08004028 my ($cred, $realm, $may_save, $pool) = @_;
4029 $may_save = undef if $_no_auth_cache;
4030 $cred->password(_read_password("Password: ", $realm));
4031 $cred->may_save($may_save);
4032 $SVN::_Core::SVN_NO_ERROR;
4033}
4034
Eric Wongd976acf2007-01-04 00:45:03 -08004035sub username {
Eric Wong30d055a2006-11-24 01:38:04 -08004036 my ($cred, $realm, $may_save, $pool) = @_;
4037 $may_save = undef if $_no_auth_cache;
4038 if (defined $realm && length $realm) {
Eric Wong6f729592007-01-15 20:15:55 -08004039 print STDERR "Authentication realm: $realm\n";
Eric Wong30d055a2006-11-24 01:38:04 -08004040 }
4041 my $username;
4042 if (defined $_username) {
4043 $username = $_username;
4044 } else {
Eric Wong6f729592007-01-15 20:15:55 -08004045 print STDERR "Username: ";
4046 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08004047 chomp($username = <STDIN>);
4048 }
4049 $cred->username($username);
4050 $cred->may_save($may_save);
4051 $SVN::_Core::SVN_NO_ERROR;
4052}
4053
4054sub _read_password {
4055 my ($prompt, $realm) = @_;
Eric Wong30d055a2006-11-24 01:38:04 -08004056 my $password = '';
Frank Li56a853b2010-03-02 19:47:52 +08004057 if (exists $ENV{GIT_ASKPASS}) {
4058 open(PH, "-|", $ENV{GIT_ASKPASS}, $prompt);
4059 $password = <PH>;
4060 $password =~ s/[\012\015]//; # \n\r
4061 close(PH);
4062 } else {
4063 print STDERR $prompt;
4064 STDERR->flush;
4065 require Term::ReadKey;
4066 Term::ReadKey::ReadMode('noecho');
4067 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
4068 last if $key =~ /[\012\015]/; # \n\r
4069 $password .= $key;
4070 }
4071 Term::ReadKey::ReadMode('restore');
4072 print STDERR "\n";
4073 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08004074 }
Eric Wong30d055a2006-11-24 01:38:04 -08004075 $password;
4076}
4077
Eric Wong27a1a802006-11-27 21:44:48 -08004078package SVN::Git::Fetcher;
4079use vars qw/@ISA/;
4080use strict;
4081use warnings;
4082use Carp qw/croak/;
4083use IO::File qw//;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004084use vars qw/$_ignore_regex/;
Eric Wong27a1a802006-11-27 21:44:48 -08004085
4086# file baton members: path, mode_a, mode_b, pool, fh, blob, base
4087sub new {
Eric Wong8841b372009-02-11 01:56:58 -08004088 my ($class, $git_svn, $switch_path) = @_;
Eric Wong27a1a802006-11-27 21:44:48 -08004089 my $self = SVN::Delta::Editor->new;
4090 bless $self, $class;
Eric Wongdbc6c742009-01-11 16:51:10 -08004091 if (exists $git_svn->{last_commit}) {
4092 $self->{c} = $git_svn->{last_commit};
Eric Wong8841b372009-02-11 01:56:58 -08004093 $self->{empty_symlinks} =
4094 _mark_empty_symlinks($git_svn, $switch_path);
Eric Wongdbc6c742009-01-11 16:51:10 -08004095 }
Ben Jackson0d8bee72009-04-11 10:46:17 -07004096 $self->{ignore_regex} = eval { command_oneline('config', '--get',
4097 "svn-remote.$git_svn->{repo_id}.ignore-paths") };
Eric Wongd2a9a872006-12-12 14:47:00 -08004098 $self->{empty} = {};
4099 $self->{dir_prop} = {};
4100 $self->{file_prop} = {};
4101 $self->{absent_dir} = {};
4102 $self->{absent_file} = {};
Eric Wongef3cfaa2007-01-24 03:30:57 -08004103 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
Dmitry Statyvka3713e222010-07-30 04:30:13 +02004104 $self->{pathnameencoding} = Git::config('svn.pathnameencoding');
Eric Wong27a1a802006-11-27 21:44:48 -08004105 $self;
4106}
4107
Eric Wongdbc6c742009-01-11 16:51:10 -08004108# this uses the Ra object, so it must be called before do_{switch,update},
4109# not inside them (when the Git::SVN::Fetcher object is passed) to
4110# do_{switch,update}
4111sub _mark_empty_symlinks {
Eric Wong8841b372009-02-11 01:56:58 -08004112 my ($git_svn, $switch_path) = @_;
Eric Wong4c58a712009-01-31 17:31:12 -08004113 my $bool = Git::config_bool('svn.brokenSymlinkWorkaround');
Eric Wong48679e52009-02-27 19:40:16 -08004114 return {} if (!defined($bool)) || (defined($bool) && ! $bool);
Eric Wong4c58a712009-01-31 17:31:12 -08004115
Eric Wongdbc6c742009-01-11 16:51:10 -08004116 my %ret;
4117 my ($rev, $cmt) = $git_svn->last_rev_commit;
4118 return {} unless ($rev && $cmt);
4119
Eric Wong4c58a712009-01-31 17:31:12 -08004120 # allow the warning to be printed for each revision we fetch to
4121 # ensure the user sees it. The user can also disable the workaround
4122 # on the repository even while git svn is running and the next
4123 # revision fetched will skip this expensive function.
4124 my $printed_warning;
Eric Wongdbc6c742009-01-11 16:51:10 -08004125 chomp(my $empty_blob = `git hash-object -t blob --stdin < /dev/null`);
4126 my ($ls, $ctx) = command_output_pipe(qw/ls-tree -r -z/, $cmt);
4127 local $/ = "\0";
Eric Wong8841b372009-02-11 01:56:58 -08004128 my $pfx = defined($switch_path) ? $switch_path : $git_svn->{path};
Eric Wongdbc6c742009-01-11 16:51:10 -08004129 $pfx .= '/' if length($pfx);
4130 while (<$ls>) {
4131 chomp;
4132 s/\A100644 blob $empty_blob\t//o or next;
Eric Wong4c58a712009-01-31 17:31:12 -08004133 unless ($printed_warning) {
4134 print STDERR "Scanning for empty symlinks, ",
4135 "this may take a while if you have ",
4136 "many empty files\n",
4137 "You may disable this with `",
4138 "git config svn.brokenSymlinkWorkaround ",
4139 "false'.\n",
4140 "This may be done in a different ",
4141 "terminal without restarting ",
4142 "git svn\n";
4143 $printed_warning = 1;
4144 }
Eric Wongdbc6c742009-01-11 16:51:10 -08004145 my $path = $_;
4146 my (undef, $props) =
4147 $git_svn->ra->get_file($pfx.$path, $rev, undef);
4148 if ($props->{'svn:special'}) {
4149 $ret{$path} = 1;
4150 }
4151 }
4152 command_close_pipe($ls, $ctx);
4153 \%ret;
4154}
4155
Eric Wongb03a71a2009-01-11 18:23:38 -08004156# returns true if a given path is inside a ".git" directory
4157sub in_dot_git {
4158 $_[0] =~ m{(?:^|/)\.git(?:/|$)};
4159}
4160
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004161# return value: 0 -- don't ignore, 1 -- ignore
4162sub is_path_ignored {
Ben Jackson0d8bee72009-04-11 10:46:17 -07004163 my ($self, $path) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004164 return 1 if in_dot_git($path);
Ben Jackson0d8bee72009-04-11 10:46:17 -07004165 return 1 if defined($self->{ignore_regex}) &&
4166 $path =~ m!$self->{ignore_regex}!;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02004167 return 0 unless defined($_ignore_regex);
4168 return 1 if $path =~ m!$_ignore_regex!o;
4169 return 0;
4170}
4171
Eric Wong8b8fc062007-01-22 11:44:57 -08004172sub set_path_strip {
4173 my ($self, $path) = @_;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08004174 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
Eric Wong8b8fc062007-01-22 11:44:57 -08004175}
4176
Eric Wongd2a9a872006-12-12 14:47:00 -08004177sub open_root {
4178 { path => '' };
4179}
4180
4181sub open_directory {
4182 my ($self, $path, $pb, $rev) = @_;
4183 { path => $path };
4184}
4185
Eric Wong706587f2007-01-18 17:50:01 -08004186sub git_path {
4187 my ($self, $path) = @_;
Dmitry Statyvka3713e222010-07-30 04:30:13 +02004188 if (my $enc = $self->{pathnameencoding}) {
4189 require Encode;
4190 Encode::from_to($path, 'UTF-8', $enc);
4191 }
Eric Wong2b27f6c2007-01-28 04:59:05 -08004192 if ($self->{path_strip}) {
4193 $path =~ s!$self->{path_strip}!! or
4194 die "Failed to strip path '$path' ($self->{path_strip})\n";
4195 }
Eric Wong706587f2007-01-18 17:50:01 -08004196 $path;
4197}
4198
Eric Wong27a1a802006-11-27 21:44:48 -08004199sub delete_entry {
4200 my ($self, $path, $rev, $pb) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004201 return undef if $self->is_path_ignored($path);
Eric Wong4a87db02007-01-04 01:38:18 -08004202
Eric Wong706587f2007-01-18 17:50:01 -08004203 my $gpath = $self->git_path($path);
Eric Wong8a603772007-01-31 02:45:50 -08004204 return undef if ($gpath eq '');
4205
Eric Wong4a87db02007-01-04 01:38:18 -08004206 # remove entire directories.
Eric Wong4f821012009-03-28 22:10:08 -07004207 my ($tree) = (command('ls-tree', '-z', $self->{c}, "./$gpath")
4208 =~ /\A040000 tree ([a-f\d]{40})\t\Q$gpath\E\0/);
4209 if ($tree) {
Eric Wong4a87db02007-01-04 01:38:18 -08004210 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
4211 -r --name-only -z/,
Eric Wong4f821012009-03-28 22:10:08 -07004212 $tree);
Eric Wong4a87db02007-01-04 01:38:18 -08004213 local $/ = "\0";
4214 while (<$ls>) {
Eric Wongef3cfaa2007-01-24 03:30:57 -08004215 chomp;
Eric Wong4f821012009-03-28 22:10:08 -07004216 my $rmpath = "$gpath/$_";
4217 $self->{gii}->remove($rmpath);
4218 print "\tD\t$rmpath\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08004219 }
Eric Wong9e3cdbd2007-02-09 12:23:47 -08004220 print "\tD\t$gpath/\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08004221 command_close_pipe($ls, $ctx);
Eric Wong4a87db02007-01-04 01:38:18 -08004222 } else {
Eric Wongef3cfaa2007-01-24 03:30:57 -08004223 $self->{gii}->remove($gpath);
Eric Wong9e3cdbd2007-02-09 12:23:47 -08004224 print "\tD\t$gpath\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08004225 }
Eric Wongf9ad77a2009-12-07 20:49:38 -08004226 $self->{empty}->{$path} = 0;
Eric Wong27a1a802006-11-27 21:44:48 -08004227 undef;
4228}
4229
4230sub open_file {
4231 my ($self, $path, $pb, $rev) = @_;
Eric Wongb03a71a2009-01-11 18:23:38 -08004232 my ($mode, $blob);
4233
Ben Jackson0d8bee72009-04-11 10:46:17 -07004234 goto out if $self->is_path_ignored($path);
Eric Wongb03a71a2009-01-11 18:23:38 -08004235
Eric Wong706587f2007-01-18 17:50:01 -08004236 my $gpath = $self->git_path($path);
Eric Wong4f821012009-03-28 22:10:08 -07004237 ($mode, $blob) = (command('ls-tree', '-z', $self->{c}, "./$gpath")
4238 =~ /\A(\d{6}) blob ([a-f\d]{40})\t\Q$gpath\E\0/);
Eric Wong006ede52006-12-08 01:55:19 -08004239 unless (defined $mode && defined $blob) {
4240 die "$path was not found in commit $self->{c} (r$rev)\n";
4241 }
Eric Wongdbc6c742009-01-11 16:51:10 -08004242 if ($mode eq '100644' && $self->{empty_symlinks}->{$path}) {
4243 $mode = '120000';
4244 }
Eric Wongb03a71a2009-01-11 18:23:38 -08004245out:
Eric Wong27a1a802006-11-27 21:44:48 -08004246 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
Eric Wong0864e3b2006-11-28 02:50:17 -08004247 pool => SVN::Pool->new, action => 'M' };
Eric Wong27a1a802006-11-27 21:44:48 -08004248}
4249
4250sub add_file {
4251 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
Eric Wongb03a71a2009-01-11 18:23:38 -08004252 my $mode;
4253
Ben Jackson0d8bee72009-04-11 10:46:17 -07004254 if (!$self->is_path_ignored($path)) {
Eric Wongb03a71a2009-01-11 18:23:38 -08004255 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
4256 delete $self->{empty}->{$dir};
4257 $mode = '100644';
4258 }
4259 { path => $path, mode_a => $mode, mode_b => $mode,
Eric Wong0864e3b2006-11-28 02:50:17 -08004260 pool => SVN::Pool->new, action => 'A' };
Eric Wong27a1a802006-11-27 21:44:48 -08004261}
4262
Eric Wongd2a9a872006-12-12 14:47:00 -08004263sub add_directory {
4264 my ($self, $path, $cp_path, $cp_rev) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004265 goto out if $self->is_path_ignored($path);
Eric Wong12a6d752007-12-14 08:39:09 -08004266 my $gpath = $self->git_path($path);
4267 if ($gpath eq '') {
4268 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
4269 -r --name-only -z/,
4270 $self->{c});
4271 local $/ = "\0";
4272 while (<$ls>) {
4273 chomp;
4274 $self->{gii}->remove($_);
4275 print "\tD\t$_\n" unless $::_q;
4276 }
4277 command_close_pipe($ls, $ctx);
4278 $self->{empty}->{$path} = 0;
4279 }
Eric Wongd2a9a872006-12-12 14:47:00 -08004280 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
4281 delete $self->{empty}->{$dir};
4282 $self->{empty}->{$path} = 1;
Eric Wongb03a71a2009-01-11 18:23:38 -08004283out:
Eric Wongd2a9a872006-12-12 14:47:00 -08004284 { path => $path };
4285}
4286
4287sub change_dir_prop {
4288 my ($self, $db, $prop, $value) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004289 return undef if $self->is_path_ignored($db->{path});
Eric Wongd2a9a872006-12-12 14:47:00 -08004290 $self->{dir_prop}->{$db->{path}} ||= {};
4291 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
4292 undef;
4293}
4294
4295sub absent_directory {
4296 my ($self, $path, $pb) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004297 return undef if $self->is_path_ignored($path);
Eric Wongd2a9a872006-12-12 14:47:00 -08004298 $self->{absent_dir}->{$pb->{path}} ||= [];
4299 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
4300 undef;
4301}
4302
4303sub absent_file {
4304 my ($self, $path, $pb) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004305 return undef if $self->is_path_ignored($path);
Eric Wongd2a9a872006-12-12 14:47:00 -08004306 $self->{absent_file}->{$pb->{path}} ||= [];
4307 push @{$self->{absent_file}->{$pb->{path}}}, $path;
4308 undef;
4309}
4310
Eric Wong27a1a802006-11-27 21:44:48 -08004311sub change_file_prop {
4312 my ($self, $fb, $prop, $value) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004313 return undef if $self->is_path_ignored($fb->{path});
Eric Wong27a1a802006-11-27 21:44:48 -08004314 if ($prop eq 'svn:executable') {
4315 if ($fb->{mode_b} != 120000) {
4316 $fb->{mode_b} = defined $value ? 100755 : 100644;
4317 }
4318 } elsif ($prop eq 'svn:special') {
4319 $fb->{mode_b} = defined $value ? 120000 : 100644;
Eric Wongd2a9a872006-12-12 14:47:00 -08004320 } else {
4321 $self->{file_prop}->{$fb->{path}} ||= {};
4322 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
Eric Wong27a1a802006-11-27 21:44:48 -08004323 }
4324 undef;
4325}
4326
4327sub apply_textdelta {
4328 my ($self, $fb, $exp) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004329 return undef if $self->is_path_ignored($fb->{path});
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004330 my $fh = $::_repository->temp_acquire('svn_delta');
Eric Wong27a1a802006-11-27 21:44:48 -08004331 # $fh gets auto-closed() by SVN::TxDelta::apply(),
4332 # (but $base does not,) so dup() it for reading in close_file
4333 open my $dup, '<&', $fh or croak $!;
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004334 my $base = $::_repository->temp_acquire('git_blob');
Eric Wongb03a71a2009-01-11 18:23:38 -08004335
Eric Wong27a1a802006-11-27 21:44:48 -08004336 if ($fb->{blob}) {
Eric Wongbaf5fa82009-01-11 16:51:11 -08004337 my ($base_is_link, $size);
4338
Eric Wongdbc6c742009-01-11 16:51:10 -08004339 if ($fb->{mode_a} eq '120000' &&
4340 ! $self->{empty_symlinks}->{$fb->{path}}) {
4341 print $base 'link ' or die "print $!\n";
Eric Wongbaf5fa82009-01-11 16:51:11 -08004342 $base_is_link = 1;
Eric Wongdbc6c742009-01-11 16:51:10 -08004343 }
Eric Wongbaf5fa82009-01-11 16:51:11 -08004344 retry:
4345 $size = $::_repository->cat_blob($fb->{blob}, $base);
Junio C Hamanod683a0e2008-05-27 23:33:22 -07004346 die "Failed to read object $fb->{blob}" if ($size < 0);
Eric Wong27a1a802006-11-27 21:44:48 -08004347
4348 if (defined $exp) {
4349 seek $base, 0, 0 or croak $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08004350 my $got = ::md5sum($base);
Eric Wongbaf5fa82009-01-11 16:51:11 -08004351 if ($got ne $exp) {
4352 my $err = "Checksum mismatch: ".
4353 "$fb->{path} $fb->{blob}\n" .
4354 "expected: $exp\n" .
4355 " got: $got\n";
4356 if ($base_is_link) {
4357 warn $err,
4358 "Retrying... (possibly ",
4359 "a bad symlink from SVN)\n";
4360 $::_repository->temp_reset($base);
4361 $base_is_link = 0;
4362 goto retry;
4363 }
4364 die $err;
4365 }
Eric Wong27a1a802006-11-27 21:44:48 -08004366 }
4367 }
4368 seek $base, 0, 0 or croak $!;
Marcus Griep0b191382008-08-12 12:00:53 -04004369 $fb->{fh} = $fh;
Eric Wong27a1a802006-11-27 21:44:48 -08004370 $fb->{base} = $base;
Marcus Griep0b191382008-08-12 12:00:53 -04004371 [ SVN::TxDelta::apply($base, $dup, undef, $fb->{path}, $fb->{pool}) ];
Eric Wong27a1a802006-11-27 21:44:48 -08004372}
4373
4374sub close_file {
4375 my ($self, $fb, $exp) = @_;
Ben Jackson0d8bee72009-04-11 10:46:17 -07004376 return undef if $self->is_path_ignored($fb->{path});
Eric Wongb03a71a2009-01-11 18:23:38 -08004377
Eric Wong27a1a802006-11-27 21:44:48 -08004378 my $hash;
Eric Wong706587f2007-01-18 17:50:01 -08004379 my $path = $self->git_path($fb->{path});
Eric Wong27a1a802006-11-27 21:44:48 -08004380 if (my $fh = $fb->{fh}) {
Eric Wong7faf0682007-05-27 15:59:01 -07004381 if (defined $exp) {
4382 seek($fh, 0, 0) or croak $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08004383 my $got = ::md5sum($fh);
Eric Wong7faf0682007-05-27 15:59:01 -07004384 if ($got ne $exp) {
4385 die "Checksum mismatch: $path\n",
4386 "expected: $exp\n got: $got\n";
4387 }
4388 }
Eric Wong27a1a802006-11-27 21:44:48 -08004389 if ($fb->{mode_b} == 120000) {
Marcus Griep510b0942008-08-12 12:45:39 -04004390 sysseek($fh, 0, 0) or croak $!;
Eric Wongdbc6c742009-01-11 16:51:10 -08004391 my $rd = sysread($fh, my $buf, 5);
Marcus Griep510b0942008-08-12 12:45:39 -04004392
Eric Wongdbc6c742009-01-11 16:51:10 -08004393 if (!defined $rd) {
4394 croak "sysread: $!\n";
4395 } elsif ($rd == 0) {
Marcus Griep510b0942008-08-12 12:45:39 -04004396 warn "$path has mode 120000",
Eric Wongdbc6c742009-01-11 16:51:10 -08004397 " but it points to nothing\n",
4398 "converting to an empty file with mode",
4399 " 100644\n";
4400 $fb->{mode_b} = '100644';
4401 } elsif ($buf ne 'link ') {
4402 warn "$path has mode 120000",
4403 " but is not a link\n";
Marcus Griep510b0942008-08-12 12:45:39 -04004404 } else {
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004405 my $tmp_fh = $::_repository->temp_acquire(
4406 'svn_hash');
Marcus Griep510b0942008-08-12 12:45:39 -04004407 my $res;
4408 while ($res = sysread($fh, my $str, 1024)) {
4409 my $out = syswrite($tmp_fh, $str, $res);
4410 defined($out) && $out == $res
4411 or croak("write ",
Marcus Griep836ff952008-09-08 12:53:01 -04004412 Git::temp_path($tmp_fh),
Marcus Griep510b0942008-08-12 12:45:39 -04004413 ": $!\n");
4414 }
4415 defined $res or croak $!;
4416
4417 ($fh, $tmp_fh) = ($tmp_fh, $fh);
4418 Git::temp_release($tmp_fh, 1);
Eric Wong7fc35e02007-12-19 00:06:45 -08004419 }
Eric Wong27a1a802006-11-27 21:44:48 -08004420 }
Adam Robenffe256f2008-05-23 16:19:41 +02004421
Marcus Griep0b191382008-08-12 12:00:53 -04004422 $hash = $::_repository->hash_and_insert_object(
Marcus Griep836ff952008-09-08 12:53:01 -04004423 Git::temp_path($fh));
Eric Wong27a1a802006-11-27 21:44:48 -08004424 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
Marcus Griep0b191382008-08-12 12:00:53 -04004425
4426 Git::temp_release($fb->{base}, 1);
Marcus Griep510b0942008-08-12 12:45:39 -04004427 Git::temp_release($fh, 1);
Eric Wong27a1a802006-11-27 21:44:48 -08004428 } else {
4429 $hash = $fb->{blob} or die "no blob information\n";
4430 }
4431 $fb->{pool}->clear;
Eric Wongef3cfaa2007-01-24 03:30:57 -08004432 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
Eric Wong9e3cdbd2007-02-09 12:23:47 -08004433 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
Eric Wong27a1a802006-11-27 21:44:48 -08004434 undef;
4435}
4436
4437sub abort_edit {
4438 my $self = shift;
Eric Wongef3cfaa2007-01-24 03:30:57 -08004439 $self->{nr} = $self->{gii}->{nr};
4440 delete $self->{gii};
Eric Wong27a1a802006-11-27 21:44:48 -08004441 $self->SUPER::abort_edit(@_);
4442}
4443
4444sub close_edit {
4445 my $self = shift;
Eric Wongdad73c02006-11-28 14:06:05 -08004446 $self->{git_commit_ok} = 1;
Eric Wongef3cfaa2007-01-24 03:30:57 -08004447 $self->{nr} = $self->{gii}->{nr};
4448 delete $self->{gii};
Eric Wong27a1a802006-11-27 21:44:48 -08004449 $self->SUPER::close_edit(@_);
4450}
Eric Wong1a82e792006-06-16 02:55:13 -07004451
Eric Wonga5e0ced2006-06-12 15:23:48 -07004452package SVN::Git::Editor;
Eric Wong24e22aa2007-01-29 00:07:49 -08004453use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004454use strict;
4455use warnings;
4456use Carp qw/croak/;
4457use IO::File;
4458
4459sub new {
Eric Wong61395352007-01-27 14:33:08 -08004460 my ($class, $opts) = @_;
4461 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
4462 die "$_ required!\n" unless (defined $opts->{$_});
Eric Wonga5e0ced2006-06-12 15:23:48 -07004463 }
Eric Wong61395352007-01-27 14:33:08 -08004464
4465 my $pool = SVN::Pool->new;
4466 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
4467 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
4468 $opts->{r}, $mods);
4469
4470 # $opts->{ra} functions should not be used after this:
4471 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
4472 $opts->{editor_cb}, $pool);
4473 my $self = SVN::Delta::Editor->new(@ce, $pool);
4474 bless $self, $class;
4475 foreach (qw/svn_path r tree_a tree_b/) {
4476 $self->{$_} = $opts->{$_};
4477 }
4478 $self->{url} = $opts->{ra}->{url};
4479 $self->{mods} = $mods;
4480 $self->{types} = $types;
4481 $self->{pool} = $pool;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004482 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
4483 $self->{rm} = { };
Eric Wongd3a840d2007-01-26 01:32:45 -08004484 $self->{path_prefix} = length $self->{svn_path} ?
4485 "$self->{svn_path}/" : '';
Brad King128de652008-07-25 11:32:37 -04004486 $self->{config} = $opts->{config};
Steven Walter6abd9332010-09-24 23:51:50 -04004487 $self->{mergeinfo} = $opts->{mergeinfo};
Eric Wonga5e0ced2006-06-12 15:23:48 -07004488 return $self;
4489}
4490
Eric Wong61395352007-01-27 14:33:08 -08004491sub generate_diff {
4492 my ($tree_a, $tree_b) = @_;
4493 my @diff_tree = qw(diff-tree -z -r);
Eric Wong24e22aa2007-01-29 00:07:49 -08004494 if ($_cp_similarity) {
4495 push @diff_tree, "-C$_cp_similarity";
Eric Wong61395352007-01-27 14:33:08 -08004496 } else {
4497 push @diff_tree, '-C';
4498 }
Eric Wong24e22aa2007-01-29 00:07:49 -08004499 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
4500 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
Eric Wong61395352007-01-27 14:33:08 -08004501 push @diff_tree, $tree_a, $tree_b;
4502 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
4503 local $/ = "\0";
4504 my $state = 'meta';
4505 my @mods;
4506 while (<$diff_fh>) {
4507 chomp $_; # this gets rid of the trailing "\0"
4508 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
Florian Weimer2d0c8ac2008-08-31 17:05:09 +02004509 ($::sha1)\s($::sha1)\s
Eric Wong61395352007-01-27 14:33:08 -08004510 ([MTCRAD])\d*$/xo) {
4511 push @mods, { mode_a => $1, mode_b => $2,
Florian Weimer2d0c8ac2008-08-31 17:05:09 +02004512 sha1_a => $3, sha1_b => $4,
4513 chg => $5 };
4514 if ($5 =~ /^(?:C|R)$/) {
Eric Wong61395352007-01-27 14:33:08 -08004515 $state = 'file_a';
4516 } else {
4517 $state = 'file_b';
4518 }
4519 } elsif ($state eq 'file_a') {
4520 my $x = $mods[$#mods] or croak "Empty array\n";
4521 if ($x->{chg} !~ /^(?:C|R)$/) {
4522 croak "Error parsing $_, $x->{chg}\n";
4523 }
4524 $x->{file_a} = $_;
4525 $state = 'file_b';
4526 } elsif ($state eq 'file_b') {
4527 my $x = $mods[$#mods] or croak "Empty array\n";
4528 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
4529 croak "Error parsing $_, $x->{chg}\n";
4530 }
4531 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
4532 croak "Error parsing $_, $x->{chg}\n";
4533 }
4534 $x->{file_b} = $_;
4535 $state = 'meta';
4536 } else {
4537 croak "Error parsing $_\n";
4538 }
4539 }
4540 command_close_pipe($diff_fh, $ctx);
4541 \@mods;
4542}
4543
4544sub check_diff_paths {
4545 my ($ra, $pfx, $rev, $mods) = @_;
4546 my %types;
4547 $pfx .= '/' if length $pfx;
4548
4549 sub type_diff_paths {
4550 my ($ra, $types, $path, $rev) = @_;
4551 my @p = split m#/+#, $path;
4552 my $c = shift @p;
4553 unless (defined $types->{$c}) {
4554 $types->{$c} = $ra->check_path($c, $rev);
4555 }
4556 while (@p) {
4557 $c .= '/' . shift @p;
4558 next if defined $types->{$c};
4559 $types->{$c} = $ra->check_path($c, $rev);
4560 }
4561 }
4562
4563 foreach my $m (@$mods) {
4564 foreach my $f (qw/file_a file_b/) {
4565 next unless defined $m->{$f};
4566 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
4567 if (length $pfx.$dir && ! defined $types{$dir}) {
4568 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
4569 }
4570 }
4571 }
4572 \%types;
4573}
4574
Eric Wonga5e0ced2006-06-12 15:23:48 -07004575sub split_path {
4576 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
4577}
4578
4579sub repo_path {
Eric Wongd3a840d2007-01-26 01:32:45 -08004580 my ($self, $path) = @_;
Dmitry Statyvka3713e222010-07-30 04:30:13 +02004581 if (my $enc = $self->{pathnameencoding}) {
4582 require Encode;
4583 Encode::from_to($path, $enc, 'UTF-8');
4584 }
Eric Wongd3a840d2007-01-26 01:32:45 -08004585 $self->{path_prefix}.(defined $path ? $path : '');
Eric Wonga5e0ced2006-06-12 15:23:48 -07004586}
4587
4588sub url_path {
4589 my ($self, $path) = @_;
Eric Wong29633bb2007-07-15 21:53:50 -07004590 if ($self->{url} =~ m#^https?://#) {
Eric Wong884cce52009-07-25 02:29:28 -07004591 $path =~ s!([^~a-zA-Z0-9_./-])!uc sprintf("%%%02x",ord($1))!eg;
Eric Wong29633bb2007-07-15 21:53:50 -07004592 }
Eric Wong6e8548c2007-01-27 01:32:00 -08004593 $self->{url} . '/' . $self->repo_path($path);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004594}
4595
4596sub rmdirs {
Eric Wong61395352007-01-27 14:33:08 -08004597 my ($self) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004598 my $rm = $self->{rm};
4599 delete $rm->{''}; # we never delete the url we're tracking
4600 return unless %$rm;
4601
4602 foreach (keys %$rm) {
4603 my @d = split m#/#, $_;
4604 my $c = shift @d;
4605 $rm->{$c} = 1;
4606 while (@d) {
4607 $c .= '/' . shift @d;
4608 $rm->{$c} = 1;
4609 }
4610 }
4611 delete $rm->{$self->{svn_path}};
4612 delete $rm->{''}; # we never delete the url we're tracking
4613 return unless %$rm;
4614
Eric Wong61395352007-01-27 14:33:08 -08004615 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
4616 $self->{tree_b});
Eric Wonga5e0ced2006-06-12 15:23:48 -07004617 local $/ = "\0";
4618 while (<$fh>) {
4619 chomp;
Eric Wong747fa122006-11-24 22:38:17 -08004620 my @dn = split m#/#, $_;
Eric Wongc07eee12006-06-19 17:59:35 -07004621 while (pop @dn) {
4622 delete $rm->{join '/', @dn};
4623 }
4624 unless (%$rm) {
Eric Wong22600a22007-02-01 13:12:26 -08004625 close $fh;
Eric Wongc07eee12006-06-19 17:59:35 -07004626 return;
4627 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07004628 }
Eric Wongaef4e922006-12-15 10:59:54 -08004629 command_close_pipe($fh, $ctx);
Eric Wongc07eee12006-06-19 17:59:35 -07004630
Eric Wonga5e0ced2006-06-12 15:23:48 -07004631 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
4632 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
4633 $self->close_directory($bat->{$d}, $p);
4634 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
Eric Wong44320b92007-01-13 22:35:53 -08004635 print "\tD+\t$d/\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004636 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
4637 delete $bat->{$d};
4638 }
4639}
4640
4641sub open_or_add_dir {
4642 my ($self, $full_path, $baton) = @_;
Eric Wong6e8548c2007-01-27 01:32:00 -08004643 my $t = $self->{types}->{$full_path};
4644 if (!defined $t) {
4645 die "$full_path not known in r$self->{r} or we have a bug!\n";
4646 }
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004647 {
4648 no warnings 'once';
4649 # SVN::Node::none and SVN::Node::file are used only once,
4650 # so we're shutting up Perl's warnings about them.
4651 if ($t == $SVN::Node::none) {
4652 return $self->add_directory($full_path, $baton,
4653 undef, -1, $self->{pool});
4654 } elsif ($t == $SVN::Node::dir) {
4655 return $self->open_directory($full_path, $baton,
4656 $self->{r}, $self->{pool});
4657 } # no warnings 'once'
4658 print STDERR "$full_path already exists in repository at ",
4659 "r$self->{r} and it is not a directory (",
4660 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
4661 } # no warnings 'once'
Eric Wonga5e0ced2006-06-12 15:23:48 -07004662 exit 1;
4663}
4664
4665sub ensure_path {
4666 my ($self, $path) = @_;
4667 my $bat = $self->{bat};
Eric Wong6e8548c2007-01-27 01:32:00 -08004668 my $repo_path = $self->repo_path($path);
4669 return $bat->{''} unless (length $repo_path);
4670 my @p = split m#/+#, $repo_path;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004671 my $c = shift @p;
4672 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
4673 while (@p) {
4674 my $c0 = $c;
4675 $c .= '/' . shift @p;
4676 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
4677 }
4678 return $bat->{$c};
4679}
4680
Brad King128de652008-07-25 11:32:37 -04004681# Subroutine to convert a globbing pattern to a regular expression.
4682# From perl cookbook.
4683sub glob2pat {
4684 my $globstr = shift;
4685 my %patmap = ('*' => '.*', '?' => '.', '[' => '[', ']' => ']');
4686 $globstr =~ s{(.)} { $patmap{$1} || "\Q$1" }ge;
4687 return '^' . $globstr . '$';
4688}
4689
4690sub check_autoprop {
4691 my ($self, $pattern, $properties, $file, $fbat) = @_;
4692 # Convert the globbing pattern to a regular expression.
4693 my $regex = glob2pat($pattern);
4694 # Check if the pattern matches the file name.
4695 if($file =~ m/($regex)/) {
4696 # Parse the list of properties to set.
4697 my @props = split(/;/, $properties);
4698 foreach my $prop (@props) {
4699 # Parse 'name=value' syntax and set the property.
4700 if ($prop =~ /([^=]+)=(.*)/) {
4701 my ($n,$v) = ($1,$2);
4702 for ($n, $v) {
4703 s/^\s+//; s/\s+$//;
4704 }
4705 $self->change_file_prop($fbat, $n, $v);
4706 }
4707 }
4708 }
4709}
4710
4711sub apply_autoprops {
4712 my ($self, $file, $fbat) = @_;
4713 my $conf_t = ${$self->{config}}{'config'};
4714 no warnings 'once';
4715 # Check [miscellany]/enable-auto-props in svn configuration.
4716 if (SVN::_Core::svn_config_get_bool(
4717 $conf_t,
4718 $SVN::_Core::SVN_CONFIG_SECTION_MISCELLANY,
4719 $SVN::_Core::SVN_CONFIG_OPTION_ENABLE_AUTO_PROPS,
4720 0)) {
4721 # Auto-props are enabled. Enumerate them to look for matches.
4722 my $callback = sub {
4723 $self->check_autoprop($_[0], $_[1], $file, $fbat);
4724 };
4725 SVN::_Core::svn_config_enumerate(
4726 $conf_t,
4727 $SVN::_Core::SVN_CONFIG_SECTION_AUTO_PROPS,
4728 $callback);
4729 }
4730}
4731
Eric Wonga5e0ced2006-06-12 15:23:48 -07004732sub A {
Eric Wong44320b92007-01-13 22:35:53 -08004733 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004734 my ($dir, $file) = split_path($m->{file_b});
4735 my $pbat = $self->ensure_path($dir);
4736 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4737 undef, -1);
Eric Wong44320b92007-01-13 22:35:53 -08004738 print "\tA\t$m->{file_b}\n" unless $::_q;
Brad King128de652008-07-25 11:32:37 -04004739 $self->apply_autoprops($file, $fbat);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004740 $self->chg_file($fbat, $m);
4741 $self->close_file($fbat,undef,$self->{pool});
4742}
4743
4744sub C {
Eric Wong44320b92007-01-13 22:35:53 -08004745 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004746 my ($dir, $file) = split_path($m->{file_b});
4747 my $pbat = $self->ensure_path($dir);
4748 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4749 $self->url_path($m->{file_a}), $self->{r});
Eric Wong44320b92007-01-13 22:35:53 -08004750 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004751 $self->chg_file($fbat, $m);
4752 $self->close_file($fbat,undef,$self->{pool});
4753}
4754
4755sub delete_entry {
4756 my ($self, $path, $pbat) = @_;
4757 my $rpath = $self->repo_path($path);
4758 my ($dir, $file) = split_path($rpath);
4759 $self->{rm}->{$dir} = 1;
4760 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
4761}
4762
4763sub R {
Eric Wong44320b92007-01-13 22:35:53 -08004764 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004765 my ($dir, $file) = split_path($m->{file_b});
4766 my $pbat = $self->ensure_path($dir);
4767 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
4768 $self->url_path($m->{file_a}), $self->{r});
Eric Wong44320b92007-01-13 22:35:53 -08004769 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
Paul Talacko7c4d0212008-09-06 18:50:38 -07004770 $self->apply_autoprops($file, $fbat);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004771 $self->chg_file($fbat, $m);
4772 $self->close_file($fbat,undef,$self->{pool});
4773
4774 ($dir, $file) = split_path($m->{file_a});
4775 $pbat = $self->ensure_path($dir);
4776 $self->delete_entry($m->{file_a}, $pbat);
4777}
4778
4779sub M {
Eric Wong44320b92007-01-13 22:35:53 -08004780 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004781 my ($dir, $file) = split_path($m->{file_b});
4782 my $pbat = $self->ensure_path($dir);
4783 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
4784 $pbat,$self->{r},$self->{pool});
Eric Wong44320b92007-01-13 22:35:53 -08004785 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004786 $self->chg_file($fbat, $m);
4787 $self->close_file($fbat,undef,$self->{pool});
4788}
4789
4790sub T { shift->M(@_) }
4791
4792sub change_file_prop {
4793 my ($self, $fbat, $pname, $pval) = @_;
4794 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
4795}
4796
Steven Walter6abd9332010-09-24 23:51:50 -04004797sub change_dir_prop {
4798 my ($self, $pbat, $pname, $pval) = @_;
4799 $self->SUPER::change_dir_prop($pbat, $pname, $pval, $self->{pool});
4800}
4801
Florian Weimer214a34d2008-08-31 17:45:04 +02004802sub _chg_file_get_blob ($$$$) {
4803 my ($self, $fbat, $m, $which) = @_;
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08004804 my $fh = $::_repository->temp_acquire("git_blob_$which");
Florian Weimer214a34d2008-08-31 17:45:04 +02004805 if ($m->{"mode_$which"} =~ /^120/) {
4806 print $fh 'link ' or croak $!;
4807 $self->change_file_prop($fbat,'svn:special','*');
4808 } elsif ($m->{mode_a} =~ /^120/ && $m->{"mode_$which"} !~ /^120/) {
4809 $self->change_file_prop($fbat,'svn:special',undef);
4810 }
4811 my $blob = $m->{"sha1_$which"};
4812 return ($fh,) if ($blob =~ /^0{40}$/);
4813 my $size = $::_repository->cat_blob($blob, $fh);
4814 croak "Failed to read object $blob" if ($size < 0);
4815 $fh->flush == 0 or croak $!;
4816 seek $fh, 0, 0 or croak $!;
4817
4818 my $exp = ::md5sum($fh);
4819 seek $fh, 0, 0 or croak $!;
4820 return ($fh, $exp);
4821}
4822
Eric Wonga5e0ced2006-06-12 15:23:48 -07004823sub chg_file {
4824 my ($self, $fbat, $m) = @_;
4825 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
4826 $self->change_file_prop($fbat,'svn:executable','*');
4827 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
4828 $self->change_file_prop($fbat,'svn:executable',undef);
4829 }
Florian Weimer8598db932008-08-31 17:47:09 +02004830 my ($fh_a, $exp_a) = _chg_file_get_blob $self, $fbat, $m, 'a';
4831 my ($fh_b, $exp_b) = _chg_file_get_blob $self, $fbat, $m, 'b';
Eric Wongf7197df2006-10-14 15:48:35 -07004832 my $pool = SVN::Pool->new;
Florian Weimer8598db932008-08-31 17:47:09 +02004833 my $atd = $self->apply_textdelta($fbat, $exp_a, $pool);
4834 if (-s $fh_a) {
4835 my $txstream = SVN::TxDelta::new ($fh_a, $fh_b, $pool);
Eric Wong991255c2008-08-31 19:45:07 -07004836 my $res = SVN::TxDelta::send_txstream($txstream, @$atd, $pool);
4837 if (defined $res) {
4838 die "Unexpected result from send_txstream: $res\n",
4839 "(SVN::Core::VERSION: $SVN::Core::VERSION)\n";
4840 }
Florian Weimer8598db932008-08-31 17:47:09 +02004841 } else {
4842 my $got = SVN::TxDelta::send_stream($fh_b, @$atd, $pool);
4843 die "Checksum mismatch\nexpected: $exp_b\ngot: $got\n"
4844 if ($got ne $exp_b);
4845 }
4846 Git::temp_release($fh_b, 1);
4847 Git::temp_release($fh_a, 1);
Eric Wongf7197df2006-10-14 15:48:35 -07004848 $pool->clear;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004849}
4850
4851sub D {
Eric Wong44320b92007-01-13 22:35:53 -08004852 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004853 my ($dir, $file) = split_path($m->{file_b});
4854 my $pbat = $self->ensure_path($dir);
Eric Wong44320b92007-01-13 22:35:53 -08004855 print "\tD\t$m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004856 $self->delete_entry($m->{file_b}, $pbat);
4857}
4858
4859sub close_edit {
4860 my ($self) = @_;
4861 my ($p,$bat) = ($self->{pool}, $self->{bat});
4862 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
Eric Wong64427542007-05-19 02:58:37 -07004863 next if $_ eq '';
Eric Wonga5e0ced2006-06-12 15:23:48 -07004864 $self->close_directory($bat->{$_}, $p);
4865 }
Eric Wong64427542007-05-19 02:58:37 -07004866 $self->close_directory($bat->{''}, $p);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004867 $self->SUPER::close_edit($p);
4868 $p->clear;
4869}
4870
4871sub abort_edit {
4872 my ($self) = @_;
4873 $self->SUPER::abort_edit($self->{pool});
Eric Wong61395352007-01-27 14:33:08 -08004874}
4875
4876sub DESTROY {
4877 my $self = shift;
4878 $self->SUPER::DESTROY(@_);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004879 $self->{pool}->clear;
4880}
4881
Eric Wong44320b92007-01-13 22:35:53 -08004882# this drives the editor
4883sub apply_diff {
Eric Wong61395352007-01-27 14:33:08 -08004884 my ($self) = @_;
4885 my $mods = $self->{mods};
Eric Wong44320b92007-01-13 22:35:53 -08004886 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
Eric Wong6e8548c2007-01-27 01:32:00 -08004887 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
Eric Wong44320b92007-01-13 22:35:53 -08004888 my $f = $m->{chg};
4889 if (defined $o{$f}) {
4890 $self->$f($m);
4891 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004892 fatal("Invalid change type: $f");
Eric Wong44320b92007-01-13 22:35:53 -08004893 }
4894 }
Steven Walter6abd9332010-09-24 23:51:50 -04004895
4896 if (defined($self->{mergeinfo})) {
4897 $self->change_dir_prop($self->{bat}{''}, "svn:mergeinfo",
4898 $self->{mergeinfo});
4899 }
Eric Wong24e22aa2007-01-29 00:07:49 -08004900 $self->rmdirs if $_rmdir;
Eric Wong6e8548c2007-01-27 01:32:00 -08004901 if (@$mods == 0) {
Eric Wong44320b92007-01-13 22:35:53 -08004902 $self->abort_edit;
4903 } else {
4904 $self->close_edit;
4905 }
Eric Wong6e8548c2007-01-27 01:32:00 -08004906 return scalar @$mods;
Eric Wong44320b92007-01-13 22:35:53 -08004907}
4908
Eric Wongd81bf822007-01-10 01:22:38 -08004909package Git::SVN::Ra;
Eric Wong6af1db42007-02-14 16:04:10 -08004910use vars qw/@ISA $config_dir $_log_window_size/;
Eric Wongd81bf822007-01-10 01:22:38 -08004911use strict;
4912use warnings;
Eric Wonga51cdb02007-09-07 04:00:40 -07004913my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
Eric Wongd81bf822007-01-10 01:22:38 -08004914
4915BEGIN {
4916 # enforce temporary pool usage for some simple functions
Sam Vilainc5f71ad2007-06-15 15:43:59 +12004917 no strict 'refs';
Eric Wongbf8a40b2009-01-25 15:35:52 -08004918 for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root
4919 get_file/) {
Sam Vilainc5f71ad2007-06-15 15:43:59 +12004920 my $SUPER = "SUPER::$f";
4921 *$f = sub {
4922 my $self = shift;
4923 my $pool = SVN::Pool->new;
4924 my @ret = $self->$SUPER(@_,$pool);
4925 $pool->clear;
4926 wantarray ? @ret : $ret[0];
4927 };
Eric Wongd81bf822007-01-10 01:22:38 -08004928 }
Eric Wongd81bf822007-01-10 01:22:38 -08004929}
4930
Steven Walter9ff74e92007-09-28 13:24:19 -04004931sub _auth_providers () {
4932 [
4933 SVN::Client::get_simple_provider(),
4934 SVN::Client::get_ssl_server_trust_file_provider(),
4935 SVN::Client::get_simple_prompt_provider(
4936 \&Git::SVN::Prompt::simple, 2),
4937 SVN::Client::get_ssl_client_cert_file_provider(),
4938 SVN::Client::get_ssl_client_cert_prompt_provider(
4939 \&Git::SVN::Prompt::ssl_client_cert, 2),
Sebastian Noack77266e92008-02-25 15:56:28 +01004940 SVN::Client::get_ssl_client_cert_pw_file_provider(),
Steven Walter9ff74e92007-09-28 13:24:19 -04004941 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
4942 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
4943 SVN::Client::get_username_provider(),
4944 SVN::Client::get_ssl_server_trust_prompt_provider(
4945 \&Git::SVN::Prompt::ssl_server_trust),
4946 SVN::Client::get_username_prompt_provider(
4947 \&Git::SVN::Prompt::username, 2)
4948 ]
4949}
4950
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004951sub escape_uri_only {
4952 my ($uri) = @_;
4953 my @tmp;
4954 foreach (split m{/}, $uri) {
Eric Wong6a004d32008-10-21 14:12:15 -07004955 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004956 push @tmp, $_;
4957 }
4958 join('/', @tmp);
4959}
4960
4961sub escape_url {
4962 my ($url) = @_;
4963 if ($url =~ m#^(https?)://([^/]+)(.*)$#) {
4964 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
4965 $url = "$scheme://$domain$uri";
4966 }
4967 $url;
4968}
4969
Eric Wongd81bf822007-01-10 01:22:38 -08004970sub new {
4971 my ($class, $url) = @_;
Eric Wongf6f09872007-01-18 18:22:18 -08004972 $url =~ s!/+$!!;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004973 return $RA if ($RA && $RA->{url} eq $url);
Eric Wongf6f09872007-01-18 18:22:18 -08004974
josh robbd32fad22010-02-24 16:13:50 +13004975 ::_req_svn();
4976
Eric Wongd81bf822007-01-10 01:22:38 -08004977 SVN::_Core::svn_config_ensure($config_dir, undef);
Steven Walter9ff74e92007-09-28 13:24:19 -04004978 my ($baton, $callbacks) = SVN::Core::auth_open_helper(_auth_providers);
Eric Wongd81bf822007-01-10 01:22:38 -08004979 my $config = SVN::Core::config_get_config($config_dir);
Eric Wong7730fbe2007-07-04 14:07:42 -07004980 $RA = undef;
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004981 my $dont_store_passwords = 1;
4982 my $conf_t = ${$config}{'config'};
4983 {
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004984 no warnings 'once';
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004985 # The usage of $SVN::_Core::SVN_CONFIG_* variables
4986 # produces warnings that variables are used only once.
4987 # I had not found the better way to shut them up, so
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004988 # the warnings of type 'once' are disabled in this block.
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004989 if (SVN::_Core::svn_config_get_bool($conf_t,
4990 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4991 $SVN::_Core::SVN_CONFIG_OPTION_STORE_PASSWORDS,
4992 1) == 0) {
4993 SVN::_Core::svn_auth_set_parameter($baton,
4994 $SVN::_Core::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS,
4995 bless (\$dont_store_passwords, "_p_void"));
4996 }
4997 if (SVN::_Core::svn_config_get_bool($conf_t,
4998 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4999 $SVN::_Core::SVN_CONFIG_OPTION_STORE_AUTH_CREDS,
5000 1) == 0) {
5001 $Git::SVN::Prompt::_no_auth_cache = 1;
5002 }
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04005003 } # no warnings 'once'
Eric Wongcfbe7ab2007-11-11 23:37:42 -08005004 my $self = SVN::Ra->new(url => escape_url($url), auth => $baton,
Eric Wongd81bf822007-01-10 01:22:38 -08005005 config => $config,
5006 pool => SVN::Pool->new,
5007 auth_provider_callbacks => $callbacks);
Eric Wongcfbe7ab2007-11-11 23:37:42 -08005008 $self->{url} = $url;
Eric Wongd81bf822007-01-10 01:22:38 -08005009 $self->{svn_path} = $url;
5010 $self->{repos_root} = $self->get_repos_root;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08005011 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
Eric Wong0dc03d62007-05-13 01:04:43 -07005012 $self->{cache} = { check_path => { r => 0, data => {} },
5013 get_dir => { r => 0, data => {} } };
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005014 $RA = bless $self, $class;
Eric Wongd81bf822007-01-10 01:22:38 -08005015}
5016
Eric Wong0dc03d62007-05-13 01:04:43 -07005017sub check_path {
5018 my ($self, $path, $r) = @_;
5019 my $cache = $self->{cache}->{check_path};
5020 if ($r == $cache->{r} && exists $cache->{data}->{$path}) {
5021 return $cache->{data}->{$path};
5022 }
5023 my $pool = SVN::Pool->new;
5024 my $t = $self->SUPER::check_path($path, $r, $pool);
5025 $pool->clear;
5026 if ($r != $cache->{r}) {
5027 %{$cache->{data}} = ();
5028 $cache->{r} = $r;
5029 }
5030 $cache->{data}->{$path} = $t;
5031}
5032
5033sub get_dir {
5034 my ($self, $dir, $r) = @_;
5035 my $cache = $self->{cache}->{get_dir};
5036 if ($r == $cache->{r}) {
5037 if (my $x = $cache->{data}->{$dir}) {
5038 return wantarray ? @$x : $x->[0];
5039 }
5040 }
5041 my $pool = SVN::Pool->new;
5042 my ($d, undef, $props) = $self->SUPER::get_dir($dir, $r, $pool);
5043 my %dirents = map { $_ => { kind => $d->{$_}->kind } } keys %$d;
5044 $pool->clear;
5045 if ($r != $cache->{r}) {
5046 %{$cache->{data}} = ();
5047 $cache->{r} = $r;
5048 }
5049 $cache->{data}->{$dir} = [ \%dirents, $r, $props ];
5050 wantarray ? (\%dirents, $r, $props) : \%dirents;
5051}
5052
Eric Wongd81bf822007-01-10 01:22:38 -08005053sub DESTROY {
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005054 # do not call the real DESTROY since we store ourselves in $RA
Eric Wongd81bf822007-01-10 01:22:38 -08005055}
5056
Eric Wong1ef626b2009-01-17 22:11:44 -08005057# get_log(paths, start, end, limit,
5058# discover_changed_paths, strict_node_history, receiver)
Eric Wongd81bf822007-01-10 01:22:38 -08005059sub get_log {
5060 my ($self, @args) = @_;
5061 my $pool = SVN::Pool->new;
Eric Wong1ef626b2009-01-17 22:11:44 -08005062
Mattias Nissler3c49a032009-07-07 01:39:52 +02005063 # svn_log_changed_path_t objects passed to get_log are likely to be
5064 # overwritten even if only the refs are copied to an external variable,
5065 # so we should dup the structures in their entirety. Using an
5066 # externally passed pool (instead of our temporary and quickly cleared
5067 # pool in Git::SVN::Ra) does not help matters at all...
5068 my $receiver = pop @args;
Mattias Nissler0b2af452009-07-07 01:40:02 +02005069 my $prefix = "/".$self->{svn_path};
5070 $prefix =~ s#/+($)##;
5071 my $prefix_regex = qr#^\Q$prefix\E#;
Mattias Nissler3c49a032009-07-07 01:39:52 +02005072 push(@args, sub {
5073 my ($paths) = $_[0];
5074 return &$receiver(@_) unless $paths;
5075 $_[0] = ();
5076 foreach my $p (keys %$paths) {
5077 my $i = $paths->{$p};
Mattias Nissler0b2af452009-07-07 01:40:02 +02005078 # Make path relative to our url, not repos_root
5079 $p =~ s/$prefix_regex//;
5080 my %s = map { $_ => $i->$_; }
5081 qw/copyfrom_path copyfrom_rev action/;
5082 if ($s{'copyfrom_path'}) {
5083 $s{'copyfrom_path'} =~ s/$prefix_regex//;
5084 }
Mattias Nissler3c49a032009-07-07 01:39:52 +02005085 $_[0]{$p} = \%s;
5086 }
5087 &$receiver(@_);
5088 });
5089
5090
Eric Wong1ef626b2009-01-17 22:11:44 -08005091 # the limit parameter was not supported in SVN 1.1.x, so we
5092 # drop it. Therefore, the receiver callback passed to it
5093 # is made aware of this limitation by being wrapped if
5094 # the limit passed to is being wrapped.
5095 if ($SVN::Core::VERSION le '1.2.0') {
5096 my $limit = splice(@args, 3, 1);
5097 if ($limit > 0) {
5098 my $receiver = pop @args;
5099 push(@args, sub { &$receiver(@_) if (--$limit >= 0) });
5100 }
5101 }
Eric Wongd81bf822007-01-10 01:22:38 -08005102 my $ret = $self->SUPER::get_log(@args, $pool);
5103 $pool->clear;
5104 $ret;
5105}
5106
Steven Walter9ff74e92007-09-28 13:24:19 -04005107sub trees_match {
5108 my ($self, $url1, $rev1, $url2, $rev2) = @_;
5109 my $ctx = SVN::Client->new(auth => _auth_providers);
5110 my $out = IO::File->new_tmpfile;
5111
5112 # older SVN (1.1.x) doesn't take $pool as the last parameter for
5113 # $ctx->diff(), so we'll create a default one
5114 my $pool = SVN::Pool->new_default_sub;
5115
5116 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
5117 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
5118 $out->flush;
5119 my $ret = (($out->stat)[7] == 0);
5120 close $out or croak $!;
5121
5122 $ret;
5123}
5124
Eric Wongd81bf822007-01-10 01:22:38 -08005125sub get_commit_editor {
Eric Wong44320b92007-01-13 22:35:53 -08005126 my ($self, $log, $cb, $pool) = @_;
Eric Wongd81bf822007-01-10 01:22:38 -08005127 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
Eric Wong44320b92007-01-13 22:35:53 -08005128 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005129}
5130
Eric Wongd81bf822007-01-10 01:22:38 -08005131sub gs_do_update {
Eric Wong8a603772007-01-31 02:45:50 -08005132 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
5133 my $new = ($rev_a == $rev_b);
5134 my $path = $gs->{path};
5135
Eric Wong2e5e2482007-02-23 02:21:59 -08005136 if ($new && -e $gs->{index}) {
5137 unlink $gs->{index} or die
5138 "Couldn't unlink index: $gs->{index}: $!\n";
5139 }
Eric Wongd81bf822007-01-10 01:22:38 -08005140 my $pool = SVN::Pool->new;
Eric Wong8b8fc062007-01-22 11:44:57 -08005141 $editor->set_path_strip($path);
Eric Wong2b27f6c2007-01-28 04:59:05 -08005142 my (@pc) = split m#/#, $path;
5143 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
Eric Wong8a603772007-01-31 02:45:50 -08005144 1, $editor, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005145 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
Eric Wong2b27f6c2007-01-28 04:59:05 -08005146
5147 # Since we can't rely on svn_ra_reparent being available, we'll
5148 # just have to do some magic with set_path to make it so
5149 # we only want a partial path.
5150 my $sp = '';
5151 my $final = join('/', @pc);
5152 while (@pc) {
5153 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
5154 $sp .= '/' if length $sp;
5155 $sp .= shift @pc;
5156 }
5157 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
5158
Eric Wong2b27f6c2007-01-28 04:59:05 -08005159 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
5160
Eric Wongd81bf822007-01-10 01:22:38 -08005161 $reporter->finish_report($pool);
5162 $pool->clear;
5163 $editor->{git_commit_ok};
5164}
5165
Eric Wong2b27f6c2007-01-28 04:59:05 -08005166# this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
5167# svn_ra_reparent didn't work before 1.4)
Eric Wongd81bf822007-01-10 01:22:38 -08005168sub gs_do_switch {
Eric Wong8a603772007-01-31 02:45:50 -08005169 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
5170 my $path = $gs->{path};
Eric Wongd81bf822007-01-10 01:22:38 -08005171 my $pool = SVN::Pool->new;
Eric Wong2b27f6c2007-01-28 04:59:05 -08005172
5173 my $full_url = $self->{url};
5174 my $old_url = $full_url;
Eric Wong2a679c72009-07-19 22:08:45 -07005175 $full_url .= '/' . $path if length $path;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005176 my ($ra, $reparented);
Alec Berrymanad0a82b2008-09-14 17:14:16 -04005177
Eric Wong2a679c72009-07-19 22:08:45 -07005178 if ($old_url =~ m#^svn(\+ssh)?://# ||
5179 ($full_url =~ m#^https?://# &&
5180 escape_url($full_url) ne $full_url)) {
Alec Berrymanad0a82b2008-09-14 17:14:16 -04005181 $_[0] = undef;
5182 $self = undef;
5183 $RA = undef;
5184 $ra = Git::SVN::Ra->new($full_url);
5185 $ra_invalid = 1;
5186 } elsif ($old_url ne $full_url) {
5187 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url, $pool);
5188 $self->{url} = $full_url;
5189 $reparented = 1;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005190 }
Alec Berrymanad0a82b2008-09-14 17:14:16 -04005191
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005192 $ra ||= $self;
Eric Wongf4392df2008-09-06 20:18:18 -07005193 $url_b = escape_url($url_b);
Eric Wong8a603772007-01-31 02:45:50 -08005194 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005195 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
Eric Wong8b8fc062007-01-22 11:44:57 -08005196 $reporter->set_path('', $rev_a, 0, @lock, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08005197 $reporter->finish_report($pool);
Eric Wong2b27f6c2007-01-28 04:59:05 -08005198
Eric Wong5d3b7cd2007-01-29 19:16:01 -08005199 if ($reparented) {
5200 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
5201 $self->{url} = $old_url;
5202 }
Eric Wong2b27f6c2007-01-28 04:59:05 -08005203
Eric Wongd81bf822007-01-10 01:22:38 -08005204 $pool->clear;
5205 $editor->{git_commit_ok};
5206}
5207
Eric Wongb54a9012007-06-13 02:37:03 -07005208sub longest_common_path {
5209 my ($gsv, $globs) = @_;
Eric Wongd2ae1432007-02-07 11:50:16 -08005210 my %common;
Eric Wonge5181922007-02-08 12:53:57 -08005211 my $common_max = scalar @$gsv;
5212
5213 foreach my $gs (@$gsv) {
Eric Wongd2ae1432007-02-07 11:50:16 -08005214 my @tmp = split m#/#, $gs->{path};
5215 my $p = '';
5216 foreach (@tmp) {
5217 $p .= length($p) ? "/$_" : $_;
5218 $common{$p} ||= 0;
5219 $common{$p}++;
5220 }
5221 }
Eric Wonge5181922007-02-08 12:53:57 -08005222 $globs ||= [];
5223 $common_max += scalar @$globs;
5224 foreach my $glob (@$globs) {
5225 my @tmp = split m#/#, $glob->{path}->{left};
5226 my $p = '';
5227 foreach (@tmp) {
5228 $p .= length($p) ? "/$_" : $_;
5229 $common{$p} ||= 0;
5230 $common{$p}++;
5231 }
5232 }
5233
Eric Wongd2ae1432007-02-07 11:50:16 -08005234 my $longest_path = '';
5235 foreach (sort {length $b <=> length $a} keys %common) {
Eric Wonge5181922007-02-08 12:53:57 -08005236 if ($common{$_} == $common_max) {
Eric Wongd2ae1432007-02-07 11:50:16 -08005237 $longest_path = $_;
5238 last;
5239 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005240 }
Eric Wongb54a9012007-06-13 02:37:03 -07005241 $longest_path;
5242}
5243
5244sub gs_fetch_loop_common {
5245 my ($self, $base, $head, $gsv, $globs) = @_;
5246 return if ($base > $head);
5247 my $inc = $_log_window_size;
5248 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
5249 my $longest_path = longest_common_path($gsv, $globs);
Eric Wonga51cdb02007-09-07 04:00:40 -07005250 my $ra_url = $self->{url};
Alex Vandiverc69700f2009-05-06 16:18:52 -04005251 my $find_trailing_edge;
Eric Wong0af9c9f2007-01-27 22:28:56 -08005252 while (1) {
Eric Wongd4eff2b2007-01-30 14:04:22 -08005253 my %revs;
Eric Wongd2ae1432007-02-07 11:50:16 -08005254 my $err;
Eric Wongf7c3fc42007-01-29 18:34:55 -08005255 my $err_handler = $SVN::Error::handler;
Eric Wongd2ae1432007-02-07 11:50:16 -08005256 $SVN::Error::handler = sub {
5257 ($err) = @_;
5258 skip_unknown_revs($err);
5259 };
5260 sub _cb {
5261 my ($paths, $r, $author, $date, $log) = @_;
Mattias Nissler3c49a032009-07-07 01:39:52 +02005262 [ $paths,
Eric Wongd2ae1432007-02-07 11:50:16 -08005263 { author => $author, date => $date, log => $log } ];
5264 }
5265 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
5266 sub { $revs{$_[1]} = _cb(@_) });
Deskin Miller99366562009-02-08 19:33:18 -05005267 if ($err) {
5268 print "Checked through r$max\r";
Alex Vandiverc69700f2009-05-06 16:18:52 -04005269 } else {
5270 $find_trailing_edge = 1;
Deskin Miller99366562009-02-08 19:33:18 -05005271 }
Alex Vandiverc69700f2009-05-06 16:18:52 -04005272 if ($err and $find_trailing_edge) {
Eric Wongd2ae1432007-02-07 11:50:16 -08005273 print STDERR "Path '$longest_path' ",
5274 "was probably deleted:\n",
5275 $err->expanded_message,
5276 "\nWill attempt to follow ",
5277 "revisions r$min .. r$max ",
5278 "committed before the deletion\n";
5279 my $hi = $max;
5280 while (--$hi >= $min) {
5281 my $ok;
5282 $self->get_log([$longest_path], $min, $hi,
5283 0, 1, 1, sub {
Alex Vandiverb6c61772009-05-06 16:18:53 -04005284 $ok = $_[1];
Eric Wongd2ae1432007-02-07 11:50:16 -08005285 $revs{$_[1]} = _cb(@_) });
5286 if ($ok) {
5287 print STDERR "r$min .. r$ok OK\n";
5288 last;
5289 }
5290 }
Alex Vandiverc69700f2009-05-06 16:18:52 -04005291 $find_trailing_edge = 0;
Eric Wongd2ae1432007-02-07 11:50:16 -08005292 }
Eric Wongd4eff2b2007-01-30 14:04:22 -08005293 $SVN::Error::handler = $err_handler;
Eric Wongfbcc1732007-02-06 18:35:30 -08005294
Eric Wonge5181922007-02-08 12:53:57 -08005295 my %exists = map { $_->{path} => $_ } @$gsv;
Eric Wongd4eff2b2007-01-30 14:04:22 -08005296 foreach my $r (sort {$a <=> $b} keys %revs) {
Eric Wongfbcc1732007-02-06 18:35:30 -08005297 my ($paths, $logged) = @{$revs{$r}};
Eric Wonge5181922007-02-08 12:53:57 -08005298
5299 foreach my $gs ($self->match_globs(\%exists, $paths,
5300 $globs, $r)) {
Eric Wong060610c2007-12-08 23:27:41 -08005301 if ($gs->rev_map_max >= $r) {
Eric Wongfbcc1732007-02-06 18:35:30 -08005302 next;
5303 }
5304 next unless $gs->match_paths($paths, $r);
5305 $gs->{logged_rev_props} = $logged;
Eric Wonge8d120b2007-02-14 16:29:52 -08005306 if (my $last_commit = $gs->last_commit) {
5307 $gs->assert_index_clean($last_commit);
5308 }
Eric Wongfbcc1732007-02-06 18:35:30 -08005309 my $log_entry = $gs->do_fetch($paths, $r);
5310 if ($log_entry) {
Eric Wong0af9c9f2007-01-27 22:28:56 -08005311 $gs->do_git_commit($log_entry);
5312 }
Eric Wong321b1842008-01-02 10:10:03 -08005313 $INDEX_FILES{$gs->{index}} = 1;
Eric Wong0af9c9f2007-01-27 22:28:56 -08005314 }
Eric Wonge5181922007-02-08 12:53:57 -08005315 foreach my $g (@$globs) {
Eric Wong93f26892007-02-11 01:20:26 -08005316 my $k = "svn-remote.$g->{remote}." .
5317 "$g->{t}-maxRev";
5318 Git::SVN::tmp_config($k, $r);
Eric Wonge5181922007-02-08 12:53:57 -08005319 }
Eric Wonga51cdb02007-09-07 04:00:40 -07005320 if ($ra_invalid) {
5321 $_[0] = undef;
5322 $self = undef;
5323 $RA = undef;
5324 $self = Git::SVN::Ra->new($ra_url);
5325 $ra_invalid = undef;
5326 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005327 }
Eric Wong9c93fee2007-01-31 17:22:31 -08005328 # pre-fill the .rev_db since it'll eventually get filled in
5329 # with '0' x40 if something new gets committed
Eric Wonge5181922007-02-08 12:53:57 -08005330 foreach my $gs (@$gsv) {
Eric Wong66ab84b2007-12-08 23:27:42 -08005331 next if $gs->rev_map_max >= $max;
5332 next if defined $gs->rev_map_get($max);
5333 $gs->rev_map_set($max, 0 x40);
Eric Wong9c93fee2007-01-31 17:22:31 -08005334 }
Eric Wongc3560e52007-02-12 16:03:32 -08005335 foreach my $g (@$globs) {
5336 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
5337 Git::SVN::tmp_config($k, $max);
5338 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005339 last if $max >= $head;
5340 $min = $max + 1;
5341 $max += $inc;
5342 $max = $head if ($max > $head);
5343 }
Karl Hasselström94bc9142008-02-03 17:56:18 +01005344 Git::SVN::gc();
Eric Wong0af9c9f2007-01-27 22:28:56 -08005345}
5346
Marcus Griep570d35c2008-08-08 01:41:57 -07005347sub get_dir_globbed {
5348 my ($self, $left, $depth, $r) = @_;
5349
5350 my @x = eval { $self->get_dir($left, $r) };
5351 return unless scalar @x == 3;
5352 my $dirents = $x[0];
5353 my @finalents;
5354 foreach my $de (keys %$dirents) {
5355 next if $dirents->{$de}->{kind} != $SVN::Node::dir;
5356 if ($depth > 1) {
5357 my @args = ("$left/$de", $depth - 1, $r);
5358 foreach my $dir ($self->get_dir_globbed(@args)) {
5359 push @finalents, "$de/$dir";
5360 }
5361 } else {
5362 push @finalents, $de;
5363 }
5364 }
5365 @finalents;
5366}
5367
Eric Wonge5181922007-02-08 12:53:57 -08005368sub match_globs {
5369 my ($self, $exists, $paths, $globs, $r) = @_;
Eric Wong74a81222007-02-10 13:28:50 -08005370
5371 sub get_dir_check {
5372 my ($self, $exists, $g, $r) = @_;
Marcus Griep570d35c2008-08-08 01:41:57 -07005373
5374 my @dirs = $self->get_dir_globbed($g->{path}->{left},
5375 $g->{path}->{depth},
5376 $r);
5377
5378 foreach my $de (@dirs) {
Eric Wong74a81222007-02-10 13:28:50 -08005379 my $p = $g->{path}->full_path($de);
5380 next if $exists->{$p};
5381 next if (length $g->{path}->{right} &&
5382 ($self->check_path($p, $r) !=
5383 $SVN::Node::dir));
Jay Soffian07576202010-01-23 03:30:01 -05005384 next unless $p =~ /$g->{path}->{regex}/;
Eric Wong74a81222007-02-10 13:28:50 -08005385 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
5386 $g->{ref}->full_path($de), 1);
5387 }
5388 }
Eric Wonge5181922007-02-08 12:53:57 -08005389 foreach my $g (@$globs) {
Eric Wong74a81222007-02-10 13:28:50 -08005390 if (my $path = $paths->{"/$g->{path}->{left}"}) {
5391 if ($path->{action} =~ /^[AR]$/) {
5392 get_dir_check($self, $exists, $g, $r);
5393 }
5394 }
Eric Wonge5181922007-02-08 12:53:57 -08005395 foreach (keys %$paths) {
Eric Wong28710f72007-02-14 13:32:21 -08005396 if (/$g->{path}->{left_regex}/ &&
5397 !/$g->{path}->{regex}/) {
Eric Wong74a81222007-02-10 13:28:50 -08005398 next if $paths->{$_}->{action} !~ /^[AR]$/;
5399 get_dir_check($self, $exists, $g, $r);
5400 }
Eric Wonge5181922007-02-08 12:53:57 -08005401 next unless /$g->{path}->{regex}/;
5402 my $p = $1;
5403 my $pathname = $g->{path}->full_path($p);
5404 next if $exists->{$pathname};
Eric Wong0c1ec5a2007-04-18 00:17:33 -07005405 next if ($self->check_path($pathname, $r) !=
5406 $SVN::Node::dir);
Eric Wonge5181922007-02-08 12:53:57 -08005407 $exists->{$pathname} = Git::SVN->init(
5408 $self->{url}, $pathname, undef,
5409 $g->{ref}->full_path($p), 1);
5410 }
5411 my $c = '';
5412 foreach (split m#/#, $g->{path}->{left}) {
5413 $c .= "/$_";
5414 next unless ($paths->{$c} &&
Eric Wong74a81222007-02-10 13:28:50 -08005415 ($paths->{$c}->{action} =~ /^[AR]$/));
5416 get_dir_check($self, $exists, $g, $r);
Eric Wonge5181922007-02-08 12:53:57 -08005417 }
5418 }
5419 values %$exists;
5420}
5421
Eric Wonge6434f82007-01-23 16:29:23 -08005422sub minimize_url {
5423 my ($self) = @_;
5424 return $self->{url} if ($self->{url} eq $self->{repos_root});
5425 my $url = $self->{repos_root};
5426 my @components = split(m!/!, $self->{svn_path});
5427 my $c = '';
5428 do {
5429 $url .= "/$c" if length $c;
Eric Wong5f8b2cb2009-07-25 13:14:16 -07005430 eval {
5431 my $ra = (ref $self)->new($url);
5432 my $latest = $ra->get_latest_revnum;
5433 $ra->get_log("", $latest, 0, 1, 0, 1, sub {});
5434 };
Eric Wonge6434f82007-01-23 16:29:23 -08005435 } while ($@ && ($c = shift @components));
5436 $url;
5437}
5438
Eric Wongd81bf822007-01-10 01:22:38 -08005439sub can_do_switch {
5440 my $self = shift;
5441 unless (defined $can_do_switch) {
5442 my $pool = SVN::Pool->new;
5443 my $rep = eval {
5444 $self->do_switch(1, '', 0, $self->{url},
5445 SVN::Delta::Editor->new, $pool);
5446 };
5447 if ($@) {
5448 $can_do_switch = 0;
5449 } else {
5450 $rep->abort_report($pool);
5451 $can_do_switch = 1;
5452 }
5453 $pool->clear;
5454 }
5455 $can_do_switch;
5456}
5457
Eric Wong0af9c9f2007-01-27 22:28:56 -08005458sub skip_unknown_revs {
5459 my ($err) = @_;
5460 my $errno = $err->apr_err();
5461 # Maybe the branch we're tracking didn't
5462 # exist when the repo started, so it's
5463 # not an error if it doesn't, just continue
5464 #
5465 # Wonderfully consistent library, eh?
5466 # 160013 - svn:// and file://
5467 # 175002 - http(s)://
5468 # 175007 - http(s):// (this repo required authorization, too...)
5469 # More codes may be discovered later...
5470 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
Eric Wonga6a15a92007-03-30 17:54:48 -07005471 my $err_key = $err->expanded_message;
5472 # revision numbers change every time, filter them out
5473 $err_key =~ s/\d+/\0/g;
5474 $err_key = "$errno\0$err_key";
5475 unless ($ignored_err{$err_key}) {
5476 warn "W: Ignoring error from SVN, path probably ",
5477 "does not exist: ($errno): ",
5478 $err->expanded_message,"\n";
Eric Wongeee8a172008-01-07 02:40:40 -08005479 warn "W: Do not be alarmed at the above message ",
5480 "git-svn is just searching aggressively for ",
5481 "old history.\n",
5482 "This may take a while on large repositories\n";
Eric Wonga6a15a92007-03-30 17:54:48 -07005483 $ignored_err{$err_key} = 1;
5484 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08005485 return;
5486 }
5487 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
5488}
5489
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005490package Git::SVN::Log;
5491use strict;
5492use warnings;
5493use POSIX qw/strftime/;
Ben Waltone8717842009-02-24 14:44:49 -05005494use Time::Local;
David D Kilzer111947e2007-11-11 22:56:52 -08005495use constant commit_log_separator => ('-' x 72) . "\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005496use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
5497 %rusers $show_commit $incremental/;
5498my $l_fmt;
5499
5500sub cmt_showable {
5501 my ($c) = @_;
5502 return 1 if defined $c->{r};
Eric Wongc16d0872007-04-08 00:59:22 -07005503
5504 # big commit message got truncated by the 16k pretty buffer in rev-list
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005505 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
5506 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
Eric Wongc16d0872007-04-08 00:59:22 -07005507 @{$c->{l}} = ();
Eric Wong44320b92007-01-13 22:35:53 -08005508 my @log = command(qw/cat-file commit/, $c->{c});
Eric Wongc16d0872007-04-08 00:59:22 -07005509
5510 # shift off the headers
5511 shift @log while ($log[0] ne '');
Eric Wong44320b92007-01-13 22:35:53 -08005512 shift @log;
Eric Wongc16d0872007-04-08 00:59:22 -07005513
5514 # TODO: make $c->{l} not have a trailing newline in the future
5515 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005516
5517 (undef, $c->{r}, undef) = ::extract_metadata(
Eric Wong44320b92007-01-13 22:35:53 -08005518 (grep(/^git-svn-id: /, @log))[-1]);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005519 }
5520 return defined $c->{r};
5521}
5522
5523sub log_use_color {
Jeff Kingcd459e32007-12-11 01:28:42 -05005524 return $color || Git->repository->get_colorbool('color.diff');
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005525}
5526
5527sub git_svn_log_cmd {
Eric Wong3bc718b2007-02-13 17:09:40 -08005528 my ($r_min, $r_max, @args) = @_;
5529 my $head = 'HEAD';
Eric Wong6ed77262007-08-15 09:55:18 -07005530 my (@files, @log_opts);
Eric Wong3bc718b2007-02-13 17:09:40 -08005531 foreach my $x (@args) {
Eric Wong6ed77262007-08-15 09:55:18 -07005532 if ($x eq '--' || @files) {
5533 push @files, $x;
5534 } else {
5535 if (::verify_ref("$x^0")) {
5536 $head = $x;
5537 } else {
5538 push @log_opts, $x;
5539 }
5540 }
Eric Wong3bc718b2007-02-13 17:09:40 -08005541 }
5542
Eric Wong13c823f2007-04-08 00:59:19 -07005543 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
5544 $gs ||= Git::SVN->_new;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005545 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
5546 $gs->refname);
5547 push @cmd, '-r' unless $non_recursive;
5548 push @cmd, qw/--raw --name-status/ if $verbose;
5549 push @cmd, '--color' if log_use_color();
Eric Wong6ed77262007-08-15 09:55:18 -07005550 push @cmd, @log_opts;
5551 if (defined $r_max && $r_max == $r_min) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005552 push @cmd, '--max-count=1';
Eric Wong060610c2007-12-08 23:27:41 -08005553 if (my $c = $gs->rev_map_get($r_max)) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005554 push @cmd, $c;
5555 }
Eric Wong6ed77262007-08-15 09:55:18 -07005556 } elsif (defined $r_max) {
David D Kilzer111947e2007-11-11 22:56:52 -08005557 if ($r_max < $r_min) {
5558 ($r_min, $r_max) = ($r_max, $r_min);
5559 }
5560 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
5561 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
5562 # If there are no commits in the range, both $c_max and $c_min
5563 # will be undefined. If there is at least 1 commit in the
5564 # range, both will be defined.
5565 return () if !defined $c_min || !defined $c_max;
5566 if ($c_min eq $c_max) {
5567 push @cmd, '--max-count=1', $c_min;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005568 } else {
David D Kilzer111947e2007-11-11 22:56:52 -08005569 push @cmd, '--boundary', "$c_min..$c_max";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005570 }
5571 }
Eric Wong6ed77262007-08-15 09:55:18 -07005572 return (@cmd, @files);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005573}
5574
5575# adapted from pager.c
5576sub config_pager {
Jonathan Nieder190c1cd2010-02-14 06:06:10 -06005577 if (! -t *STDOUT) {
5578 $ENV{GIT_PAGER_IN_USE} = 'false';
5579 $pager = undef;
5580 return;
5581 }
5582 chomp($pager = command_oneline(qw(var GIT_PAGER)));
Jonathan Niederdec543e2009-10-30 20:43:19 -05005583 if ($pager eq 'cat') {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005584 $pager = undef;
5585 }
Jeff Kingcd459e32007-12-11 01:28:42 -05005586 $ENV{GIT_PAGER_IN_USE} = defined($pager);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005587}
5588
5589sub run_pager {
Jonathan Nieder190c1cd2010-02-14 06:06:10 -06005590 return unless defined $pager;
Marcus Griep971e6282008-09-10 11:09:46 -04005591 pipe my ($rfd, $wfd) or return;
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005592 defined(my $pid = fork) or ::fatal "Can't fork: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005593 if (!$pid) {
5594 open STDOUT, '>&', $wfd or
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005595 ::fatal "Can't redirect to stdout: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005596 return;
5597 }
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005598 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005599 $ENV{LESS} ||= 'FRSX';
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005600 exec $pager or ::fatal "Can't run pager: $! ($pager)";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005601}
5602
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005603sub format_svn_date {
Ben Waltone8717842009-02-24 14:44:49 -05005604 # some systmes don't handle or mishandle %z, so be creative.
Ben Walton736e6192009-02-27 22:11:45 -05005605 my $t = shift || time;
Ben Waltone8717842009-02-24 14:44:49 -05005606 my $gm = timelocal(gmtime($t));
5607 my $sign = qw( + + - )[ $t <=> $gm ];
5608 my $gmoff = sprintf("%s%02d%02d", $sign, (gmtime(abs($t - $gm)))[2,1]);
5609 return strftime("%Y-%m-%d %H:%M:%S $gmoff (%a, %d %b %Y)", localtime($t));
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005610}
5611
5612sub parse_git_date {
5613 my ($t, $tz) = @_;
5614 # Date::Parse isn't in the standard Perl distro :(
5615 if ($tz =~ s/^\+//) {
5616 $t += tz_to_s_offset($tz);
5617 } elsif ($tz =~ s/^\-//) {
5618 $t -= tz_to_s_offset($tz);
5619 }
5620 return $t;
5621}
5622
5623sub set_local_timezone {
5624 if (defined $TZ) {
5625 $ENV{TZ} = $TZ;
5626 } else {
5627 delete $ENV{TZ};
5628 }
5629}
5630
Eric Wong21819a32007-01-27 14:38:10 -08005631sub tz_to_s_offset {
5632 my ($tz) = @_;
5633 $tz =~ s/(\d\d)$//;
5634 return ($1 * 60) + ($tz * 3600);
5635}
5636
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005637sub get_author_info {
5638 my ($dest, $author, $t, $tz) = @_;
5639 $author =~ s/(?:^\s*|\s*$)//g;
5640 $dest->{a_raw} = $author;
5641 my $au;
Eric Wong1c8443b2007-01-14 02:17:00 -08005642 if ($::_authors) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005643 $au = $rusers{$author} || undef;
5644 }
5645 if (!$au) {
5646 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
5647 }
5648 $dest->{t} = $t;
5649 $dest->{tz} = $tz;
5650 $dest->{a} = $au;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005651 $dest->{t_utc} = parse_git_date($t, $tz);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005652}
5653
5654sub process_commit {
5655 my ($c, $r_min, $r_max, $defer) = @_;
5656 if (defined $r_min && defined $r_max) {
5657 if ($r_min == $c->{r} && $r_min == $r_max) {
5658 show_commit($c);
5659 return 0;
5660 }
5661 return 1 if $r_min == $r_max;
5662 if ($r_min < $r_max) {
5663 # we need to reverse the print order
5664 return 0 if (defined $limit && --$limit < 0);
5665 push @$defer, $c;
5666 return 1;
5667 }
5668 if ($r_min != $r_max) {
5669 return 1 if ($r_min < $c->{r});
5670 return 1 if ($r_max > $c->{r});
5671 }
5672 }
5673 return 0 if (defined $limit && --$limit < 0);
5674 show_commit($c);
5675 return 1;
5676}
5677
5678sub show_commit {
5679 my $c = shift;
5680 if ($oneline) {
5681 my $x = "\n";
5682 if (my $l = $c->{l}) {
5683 while ($l->[0] =~ /^\s*$/) { shift @$l }
5684 $x = $l->[0];
5685 }
5686 $l_fmt ||= 'A' . length($c->{r});
5687 print 'r',pack($l_fmt, $c->{r}),' | ';
5688 print "$c->{c} | " if $show_commit;
5689 print $x;
5690 } else {
5691 show_commit_normal($c);
5692 }
5693}
5694
5695sub show_commit_changed_paths {
5696 my ($c) = @_;
5697 return unless $c->{changed};
5698 print "Changed paths:\n", @{$c->{changed}};
5699}
5700
5701sub show_commit_normal {
5702 my ($c) = @_;
David D Kilzer111947e2007-11-11 22:56:52 -08005703 print commit_log_separator, "r$c->{r} | ";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005704 print "$c->{c} | " if $show_commit;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005705 print "$c->{a} | ", format_svn_date($c->{t_utc}), ' | ';
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005706 my $nr_line = 0;
5707
5708 if (my $l = $c->{l}) {
5709 while ($l->[$#$l] eq "\n" && $#$l > 0
5710 && $l->[($#$l - 1)] eq "\n") {
5711 pop @$l;
5712 }
5713 $nr_line = scalar @$l;
5714 if (!$nr_line) {
5715 print "1 line\n\n\n";
5716 } else {
5717 if ($nr_line == 1) {
5718 $nr_line = '1 line';
5719 } else {
5720 $nr_line .= ' lines';
5721 }
5722 print $nr_line, "\n";
5723 show_commit_changed_paths($c);
5724 print "\n";
5725 print $_ foreach @$l;
5726 }
5727 } else {
5728 print "1 line\n";
5729 show_commit_changed_paths($c);
5730 print "\n";
5731
5732 }
Eric Wong488a63e2007-02-15 00:40:42 -08005733 foreach my $x (qw/raw stat diff/) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005734 if ($c->{$x}) {
5735 print "\n";
5736 print $_ foreach @{$c->{$x}}
5737 }
5738 }
5739}
5740
5741sub cmd_show_log {
5742 my (@args) = @_;
5743 my ($r_min, $r_max);
5744 my $r_last = -1; # prevent dupes
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08005745 set_local_timezone();
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005746 if (defined $::_revision) {
5747 if ($::_revision =~ /^(\d+):(\d+)$/) {
5748 ($r_min, $r_max) = ($1, $2);
5749 } elsif ($::_revision =~ /^\d+$/) {
5750 $r_min = $r_max = $::_revision;
5751 } else {
5752 ::fatal "-r$::_revision is not supported, use ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02005753 "standard 'git log' arguments instead";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005754 }
5755 }
5756
5757 config_pager();
Eric Wong6ed77262007-08-15 09:55:18 -07005758 @args = git_svn_log_cmd($r_min, $r_max, @args);
David D Kilzer111947e2007-11-11 22:56:52 -08005759 if (!@args) {
5760 print commit_log_separator unless $incremental || $oneline;
5761 return;
5762 }
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005763 my $log = command_output_pipe(@args);
5764 run_pager();
Eric Wong488a63e2007-02-15 00:40:42 -08005765 my (@k, $c, $d, $stat);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005766 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
5767 while (<$log>) {
Michael J Gruber9963e022011-05-20 13:16:34 +02005768 if (/^${esc_color}commit (?:- )?($::sha1_short)/o) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005769 my $cmt = $1;
5770 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
5771 $r_last = $c->{r};
5772 process_commit($c, $r_min, $r_max, \@k) or
5773 goto out;
5774 }
5775 $d = undef;
5776 $c = { c => $cmt };
5777 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
5778 get_author_info($c, $1, $2, $3);
5779 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
5780 # ignore
5781 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
5782 push @{$c->{raw}}, $_;
5783 } elsif (/^${esc_color}[ACRMDT]\t/) {
5784 # we could add $SVN->{svn_path} here, but that requires
5785 # remote access at the moment (repo_path_split)...
5786 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
5787 push @{$c->{changed}}, $_;
5788 } elsif (/^${esc_color}diff /o) {
5789 $d = 1;
5790 push @{$c->{diff}}, $_;
5791 } elsif ($d) {
5792 push @{$c->{diff}}, $_;
Eric Wong488a63e2007-02-15 00:40:42 -08005793 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
5794 $esc_color*[\+\-]*$esc_color$/x) {
5795 $stat = 1;
5796 push @{$c->{stat}}, $_;
5797 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
5798 push @{$c->{stat}}, $_;
5799 $stat = undef;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005800 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
5801 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
5802 } elsif (s/^${esc_color} //o) {
5803 push @{$c->{l}}, $_;
5804 }
5805 }
5806 if ($c && defined $c->{r} && $c->{r} != $r_last) {
5807 $r_last = $c->{r};
5808 process_commit($c, $r_min, $r_max, \@k);
5809 }
5810 if (@k) {
David D Kilzer111947e2007-11-11 22:56:52 -08005811 ($r_min, $r_max) = ($r_max, $r_min);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005812 process_commit($_, $r_min, $r_max) foreach reverse @k;
5813 }
5814out:
Eric Wongc843c462007-01-12 03:07:31 -08005815 close $log;
David D Kilzer111947e2007-11-11 22:56:52 -08005816 print commit_log_separator unless $incremental || $oneline;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08005817}
5818
Tim Stoakes6fb53752008-02-10 15:21:08 +10305819sub cmd_blame {
Steven Grimm4be40382008-05-10 22:11:18 -07005820 my $path = pop;
Tim Stoakes6fb53752008-02-10 15:21:08 +10305821
5822 config_pager();
5823 run_pager();
5824
Steven Grimm4be40382008-05-10 22:11:18 -07005825 my ($fh, $ctx, $rev);
5826
5827 if ($_git_format) {
5828 ($fh, $ctx) = command_output_pipe('blame', @_, $path);
5829 while (my $line = <$fh>) {
5830 if ($line =~ /^\^?([[:xdigit:]]+)\s/) {
5831 # Uncommitted edits show up as a rev ID of
5832 # all zeros, which we can't look up with
5833 # cmt_metadata
5834 if ($1 !~ /^0+$/) {
5835 (undef, $rev, undef) =
5836 ::cmt_metadata($1);
5837 $rev = '0' if (!$rev);
5838 } else {
5839 $rev = '0';
5840 }
5841 $rev = sprintf('%-10s', $rev);
5842 $line =~ s/^\^?[[:xdigit:]]+(\s)/$rev$1/;
5843 }
5844 print $line;
Tim Stoakes6fb53752008-02-10 15:21:08 +10305845 }
Steven Grimm4be40382008-05-10 22:11:18 -07005846 } else {
5847 ($fh, $ctx) = command_output_pipe('blame', '-p', @_, 'HEAD',
5848 '--', $path);
5849 my ($sha1);
5850 my %authors;
Boris Byk6ea42032009-04-11 00:32:41 +04005851 my @buffer;
5852 my %dsha; #distinct sha keys
5853
Steven Grimm4be40382008-05-10 22:11:18 -07005854 while (my $line = <$fh>) {
Boris Byk6ea42032009-04-11 00:32:41 +04005855 push @buffer, $line;
Steven Grimm4be40382008-05-10 22:11:18 -07005856 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
Boris Byk6ea42032009-04-11 00:32:41 +04005857 $dsha{$1} = 1;
5858 }
5859 }
5860
5861 my $s2r = ::cmt_sha2rev_batch([keys %dsha]);
5862
5863 foreach my $line (@buffer) {
5864 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
5865 $rev = $s2r->{$1};
5866 $rev = '0' if (!$rev)
Steven Grimm4be40382008-05-10 22:11:18 -07005867 }
5868 elsif ($line =~ /^author (.*)/) {
5869 $authors{$rev} = $1;
5870 $authors{$rev} =~ s/\s/_/g;
5871 }
5872 elsif ($line =~ /^\t(.*)$/) {
5873 printf("%6s %10s %s\n", $rev, $authors{$rev}, $1);
5874 }
5875 }
Tim Stoakes6fb53752008-02-10 15:21:08 +10305876 }
5877 command_close_pipe($fh, $ctx);
5878}
5879
Eric Wong706587f2007-01-18 17:50:01 -08005880package Git::SVN::Migration;
5881# these version numbers do NOT correspond to actual version numbers
5882# of git nor git-svn. They are just relative.
5883#
5884# v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
5885#
5886# v1 layout: .git/$id/info/url, refs/remotes/$id
5887#
5888# v2 layout: .git/svn/$id/info/url, refs/remotes/$id
5889#
5890# v3 layout: .git/svn/$id, refs/remotes/$id
5891# - info/url may remain for backwards compatibility
5892# - this is what we migrate up to this layout automatically,
5893# - this will be used by git svn init on single branches
Eric Wong26a62d52007-02-12 13:25:25 -08005894# v3.1 layout (auto migrated):
5895# - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
5896# for backwards compatibility
Eric Wong706587f2007-01-18 17:50:01 -08005897#
5898# v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
5899# - this is only created for newly multi-init-ed
5900# repositories. Similar in spirit to the
5901# --use-separate-remotes option in git-clone (now default)
5902# - we do not automatically migrate to this (following
5903# the example set by core git)
Eric Wong060610c2007-12-08 23:27:41 -08005904#
5905# v5 layout: .rev_db.$UUID => .rev_map.$UUID
5906# - newer, more-efficient format that uses 24-bytes per record
5907# with no filler space.
5908# - use xxd -c24 < .rev_map.$UUID to view and debug
5909# - This is a one-way migration, repositories updated to the
5910# new format will not be able to use old git-svn without
5911# rebuilding the .rev_db. Rebuilding the rev_db is not
5912# possible if noMetadata or useSvmProps are set; but should
5913# be no problem for users that use the (sensible) defaults.
Eric Wong706587f2007-01-18 17:50:01 -08005914use strict;
5915use warnings;
5916use Carp qw/croak/;
5917use File::Path qw/mkpath/;
Eric Wong47e39c52007-01-21 04:27:09 -08005918use File::Basename qw/dirname basename/;
5919use vars qw/$_minimize/;
Eric Wong706587f2007-01-18 17:50:01 -08005920
5921sub migrate_from_v0 {
5922 my $git_dir = $ENV{GIT_DIR};
5923 return undef unless -d $git_dir;
5924 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5925 my $migrated = 0;
5926 while (<$fh>) {
5927 chomp;
5928 my ($id, $orig_ref) = ($_, $_);
5929 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
5930 next unless -f "$git_dir/$id/info/url";
5931 my $new_ref = "refs/remotes/$id";
5932 if (::verify_ref("$new_ref^0")) {
5933 print STDERR "W: $orig_ref is probably an old ",
5934 "branch used by an ancient version of ",
5935 "git-svn.\n",
5936 "However, $new_ref also exists.\n",
5937 "We will not be able ",
5938 "to use this branch until this ",
5939 "ambiguity is resolved.\n";
5940 next;
5941 }
5942 print STDERR "Migrating from v0 layout...\n" if !$migrated;
5943 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
5944 command_noisy('update-ref', $new_ref, $orig_ref);
5945 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
5946 $migrated++;
5947 }
5948 command_close_pipe($fh, $ctx);
5949 print STDERR "Done migrating from v0 layout...\n" if $migrated;
5950 $migrated;
5951}
5952
5953sub migrate_from_v1 {
5954 my $git_dir = $ENV{GIT_DIR};
5955 my $migrated = 0;
5956 return $migrated unless -d $git_dir;
5957 my $svn_dir = "$git_dir/svn";
5958
5959 # just in case somebody used 'svn' as their $id at some point...
5960 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
5961
5962 print STDERR "Migrating from a git-svn v1 layout...\n";
5963 mkpath([$svn_dir]);
5964 print STDERR "Data from a previous version of git-svn exists, but\n\t",
5965 "$svn_dir\n\t(required for this version ",
Frederik Schwarzer8f510be2008-07-14 18:30:24 +02005966 "($::VERSION) of git-svn) does not exist.\n";
Eric Wong706587f2007-01-18 17:50:01 -08005967 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5968 while (<$fh>) {
5969 my $x = $_;
5970 next unless $x =~ s#^refs/remotes/##;
5971 chomp $x;
5972 next unless -f "$git_dir/$x/info/url";
5973 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
5974 next unless $u;
5975 my $dn = dirname("$git_dir/svn/$x");
5976 mkpath([$dn]) unless -d $dn;
5977 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
5978 mkpath(["$git_dir/svn/svn"]);
5979 print STDERR " - $git_dir/$x/info => ",
5980 "$git_dir/svn/$x/info\n";
5981 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
5982 croak "$!: $x";
5983 # don't worry too much about these, they probably
5984 # don't exist with repos this old (save for index,
5985 # and we can easily regenerate that)
5986 foreach my $f (qw/unhandled.log index .rev_db/) {
5987 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
5988 }
5989 } else {
5990 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
5991 rename "$git_dir/$x", "$git_dir/svn/$x" or
5992 croak "$!: $x";
5993 }
5994 $migrated++;
5995 }
5996 command_close_pipe($fh, $ctx);
5997 print STDERR "Done migrating from a git-svn v1 layout\n";
5998 $migrated;
5999}
6000
6001sub read_old_urls {
6002 my ($l_map, $pfx, $path) = @_;
6003 my @dir;
6004 foreach (<$path/*>) {
6005 if (-r "$_/info/url") {
6006 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
6007 my $ref_id = $pfx . basename $_;
6008 my $url = ::file_to_s("$_/info/url");
6009 $l_map->{$ref_id} = $url;
6010 } elsif (-d $_) {
6011 push @dir, $_;
6012 }
6013 }
6014 foreach (@dir) {
6015 my $x = $_;
6016 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
6017 read_old_urls($l_map, $x, $_);
6018 }
6019}
6020
6021sub migrate_from_v2 {
6022 my @cfg = command(qw/config -l/);
6023 return if grep /^svn-remote\..+\.url=/, @cfg;
6024 my %l_map;
6025 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
6026 my $migrated = 0;
6027
6028 foreach my $ref_id (sort keys %l_map) {
Eric Wong471bc002007-02-01 04:06:27 -08006029 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
6030 if ($@) {
6031 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
6032 }
Eric Wong706587f2007-01-18 17:50:01 -08006033 $migrated++;
6034 }
6035 $migrated;
6036}
6037
Eric Wong47e39c52007-01-21 04:27:09 -08006038sub minimize_connections {
6039 my $r = Git::SVN::read_all_remotes();
6040 my $new_urls = {};
6041 my $root_repos = {};
6042 foreach my $repo_id (keys %$r) {
6043 my $url = $r->{$repo_id}->{url} or next;
6044 my $fetch = $r->{$repo_id}->{fetch} or next;
6045 my $ra = Git::SVN::Ra->new($url);
6046
6047 # skip existing cases where we already connect to the root
6048 if (($ra->{url} eq $ra->{repos_root}) ||
Eric Wong7829f202008-06-28 20:40:32 -07006049 ($ra->{repos_root} eq $repo_id)) {
Eric Wong47e39c52007-01-21 04:27:09 -08006050 $root_repos->{$ra->{url}} = $repo_id;
6051 next;
6052 }
6053
6054 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
6055 my $root_path = $ra->{url};
Eric Wong4e9f6cc2007-02-09 12:17:57 -08006056 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
Eric Wong47e39c52007-01-21 04:27:09 -08006057 foreach my $path (keys %$fetch) {
6058 my $ref_id = $fetch->{$path};
6059 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
6060
6061 # make sure we can read when connecting to
6062 # a higher level of a repository
6063 my ($last_rev, undef) = $gs->last_rev_commit;
6064 if (!defined $last_rev) {
6065 $last_rev = eval {
6066 $root_ra->get_latest_revnum;
6067 };
6068 next if $@;
6069 }
6070 my $new = $root_path;
6071 $new .= length $path ? "/$path" : '';
6072 eval {
6073 $root_ra->get_log([$new], $last_rev, $last_rev,
6074 0, 0, 1, sub { });
6075 };
6076 next if $@;
6077 $new_urls->{$ra->{repos_root}}->{$new} =
6078 { ref_id => $ref_id,
6079 old_repo_id => $repo_id,
6080 old_path => $path };
6081 }
6082 }
6083
6084 my @emptied;
6085 foreach my $url (keys %$new_urls) {
6086 # see if we can re-use an existing [svn-remote "repo_id"]
6087 # instead of creating a(n ugly) new section:
Eric Wong7829f202008-06-28 20:40:32 -07006088 my $repo_id = $root_repos->{$url} || $url;
Eric Wong47e39c52007-01-21 04:27:09 -08006089
6090 my $fetch = $new_urls->{$url};
6091 foreach my $path (keys %$fetch) {
6092 my $x = $fetch->{$path};
6093 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
6094 my $pfx = "svn-remote.$x->{old_repo_id}";
6095
6096 my $old_fetch = quotemeta("$x->{old_path}:".
Adam Brewster6f5748e2009-08-11 23:14:27 -04006097 "$x->{ref_id}");
Eric Wong8b8fc062007-01-22 11:44:57 -08006098 command_noisy(qw/config --unset/,
Eric Wong47e39c52007-01-21 04:27:09 -08006099 "$pfx.fetch", '^'. $old_fetch . '$');
6100 delete $r->{$x->{old_repo_id}}->
6101 {fetch}->{$x->{old_path}};
6102 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
Eric Wong8b8fc062007-01-22 11:44:57 -08006103 command_noisy(qw/config --unset/,
Eric Wong47e39c52007-01-21 04:27:09 -08006104 "$pfx.url");
6105 push @emptied, $x->{old_repo_id}
6106 }
6107 }
6108 }
6109 if (@emptied) {
Johannes Schindelin8befc502008-12-14 23:10:52 +01006110 my $file = $ENV{GIT_CONFIG} || "$ENV{GIT_DIR}/config";
Eric Wong47e39c52007-01-21 04:27:09 -08006111 print STDERR <<EOF;
6112The following [svn-remote] sections in your config file ($file) are empty
6113and can be safely removed:
6114EOF
6115 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
6116 }
6117}
6118
Eric Wong706587f2007-01-18 17:50:01 -08006119sub migration_check {
6120 migrate_from_v0();
6121 migrate_from_v1();
6122 migrate_from_v2();
Eric Wong47e39c52007-01-21 04:27:09 -08006123 minimize_connections() if $_minimize;
Eric Wong706587f2007-01-18 17:50:01 -08006124}
6125
Eric Wongef3cfaa2007-01-24 03:30:57 -08006126package Git::IndexInfo;
6127use strict;
6128use warnings;
6129use Git qw/command_input_pipe command_close_pipe/;
6130
6131sub new {
6132 my ($class) = @_;
6133 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
6134 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
6135}
6136
6137sub remove {
6138 my ($self, $path) = @_;
6139 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
6140 return ++$self->{nr};
6141 }
6142 undef;
6143}
6144
6145sub update {
6146 my ($self, $mode, $hash, $path) = @_;
6147 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
6148 return ++$self->{nr};
6149 }
6150 undef;
6151}
6152
6153sub DESTROY {
6154 my ($self) = @_;
6155 command_close_pipe($self->{gui}, $self->{ctx});
6156}
6157
Eric Wong4bb9ed02007-02-03 13:29:17 -08006158package Git::SVN::GlobSpec;
6159use strict;
6160use warnings;
6161
6162sub new {
Jay Soffian07576202010-01-23 03:30:01 -05006163 my ($class, $glob, $pattern_ok) = @_;
Eric Wong4bb9ed02007-02-03 13:29:17 -08006164 my $re = $glob;
6165 $re =~ s!/+$!!g; # no need for trailing slashes
Jay Soffian07576202010-01-23 03:30:01 -05006166 my (@left, @right, @patterns);
6167 my $state = "left";
6168 my $die_msg = "Only one set of wildcard directories " .
6169 "(e.g. '*' or '*/*/*') is supported: '$glob'\n";
6170 for my $part (split(m|/|, $glob)) {
6171 if ($part =~ /\*/ && $part ne "*") {
6172 die "Invalid pattern in '$glob': $part\n";
6173 } elsif ($pattern_ok && $part =~ /[{}]/ &&
6174 $part !~ /^\{[^{}]+\}/) {
6175 die "Invalid pattern in '$glob': $part\n";
6176 }
6177 if ($part eq "*") {
6178 die $die_msg if $state eq "right";
6179 $state = "pattern";
6180 push(@patterns, "[^/]*");
6181 } elsif ($pattern_ok && $part =~ /^\{(.*)\}$/) {
6182 die $die_msg if $state eq "right";
6183 $state = "pattern";
6184 my $p = quotemeta($1);
6185 $p =~ s/\\,/|/g;
6186 push(@patterns, "(?:$p)");
6187 } else {
6188 if ($state eq "left") {
6189 push(@left, $part);
6190 } else {
6191 push(@right, $part);
6192 $state = "right";
6193 }
6194 }
Marcus Griep570d35c2008-08-08 01:41:57 -07006195 }
Jay Soffian07576202010-01-23 03:30:01 -05006196 my $depth = @patterns;
Marcus Griep570d35c2008-08-08 01:41:57 -07006197 if ($depth == 0) {
Jay Soffian07576202010-01-23 03:30:01 -05006198 die "One '*' is needed in glob: '$glob'\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08006199 }
Jay Soffian07576202010-01-23 03:30:01 -05006200 my $left = join('/', @left);
6201 my $right = join('/', @right);
6202 $re = join('/', @patterns);
6203 $re = join('\/',
6204 grep(length, quotemeta($left), "($re)", quotemeta($right)));
Eric Wong74a81222007-02-10 13:28:50 -08006205 my $left_re = qr/^\/\Q$left\E(\/|$)/;
6206 bless { left => $left, right => $right, left_regex => $left_re,
Marcus Griep570d35c2008-08-08 01:41:57 -07006207 regex => qr/$re/, glob => $glob, depth => $depth }, $class;
Eric Wong4bb9ed02007-02-03 13:29:17 -08006208}
6209
6210sub full_path {
6211 my ($self, $path) = @_;
6212 return (length $self->{left} ? "$self->{left}/" : '') .
6213 $path . (length $self->{right} ? "/$self->{right}" : '');
6214}
6215
Eric Wong3397f9d2006-02-16 01:24:16 -08006216__END__
6217
6218Data structures:
6219
Eric Wong4bb9ed02007-02-03 13:29:17 -08006220
6221$remotes = { # returned by read_all_remotes()
6222 'svn' => {
6223 # svn-remote.svn.url=https://svn.musicpd.org
6224 url => 'https://svn.musicpd.org',
6225 # svn-remote.svn.fetch=mpd/trunk:trunk
6226 fetch => {
6227 'mpd/trunk' => 'trunk',
6228 },
6229 # svn-remote.svn.tags=mpd/tags/*:tags/*
6230 tags => {
6231 path => {
6232 left => 'mpd/tags',
6233 right => '',
6234 regex => qr!mpd/tags/([^/]+)$!,
6235 glob => 'tags/*',
6236 },
6237 ref => {
6238 left => 'tags',
6239 right => '',
6240 regex => qr!tags/([^/]+)$!,
6241 glob => 'tags/*',
6242 },
6243 }
6244 }
6245};
6246
Eric Wong44320b92007-01-13 22:35:53 -08006247$log_entry hashref as returned by libsvn_log_entry()
Eric Wong3397f9d2006-02-16 01:24:16 -08006248{
Eric Wong44320b92007-01-13 22:35:53 -08006249 log => 'whitespace-formatted log entry
Eric Wong3397f9d2006-02-16 01:24:16 -08006250', # trailing newline is preserved
6251 revision => '8', # integer
6252 date => '2004-02-24T17:01:44.108345Z', # commit date
6253 author => 'committer name'
6254};
6255
Eric Wong6e8548c2007-01-27 01:32:00 -08006256
6257# this is generated by generate_diff();
Eric Wong3397f9d2006-02-16 01:24:16 -08006258@mods = array of diff-index line hashes, each element represents one line
6259 of diff-index output
6260
6261diff-index line ($m hash)
6262{
6263 mode_a => first column of diff-index output, no leading ':',
6264 mode_b => second column of diff-index output,
6265 sha1_b => sha1sum of the final blob,
Eric Wongac8e0b92006-03-03 01:20:07 -08006266 chg => change type [MCRADT],
Eric Wong3397f9d2006-02-16 01:24:16 -08006267 file_a => original file name of a file (iff chg is 'C' or 'R')
6268 file_b => new/current file name of a file (any chg)
6269}
6270;
Eric Wonga5e0ced2006-06-12 15:23:48 -07006271
Eric Wonga00439a2006-06-27 19:39:13 -07006272# retval of read_url_paths{,_all}();
6273$l_map = {
6274 # repository root url
6275 'https://svn.musicpd.org' => {
6276 # repository path # GIT_SVN_ID
6277 'mpd/trunk' => 'trunk',
6278 'mpd/tags/0.11.5' => 'tags/0.11.5',
6279 },
6280}
6281
Eric Wonga5e0ced2006-06-12 15:23:48 -07006282Notes:
6283 I don't trust the each() function on unless I created %hash myself
6284 because the internal iterator may not have started at base.