blob: d967594ee70a53c1397da76f4b977191c4fd0561 [file] [log] [blame]
Eric Wong3397f9d2006-02-16 01:24:16 -08001#!/usr/bin/env perl
Eric Wong551ce282006-02-20 10:57:29 -08002# Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3# License: GPL v2 or later
Eric Wong3397f9d2006-02-16 01:24:16 -08004use warnings;
5use strict;
6use vars qw/ $AUTHOR $VERSION
Adam Robenffe256f2008-05-23 16:19:41 +02007 $sha1 $sha1_short $_revision $_repository
Eric Wong9760adc2007-01-31 03:06:56 -08008 $_q $_authors %users/;
Eric Wong3397f9d2006-02-16 01:24:16 -08009$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
Eric Wong60d02cc2006-07-06 00:14:16 -070010$VERSION = '@@GIT_VERSION@@';
Eric Wong13ccd6d2006-03-29 22:37:18 -080011
Benoit Sigoure15153452007-10-16 16:36:50 +020012# From which subdir have we been invoked?
13my $cmd_dir_prefix = eval {
14 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
15} || '';
16
Eric Wong5253dc32007-02-20 01:36:30 -080017my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
Eric Wong706587f2007-01-18 17:50:01 -080018$ENV{GIT_DIR} ||= '.git';
Eric Wong9fa00b62007-02-03 12:49:48 -080019$Git::SVN::default_repo_id = 'svn';
Eric Wong8b8fc062007-01-22 11:44:57 -080020$Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn';
Eric Wong6af1db42007-02-14 16:04:10 -080021$Git::SVN::Ra::_log_window_size = 100;
Eric Wong13ccd6d2006-03-29 22:37:18 -080022
Eric Wongf8c9d1d2007-01-12 02:35:20 -080023$Git::SVN::Log::TZ = $ENV{TZ};
Eric Wong3397f9d2006-02-16 01:24:16 -080024$ENV{TZ} = 'UTC';
Eric Wonga00439a2006-06-27 19:39:13 -070025$| = 1; # unbuffer STDOUT
Eric Wong3397f9d2006-02-16 01:24:16 -080026
Benoit Sigoure207f1a72007-10-16 16:36:52 +020027sub fatal (@) { print STDERR "@_\n"; exit 1 }
Eric Wongb9c85182006-12-15 23:58:07 -080028require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
29require SVN::Ra;
30require SVN::Delta;
31if ($SVN::Core::VERSION lt '1.1.0') {
Benoit Sigoure207f1a72007-10-16 16:36:52 +020032 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
Eric Wongb9c85182006-12-15 23:58:07 -080033}
Eric Wongd81bf822007-01-10 01:22:38 -080034push @Git::SVN::Ra::ISA, 'SVN::Ra';
Eric Wongb9c85182006-12-15 23:58:07 -080035push @SVN::Git::Editor::ISA, 'SVN::Delta::Editor';
36push @SVN::Git::Fetcher::ISA, 'SVN::Delta::Editor';
Eric Wong3397f9d2006-02-16 01:24:16 -080037use Carp qw/croak/;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -080038use Digest::MD5;
Eric Wong3397f9d2006-02-16 01:24:16 -080039use IO::File qw//;
40use File::Basename qw/dirname basename/;
41use File::Path qw/mkpath/;
Eric Wong512b6202007-04-03 01:57:08 -070042use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
Eric Wong968bdf12006-06-15 13:36:12 -070043use IPC::Open3;
Eric Wong336f1712007-01-11 02:14:43 -080044use Git;
Eric Wonga5e0ced2006-06-12 15:23:48 -070045
Eric Wong336f1712007-01-11 02:14:43 -080046BEGIN {
Sam Vilainc5f71ad2007-06-15 15:43:59 +120047 # import functions from Git into our packages, en masse
48 no strict 'refs';
Eric Wong336f1712007-01-11 02:14:43 -080049 foreach (qw/command command_oneline command_noisy command_output_pipe
50 command_input_pipe command_close_pipe/) {
Sam Vilainc5f71ad2007-06-15 15:43:59 +120051 for my $package ( qw(SVN::Git::Editor SVN::Git::Fetcher
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -080052 Git::SVN::Migration Git::SVN::Log Git::SVN),
Sam Vilainc5f71ad2007-06-15 15:43:59 +120053 __PACKAGE__) {
54 *{"${package}::$_"} = \&{"Git::$_"};
55 }
Eric Wong336f1712007-01-11 02:14:43 -080056 }
Eric Wong336f1712007-01-11 02:14:43 -080057}
58
Eric Wongb9c85182006-12-15 23:58:07 -080059my ($SVN);
Eric Wong83e99402006-10-11 18:19:55 -070060
Eric Wongf8c9d1d2007-01-12 02:35:20 -080061$sha1 = qr/[a-f\d]{40}/;
62$sha1_short = qr/[a-f\d]{4,40}/;
Eric Wong44320b92007-01-13 22:35:53 -080063my ($_stdin, $_help, $_edit,
Eric Wong9760adc2007-01-31 03:06:56 -080064 $_message, $_file,
Eric Wongd05d72e2007-01-15 22:59:26 -080065 $_template, $_shared,
Karl Hasselström171af112007-05-03 07:51:35 +020066 $_version, $_fetch_all, $_no_rebase,
Eric Wongdee41f32007-03-13 11:40:36 -070067 $_merge, $_strategy, $_dry_run, $_local,
Steven Grimm4be40382008-05-10 22:11:18 -070068 $_prefix, $_no_checkout, $_url, $_verbose,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -070069 $_git_format, $_commit_url, $_tag);
Eric Wong0bed5ea2007-02-09 02:45:03 -080070$Git::SVN::_follow_parent = 1;
Eric Wong706587f2007-01-18 17:50:01 -080071my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
72 'config-dir=s' => \$Git::SVN::Ra::config_dir,
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +020073 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
74 'ignore-paths=s' => \$SVN::Git::Fetcher::_ignore_regex );
Eric Wong0bed5ea2007-02-09 02:45:03 -080075my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
Eric Wongdc5869c2006-05-24 02:07:32 -070076 'authors-file|A=s' => \$_authors,
Eric Wongecc712d2007-01-31 12:28:10 -080077 'repack:i' => \$Git::SVN::_repack,
Eric Wong97ae0912007-02-11 15:21:24 -080078 'noMetadata' => \$Git::SVN::_no_metadata,
79 'useSvmProps' => \$Git::SVN::_use_svm_props,
Eric Wong62e349d2007-02-16 19:57:29 -080080 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
Eric Wong6af1db42007-02-14 16:04:10 -080081 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
Eric Wong1e889ef2007-02-16 01:45:13 -080082 'no-checkout' => \$_no_checkout,
Eric Wong80f50742006-06-27 19:39:14 -070083 'quiet|q' => \$_q,
Eric Wongecc712d2007-01-31 12:28:10 -080084 'repack-flags|repack-args|repack-opts=s' =>
85 \$Git::SVN::_repack_flags,
Andy Whitcroft70ae04e2007-11-22 13:44:42 +000086 'use-log-author' => \$Git::SVN::_use_log_author,
Avery Pennarun6aa9ba12008-04-15 21:04:17 -040087 'add-author-from' => \$Git::SVN::_add_author_from,
Pete Harlane82f0d72009-01-17 20:10:14 -080088 'localtime' => \$Git::SVN::_localtime,
Eric Wong706587f2007-01-18 17:50:01 -080089 %remote_opts );
Eric Wong36f5b1f2006-05-23 19:23:41 -070090
martin f. krafft8f728fb2007-07-14 11:25:28 +020091my ($_trunk, $_tags, $_branches, $_stdlayout);
Eric Wong0dfaf0a2007-02-18 02:34:09 -080092my %icv;
Eric Wongdadc6d22007-02-14 12:27:41 -080093my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
94 'trunk|T=s' => \$_trunk, 'tags|t=s' => \$_tags,
95 'branches|b=s' => \$_branches, 'prefix=s' => \$_prefix,
martin f. krafft8f728fb2007-07-14 11:25:28 +020096 'stdlayout|s' => \$_stdlayout,
Eric Wong4a1bb4c2007-05-13 09:58:14 -070097 'minimize-url|m' => \$Git::SVN::_minimize_url,
Eric Wong0dfaf0a2007-02-18 02:34:09 -080098 'no-metadata' => sub { $icv{noMetadata} = 1 },
99 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
100 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
101 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
Eric Wongdadc6d22007-02-14 12:27:41 -0800102 %remote_opts );
Eric Wong27e9fb82006-06-27 19:39:12 -0700103my %cmt_opts = ( 'edit|e' => \$_edit,
Eric Wong24e22aa2007-01-29 00:07:49 -0800104 'rmdir' => \$SVN::Git::Editor::_rmdir,
105 'find-copies-harder' => \$SVN::Git::Editor::_find_copies_harder,
106 'l=i' => \$SVN::Git::Editor::_rename_limit,
107 'copy-similarity|C=i'=> \$SVN::Git::Editor::_cp_similarity
Eric Wong27e9fb82006-06-27 19:39:12 -0700108);
Eric Wong9d55b412006-06-12 15:53:13 -0700109
Eric Wong3397f9d2006-02-16 01:24:16 -0800110my %cmd = (
Eric Wong2a3240b2007-01-04 18:09:56 -0800111 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
Eric Wonge98671e2007-02-14 02:21:19 -0800112 { 'revision|r=s' => \$_revision,
Eric Wong905f8b72007-02-16 03:22:40 -0800113 'fetch-all|all' => \$_fetch_all,
Eric Wonge98671e2007-02-14 02:21:19 -0800114 %fc_opts } ],
Eric Wong0425ea92007-02-16 18:45:01 -0800115 clone => [ \&cmd_clone, "Initialize and fetch revisions",
116 { 'revision|r=s' => \$_revision,
117 %fc_opts, %init_opts } ],
Eric Wongd2866f92007-01-11 12:26:16 -0800118 init => [ \&cmd_init, "Initialize a repo for tracking" .
Eric Wongf8ab6b72006-05-31 15:49:56 -0700119 " (requires URL argument)",
Eric Wong9d55b412006-06-12 15:53:13 -0700120 \%init_opts ],
Eric Wongdadc6d22007-02-14 12:27:41 -0800121 'multi-init' => [ \&cmd_multi_init,
122 "Deprecated alias for ".
123 "'$0 init -T<trunk> -b<branches> -t<tags>'",
124 \%init_opts ],
Eric Wongd7ad3be2007-01-14 03:14:28 -0800125 dcommit => [ \&cmd_dcommit,
126 'Commit several diffs to merge with upstream',
Eric Wong3289e862006-12-15 23:58:08 -0800127 { 'merge|m|M' => \$_merge,
128 'strategy|s=s' => \$_strategy,
Eric Wong905f8b72007-02-16 03:22:40 -0800129 'verbose|v' => \$_verbose,
Eric Wong3289e862006-12-15 23:58:08 -0800130 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800131 'fetch-all|all' => \$_fetch_all,
Eric Wongba24e742008-08-07 02:06:16 -0700132 'commit-url=s' => \$_commit_url,
133 'revision|r=i' => \$_revision,
Karl Hasselström171af112007-05-03 07:51:35 +0200134 'no-rebase' => \$_no_rebase,
Eric Wong4b155222006-12-22 21:59:24 -0800135 %cmt_opts, %fc_opts } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700136 branch => [ \&cmd_branch,
137 'Create a branch in the SVN repository',
138 { 'message|m=s' => \$_message,
139 'dry-run|n' => \$_dry_run,
140 'tag|t' => \$_tag } ],
141 tag => [ sub { $_tag = 1; cmd_branch(@_) },
142 'Create a tag in the SVN repository',
143 { 'message|m=s' => \$_message,
144 'dry-run|n' => \$_dry_run } ],
Eric Wong1ce255d2007-01-14 23:21:16 -0800145 'set-tree' => [ \&cmd_set_tree,
146 "Set an SVN repository to a git tree-ish",
147 { 'stdin|' => \$_stdin, %cmt_opts, %fc_opts, } ],
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200148 'create-ignore' => [ \&cmd_create_ignore,
149 'Create a .gitignore per svn:ignore',
150 { 'revision|r=i' => \$_revision
151 } ],
Benoit Sigoure15153452007-10-16 16:36:50 +0200152 'propget' => [ \&cmd_propget,
153 'Print the value of a property on a file or directory',
154 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200155 'proplist' => [ \&cmd_proplist,
156 'List all properties of a file or directory',
157 { 'revision|r=i' => \$_revision } ],
Eric Wong5969cbe2007-01-11 17:58:39 -0800158 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200159 { 'revision|r=i' => \$_revision
Lars Hjemli05b4df32007-09-05 11:35:29 +0200160 } ],
Vineet Kumar2d879792007-11-19 14:56:15 -0800161 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
162 { 'revision|r=i' => \$_revision
163 } ],
Eric Wong1c8443b2007-01-14 02:17:00 -0800164 'multi-fetch' => [ \&cmd_multi_fetch,
Eric Wonge98671e2007-02-14 02:21:19 -0800165 "Deprecated alias for $0 fetch --all",
166 { 'revision|r=s' => \$_revision, %fc_opts } ],
Eric Wong706587f2007-01-18 17:50:01 -0800167 'migrate' => [ sub { },
168 # no-op, we automatically run this anyways,
Eric Wong706587f2007-01-18 17:50:01 -0800169 'Migrate configuration/metadata/layout from
170 previous versions of git-svn',
Eric Wonga836a0e2007-02-14 19:34:56 -0800171 { 'minimize' => \$Git::SVN::Migration::_minimize,
172 %remote_opts } ],
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800173 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
174 { 'limit=i' => \$Git::SVN::Log::limit,
Eric Wong79bb8d82006-06-01 02:35:44 -0700175 'revision|r=s' => \$_revision,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800176 'verbose|v' => \$Git::SVN::Log::verbose,
177 'incremental' => \$Git::SVN::Log::incremental,
178 'oneline' => \$Git::SVN::Log::oneline,
179 'show-commit' => \$Git::SVN::Log::show_commit,
180 'non-recursive' => \$Git::SVN::Log::non_recursive,
Eric Wong79bb8d82006-06-01 02:35:44 -0700181 'authors-file|A=s' => \$_authors,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800182 'color' => \$Git::SVN::Log::color,
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200183 'pager=s' => \$Git::SVN::Log::pager
Eric Wong79bb8d82006-06-01 02:35:44 -0700184 } ],
Eric Wong222566e2008-08-08 01:41:58 -0700185 'find-rev' => [ \&cmd_find_rev,
186 "Translate between SVN revision numbers and tree-ish",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200187 {} ],
Eric Wong905f8b72007-02-16 03:22:40 -0800188 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
189 { 'merge|m|M' => \$_merge,
190 'verbose|v' => \$_verbose,
191 'strategy|s=s' => \$_strategy,
Eric Wongdee41f32007-03-13 11:40:36 -0700192 'local|l' => \$_local,
Eric Wong905f8b72007-02-16 03:22:40 -0800193 'fetch-all|all' => \$_fetch_all,
Seth Falcon7d45e142008-05-19 20:29:17 -0700194 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800195 %fc_opts } ],
Eric Wong44320b92007-01-13 22:35:53 -0800196 'commit-diff' => [ \&cmd_commit_diff,
197 'Commit a diff between two trees',
Eric Wong27e9fb82006-06-27 19:39:12 -0700198 { 'message|m=s' => \$_message,
199 'file|F=s' => \$_file,
Eric Wong45bf4732006-11-09 01:19:37 -0800200 'revision|r=s' => \$_revision,
Eric Wong27e9fb82006-06-27 19:39:12 -0700201 %cmt_opts } ],
David D. Kilzere6fefa92007-11-21 11:57:18 -0800202 'info' => [ \&cmd_info,
203 "Show info about the latest SVN revision
204 on the current branch",
David D. Kilzer8b014d72007-11-21 11:57:19 -0800205 { 'url' => \$_url, } ],
Tim Stoakes6fb53752008-02-10 15:21:08 +1030206 'blame' => [ \&Git::SVN::Log::cmd_blame,
207 "Show what revision and author last modified each line of a file",
Steven Grimm4be40382008-05-10 22:11:18 -0700208 { 'git-format' => \$_git_format } ],
Eric Wong3397f9d2006-02-16 01:24:16 -0800209);
Eric Wong9d55b412006-06-12 15:53:13 -0700210
Eric Wong3397f9d2006-02-16 01:24:16 -0800211my $cmd;
212for (my $i = 0; $i < @ARGV; $i++) {
213 if (defined $cmd{$ARGV[$i]}) {
214 $cmd = $ARGV[$i];
215 splice @ARGV, $i, 1;
216 last;
217 }
218};
219
Eric Wong540424b2007-12-19 00:31:43 -0800220# make sure we're always running at the top-level working directory
221unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
Eric Wong5253dc32007-02-20 01:36:30 -0800222 unless (-d $ENV{GIT_DIR}) {
223 if ($git_dir_user_set) {
224 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
225 "but it is not a directory\n";
226 }
227 my $git_dir = delete $ENV{GIT_DIR};
Deskin Millerfe4003f2008-11-06 00:07:39 -0500228 my $cdup = undef;
229 git_cmd_try {
230 $cdup = command_oneline(qw/rev-parse --show-cdup/);
231 $git_dir = '.' unless ($cdup);
232 chomp $cdup if ($cdup);
233 $cdup = "." unless ($cdup && length $cdup);
234 } "Already at toplevel, but $git_dir not found\n";
Eric Wong5253dc32007-02-20 01:36:30 -0800235 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
236 unless (-d $git_dir) {
237 die "$git_dir still not found after going to ",
238 "'$cdup'\n";
239 }
240 $ENV{GIT_DIR} = $git_dir;
241 }
Adam Robenffe256f2008-05-23 16:19:41 +0200242 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wong5253dc32007-02-20 01:36:30 -0800243}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100244
245my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
246
247read_repo_config(\%opts);
Eric Wong222566e2008-08-08 01:41:58 -0700248if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
249 Getopt::Long::Configure('pass_through');
250}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100251my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
252 'minimize-connections' => \$Git::SVN::Migration::_minimize,
253 'id|i=s' => \$Git::SVN::default_ref_id,
254 'svn-remote|remote|R=s' => sub {
255 $Git::SVN::no_reuse_existing = 1;
256 $Git::SVN::default_repo_id = $_[1] });
257exit 1 if (!$rv && $cmd && $cmd ne 'log');
258
259usage(0) if $_help;
260version() if $_version;
261usage(1) unless defined $cmd;
262load_authors() if $_authors;
263
Eric Wong0425ea92007-02-16 18:45:01 -0800264unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
Eric Wong706587f2007-01-18 17:50:01 -0800265 Git::SVN::Migration::migration_check();
266}
Eric Wongecc712d2007-01-31 12:28:10 -0800267Git::SVN::init_vars();
Eric Wongb805b442007-01-22 13:52:04 -0800268eval {
269 Git::SVN::verify_remotes_sanity();
270 $cmd{$cmd}->[0]->(@ARGV);
271};
272fatal $@ if $@;
Eric Wong1e889ef2007-02-16 01:45:13 -0800273post_fetch_checkout();
Eric Wong3397f9d2006-02-16 01:24:16 -0800274exit 0;
275
276####################### primary functions ######################
277sub usage {
278 my $exit = shift || 0;
279 my $fd = $exit ? \*STDERR : \*STDOUT;
280 print $fd <<"";
281git-svn - bidirectional operations between a single Subversion tree and git
Stephan Beyer1b1dd232008-07-13 15:36:15 +0200282Usage: git svn <command> [options] [arguments]\n
Eric Wong448c81b2006-03-03 01:20:09 -0800283
284 print $fd "Available commands:\n" unless $cmd;
Eric Wong3397f9d2006-02-16 01:24:16 -0800285
286 foreach (sort keys %cmd) {
Eric Wong448c81b2006-03-03 01:20:09 -0800287 next if $cmd && $cmd ne $_;
Eric Wonga836a0e2007-02-14 19:34:56 -0800288 next if /^multi-/; # don't show deprecated commands
Eric Wongb203b762006-10-11 14:53:36 -0700289 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
Benoit Sigoureaa807bc2007-11-03 19:53:34 +0100290 foreach (sort keys %{$cmd{$_}->[2]}) {
Eric Wong512b6202007-04-03 01:57:08 -0700291 # mixed-case options are for .git/config only
292 next if /[A-Z]/ && /^[a-z]+$/i;
Eric Wong448c81b2006-03-03 01:20:09 -0800293 # prints out arguments as they should be passed:
Eric Wongb8c92ca2006-05-24 01:40:37 -0700294 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
Eric Wongb203b762006-10-11 14:53:36 -0700295 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
Eric Wong448c81b2006-03-03 01:20:09 -0800296 "--$_" : "-$_" }
297 split /\|/,$_)," $x\n";
298 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800299 }
300 print $fd <<"";
Eric Wong448c81b2006-03-03 01:20:09 -0800301\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
302arbitrary identifier if you're tracking multiple SVN branches/repositories in
303one git repository and want to keep them separate. See git-svn(1) for more
304information.
Eric Wong3397f9d2006-02-16 01:24:16 -0800305
306 exit $exit;
307}
308
Eric Wong551ce282006-02-20 10:57:29 -0800309sub version {
Eric Wong7d60ab22006-12-28 01:16:20 -0800310 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
Eric Wong551ce282006-02-20 10:57:29 -0800311 exit 0;
312}
313
Eric Wong8164b652007-01-11 15:35:55 -0800314sub do_git_init_db {
315 unless (-d $ENV{GIT_DIR}) {
316 my @init_db = ('init');
317 push @init_db, "--template=$_template" if defined $_template;
Eric Wongdadc6d22007-02-14 12:27:41 -0800318 if (defined $_shared) {
319 if ($_shared =~ /[a-z]/) {
320 push @init_db, "--shared=$_shared";
321 } else {
322 push @init_db, "--shared";
323 }
324 }
Eric Wong8164b652007-01-11 15:35:55 -0800325 command_noisy(@init_db);
Adam Robenffe256f2008-05-23 16:19:41 +0200326 $_repository = Git->repository(Repository => ".git");
Eric Wong8164b652007-01-11 15:35:55 -0800327 }
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800328 my $set;
329 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
330 foreach my $i (keys %icv) {
331 die "'$set' and '$i' cannot both be set\n" if $set;
332 next unless defined $icv{$i};
333 command_noisy('config', "$pfx.$i", $icv{$i});
334 $set = $i;
335 }
Eric Wong8164b652007-01-11 15:35:55 -0800336}
337
Eric Wongdadc6d22007-02-14 12:27:41 -0800338sub init_subdir {
339 my $repo_path = shift or return;
340 mkpath([$repo_path]) unless -d $repo_path;
341 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
Eric Wongf30603f2007-02-23 01:26:26 -0800342 $ENV{GIT_DIR} = '.git';
Adam Robenffe256f2008-05-23 16:19:41 +0200343 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wongdadc6d22007-02-14 12:27:41 -0800344}
345
Eric Wong0425ea92007-02-16 18:45:01 -0800346sub cmd_clone {
347 my ($url, $path) = @_;
348 if (!defined $path &&
martin f. krafft8f728fb2007-07-14 11:25:28 +0200349 (defined $_trunk || defined $_branches || defined $_tags ||
350 defined $_stdlayout) &&
Eric Wong0425ea92007-02-16 18:45:01 -0800351 $url !~ m#^[a-z\+]+://#) {
352 $path = $url;
353 }
Eric Wong0425ea92007-02-16 18:45:01 -0800354 $path = basename($url) if !defined $path || !length $path;
Eric Wongf30603f2007-02-23 01:26:26 -0800355 cmd_init($url, $path);
Eric Wong0425ea92007-02-16 18:45:01 -0800356 Git::SVN::fetch_all($Git::SVN::default_repo_id);
357}
358
Eric Wongd2866f92007-01-11 12:26:16 -0800359sub cmd_init {
martin f. krafft8f728fb2007-07-14 11:25:28 +0200360 if (defined $_stdlayout) {
361 $_trunk = 'trunk' if (!defined $_trunk);
362 $_tags = 'tags' if (!defined $_tags);
363 $_branches = 'branches' if (!defined $_branches);
364 }
Eric Wongdadc6d22007-02-14 12:27:41 -0800365 if (defined $_trunk || defined $_branches || defined $_tags) {
366 return cmd_multi_init(@_);
Eric Wong03e0ea82006-06-30 21:42:53 -0700367 }
Eric Wongdadc6d22007-02-14 12:27:41 -0800368 my $url = shift or die "SVN repository location required ",
369 "as a command-line argument\n";
370 init_subdir(@_);
Eric Wong8164b652007-01-11 15:35:55 -0800371 do_git_init_db();
Eric Wong03e0ea82006-06-30 21:42:53 -0700372
Eric Wong706587f2007-01-18 17:50:01 -0800373 Git::SVN->init($url);
Eric Wong3397f9d2006-02-16 01:24:16 -0800374}
375
Eric Wong2a3240b2007-01-04 18:09:56 -0800376sub cmd_fetch {
Eric Wonge98671e2007-02-14 02:21:19 -0800377 if (grep /^\d+=./, @_) {
378 die "'<rev>=<commit>' fetch arguments are ",
379 "no longer supported.\n";
Eric Wong07a1c952007-01-22 15:47:41 -0800380 }
Eric Wonge98671e2007-02-14 02:21:19 -0800381 my ($remote) = @_;
382 if (@_ > 1) {
Eric Wong905f8b72007-02-16 03:22:40 -0800383 die "Usage: $0 fetch [--all] [svn-remote]\n";
Eric Wonge98671e2007-02-14 02:21:19 -0800384 }
385 $remote ||= $Git::SVN::default_repo_id;
386 if ($_fetch_all) {
387 cmd_multi_fetch();
388 } else {
389 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
Eric Wong1c8443b2007-01-14 02:17:00 -0800390 }
Eric Wong2a3240b2007-01-04 18:09:56 -0800391}
392
Eric Wong1ce255d2007-01-14 23:21:16 -0800393sub cmd_set_tree {
Eric Wong3397f9d2006-02-16 01:24:16 -0800394 my (@commits) = @_;
395 if ($_stdin || !@commits) {
396 print "Reading from stdin...\n";
397 @commits = ();
398 while (<STDIN>) {
Eric Wong1ca72ae2006-03-03 01:20:09 -0800399 if (/\b($sha1_short)\b/o) {
Eric Wong3397f9d2006-02-16 01:24:16 -0800400 unshift @commits, $1;
401 }
402 }
403 }
404 my @revs;
Eric Wong8de010a2006-02-20 10:57:26 -0800405 foreach my $c (@commits) {
Eric Wongaef4e922006-12-15 10:59:54 -0800406 my @tmp = command('rev-parse',$c);
Eric Wong8de010a2006-02-20 10:57:26 -0800407 if (scalar @tmp == 1) {
408 push @revs, $tmp[0];
409 } elsif (scalar @tmp > 1) {
Eric Wongaef4e922006-12-15 10:59:54 -0800410 push @revs, reverse(command('rev-list',@tmp));
Eric Wong8de010a2006-02-20 10:57:26 -0800411 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200412 fatal "Failed to rev-parse $c";
Eric Wong8de010a2006-02-20 10:57:26 -0800413 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800414 }
Eric Wong1ce255d2007-01-14 23:21:16 -0800415 my $gs = Git::SVN->new;
416 my ($r_last, $cmt_last) = $gs->last_rev_commit;
417 $gs->fetch;
Eric Wong97f69872007-01-25 11:53:13 -0800418 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
Eric Wong1ce255d2007-01-14 23:21:16 -0800419 fatal "There are new revisions that were fetched ",
420 "and need to be merged (or acknowledged) ",
421 "before committing.\nlast rev: $r_last\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200422 " current: $gs->{last_rev}";
Eric Wong1ce255d2007-01-14 23:21:16 -0800423 }
424 $gs->set_tree($_) foreach @revs;
Eric Wonga5e0ced2006-06-12 15:23:48 -0700425 print "Done committing ",scalar @revs," revisions to SVN\n";
Eric Wong3157dd92007-12-13 08:27:34 -0800426 unlink $gs->{index};
Eric Wonga5e0ced2006-06-12 15:23:48 -0700427}
428
Eric Wongd7ad3be2007-01-14 03:14:28 -0800429sub cmd_dcommit {
430 my $head = shift;
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100431 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
David Reiss826a9332007-11-13 13:47:26 -0800432 'Cannot dcommit with a dirty index. Commit your changes first, '
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100433 . "or stash them with `git stash'.\n";
Eric Wongd7ad3be2007-01-14 03:14:28 -0800434 $head ||= 'HEAD';
Eric Wonga8ae2622007-02-13 14:22:11 -0800435 my @refs;
Eric Wong13c823f2007-04-08 00:59:19 -0700436 my ($url, $rev, $uuid, $gs) = working_head_info($head, \@refs);
Thomas Rast2cb61102008-08-31 15:50:59 +0200437 unless ($gs) {
438 die "Unable to determine upstream SVN information from ",
439 "$head history.\nPerhaps the repository is empty.";
440 }
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100441
442 if (defined $_commit_url) {
443 $url = $_commit_url;
444 } else {
445 $url = eval { command_oneline('config', '--get',
446 "svn-remote.$gs->{repo_id}.commiturl") };
447 if (!$url) {
448 $url = $gs->full_url
449 }
450 }
451
Eric Wongba24e742008-08-07 02:06:16 -0700452 my $last_rev = $_revision if defined $_revision;
Matthieu Moy59b0c242008-04-24 20:06:36 +0200453 if ($url) {
454 print "Committing to $url ...\n";
455 }
Eric Wong733a65a2007-06-13 02:23:28 -0700456 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
Eric Wong751eb392007-08-31 18:16:12 -0700457 if ($_no_rebase && scalar(@$linear_refs) > 1) {
458 warn "Attempting to commit more than one change while ",
459 "--no-rebase is enabled.\n",
460 "If these changes depend on each other, re-running ",
Eric Wong7dfa16b2008-01-02 10:09:49 -0800461 "without --no-rebase may be required."
Eric Wong751eb392007-08-31 18:16:12 -0700462 }
Eric Wong711521e2008-08-20 00:30:06 -0700463 my $expect_url = $url;
464 Git::SVN::remove_username($expect_url);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800465 while (1) {
466 my $d = shift @$linear_refs or last;
Eric Wong45bf4732006-11-09 01:19:37 -0800467 unless (defined $last_rev) {
468 (undef, $last_rev, undef) = cmt_metadata("$d~1");
469 unless (defined $last_rev) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800470 fatal "Unable to extract revision information ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200471 "from commit $d~1";
Eric Wong45bf4732006-11-09 01:19:37 -0800472 }
473 }
Eric Wongb22d4492006-08-26 00:01:23 -0700474 if ($_dry_run) {
475 print "diff-tree $d~1 $d\n";
476 } else {
Eric Wong751eb392007-08-31 18:16:12 -0700477 my $cmt_rev;
Eric Wongd7ad3be2007-01-14 03:14:28 -0800478 my %ed_opts = ( r => $last_rev,
Eric Wong61395352007-01-27 14:33:08 -0800479 log => get_commit_entry($d)->{log},
Eric Wongba24e742008-08-07 02:06:16 -0700480 ra => Git::SVN::Ra->new($url),
Konstantin V. Arkhipov3caf3202007-11-14 03:52:02 +0300481 config => SVN::Core::config_get_config(
482 $Git::SVN::Ra::config_dir
483 ),
Eric Wong61395352007-01-27 14:33:08 -0800484 tree_a => "$d~1",
485 tree_b => $d,
486 editor_cb => sub {
487 print "Committed r$_[0]\n";
Eric Wong751eb392007-08-31 18:16:12 -0700488 $cmt_rev = $_[0];
489 },
Eric Wonga8ae2622007-02-13 14:22:11 -0800490 svn_path => '');
Eric Wong61395352007-01-27 14:33:08 -0800491 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800492 print "No changes\n$d~1 == $d\n";
Eric Wong733a65a2007-06-13 02:23:28 -0700493 } elsif ($parents->{$d} && @{$parents->{$d}}) {
Eric Wong751eb392007-08-31 18:16:12 -0700494 $gs->{inject_parents_dcommit}->{$cmt_rev} =
Eric Wong733a65a2007-06-13 02:23:28 -0700495 $parents->{$d};
Eric Wongd7ad3be2007-01-14 03:14:28 -0800496 }
Eric Wong751eb392007-08-31 18:16:12 -0700497 $_fetch_all ? $gs->fetch_all : $gs->fetch;
Eric Wong7dfa16b2008-01-02 10:09:49 -0800498 $last_rev = $cmt_rev;
Eric Wong751eb392007-08-31 18:16:12 -0700499 next if $_no_rebase;
500
501 # we always want to rebase against the current HEAD,
502 # not any head that was passed to us
Eric Wongc74d9ac2007-11-05 03:21:47 -0800503 my @diff = command('diff-tree', $d,
Eric Wong751eb392007-08-31 18:16:12 -0700504 $gs->refname, '--');
505 my @finish;
506 if (@diff) {
507 @finish = rebase_cmd();
Eric Wongc74d9ac2007-11-05 03:21:47 -0800508 print STDERR "W: $d and ", $gs->refname,
Eric Wong751eb392007-08-31 18:16:12 -0700509 " differ, using @finish:\n",
Eric Wongc74d9ac2007-11-05 03:21:47 -0800510 join("\n", @diff), "\n";
Eric Wong751eb392007-08-31 18:16:12 -0700511 } else {
512 print "No changes between current HEAD and ",
513 $gs->refname,
514 "\nResetting to the latest ",
515 $gs->refname, "\n";
516 @finish = qw/reset --mixed/;
517 }
518 command_noisy(@finish, $gs->refname);
Eric Wongc74d9ac2007-11-05 03:21:47 -0800519 if (@diff) {
520 @refs = ();
521 my ($url_, $rev_, $uuid_, $gs_) =
522 working_head_info($head, \@refs);
523 my ($linear_refs_, $parents_) =
524 linearize_history($gs_, \@refs);
525 if (scalar(@$linear_refs) !=
526 scalar(@$linear_refs_)) {
527 fatal "# of revisions changed ",
528 "\nbefore:\n",
529 join("\n", @$linear_refs),
530 "\n\nafter:\n",
531 join("\n", @$linear_refs_), "\n",
532 'If you are attempting to commit ',
533 "merges, try running:\n\t",
534 'git rebase --interactive',
535 '--preserve-merges ',
536 $gs->refname,
537 "\nBefore dcommitting";
538 }
Eric Wong711521e2008-08-20 00:30:06 -0700539 if ($url_ ne $expect_url) {
Eric Wongc74d9ac2007-11-05 03:21:47 -0800540 fatal "URL mismatch after rebase: ",
Eric Wong711521e2008-08-20 00:30:06 -0700541 "$url_ != $expect_url";
Eric Wongc74d9ac2007-11-05 03:21:47 -0800542 }
543 if ($uuid_ ne $uuid) {
544 fatal "uuid mismatch after rebase: ",
545 "$uuid_ != $uuid";
546 }
547 # remap parents
548 my (%p, @l, $i);
549 for ($i = 0; $i < scalar @$linear_refs; $i++) {
550 my $new = $linear_refs_->[$i] or next;
551 $p{$new} =
552 $parents->{$linear_refs->[$i]};
553 push @l, $new;
554 }
555 $parents = \%p;
556 $linear_refs = \@l;
557 }
Eric Wongb22d4492006-08-26 00:01:23 -0700558 }
559 }
Eric Wong3157dd92007-12-13 08:27:34 -0800560 unlink $gs->{index};
Eric Wongb22d4492006-08-26 00:01:23 -0700561}
562
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700563sub cmd_branch {
564 my ($branch_name, $head) = @_;
565
566 unless (defined $branch_name && length $branch_name) {
567 die(($_tag ? "tag" : "branch") . " name required\n");
568 }
569 $head ||= 'HEAD';
570
571 my ($src, $rev, undef, $gs) = working_head_info($head);
572
Deskin Millera0fbc872008-12-01 21:43:00 -0500573 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700574 my $glob = $remote->{ $_tag ? 'tags' : 'branches' };
575 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
576 my $dst = join '/', $remote->{url}, $lft, $branch_name, ($rgt || ());
577
578 my $ctx = SVN::Client->new(
579 auth => Git::SVN::Ra::_auth_providers(),
580 log_msg => sub {
581 ${ $_[0] } = defined $_message
582 ? $_message
583 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
584 . $branch_name;
585 },
586 );
587
588 eval {
589 $ctx->ls($dst, 'HEAD', 0);
590 } and die "branch ${branch_name} already exists\n";
591
592 print "Copying ${src} at r${rev} to ${dst}...\n";
593 $ctx->copy($src, $rev, $dst)
594 unless $_dry_run;
595
596 $gs->fetch_all;
597}
598
Adam Roben26e60162007-04-27 11:57:53 -0700599sub cmd_find_rev {
Marc-Andre Lureauea14e6c2008-03-11 10:00:45 +0200600 my $revision_or_hash = shift or die "SVN or git revision required ",
601 "as a command-line argument\n";
Adam Roben26e60162007-04-27 11:57:53 -0700602 my $result;
603 if ($revision_or_hash =~ /^r\d+$/) {
Adam Robenb3cb7e42007-04-29 01:35:27 -0700604 my $head = shift;
605 $head ||= 'HEAD';
606 my @refs;
João Abecasis63c56022008-07-14 16:28:04 +0100607 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
Adam Robenb3cb7e42007-04-29 01:35:27 -0700608 unless ($gs) {
609 die "Unable to determine upstream SVN information from ",
610 "$head history\n";
Adam Roben26e60162007-04-27 11:57:53 -0700611 }
Adam Robenb3cb7e42007-04-29 01:35:27 -0700612 my $desired_revision = substr($revision_or_hash, 1);
João Abecasis63c56022008-07-14 16:28:04 +0100613 $result = $gs->rev_map_get($desired_revision, $uuid);
Adam Roben26e60162007-04-27 11:57:53 -0700614 } else {
615 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
616 $result = $rev;
617 }
618 print "$result\n" if $result;
619}
620
Eric Wong905f8b72007-02-16 03:22:40 -0800621sub cmd_rebase {
622 command_noisy(qw/update-index --refresh/);
Eric Wong13c823f2007-04-08 00:59:19 -0700623 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
624 unless ($gs) {
Eric Wong905f8b72007-02-16 03:22:40 -0800625 die "Unable to determine upstream SVN information from ",
626 "working tree history\n";
627 }
Seth Falcon7d45e142008-05-19 20:29:17 -0700628 if ($_dry_run) {
629 print "Remote Branch: " . $gs->refname . "\n";
630 print "SVN URL: " . $url . "\n";
631 return;
632 }
Eric Wong905f8b72007-02-16 03:22:40 -0800633 if (command(qw/diff-index HEAD --/)) {
634 print STDERR "Cannot rebase with uncommited changes:\n";
635 command_noisy('status');
636 exit 1;
637 }
Eric Wongdee41f32007-03-13 11:40:36 -0700638 unless ($_local) {
Steven Grimmcec0d5a2007-11-29 11:54:39 -0800639 # rebase will checkout for us, so no need to do it explicitly
640 $_no_checkout = 'true';
Eric Wongdee41f32007-03-13 11:40:36 -0700641 $_fetch_all ? $gs->fetch_all : $gs->fetch;
642 }
Eric Wong905f8b72007-02-16 03:22:40 -0800643 command_noisy(rebase_cmd(), $gs->refname);
644}
645
Eric Wong5969cbe2007-01-11 17:58:39 -0800646sub cmd_show_ignore {
Eric Wong13c823f2007-04-08 00:59:19 -0700647 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
648 $gs ||= Git::SVN->new;
Eric Wong5969cbe2007-01-11 17:58:39 -0800649 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Benoit Sigoure01bdab82007-10-16 16:36:48 +0200650 $gs->prop_walk($gs->{path}, $r, sub {
651 my ($gs, $path, $props) = @_;
652 print STDOUT "\n# $path\n";
653 my $s = $props->{'svn:ignore'} or return;
654 $s =~ s/[\r\n]+/\n/g;
655 chomp $s;
656 $s =~ s#^#$path#gm;
657 print STDOUT "$s\n";
658 });
Eric Wonga5e0ced2006-06-12 15:23:48 -0700659}
660
Vineet Kumar2d879792007-11-19 14:56:15 -0800661sub cmd_show_externals {
662 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
663 $gs ||= Git::SVN->new;
664 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
665 $gs->prop_walk($gs->{path}, $r, sub {
666 my ($gs, $path, $props) = @_;
667 print STDOUT "\n# $path\n";
668 my $s = $props->{'svn:externals'} or return;
669 $s =~ s/[\r\n]+/\n/g;
670 chomp $s;
671 $s =~ s#^#$path#gm;
672 print STDOUT "$s\n";
673 });
674}
675
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200676sub cmd_create_ignore {
677 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
678 $gs ||= Git::SVN->new;
679 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
680 $gs->prop_walk($gs->{path}, $r, sub {
681 my ($gs, $path, $props) = @_;
682 # $path is of the form /path/to/dir/
Brian Gernhardt7d9fd452009-02-19 13:08:04 -0500683 $path = '.' . $path;
684 # SVN can have attributes on empty directories,
685 # which git won't track
686 mkpath([$path]) unless -d $path;
687 my $ignore = $path . '.gitignore';
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200688 my $s = $props->{'svn:ignore'} or return;
689 open(GITIGNORE, '>', $ignore)
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200690 or fatal("Failed to open `$ignore' for writing: $!");
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200691 $s =~ s/[\r\n]+/\n/g;
692 chomp $s;
693 # Prefix all patterns so that the ignore doesn't apply
694 # to sub-directories.
695 $s =~ s#^#/#gm;
696 print GITIGNORE "$s\n";
697 close(GITIGNORE)
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200698 or fatal("Failed to close `$ignore': $!");
Gustaf Hendebyc4c66b22008-05-05 00:33:09 +0200699 command_noisy('add', '-f', $ignore);
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200700 });
701}
702
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800703sub canonicalize_path {
704 my ($path) = @_;
David D. Kilzere6fefa92007-11-21 11:57:18 -0800705 my $dot_slash_added = 0;
706 if (substr($path, 0, 1) ne "/") {
707 $path = "./" . $path;
708 $dot_slash_added = 1;
709 }
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800710 # File::Spec->canonpath doesn't collapse x/../y into y (for a
711 # good reason), so let's do this manually.
712 $path =~ s#/+#/#g;
713 $path =~ s#/\.(?:/|$)#/#g;
714 $path =~ s#/[^/]+/\.\.##g;
715 $path =~ s#/$##g;
David D. Kilzere6fefa92007-11-21 11:57:18 -0800716 $path =~ s#^\./## if $dot_slash_added;
Gerrit Pape2fe403e2008-07-06 19:28:50 +0000717 $path =~ s#^/##;
718 $path =~ s#^\.$##;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800719 return $path;
720}
721
Benoit Sigoure15153452007-10-16 16:36:50 +0200722# get_svnprops(PATH)
723# ------------------
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200724# Helper for cmd_propget and cmd_proplist below.
Benoit Sigoure15153452007-10-16 16:36:50 +0200725sub get_svnprops {
726 my $path = shift;
727 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
728 $gs ||= Git::SVN->new;
729
730 # prefix THE PATH by the sub-directory from which the user
731 # invoked us.
732 $path = $cmd_dir_prefix . $path;
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200733 fatal("No such file or directory: $path") unless -e $path;
Benoit Sigoure15153452007-10-16 16:36:50 +0200734 my $is_dir = -d $path ? 1 : 0;
735 $path = $gs->{path} . '/' . $path;
736
737 # canonicalize the path (otherwise libsvn will abort or fail to
738 # find the file)
David D. Kilzerb2b3ada2007-11-20 22:43:17 -0800739 $path = canonicalize_path($path);
Benoit Sigoure15153452007-10-16 16:36:50 +0200740
741 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
742 my $props;
743 if ($is_dir) {
744 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
745 }
746 else {
747 (undef, $props) = $gs->ra->get_file($path, $r, undef);
748 }
749 return $props;
750}
751
752# cmd_propget (PROP, PATH)
753# ------------------------
754# Print the SVN property PROP for PATH.
755sub cmd_propget {
756 my ($prop, $path) = @_;
757 $path = '.' if not defined $path;
758 usage(1) if not defined $prop;
759 my $props = get_svnprops($path);
760 if (not defined $props->{$prop}) {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200761 fatal("`$path' does not have a `$prop' SVN property.");
Benoit Sigoure15153452007-10-16 16:36:50 +0200762 }
763 print $props->{$prop} . "\n";
764}
765
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200766# cmd_proplist (PATH)
767# -------------------
768# Print the list of SVN properties for PATH.
769sub cmd_proplist {
770 my $path = shift;
771 $path = '.' if not defined $path;
772 my $props = get_svnprops($path);
773 print "Properties on '$path':\n";
774 foreach (sort keys %{$props}) {
775 print " $_\n";
776 }
777}
778
Eric Wong8164b652007-01-11 15:35:55 -0800779sub cmd_multi_init {
Eric Wong9d55b412006-06-12 15:53:13 -0700780 my $url = shift;
Eric Wong98327e52007-01-04 18:02:00 -0800781 unless (defined $_trunk || defined $_branches || defined $_tags) {
782 usage(1);
783 }
Eric Wongdc431662007-05-19 03:59:02 -0700784
785 # there are currently some bugs that prevent multi-init/multi-fetch
786 # setups from working well without this.
787 $Git::SVN::_minimize_url = 1;
788
Eric Wong8164b652007-01-11 15:35:55 -0800789 $_prefix = '' unless defined $_prefix;
Eric Wongdadc6d22007-02-14 12:27:41 -0800790 if (defined $url) {
791 $url =~ s#/+$##;
792 init_subdir(@_);
793 }
Eric Wongf30603f2007-02-23 01:26:26 -0800794 do_git_init_db();
Eric Wong98327e52007-01-04 18:02:00 -0800795 if (defined $_trunk) {
Eric Wong706587f2007-01-18 17:50:01 -0800796 my $trunk_ref = $_prefix . 'trunk';
797 # try both old-style and new-style lookups:
798 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
Eric Wong8164b652007-01-11 15:35:55 -0800799 unless ($gs_trunk) {
Eric Wong706587f2007-01-18 17:50:01 -0800800 my ($trunk_url, $trunk_path) =
801 complete_svn_url($url, $_trunk);
802 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
803 undef, $trunk_ref);
Eric Wong98327e52007-01-04 18:02:00 -0800804 }
Eric Wongc35b96e2006-10-11 11:53:21 -0700805 }
Eric Wong706587f2007-01-18 17:50:01 -0800806 return unless defined $_branches || defined $_tags;
Eric Wonge7db67e2007-01-11 17:09:26 -0800807 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
808 complete_url_ls_init($ra, $_branches, '--branches/-b', $_prefix);
809 complete_url_ls_init($ra, $_tags, '--tags/-t', $_prefix . 'tags/');
Eric Wong9d55b412006-06-12 15:53:13 -0700810}
811
Eric Wong1c8443b2007-01-14 02:17:00 -0800812sub cmd_multi_fetch {
Eric Wong0af9c9f2007-01-27 22:28:56 -0800813 my $remotes = Git::SVN::read_all_remotes();
814 foreach my $repo_id (sort keys %$remotes) {
Eric Wongdb03cd22007-02-13 00:38:02 -0800815 if ($remotes->{$repo_id}->{url}) {
Eric Wong4bb9ed02007-02-03 13:29:17 -0800816 Git::SVN::fetch_all($repo_id, $remotes);
817 }
Eric Wong706587f2007-01-18 17:50:01 -0800818 }
Eric Wong9d55b412006-06-12 15:53:13 -0700819}
820
Eric Wong44320b92007-01-13 22:35:53 -0800821# this command is special because it requires no metadata
822sub cmd_commit_diff {
823 my ($ta, $tb, $url) = @_;
824 my $usage = "Usage: $0 commit-diff -r<revision> ".
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200825 "<tree-ish> <tree-ish> [<URL>]";
Eric Wong44320b92007-01-13 22:35:53 -0800826 fatal($usage) if (!defined $ta || !defined $tb);
Karl Hasselströmd72ab8c2008-05-17 17:07:09 +0200827 my $svn_path = '';
Eric Wong44320b92007-01-13 22:35:53 -0800828 if (!defined $url) {
829 my $gs = eval { Git::SVN->new };
830 if (!$gs) {
831 fatal("Needed URL or usable git-svn --id in ",
832 "the command-line\n", $usage);
833 }
834 $url = $gs->{url};
Eric Wongd3a840d2007-01-26 01:32:45 -0800835 $svn_path = $gs->{path};
Eric Wong44320b92007-01-13 22:35:53 -0800836 }
837 unless (defined $_revision) {
838 fatal("-r|--revision is a required argument\n", $usage);
839 }
840 if (defined $_message && defined $_file) {
841 fatal("Both --message/-m and --file/-F specified ",
842 "for the commit message.\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200843 "I have no idea what you mean");
Eric Wong44320b92007-01-13 22:35:53 -0800844 }
845 if (defined $_file) {
846 $_message = file_to_s($_file);
847 } else {
848 $_message ||= get_commit_entry($tb)->{log};
849 }
850 my $ra ||= Git::SVN::Ra->new($url);
851 my $r = $_revision;
852 if ($r eq 'HEAD') {
853 $r = $ra->get_latest_revnum;
854 } elsif ($r !~ /^\d+$/) {
855 die "revision argument: $r not understood by git-svn\n";
856 }
Eric Wong61395352007-01-27 14:33:08 -0800857 my %ed_opts = ( r => $r,
858 log => $_message,
859 ra => $ra,
860 tree_a => $ta,
861 tree_b => $tb,
862 editor_cb => sub { print "Committed r$_[0]\n" },
863 svn_path => $svn_path );
864 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong44320b92007-01-13 22:35:53 -0800865 print "No changes\n$ta == $tb\n";
866 }
Eric Wong44320b92007-01-13 22:35:53 -0800867}
868
Thomas Rast05427b92008-08-26 21:32:37 +0200869sub escape_uri_only {
870 my ($uri) = @_;
871 my @tmp;
872 foreach (split m{/}, $uri) {
Eric Wong6a004d32008-10-21 14:12:15 -0700873 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
Thomas Rast05427b92008-08-26 21:32:37 +0200874 push @tmp, $_;
875 }
876 join('/', @tmp);
877}
878
879sub escape_url {
880 my ($url) = @_;
881 if ($url =~ m#^([^:]+)://([^/]*)(.*)$#) {
882 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
883 $url = "$scheme://$domain$uri";
884 }
885 $url;
886}
887
David D. Kilzere6fefa92007-11-21 11:57:18 -0800888sub cmd_info {
Eric Wongbd2d4f92008-08-05 00:35:16 -0700889 my $path = canonicalize_path(defined($_[0]) ? $_[0] : ".");
Thomas Rastedde9112008-08-26 21:32:36 +0200890 my $fullpath = canonicalize_path($cmd_dir_prefix . $path);
Eric Wongbd2d4f92008-08-05 00:35:16 -0700891 if (exists $_[1]) {
David D. Kilzere6fefa92007-11-21 11:57:18 -0800892 die "Too many arguments specified\n";
893 }
894
895 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
896
897 if (!$file_type && !$diff_status) {
Thomas Rast2cf3e3a2008-08-29 15:42:48 +0200898 print STDERR "svn: '$path' is not under version control\n";
899 exit 1;
David D. Kilzere6fefa92007-11-21 11:57:18 -0800900 }
901
902 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
903 unless ($gs) {
904 die "Unable to determine upstream SVN information from ",
905 "working tree history\n";
906 }
Eric Wongbd2d4f92008-08-05 00:35:16 -0700907
908 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
909 $path = "." if $path eq "";
910
Thomas Rastedde9112008-08-26 21:32:36 +0200911 my $full_url = $url . ($fullpath eq "" ? "" : "/$fullpath");
David D. Kilzere6fefa92007-11-21 11:57:18 -0800912
David D. Kilzer8b014d72007-11-21 11:57:19 -0800913 if ($_url) {
Thomas Rast05427b92008-08-26 21:32:37 +0200914 print escape_url($full_url), "\n";
David D. Kilzer8b014d72007-11-21 11:57:19 -0800915 return;
916 }
917
David D. Kilzere6fefa92007-11-21 11:57:18 -0800918 my $result = "Path: $path\n";
919 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
Thomas Rast05427b92008-08-26 21:32:37 +0200920 $result .= "URL: " . escape_url($full_url) . "\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -0800921
Eric Wonga5460eb2007-11-21 18:20:57 -0800922 eval {
923 my $repos_root = $gs->repos_root;
924 Git::SVN::remove_username($repos_root);
Thomas Rast05427b92008-08-26 21:32:37 +0200925 $result .= "Repository Root: " . escape_url($repos_root) . "\n";
Eric Wonga5460eb2007-11-21 18:20:57 -0800926 };
927 if ($@) {
928 $result .= "Repository Root: (offline)\n";
929 }
Marcel Koeppen22ba47f2009-01-19 03:02:01 +0100930 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
931 ($SVN::Core::VERSION le '1.5.4' || $file_type ne "dir");
David D. Kilzere6fefa92007-11-21 11:57:18 -0800932 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
933
934 $result .= "Node Kind: " .
935 ($file_type eq "dir" ? "directory" : "file") . "\n";
936
937 my $schedule = $diff_status eq "A"
938 ? "add"
939 : ($diff_status eq "D" ? "delete" : "normal");
940 $result .= "Schedule: $schedule\n";
941
942 if ($diff_status eq "A") {
943 print $result, "\n";
944 return;
945 }
946
947 my ($lc_author, $lc_rev, $lc_date_utc);
Thomas Rastedde9112008-08-26 21:32:36 +0200948 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath);
David D. Kilzere6fefa92007-11-21 11:57:18 -0800949 my $log = command_output_pipe(@args);
950 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
951 while (<$log>) {
952 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
953 $lc_author = $1;
954 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
955 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
956 (undef, $lc_rev, undef) = ::extract_metadata($1);
957 }
958 }
959 close $log;
960
961 Git::SVN::Log::set_local_timezone();
962
963 $result .= "Last Changed Author: $lc_author\n";
964 $result .= "Last Changed Rev: $lc_rev\n";
965 $result .= "Last Changed Date: " .
966 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
967
968 if ($file_type ne "dir") {
969 my $text_last_updated_date =
970 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
971 $result .=
972 "Text Last Updated: " .
973 Git::SVN::Log::format_svn_date($text_last_updated_date) .
974 "\n";
975 my $checksum;
976 if ($diff_status eq "D") {
977 my ($fh, $ctx) =
978 command_output_pipe(qw(cat-file blob), "HEAD:$path");
979 if ($file_type eq "link") {
980 my $file_name = <$fh>;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -0800981 $checksum = md5sum("link $file_name");
David D. Kilzere6fefa92007-11-21 11:57:18 -0800982 } else {
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -0800983 $checksum = md5sum($fh);
David D. Kilzere6fefa92007-11-21 11:57:18 -0800984 }
985 command_close_pipe($fh, $ctx);
986 } elsif ($file_type eq "link") {
987 my $file_name =
988 command(qw(cat-file blob), "HEAD:$path");
989 $checksum =
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -0800990 md5sum("link " . $file_name);
David D. Kilzere6fefa92007-11-21 11:57:18 -0800991 } else {
992 open FILE, "<", $path or die $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -0800993 $checksum = md5sum(\*FILE);
David D. Kilzere6fefa92007-11-21 11:57:18 -0800994 close FILE or die $!;
995 }
996 $result .= "Checksum: " . $checksum . "\n";
997 }
998
999 print $result, "\n";
1000}
1001
Eric Wong3397f9d2006-02-16 01:24:16 -08001002########################### utility functions #########################
1003
Eric Wong905f8b72007-02-16 03:22:40 -08001004sub rebase_cmd {
1005 my @cmd = qw/rebase/;
1006 push @cmd, '-v' if $_verbose;
1007 push @cmd, qw/--merge/ if $_merge;
1008 push @cmd, "--strategy=$_strategy" if $_strategy;
1009 @cmd;
1010}
1011
Eric Wong1e889ef2007-02-16 01:45:13 -08001012sub post_fetch_checkout {
1013 return if $_no_checkout;
1014 my $gs = $Git::SVN::_head or return;
1015 return if verify_ref('refs/heads/master^0');
1016
1017 my $valid_head = verify_ref('HEAD^0');
1018 command_noisy(qw(update-ref refs/heads/master), $gs->refname);
1019 return if ($valid_head || !verify_ref('HEAD^0'));
1020
1021 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1022 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1023 return if -f $index;
1024
Matthias Lederhofer7ae3df82007-06-03 16:48:16 +02001025 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
Eric Wong1e889ef2007-02-16 01:45:13 -08001026 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1027 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1028 print STDERR "Checked out HEAD:\n ",
1029 $gs->full_url, " r", $gs->last_rev, "\n";
1030}
1031
Eric Wong98327e52007-01-04 18:02:00 -08001032sub complete_svn_url {
1033 my ($url, $path) = @_;
1034 $path =~ s#/+$##;
Eric Wong98327e52007-01-04 18:02:00 -08001035 if ($path !~ m#^[a-z\+]+://#) {
Eric Wong98327e52007-01-04 18:02:00 -08001036 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1037 fatal("E: '$path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001038 "and a separate URL is not specified");
Eric Wong98327e52007-01-04 18:02:00 -08001039 }
Eric Wong706587f2007-01-18 17:50:01 -08001040 return ($url, $path);
Eric Wong98327e52007-01-04 18:02:00 -08001041 }
Eric Wong706587f2007-01-18 17:50:01 -08001042 return ($path, '');
Eric Wong98327e52007-01-04 18:02:00 -08001043}
1044
Eric Wong9d55b412006-06-12 15:53:13 -07001045sub complete_url_ls_init {
Eric Wong706587f2007-01-18 17:50:01 -08001046 my ($ra, $repo_path, $switch, $pfx) = @_;
1047 unless ($repo_path) {
Eric Wong9d55b412006-06-12 15:53:13 -07001048 print STDERR "W: $switch not specified\n";
1049 return;
1050 }
Eric Wong706587f2007-01-18 17:50:01 -08001051 $repo_path =~ s#/+$##;
1052 if ($repo_path =~ m#^[a-z\+]+://#) {
1053 $ra = Git::SVN::Ra->new($repo_path);
1054 $repo_path = '';
Eric Wonge7db67e2007-01-11 17:09:26 -08001055 } else {
Eric Wong706587f2007-01-18 17:50:01 -08001056 $repo_path =~ s#^/+##;
Eric Wonge7db67e2007-01-11 17:09:26 -08001057 unless ($ra) {
Eric Wong706587f2007-01-18 17:50:01 -08001058 fatal("E: '$repo_path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001059 "and a separate URL is not specified");
Eric Wong9d55b412006-06-12 15:53:13 -07001060 }
Eric Wonge7db67e2007-01-11 17:09:26 -08001061 }
Eric Wong706587f2007-01-18 17:50:01 -08001062 my $url = $ra->{url};
Eric Wongb4d57e52007-02-14 15:10:44 -08001063 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1064 my $k = "svn-remote.$gs->{repo_id}.url";
1065 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
1066 if ($orig_url && ($orig_url ne $gs->{url})) {
1067 die "$k already set: $orig_url\n",
1068 "wanted to set to: $gs->{url}\n";
Eric Wong88cf4102007-02-01 03:59:07 -08001069 }
Eric Wongb4d57e52007-02-14 15:10:44 -08001070 command_oneline('config', $k, $gs->{url}) unless $orig_url;
Eric Wonged0b9d42008-03-14 11:01:23 -07001071 my $remote_path = "$ra->{svn_path}/$repo_path";
Eric Wongb4d57e52007-02-14 15:10:44 -08001072 $remote_path =~ s#/+#/#g;
1073 $remote_path =~ s#^/##g;
Eric Wonged0b9d42008-03-14 11:01:23 -07001074 $remote_path .= "/*" if $remote_path !~ /\*/;
Eric Wongb4d57e52007-02-14 15:10:44 -08001075 my ($n) = ($switch =~ /^--(\w+)/);
1076 if (length $pfx && $pfx !~ m#/$#) {
1077 die "--prefix='$pfx' must have a trailing slash '/'\n";
Eric Wong9d55b412006-06-12 15:53:13 -07001078 }
Marcus Griep570d35c2008-08-08 01:41:57 -07001079 command_noisy('config',
1080 "svn-remote.$gs->{repo_id}.$n",
1081 "$remote_path:refs/remotes/$pfx*" .
1082 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
Eric Wong9d55b412006-06-12 15:53:13 -07001083}
1084
Eric Wongaef4e922006-12-15 10:59:54 -08001085sub verify_ref {
1086 my ($ref) = @_;
Eric Wong2c5c1d52006-12-28 01:16:21 -08001087 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1088 { STDERR => 0 }); };
Eric Wongaef4e922006-12-15 10:59:54 -08001089}
1090
Eric Wonga5e0ced2006-06-12 15:23:48 -07001091sub get_tree_from_treeish {
Eric Wongcf52b8f2006-02-20 10:57:28 -08001092 my ($treeish) = @_;
Eric Wong44320b92007-01-13 22:35:53 -08001093 # $treeish can be a symbolic ref, too:
Eric Wongaef4e922006-12-15 10:59:54 -08001094 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001095 my $expected;
1096 while ($type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001097 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001098 }
1099 if ($type eq 'commit') {
Eric Wongaef4e922006-12-15 10:59:54 -08001100 $expected = (grep /^tree /, command(qw/cat-file commit/,
1101 $treeish))[0];
Eric Wong44320b92007-01-13 22:35:53 -08001102 ($expected) = ($expected =~ /^tree ($sha1)$/o);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001103 die "Unable to get tree from $treeish\n" unless $expected;
1104 } elsif ($type eq 'tree') {
1105 $expected = $treeish;
1106 } else {
1107 die "$treeish is a $type, expected tree, tag or commit\n";
1108 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07001109 return $expected;
1110}
Eric Wongcf52b8f2006-02-20 10:57:28 -08001111
Eric Wong44320b92007-01-13 22:35:53 -08001112sub get_commit_entry {
1113 my ($treeish) = shift;
1114 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1115 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1116 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1117 open my $log_fh, '>', $commit_editmsg or croak $!;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001118
Eric Wong44320b92007-01-13 22:35:53 -08001119 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wong4ad45152006-07-09 20:20:48 -07001120 if ($type eq 'commit' || $type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001121 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
Eric Wong44320b92007-01-13 22:35:53 -08001122 $type, $treeish);
Eric Wong3397f9d2006-02-16 01:24:16 -08001123 my $in_msg = 0;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001124 my $author;
1125 my $saw_from = 0;
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001126 my $msgbuf = "";
Eric Wong3397f9d2006-02-16 01:24:16 -08001127 while (<$msg_fh>) {
1128 if (!$in_msg) {
1129 $in_msg = 1 if (/^\s*$/);
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001130 $author = $1 if (/^author (.*>)/);
Eric Wongdf746c52006-03-03 01:20:08 -08001131 } elsif (/^git-svn-id: /) {
Eric Wong44320b92007-01-13 22:35:53 -08001132 # skip this for now, we regenerate the
1133 # correct one on re-fetch anyways
1134 # TODO: set *:merge properties or like...
Eric Wong3397f9d2006-02-16 01:24:16 -08001135 } else {
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001136 if (/^From:/ || /^Signed-off-by:/) {
1137 $saw_from = 1;
1138 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001139 $msgbuf .= $_;
Eric Wong3397f9d2006-02-16 01:24:16 -08001140 }
1141 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001142 $msgbuf =~ s/\s+$//s;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001143 if ($Git::SVN::_add_author_from && defined($author)
1144 && !$saw_from) {
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001145 $msgbuf .= "\n\nFrom: $author";
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001146 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001147 print $log_fh $msgbuf or croak $!;
Eric Wongaef4e922006-12-15 10:59:54 -08001148 command_close_pipe($msg_fh, $ctx);
Eric Wong3397f9d2006-02-16 01:24:16 -08001149 }
Eric Wong44320b92007-01-13 22:35:53 -08001150 close $log_fh or croak $!;
Eric Wong3397f9d2006-02-16 01:24:16 -08001151
1152 if ($_edit || ($type eq 'tree')) {
1153 my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
Eric Wong44320b92007-01-13 22:35:53 -08001154 # TODO: strip out spaces, comments, like git-commit.sh
1155 system($editor, $commit_editmsg);
Eric Wong3397f9d2006-02-16 01:24:16 -08001156 }
Eric Wong44320b92007-01-13 22:35:53 -08001157 rename $commit_editmsg, $commit_msg or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07001158 {
1159 # SVN requires messages to be UTF-8 when entering the repo
1160 local $/;
1161 open $log_fh, '<', $commit_msg or croak $!;
1162 binmode $log_fh;
1163 chomp($log_entry{log} = <$log_fh>);
1164
1165 if (my $enc = Git::config('i18n.commitencoding')) {
1166 require Encode;
1167 Encode::from_to($log_entry{log}, $enc, 'UTF-8');
1168 }
1169 close $log_fh or croak $!;
1170 }
Eric Wong44320b92007-01-13 22:35:53 -08001171 unlink $commit_msg;
1172 \%log_entry;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001173}
1174
Eric Wong3397f9d2006-02-16 01:24:16 -08001175sub s_to_file {
1176 my ($str, $file, $mode) = @_;
1177 open my $fd,'>',$file or croak $!;
1178 print $fd $str,"\n" or croak $!;
1179 close $fd or croak $!;
1180 chmod ($mode &~ umask, $file) if (defined $mode);
1181}
1182
1183sub file_to_s {
1184 my $file = shift;
1185 open my $fd,'<',$file or croak "$!: file: $file\n";
1186 local $/;
1187 my $ret = <$fd>;
1188 close $fd or croak $!;
1189 $ret =~ s/\s*$//s;
1190 return $ret;
1191}
1192
Eric Wongeeb0abe2006-03-03 01:20:08 -08001193# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1194sub load_authors {
1195 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001196 my $log = $cmd eq 'log';
Eric Wongeeb0abe2006-03-03 01:20:08 -08001197 while (<$authors>) {
1198 chomp;
Richard MUSIL575d0252007-07-17 19:02:57 +02001199 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
Eric Wongeeb0abe2006-03-03 01:20:08 -08001200 my ($user, $name, $email) = ($1, $2, $3);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001201 if ($log) {
1202 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1203 } else {
1204 $users{$user} = [$name, $email];
1205 }
Eric Wong79bb8d82006-06-01 02:35:44 -07001206 }
1207 close $authors or croak $!;
1208}
1209
Tom Princee0d10e12007-01-28 16:16:53 -08001210# convert GetOpt::Long specs for use by git-config
Eric Wongb8c92ca2006-05-24 01:40:37 -07001211sub read_repo_config {
Eric Wong706587f2007-01-18 17:50:01 -08001212 return unless -d $ENV{GIT_DIR};
Eric Wongb8c92ca2006-05-24 01:40:37 -07001213 my $opts = shift;
Eric Wong97ae0912007-02-11 15:21:24 -08001214 my @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001215 foreach my $o (keys %$opts) {
Eric Wong97ae0912007-02-11 15:21:24 -08001216 # if we have mixedCase and a long option-only, then
1217 # it's a config-only variable that we don't need for
1218 # the command-line.
1219 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001220 my $v = $opts->{$o};
Eric Wong97ae0912007-02-11 15:21:24 -08001221 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001222 $key =~ s/-//g;
Deskin Miller225f1d02008-10-23 15:21:34 -04001223 my $arg = 'git config';
Eric Wongb8c92ca2006-05-24 01:40:37 -07001224 $arg .= ' --int' if ($o =~ /[:=]i$/);
1225 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1226 if (ref $v eq 'ARRAY') {
1227 chomp(my @tmp = `$arg --get-all svn.$key`);
1228 @$v = @tmp if @tmp;
1229 } else {
1230 chomp(my $tmp = `$arg --get svn.$key`);
Eric Wong77742842007-02-10 21:07:12 -08001231 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001232 $$v = $tmp;
1233 }
1234 }
1235 }
Eric Wong97ae0912007-02-11 15:21:24 -08001236 delete @$opts{@config_only} if @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001237}
1238
Eric Wong79bb8d82006-06-01 02:35:44 -07001239sub extract_metadata {
Eric Wongc1927a82006-06-27 19:39:11 -07001240 my $id = shift or return (undef, undef, undef);
Sam Vilain3dfab992007-06-30 20:56:13 +12001241 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
Eric Wong79bb8d82006-06-01 02:35:44 -07001242 \s([a-f\d\-]+)$/x);
Eric Wonge70dc782006-11-23 14:54:04 -08001243 if (!defined $rev || !$uuid || !$url) {
Eric Wong79bb8d82006-06-01 02:35:44 -07001244 # some of the original repositories I made had
Pavel Roskin82e5a822006-07-10 01:50:18 -04001245 # identifiers like this:
Sam Vilain3dfab992007-06-30 20:56:13 +12001246 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/);
Eric Wong79bb8d82006-06-01 02:35:44 -07001247 }
1248 return ($url, $rev, $uuid);
1249}
1250
Eric Wongc1927a82006-06-27 19:39:11 -07001251sub cmt_metadata {
1252 return extract_metadata((grep(/^git-svn-id: /,
Eric Wongaef4e922006-12-15 10:59:54 -08001253 command(qw/cat-file commit/, shift)))[-1]);
Eric Wongc1927a82006-06-27 19:39:11 -07001254}
1255
Eric Wong905f8b72007-02-16 03:22:40 -08001256sub working_head_info {
1257 my ($head, $refs) = @_;
Pedro Melob6309ac2008-04-10 17:05:21 +01001258 my @args = ('log', '--no-color', '--first-parent', '--pretty=medium');
Lars Hjemli05b4df32007-09-05 11:35:29 +02001259 my ($fh, $ctx) = command_output_pipe(@args, $head);
Sam Vilain3dfab992007-06-30 20:56:13 +12001260 my $hash;
Sam Vilain40cb8f82007-06-30 20:56:14 +12001261 my %max;
Sam Vilain3dfab992007-06-30 20:56:13 +12001262 while (<$fh>) {
1263 if ( m{^commit ($::sha1)$} ) {
1264 unshift @$refs, $hash if $hash and $refs;
1265 $hash = $1;
1266 next;
1267 }
1268 next unless s{^\s*(git-svn-id:)}{$1};
1269 my ($url, $rev, $uuid) = extract_metadata($_);
Eric Wong13c823f2007-04-08 00:59:19 -07001270 if (defined $url && defined $rev) {
Sam Vilain40cb8f82007-06-30 20:56:14 +12001271 next if $max{$url} and $max{$url} < $rev;
Eric Wong13c823f2007-04-08 00:59:19 -07001272 if (my $gs = Git::SVN->find_by_url($url)) {
João Abecasis63c56022008-07-14 16:28:04 +01001273 my $c = $gs->rev_map_get($rev, $uuid);
Adam Robenb03c7a62007-04-25 11:50:32 -07001274 if ($c && $c eq $hash) {
Eric Wong13c823f2007-04-08 00:59:19 -07001275 close $fh; # break the pipe
1276 return ($url, $rev, $uuid, $gs);
Sam Vilain40cb8f82007-06-30 20:56:14 +12001277 } else {
Eric Wong060610c2007-12-08 23:27:41 -08001278 $max{$url} ||= $gs->rev_map_max;
Eric Wong13c823f2007-04-08 00:59:19 -07001279 }
1280 }
1281 }
Eric Wong905f8b72007-02-16 03:22:40 -08001282 }
Eric Wong13c823f2007-04-08 00:59:19 -07001283 command_close_pipe($fh, $ctx);
1284 (undef, undef, undef, undef);
Eric Wong905f8b72007-02-16 03:22:40 -08001285}
1286
Eric Wong733a65a2007-06-13 02:23:28 -07001287sub read_commit_parents {
1288 my ($parents, $c) = @_;
Eric Wong7b02b852007-09-08 16:33:08 -07001289 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1290 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1291 @{$parents->{$c}} = split(/ /, $p);
Eric Wong733a65a2007-06-13 02:23:28 -07001292}
1293
1294sub linearize_history {
1295 my ($gs, $refs) = @_;
1296 my %parents;
1297 foreach my $c (@$refs) {
1298 read_commit_parents(\%parents, $c);
1299 }
1300
1301 my @linear_refs;
1302 my %skip = ();
1303 my $last_svn_commit = $gs->last_commit;
1304 foreach my $c (reverse @$refs) {
1305 next if $c eq $last_svn_commit;
1306 last if $skip{$c};
1307
1308 unshift @linear_refs, $c;
1309 $skip{$c} = 1;
1310
1311 # we only want the first parent to diff against for linear
1312 # history, we save the rest to inject when we finalize the
1313 # svn commit
1314 my $fp_a = verify_ref("$c~1");
1315 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1316 if (!$fp_a || !$fp_b) {
1317 die "Commit $c\n",
1318 "has no parent commit, and therefore ",
1319 "nothing to diff against.\n",
1320 "You should be working from a repository ",
1321 "originally created by git-svn\n";
1322 }
1323 if ($fp_a ne $fp_b) {
1324 die "$c~1 = $fp_a, however parsing commit $c ",
1325 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1326 }
1327
1328 foreach my $p (@{$parents{$c}}) {
1329 $skip{$p} = 1;
1330 }
1331 }
1332 (\@linear_refs, \%parents);
1333}
1334
David D. Kilzere6fefa92007-11-21 11:57:18 -08001335sub find_file_type_and_diff_status {
1336 my ($path) = @_;
Dmitry Potapov107cee52008-07-21 00:14:07 +04001337 return ('dir', '') if $path eq '';
David D. Kilzere6fefa92007-11-21 11:57:18 -08001338
1339 my $diff_output =
1340 command_oneline(qw(diff --cached --name-status --), $path) || "";
1341 my $diff_status = (split(' ', $diff_output))[0] || "";
1342
1343 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1344
1345 return (undef, undef) if !$diff_status && !$ls_tree;
1346
1347 if ($diff_status eq "A") {
1348 return ("link", $diff_status) if -l $path;
1349 return ("dir", $diff_status) if -d $path;
1350 return ("file", $diff_status);
1351 }
1352
1353 my $mode = (split(' ', $ls_tree))[0] || "";
1354
1355 return ("link", $diff_status) if $mode eq "120000";
1356 return ("dir", $diff_status) if $mode eq "040000";
1357 return ("file", $diff_status);
1358}
1359
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001360sub md5sum {
1361 my $arg = shift;
1362 my $ref = ref $arg;
1363 my $md5 = Digest::MD5->new();
Marcus Griep0b191382008-08-12 12:00:53 -04001364 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001365 $md5->addfile($arg) or croak $!;
1366 } elsif ($ref eq 'SCALAR') {
1367 $md5->add($$arg) or croak $!;
1368 } elsif (!$ref) {
1369 $md5->add($arg) or croak $!;
1370 } else {
1371 ::fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1372 }
1373 return $md5->hexdigest();
1374}
1375
Eric Wong9b981fc2007-01-11 12:14:21 -08001376package Git::SVN;
1377use strict;
1378use warnings;
Eric Wong060610c2007-12-08 23:27:41 -08001379use Fcntl qw/:DEFAULT :seek/;
1380use constant rev_map_fmt => 'NH40';
Eric Wongecc712d2007-01-31 12:28:10 -08001381use vars qw/$default_repo_id $default_ref_id $_no_metadata $_follow_parent
Eric Wong62e349d2007-02-16 19:57:29 -08001382 $_repack $_repack_flags $_use_svm_props $_head
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00001383 $_use_svnsync_props $no_reuse_existing $_minimize_url
Pete Harlane82f0d72009-01-17 20:10:14 -08001384 $_use_log_author $_add_author_from $_localtime/;
Eric Wong9b981fc2007-01-11 12:14:21 -08001385use Carp qw/croak/;
1386use File::Path qw/mkpath/;
Eric Wong373274f2007-01-31 13:54:23 -08001387use File::Copy qw/copy/;
Eric Wong9b981fc2007-01-11 12:14:21 -08001388use IPC::Open3;
1389
Karl Hasselström94bc9142008-02-03 17:56:18 +01001390my ($_gc_nr, $_gc_period);
1391
Eric Wong9b981fc2007-01-11 12:14:21 -08001392# properties that we do not log:
1393my %SKIP_PROP;
1394BEGIN {
1395 %SKIP_PROP = map { $_ => 1 } qw/svn:wc:ra_dav:version-url
1396 svn:special svn:executable
1397 svn:entry:committed-rev
1398 svn:entry:last-author
1399 svn:entry:uuid
1400 svn:entry:committed-date/;
Eric Wong91b03282007-02-11 00:51:33 -08001401
1402 # some options are read globally, but can be overridden locally
1403 # per [svn-remote "..."] section. Command-line options will *NOT*
1404 # override options set in an [svn-remote "..."] section
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001405 no strict 'refs';
1406 for my $option (qw/follow_parent no_metadata use_svm_props
1407 use_svnsync_props/) {
1408 my $key = $option;
Eric Wong91b03282007-02-11 00:51:33 -08001409 $key =~ tr/_//d;
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001410 my $prop = "-$option";
1411 *$option = sub {
1412 my ($self) = @_;
1413 return $self->{$prop} if exists $self->{$prop};
1414 my $k = "svn-remote.$self->{repo_id}.$key";
1415 eval { command_oneline(qw/config --get/, $k) };
1416 if ($@) {
1417 $self->{$prop} = ${"Git::SVN::_$option"};
Eric Wong91b03282007-02-11 00:51:33 -08001418 } else {
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001419 my $v = command_oneline(qw/config --bool/,$k);
1420 $self->{$prop} = $v eq 'false' ? 0 : 1;
Eric Wong91b03282007-02-11 00:51:33 -08001421 }
Sam Vilainc5f71ad2007-06-15 15:43:59 +12001422 return $self->{$prop};
1423 }
Eric Wong91b03282007-02-11 00:51:33 -08001424 }
Eric Wong9b981fc2007-01-11 12:14:21 -08001425}
1426
Marcus Griep0b191382008-08-12 12:00:53 -04001427
Eric Wong321b1842008-01-02 10:10:03 -08001428my (%LOCKFILES, %INDEX_FILES);
1429END {
1430 unlink keys %LOCKFILES if %LOCKFILES;
1431 unlink keys %INDEX_FILES if %INDEX_FILES;
1432}
Eric Wong373274f2007-01-31 13:54:23 -08001433
Eric Wong4bb9ed02007-02-03 13:29:17 -08001434sub resolve_local_globs {
1435 my ($url, $fetch, $glob_spec) = @_;
1436 return unless defined $glob_spec;
1437 my $ref = $glob_spec->{ref};
1438 my $path = $glob_spec->{path};
1439 foreach (command(qw#for-each-ref --format=%(refname) refs/remotes#)) {
1440 next unless m#^refs/remotes/$ref->{regex}$#;
1441 my $p = $1;
Robert Ewaldbf655fd2007-07-30 11:08:21 +02001442 my $pathname = desanitize_refname($path->full_path($p));
1443 my $refname = desanitize_refname($ref->full_path($p));
Eric Wong4bb9ed02007-02-03 13:29:17 -08001444 if (my $existing = $fetch->{$pathname}) {
1445 if ($existing ne $refname) {
1446 die "Refspec conflict:\n",
1447 "existing: refs/remotes/$existing\n",
1448 " globbed: refs/remotes/$refname\n";
1449 }
1450 my $u = (::cmt_metadata("refs/remotes/$refname"))[0];
Eric Wong4e9f6cc2007-02-09 12:17:57 -08001451 $u =~ s!^\Q$url\E(/|$)!! or die
Eric Wong4bb9ed02007-02-03 13:29:17 -08001452 "refs/remotes/$refname: '$url' not found in '$u'\n";
1453 if ($pathname ne $u) {
1454 warn "W: Refspec glob conflict ",
1455 "(ref: refs/remotes/$refname):\n",
1456 "expected path: $pathname\n",
1457 " real path: $u\n",
1458 "Continuing ahead with $u\n";
1459 next;
1460 }
1461 } else {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001462 $fetch->{$pathname} = $refname;
1463 }
1464 }
1465}
1466
Eric Wonge98671e2007-02-14 02:21:19 -08001467sub parse_revision_argument {
1468 my ($base, $head) = @_;
1469 if (!defined $::_revision || $::_revision eq 'BASE:HEAD') {
1470 return ($base, $head);
1471 }
1472 return ($1, $2) if ($::_revision =~ /^(\d+):(\d+)$/);
1473 return ($::_revision, $::_revision) if ($::_revision =~ /^\d+$/);
1474 return ($head, $head) if ($::_revision eq 'HEAD');
1475 return ($base, $1) if ($::_revision =~ /^BASE:(\d+)$/);
1476 return ($1, $head) if ($::_revision =~ /^(\d+):HEAD$/);
1477 die "revision argument: $::_revision not understood by git-svn\n";
1478}
1479
Eric Wong0af9c9f2007-01-27 22:28:56 -08001480sub fetch_all {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001481 my ($repo_id, $remotes) = @_;
Eric Wong905f8b72007-02-16 03:22:40 -08001482 if (ref $repo_id) {
1483 my $gs = $repo_id;
1484 $repo_id = undef;
1485 $repo_id = $gs->{repo_id};
1486 }
1487 $remotes ||= read_all_remotes();
Eric Wong7447b4b2007-02-14 18:38:46 -08001488 my $remote = $remotes->{$repo_id} or
1489 die "[svn-remote \"$repo_id\"] unknown\n";
Eric Wonge5181922007-02-08 12:53:57 -08001490 my $fetch = $remote->{fetch};
Eric Wong7447b4b2007-02-14 18:38:46 -08001491 my $url = $remote->{url} or die "svn-remote.$repo_id.url not defined\n";
Eric Wonge5181922007-02-08 12:53:57 -08001492 my (@gs, @globs);
Eric Wong0af9c9f2007-01-27 22:28:56 -08001493 my $ra = Git::SVN::Ra->new($url);
Eric Wong26a62d52007-02-12 13:25:25 -08001494 my $uuid = $ra->get_uuid;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001495 my $head = $ra->get_latest_revnum;
Eric Wong28710f72007-02-14 13:32:21 -08001496 my $base = defined $fetch ? $head : 0;
Eric Wonge5181922007-02-08 12:53:57 -08001497
1498 # read the max revs for wildcard expansion (branches/*, tags/*)
1499 foreach my $t (qw/branches tags/) {
1500 defined $remote->{$t} or next;
1501 push @globs, $remote->{$t};
Eric Wong93f26892007-02-11 01:20:26 -08001502 my $max_rev = eval { tmp_config(qw/--int --get/,
1503 "svn-remote.$repo_id.${t}-maxRev") };
1504 if (defined $max_rev && ($max_rev < $base)) {
1505 $base = $max_rev;
Eric Wongd6d33462007-02-16 04:05:33 -08001506 } elsif (!defined $max_rev) {
1507 $base = 0;
Eric Wonge5181922007-02-08 12:53:57 -08001508 }
1509 }
1510
Eric Wongdb03cd22007-02-13 00:38:02 -08001511 if ($fetch) {
1512 foreach my $p (sort keys %$fetch) {
1513 my $gs = Git::SVN->new($fetch->{$p}, $repo_id, $p);
Eric Wong060610c2007-12-08 23:27:41 -08001514 my $lr = $gs->rev_map_max;
Eric Wongdb03cd22007-02-13 00:38:02 -08001515 if (defined $lr) {
1516 $base = $lr if ($lr < $base);
1517 }
1518 push @gs, $gs;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001519 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08001520 }
Eric Wonge98671e2007-02-14 02:21:19 -08001521
1522 ($base, $head) = parse_revision_argument($base, $head);
Eric Wonge5181922007-02-08 12:53:57 -08001523 $ra->gs_fetch_loop_common($base, $head, \@gs, \@globs);
Eric Wong0af9c9f2007-01-27 22:28:56 -08001524}
1525
Eric Wong47e39c52007-01-21 04:27:09 -08001526sub read_all_remotes {
1527 my $r = {};
João Abecasis63c56022008-07-14 16:28:04 +01001528 my $use_svm_props = eval { command_oneline(qw/config --bool
1529 svn.useSvmProps/) };
1530 $use_svm_props = $use_svm_props eq 'true' if $use_svm_props;
Eric Wong8b8fc062007-01-22 11:44:57 -08001531 foreach (grep { s/^svn-remote\.// } command(qw/config -l/)) {
Avery Pennarun61192162008-07-30 16:53:55 -04001532 if (m!^(.+)\.fetch=\s*(.*)\s*:\s*(.+)\s*$!) {
1533 my ($remote, $local_ref, $_remote_ref) = ($1, $2, $3);
1534 die("svn-remote.$remote: remote ref '$_remote_ref' "
1535 . "must start with 'refs/remotes/'\n")
1536 unless $_remote_ref =~ m{^refs/remotes/(.+)};
1537 my $remote_ref = $1;
Eric Wong46cf98b2007-07-14 12:40:32 -07001538 $local_ref =~ s{^/}{};
1539 $r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
João Abecasis63c56022008-07-14 16:28:04 +01001540 $r->{$remote}->{svm} = {} if $use_svm_props;
1541 } elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
1542 $r->{$1}->{svm} = {};
Eric Wong47e39c52007-01-21 04:27:09 -08001543 } elsif (m!^(.+)\.url=\s*(.*)\s*$!) {
1544 $r->{$1}->{url} = $2;
Eric Wong4bb9ed02007-02-03 13:29:17 -08001545 } elsif (m!^(.+)\.(branches|tags)=
1546 (.*):refs/remotes/(.+)\s*$/!x) {
1547 my ($p, $g) = ($3, $4);
1548 my $rs = $r->{$1}->{$2} = {
Eric Wonge5181922007-02-08 12:53:57 -08001549 t => $2,
Eric Wong93f26892007-02-11 01:20:26 -08001550 remote => $1,
Eric Wong4bb9ed02007-02-03 13:29:17 -08001551 path => Git::SVN::GlobSpec->new($p),
1552 ref => Git::SVN::GlobSpec->new($g) };
1553 if (length($rs->{ref}->{right}) != 0) {
1554 die "The '*' glob character must be the last ",
1555 "character of '$g'\n";
1556 }
Eric Wong47e39c52007-01-21 04:27:09 -08001557 }
1558 }
João Abecasis63c56022008-07-14 16:28:04 +01001559
1560 map {
1561 if (defined $r->{$_}->{svm}) {
1562 my $svm;
1563 eval {
1564 my $section = "svn-remote.$_";
1565 $svm = {
1566 source => tmp_config('--get',
1567 "$section.svm-source"),
1568 replace => tmp_config('--get',
1569 "$section.svm-replace"),
1570 }
1571 };
1572 $r->{$_}->{svm} = $svm;
1573 }
1574 } keys %$r;
1575
Eric Wong47e39c52007-01-21 04:27:09 -08001576 $r;
1577}
1578
Eric Wongecc712d2007-01-31 12:28:10 -08001579sub init_vars {
Karl Hasselström94bc9142008-02-03 17:56:18 +01001580 $_gc_nr = $_gc_period = 1000;
Karl Hasselströmaf788a62008-02-03 17:56:12 +01001581 if (defined $_repack || defined $_repack_flags) {
1582 warn "Repack options are obsolete; they have no effect.\n";
1583 }
Eric Wongecc712d2007-01-31 12:28:10 -08001584}
1585
Eric Wongb805b442007-01-22 13:52:04 -08001586sub verify_remotes_sanity {
Eric Wong536c4b02007-01-23 11:35:53 -08001587 return unless -d $ENV{GIT_DIR};
Eric Wongb805b442007-01-22 13:52:04 -08001588 my %seen;
1589 foreach (command(qw/config -l/)) {
1590 if (m!^svn-remote\.(?:.+)\.fetch=.*:refs/remotes/(\S+)\s*$!) {
1591 if ($seen{$1}) {
1592 die "Remote ref refs/remote/$1 is tracked by",
1593 "\n \"$_\"\nand\n \"$seen{$1}\"\n",
1594 "Please resolve this ambiguity in ",
1595 "your git configuration file before ",
1596 "continuing\n";
1597 }
1598 $seen{$1} = $_;
1599 }
1600 }
1601}
1602
Eric Wonge6434f82007-01-23 16:29:23 -08001603sub find_existing_remote {
1604 my ($url, $remotes) = @_;
Eric Wongbefc9ad2007-02-17 02:53:07 -08001605 return undef if $no_reuse_existing;
Eric Wonge6434f82007-01-23 16:29:23 -08001606 my $existing;
1607 foreach my $repo_id (keys %$remotes) {
1608 my $u = $remotes->{$repo_id}->{url} or next;
1609 next if $u ne $url;
1610 $existing = $repo_id;
1611 last;
1612 }
1613 $existing;
1614}
1615
1616sub init_remote_config {
Eric Wongd8115c52007-02-01 03:30:31 -08001617 my ($self, $url, $no_write) = @_;
Eric Wonge6434f82007-01-23 16:29:23 -08001618 $url =~ s!/+$!!; # strip trailing slash
1619 my $r = read_all_remotes();
1620 my $existing = find_existing_remote($url, $r);
1621 if ($existing) {
Eric Wonge5181922007-02-08 12:53:57 -08001622 unless ($no_write) {
1623 print STDERR "Using existing ",
1624 "[svn-remote \"$existing\"]\n";
1625 }
Eric Wonge6434f82007-01-23 16:29:23 -08001626 $self->{repo_id} = $existing;
Eric Wong4a1bb4c2007-05-13 09:58:14 -07001627 } elsif ($_minimize_url) {
Eric Wonge6434f82007-01-23 16:29:23 -08001628 my $min_url = Git::SVN::Ra->new($url)->minimize_url;
1629 $existing = find_existing_remote($min_url, $r);
1630 if ($existing) {
Eric Wonge5181922007-02-08 12:53:57 -08001631 unless ($no_write) {
1632 print STDERR "Using existing ",
1633 "[svn-remote \"$existing\"]\n";
1634 }
Eric Wonge6434f82007-01-23 16:29:23 -08001635 $self->{repo_id} = $existing;
1636 }
1637 if ($min_url ne $url) {
Eric Wonge5181922007-02-08 12:53:57 -08001638 unless ($no_write) {
1639 print STDERR "Using higher level of URL: ",
1640 "$url => $min_url\n";
1641 }
Eric Wonge6434f82007-01-23 16:29:23 -08001642 my $old_path = $self->{path};
1643 $self->{path} = $url;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08001644 $self->{path} =~ s!^\Q$min_url\E(/|$)!!;
Eric Wonge6434f82007-01-23 16:29:23 -08001645 if (length $old_path) {
1646 $self->{path} .= "/$old_path";
1647 }
1648 $url = $min_url;
1649 }
1650 }
1651 my $orig_url;
1652 if (!$existing) {
1653 # verify that we aren't overwriting anything:
1654 $orig_url = eval {
1655 command_oneline('config', '--get',
1656 "svn-remote.$self->{repo_id}.url")
1657 };
1658 if ($orig_url && ($orig_url ne $url)) {
1659 die "svn-remote.$self->{repo_id}.url already set: ",
1660 "$orig_url\nwanted to set to: $url\n";
1661 }
1662 }
1663 my ($xrepo_id, $xpath) = find_ref($self->refname);
1664 if (defined $xpath) {
1665 die "svn-remote.$xrepo_id.fetch already set to track ",
1666 "$xpath:refs/remotes/", $self->refname, "\n";
1667 }
Eric Wongd8115c52007-02-01 03:30:31 -08001668 unless ($no_write) {
1669 command_noisy('config',
1670 "svn-remote.$self->{repo_id}.url", $url);
Eric Wong46cf98b2007-07-14 12:40:32 -07001671 $self->{path} =~ s{^/}{};
Eric Wongd8115c52007-02-01 03:30:31 -08001672 command_noisy('config', '--add',
1673 "svn-remote.$self->{repo_id}.fetch",
1674 "$self->{path}:".$self->refname);
1675 }
Eric Wonge6434f82007-01-23 16:29:23 -08001676 $self->{url} = $url;
1677}
1678
Eric Wonga8ae2622007-02-13 14:22:11 -08001679sub find_by_url { # repos_root and, path are optional
1680 my ($class, $full_url, $repos_root, $path) = @_;
Adam Roben56973d22007-04-25 12:42:58 -07001681
Eric Wong1a97a502007-02-20 00:43:19 -08001682 return undef unless defined $full_url;
Adam Roben56973d22007-04-25 12:42:58 -07001683 remove_username($full_url);
1684 remove_username($repos_root) if defined $repos_root;
Eric Wonga8ae2622007-02-13 14:22:11 -08001685 my $remotes = read_all_remotes();
1686 if (defined $full_url && defined $repos_root && !defined $path) {
1687 $path = $full_url;
1688 $path =~ s#^\Q$repos_root\E(?:/|$)##;
1689 }
1690 foreach my $repo_id (keys %$remotes) {
1691 my $u = $remotes->{$repo_id}->{url} or next;
Adam Roben56973d22007-04-25 12:42:58 -07001692 remove_username($u);
Eric Wonga8ae2622007-02-13 14:22:11 -08001693 next if defined $repos_root && $repos_root ne $u;
1694
1695 my $fetch = $remotes->{$repo_id}->{fetch} || {};
1696 foreach (qw/branches tags/) {
1697 resolve_local_globs($u, $fetch,
1698 $remotes->{$repo_id}->{$_});
1699 }
1700 my $p = $path;
John Goerzen0bb91d92008-03-08 16:04:05 -06001701 my $rwr = rewrite_root({repo_id => $repo_id});
João Abecasis63c56022008-07-14 16:28:04 +01001702 my $svm = $remotes->{$repo_id}->{svm}
1703 if defined $remotes->{$repo_id}->{svm};
Eric Wonga8ae2622007-02-13 14:22:11 -08001704 unless (defined $p) {
1705 $p = $full_url;
John Goerzen0bb91d92008-03-08 16:04:05 -06001706 my $z = $u;
João Abecasis63c56022008-07-14 16:28:04 +01001707 my $prefix = '';
John Goerzen0bb91d92008-03-08 16:04:05 -06001708 if ($rwr) {
1709 $z = $rwr;
Dévai Tamás1b7e5432009-02-12 00:14:02 +01001710 remove_username($z);
João Abecasis63c56022008-07-14 16:28:04 +01001711 } elsif (defined $svm) {
1712 $z = $svm->{source};
1713 $prefix = $svm->{replace};
1714 $prefix =~ s#^\Q$u\E(?:/|$)##;
1715 $prefix =~ s#/$##;
John Goerzen0bb91d92008-03-08 16:04:05 -06001716 }
João Abecasis63c56022008-07-14 16:28:04 +01001717 $p =~ s#^\Q$z\E(?:/|$)#$prefix# or next;
Eric Wonga8ae2622007-02-13 14:22:11 -08001718 }
1719 foreach my $f (keys %$fetch) {
1720 next if $f ne $p;
1721 return Git::SVN->new($fetch->{$f}, $repo_id, $f);
1722 }
1723 }
1724 undef;
1725}
1726
Eric Wong9b981fc2007-01-11 12:14:21 -08001727sub init {
Eric Wongd8115c52007-02-01 03:30:31 -08001728 my ($class, $url, $path, $repo_id, $ref_id, $no_write) = @_;
Eric Wong706587f2007-01-18 17:50:01 -08001729 my $self = _new($class, $repo_id, $ref_id, $path);
Eric Wong9b981fc2007-01-11 12:14:21 -08001730 if (defined $url) {
Eric Wongd8115c52007-02-01 03:30:31 -08001731 $self->init_remote_config($url, $no_write);
Eric Wong9b981fc2007-01-11 12:14:21 -08001732 }
Eric Wong9b981fc2007-01-11 12:14:21 -08001733 $self;
1734}
1735
Eric Wong706587f2007-01-18 17:50:01 -08001736sub find_ref {
1737 my ($ref_id) = @_;
1738 foreach (command(qw/config -l/)) {
1739 next unless m!^svn-remote\.(.+)\.fetch=
1740 \s*(.*)\s*:\s*refs/remotes/(.+)\s*$!x;
1741 my ($repo_id, $path, $ref) = ($1, $2, $3);
1742 if ($ref eq $ref_id) {
1743 $path = '' if ($path =~ m#^\./?#);
1744 return ($repo_id, $path);
1745 }
1746 }
1747 (undef, undef, undef);
1748}
1749
Eric Wong9b981fc2007-01-11 12:14:21 -08001750sub new {
Eric Wong706587f2007-01-18 17:50:01 -08001751 my ($class, $ref_id, $repo_id, $path) = @_;
1752 if (defined $ref_id && !defined $repo_id && !defined $path) {
1753 ($repo_id, $path) = find_ref($ref_id);
1754 if (!defined $repo_id) {
1755 die "Could not find a \"svn-remote.*.fetch\" key ",
1756 "in the repository configuration matching: ",
1757 "refs/remotes/$ref_id\n";
1758 }
1759 }
1760 my $self = _new($class, $repo_id, $ref_id, $path);
Eric Wong8b8fc062007-01-22 11:44:57 -08001761 if (!defined $self->{path} || !length $self->{path}) {
1762 my $fetch = command_oneline('config', '--get',
1763 "svn-remote.$repo_id.fetch",
1764 ":refs/remotes/$ref_id\$") or
1765 die "Failed to read \"svn-remote.$repo_id.fetch\" ",
1766 "\":refs/remotes/$ref_id\$\" in config\n";
1767 ($self->{path}, undef) = split(/\s*:\s*/, $fetch);
1768 }
Eric Wong706587f2007-01-18 17:50:01 -08001769 $self->{url} = command_oneline('config', '--get',
1770 "svn-remote.$repo_id.url") or
1771 die "Failed to read \"svn-remote.$repo_id.url\" in config\n";
Eric Wongd6d33462007-02-16 04:05:33 -08001772 $self->rebuild;
Eric Wong9b981fc2007-01-11 12:14:21 -08001773 $self;
1774}
1775
Robert Ewaldbf655fd2007-07-30 11:08:21 +02001776sub refname {
1777 my ($refname) = "refs/remotes/$_[0]->{ref_id}" ;
1778
1779 # It cannot end with a slash /, we'll throw up on this because
1780 # SVN can't have directories with a slash in their name, either:
1781 if ($refname =~ m{/$}) {
1782 die "ref: '$refname' ends with a trailing slash, this is ",
1783 "not permitted by git nor Subversion\n";
1784 }
1785
1786 # It cannot have ASCII control character space, tilde ~, caret ^,
1787 # colon :, question-mark ?, asterisk *, space, or open bracket [
1788 # anywhere.
1789 #
1790 # Additionally, % must be escaped because it is used for escaping
1791 # and we want our escaped refname to be reversible
1792 $refname =~ s{([ \%~\^:\?\*\[\t])}{uc sprintf('%%%02x',ord($1))}eg;
1793
1794 # no slash-separated component can begin with a dot .
1795 # /.* becomes /%2E*
1796 $refname =~ s{/\.}{/%2E}g;
1797
1798 # It cannot have two consecutive dots .. anywhere
1799 # .. becomes %2E%2E
1800 $refname =~ s{\.\.}{%2E%2E}g;
1801
1802 return $refname;
1803}
1804
1805sub desanitize_refname {
1806 my ($refname) = @_;
1807 $refname =~ s{%(?:([0-9A-F]{2}))}{chr hex($1)}eg;
1808 return $refname;
1809}
Eric Wong9b981fc2007-01-11 12:14:21 -08001810
Eric Wong26a62d52007-02-12 13:25:25 -08001811sub svm_uuid {
1812 my ($self) = @_;
1813 return $self->{svm}->{uuid} if $self->svm;
1814 $self->ra;
1815 unless ($self->{svm}) {
1816 die "SVM UUID not cached, and reading remotely failed\n";
1817 }
1818 $self->{svm}->{uuid};
1819}
Eric Wong8a49ee92007-02-10 20:46:50 -08001820
Eric Wong26a62d52007-02-12 13:25:25 -08001821sub svm {
1822 my ($self) = @_;
1823 return $self->{svm} if $self->{svm};
1824 my $svm;
Eric Wong8a49ee92007-02-10 20:46:50 -08001825 # see if we have it in our config, first:
1826 eval {
Eric Wong26a62d52007-02-12 13:25:25 -08001827 my $section = "svn-remote.$self->{repo_id}";
1828 $svm = {
Eric Wong93f26892007-02-11 01:20:26 -08001829 source => tmp_config('--get', "$section.svm-source"),
1830 uuid => tmp_config('--get', "$section.svm-uuid"),
Eric Wongbefc9ad2007-02-17 02:53:07 -08001831 replace => tmp_config('--get', "$section.svm-replace"),
Eric Wong8a49ee92007-02-10 20:46:50 -08001832 }
1833 };
Eric Wongbefc9ad2007-02-17 02:53:07 -08001834 if ($svm && $svm->{source} && $svm->{uuid} && $svm->{replace}) {
1835 $self->{svm} = $svm;
1836 }
Eric Wong26a62d52007-02-12 13:25:25 -08001837 $self->{svm};
1838}
1839
1840sub _set_svm_vars {
1841 my ($self, $ra) = @_;
Eric Wongdb03cd22007-02-13 00:38:02 -08001842 return $ra if $self->svm;
Eric Wong26a62d52007-02-12 13:25:25 -08001843
Eric Wongdb03cd22007-02-13 00:38:02 -08001844 my @err = ( "useSvmProps set, but failed to read SVM properties\n",
Eric Wongbefc9ad2007-02-17 02:53:07 -08001845 "(svm:source, svm:uuid) ",
Eric Wongdb03cd22007-02-13 00:38:02 -08001846 "from the following URLs:\n" );
1847 sub read_svm_props {
Eric Wongbefc9ad2007-02-17 02:53:07 -08001848 my ($self, $ra, $path, $r) = @_;
1849 my $props = ($ra->get_dir($path, $r))[2];
Eric Wongdb03cd22007-02-13 00:38:02 -08001850 my $src = $props->{'svm:source'};
Eric Wong8a49ee92007-02-10 20:46:50 -08001851 my $uuid = $props->{'svm:uuid'};
Eric Wongbefc9ad2007-02-17 02:53:07 -08001852 return undef if (!$src || !$uuid);
Eric Wongdb03cd22007-02-13 00:38:02 -08001853
Eric Wongbefc9ad2007-02-17 02:53:07 -08001854 chomp($src, $uuid);
Eric Wongdb03cd22007-02-13 00:38:02 -08001855
Eric Wong8a49ee92007-02-10 20:46:50 -08001856 $uuid =~ m{^[0-9a-f\-]{30,}$}
1857 or die "doesn't look right - svm:uuid is '$uuid'\n";
Eric Wongbefc9ad2007-02-17 02:53:07 -08001858
1859 # the '!' is used to mark the repos_root!/relative/path
1860 $src =~ s{/?!/?}{/};
Eric Wongdb03cd22007-02-13 00:38:02 -08001861 $src =~ s{/+$}{}; # no trailing slashes please
Eric Wongbefc9ad2007-02-17 02:53:07 -08001862 # username is of no interest
Eric Wongdb03cd22007-02-13 00:38:02 -08001863 $src =~ s{(^[a-z\+]*://)[^/@]*@}{$1};
Eric Wong8a49ee92007-02-10 20:46:50 -08001864
Eric Wongbefc9ad2007-02-17 02:53:07 -08001865 my $replace = $ra->{url};
1866 $replace .= "/$path" if length $path;
1867
Eric Wongdb03cd22007-02-13 00:38:02 -08001868 my $section = "svn-remote.$self->{repo_id}";
Eric Wongbefc9ad2007-02-17 02:53:07 -08001869 tmp_config("$section.svm-source", $src);
1870 tmp_config("$section.svm-replace", $replace);
1871 tmp_config("$section.svm-uuid", $uuid);
1872 $self->{svm} = {
1873 source => $src,
1874 uuid => $uuid,
1875 replace => $replace
1876 };
Eric Wong8a49ee92007-02-10 20:46:50 -08001877 }
Eric Wongdb03cd22007-02-13 00:38:02 -08001878
1879 my $r = $ra->get_latest_revnum;
1880 my $path = $self->{path};
Eric Wongbefc9ad2007-02-17 02:53:07 -08001881 my %tried;
Eric Wongdb03cd22007-02-13 00:38:02 -08001882 while (length $path) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08001883 unless ($tried{"$self->{url}/$path"}) {
1884 return $ra if $self->read_svm_props($ra, $path, $r);
1885 $tried{"$self->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08001886 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08001887 $path =~ s#/?[^/]+$##;
Eric Wong8a49ee92007-02-10 20:46:50 -08001888 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08001889 die "Path: '$path' should be ''\n" if $path ne '';
1890 return $ra if $self->read_svm_props($ra, $path, $r);
1891 $tried{"$self->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08001892
1893 if ($ra->{repos_root} eq $self->{url}) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08001894 die @err, (map { " $_\n" } keys %tried), "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08001895 }
1896
1897 # nope, make sure we're connected to the repository root:
1898 my $ok;
1899 my @tried_b;
1900 $path = $ra->{svn_path};
Eric Wongdb03cd22007-02-13 00:38:02 -08001901 $ra = Git::SVN::Ra->new($ra->{repos_root});
1902 while (length $path) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08001903 unless ($tried{"$ra->{url}/$path"}) {
1904 $ok = $self->read_svm_props($ra, $path, $r);
1905 last if $ok;
1906 $tried{"$ra->{url}/$path"} = 1;
1907 }
1908 $path =~ s#/?[^/]+$##;
Eric Wongdb03cd22007-02-13 00:38:02 -08001909 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08001910 die "Path: '$path' should be ''\n" if $path ne '';
1911 $ok ||= $self->read_svm_props($ra, $path, $r);
1912 $tried{"$ra->{url}/$path"} = 1;
Eric Wongdb03cd22007-02-13 00:38:02 -08001913 if (!$ok) {
Eric Wongbefc9ad2007-02-17 02:53:07 -08001914 die @err, (map { " $_\n" } keys %tried), "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08001915 }
1916 Git::SVN::Ra->new($self->{url});
Eric Wong8a49ee92007-02-10 20:46:50 -08001917}
1918
Eric Wong62e349d2007-02-16 19:57:29 -08001919sub svnsync {
1920 my ($self) = @_;
1921 return $self->{svnsync} if $self->{svnsync};
1922
1923 if ($self->no_metadata) {
1924 die "Can't have both 'noMetadata' and ",
1925 "'useSvnsyncProps' options set!\n";
1926 }
1927 if ($self->rewrite_root) {
1928 die "Can't have both 'useSvnsyncProps' and 'rewriteRoot' ",
1929 "options set!\n";
1930 }
1931
1932 my $svnsync;
1933 # see if we have it in our config, first:
1934 eval {
1935 my $section = "svn-remote.$self->{repo_id}";
Eric Wong98fa5b62008-01-11 23:13:55 -08001936
1937 my $url = tmp_config('--get', "$section.svnsync-url");
1938 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
1939 die "doesn't look right - svn:sync-from-url is '$url'\n";
1940
1941 my $uuid = tmp_config('--get', "$section.svnsync-uuid");
1942 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
1943 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1944
1945 $svnsync = { url => $url, uuid => $uuid }
Eric Wong62e349d2007-02-16 19:57:29 -08001946 };
1947 if ($svnsync && $svnsync->{url} && $svnsync->{uuid}) {
1948 return $self->{svnsync} = $svnsync;
1949 }
1950
1951 my $err = "useSvnsyncProps set, but failed to read " .
1952 "svnsync property: svn:sync-from-";
1953 my $rp = $self->ra->rev_proplist(0);
1954
1955 my $url = $rp->{'svn:sync-from-url'} or die $err . "url\n";
Eric Wong98fa5b62008-01-11 23:13:55 -08001956 ($url) = ($url =~ m{^([a-z\+]+://\S+)$}) or
Eric Wong62e349d2007-02-16 19:57:29 -08001957 die "doesn't look right - svn:sync-from-url is '$url'\n";
1958
1959 my $uuid = $rp->{'svn:sync-from-uuid'} or die $err . "uuid\n";
Eric Wong98fa5b62008-01-11 23:13:55 -08001960 ($uuid) = ($uuid =~ m{^([0-9a-f\-]{30,})$}) or
Eric Wong62e349d2007-02-16 19:57:29 -08001961 die "doesn't look right - svn:sync-from-uuid is '$uuid'\n";
1962
1963 my $section = "svn-remote.$self->{repo_id}";
1964 tmp_config('--add', "$section.svnsync-uuid", $uuid);
1965 tmp_config('--add', "$section.svnsync-url", $url);
1966 return $self->{svnsync} = { url => $url, uuid => $uuid };
1967}
1968
Eric Wong26a62d52007-02-12 13:25:25 -08001969# this allows us to memoize our SVN::Ra UUID locally and avoid a
1970# remote lookup (useful for 'git svn log').
1971sub ra_uuid {
1972 my ($self) = @_;
1973 unless ($self->{ra_uuid}) {
1974 my $key = "svn-remote.$self->{repo_id}.uuid";
1975 my $uuid = eval { tmp_config('--get', $key) };
1976 if (!$@ && $uuid && $uuid =~ /^([a-f\d\-]{30,})$/) {
1977 $self->{ra_uuid} = $uuid;
1978 } else {
1979 die "ra_uuid called without URL\n" unless $self->{url};
1980 $self->{ra_uuid} = $self->ra->get_uuid;
1981 tmp_config('--add', $key, $self->{ra_uuid});
1982 }
1983 }
1984 $self->{ra_uuid};
1985}
1986
Eric Wonga5460eb2007-11-21 18:20:57 -08001987sub _set_repos_root {
1988 my ($self, $repos_root) = @_;
1989 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1990 $repos_root ||= $self->ra->{repos_root};
1991 tmp_config($k, $repos_root);
1992 $repos_root;
1993}
1994
1995sub repos_root {
1996 my ($self) = @_;
1997 my $k = "svn-remote.$self->{repo_id}.reposRoot";
1998 eval { tmp_config('--get', $k) } || $self->_set_repos_root;
1999}
2000
Eric Wong9b981fc2007-01-11 12:14:21 -08002001sub ra {
2002 my ($self) = shift;
Eric Wong8a49ee92007-02-10 20:46:50 -08002003 my $ra = Git::SVN::Ra->new($self->{url});
Eric Wonga5460eb2007-11-21 18:20:57 -08002004 $self->_set_repos_root($ra->{repos_root});
Eric Wong91b03282007-02-11 00:51:33 -08002005 if ($self->use_svm_props && !$self->{svm}) {
2006 if ($self->no_metadata) {
Eric Wong97ae0912007-02-11 15:21:24 -08002007 die "Can't have both 'noMetadata' and ",
2008 "'useSvmProps' options set!\n";
Eric Wong62e349d2007-02-16 19:57:29 -08002009 } elsif ($self->use_svnsync_props) {
2010 die "Can't have both 'useSvnsyncProps' and ",
2011 "'useSvmProps' options set!\n";
Eric Wong91b03282007-02-11 00:51:33 -08002012 }
Eric Wong26a62d52007-02-12 13:25:25 -08002013 $ra = $self->_set_svm_vars($ra);
Eric Wong8a49ee92007-02-10 20:46:50 -08002014 $self->{-want_revprops} = 1;
2015 }
2016 $ra;
Eric Wong9b981fc2007-01-11 12:14:21 -08002017}
2018
Eric Wong15710b62007-01-22 02:20:33 -08002019sub rel_path {
2020 my ($self) = @_;
2021 my $repos_root = $self->ra->{repos_root};
2022 return $self->{path} if ($self->{url} eq $repos_root);
Eric Wong0b594512007-03-25 16:35:31 -07002023 my $url = $self->{url} .
2024 (length $self->{path} ? "/$self->{path}" : $self->{path});
2025 $url =~ s!^\Q$repos_root\E(?:/+|$)!!g;
2026 $url;
Eric Wong15710b62007-01-22 02:20:33 -08002027}
2028
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002029# prop_walk(PATH, REV, SUB)
2030# -------------------------
2031# Recursively traverse PATH at revision REV and invoke SUB for each
2032# directory that contains a SVN property. SUB will be invoked as
2033# follows: &SUB(gs, path, props); where `gs' is this instance of
2034# Git::SVN, `path' the path to the directory where the properties
2035# `props' were found. The `path' will be relative to point of checkout,
2036# that is, if url://repo/trunk is the current Git branch, and that
2037# directory contains a sub-directory `d', SUB will be invoked with `/d/'
2038# as `path' (note the trailing `/').
2039sub prop_walk {
2040 my ($self, $path, $rev, $sub) = @_;
2041
Kevin Ballard35cda062008-01-09 01:37:20 -05002042 $path =~ s#^/##;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002043 my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
2044 $path =~ s#^/*#/#g;
Eric Wong9b981fc2007-01-11 12:14:21 -08002045 my $p = $path;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002046 # Strip the irrelevant part of the path.
2047 $p =~ s#^/+\Q$self->{path}\E(/|$)#/#;
2048 # Ensure the path is terminated by a `/'.
2049 $p =~ s#/*$#/#;
2050
2051 # The properties contain all the internal SVN stuff nobody
2052 # (usually) cares about.
2053 my $interesting_props = 0;
2054 foreach (keys %{$props}) {
2055 # If it doesn't start with `svn:', it must be a
2056 # user-defined property.
2057 ++$interesting_props and next if $_ !~ /^svn:/;
2058 # FIXME: Fragile, if SVN adds new public properties,
2059 # this needs to be updated.
2060 ++$interesting_props if /^svn:(?:ignore|keywords|executable
2061 |eol-style|mime-type
2062 |externals|needs-lock)$/x;
Eric Wong9b981fc2007-01-11 12:14:21 -08002063 }
Benoit Sigoure01bdab82007-10-16 16:36:48 +02002064 &$sub($self, $p, $props) if $interesting_props;
2065
Eric Wong9b981fc2007-01-11 12:14:21 -08002066 foreach (sort keys %$dirent) {
Eric Wong0dc03d62007-05-13 01:04:43 -07002067 next if $dirent->{$_}->{kind} != $SVN::Node::dir;
Christian Engwerb7166cc2008-05-27 08:46:55 +00002068 $self->prop_walk($self->{path} . $p . $_, $rev, $sub);
Eric Wong9b981fc2007-01-11 12:14:21 -08002069 }
2070}
2071
Eric Wong3ebe8df2007-01-25 17:35:40 -08002072sub last_rev { ($_[0]->last_rev_commit)[0] }
2073sub last_commit { ($_[0]->last_rev_commit)[1] }
2074
Eric Wong9b981fc2007-01-11 12:14:21 -08002075# returns the newest SVN revision number and newest commit SHA1
2076sub last_rev_commit {
2077 my ($self) = @_;
2078 if (defined $self->{last_rev} && defined $self->{last_commit}) {
2079 return ($self->{last_rev}, $self->{last_commit});
2080 }
Eric Wongd2866f92007-01-11 12:26:16 -08002081 my $c = ::verify_ref($self->refname.'^0');
Eric Wong91b03282007-02-11 00:51:33 -08002082 if ($c && !$self->use_svm_props && !$self->no_metadata) {
Eric Wongd2866f92007-01-11 12:26:16 -08002083 my $rev = (::cmt_metadata($c))[1];
Eric Wong9b981fc2007-01-11 12:14:21 -08002084 if (defined $rev) {
2085 ($self->{last_rev}, $self->{last_commit}) = ($rev, $c);
2086 return ($rev, $c);
2087 }
2088 }
Eric Wong060610c2007-12-08 23:27:41 -08002089 my $map_path = $self->map_path;
2090 unless (-e $map_path) {
Eric Wong26a62d52007-02-12 13:25:25 -08002091 ($self->{last_rev}, $self->{last_commit}) = (undef, undef);
2092 return (undef, undef);
2093 }
Eric Wong66ab84b2007-12-08 23:27:42 -08002094 my ($rev, $commit) = $self->rev_map_max(1);
Eric Wong060610c2007-12-08 23:27:41 -08002095 ($self->{last_rev}, $self->{last_commit}) = ($rev, $commit);
2096 return ($rev, $commit);
Eric Wong9b981fc2007-01-11 12:14:21 -08002097}
2098
Eric Wong3ebe8df2007-01-25 17:35:40 -08002099sub get_fetch_range {
2100 my ($self, $min, $max) = @_;
2101 $max ||= $self->ra->get_latest_revnum;
Eric Wong060610c2007-12-08 23:27:41 -08002102 $min ||= $self->rev_map_max;
Eric Wong3ebe8df2007-01-25 17:35:40 -08002103 (++$min, $max);
Eric Wong9b981fc2007-01-11 12:14:21 -08002104}
2105
Eric Wong8a49ee92007-02-10 20:46:50 -08002106sub tmp_config {
Eric Wong93f26892007-02-11 01:20:26 -08002107 my (@args) = @_;
Eric Wongb7e53482007-02-16 04:09:28 -08002108 my $old_def_config = "$ENV{GIT_DIR}/svn/config";
2109 my $config = "$ENV{GIT_DIR}/svn/.metadata";
Eric Wong38570a42007-06-13 02:37:05 -07002110 if (! -f $config && -f $old_def_config) {
Eric Wongb7e53482007-02-16 04:09:28 -08002111 rename $old_def_config, $config or
2112 die "Failed rename $old_def_config => $config: $!\n";
2113 }
Eric Wong8a49ee92007-02-10 20:46:50 -08002114 my $old_config = $ENV{GIT_CONFIG};
Eric Wong93f26892007-02-11 01:20:26 -08002115 $ENV{GIT_CONFIG} = $config;
Eric Wong8a49ee92007-02-10 20:46:50 -08002116 $@ = undef;
Eric Wongb4d57e52007-02-14 15:10:44 -08002117 my @ret = eval {
2118 unless (-f $config) {
2119 mkfile($config);
2120 open my $fh, '>', $config or
2121 die "Can't open $config: $!\n";
2122 print $fh "; This file is used internally by ",
2123 "git-svn\n" or die
2124 "Couldn't write to $config: $!\n";
2125 print $fh "; You should not have to edit it\n" or
2126 die "Couldn't write to $config: $!\n";
2127 close $fh or die "Couldn't close $config: $!\n";
2128 }
2129 command('config', @args);
2130 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002131 my $err = $@;
2132 if (defined $old_config) {
2133 $ENV{GIT_CONFIG} = $old_config;
2134 } else {
2135 delete $ENV{GIT_CONFIG};
2136 }
2137 die $err if $err;
2138 wantarray ? @ret : $ret[0];
2139}
2140
Eric Wong9b981fc2007-01-11 12:14:21 -08002141sub tmp_index_do {
2142 my ($self, $sub) = @_;
2143 my $old_index = $ENV{GIT_INDEX_FILE};
2144 $ENV{GIT_INDEX_FILE} = $self->{index};
Eric Wong8a49ee92007-02-10 20:46:50 -08002145 $@ = undef;
Eric Wongb4d57e52007-02-14 15:10:44 -08002146 my @ret = eval {
2147 my ($dir, $base) = ($self->{index} =~ m#^(.*?)/?([^/]+)$#);
2148 mkpath([$dir]) unless -d $dir;
2149 &$sub;
2150 };
Eric Wong8a49ee92007-02-10 20:46:50 -08002151 my $err = $@;
2152 if (defined $old_index) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002153 $ENV{GIT_INDEX_FILE} = $old_index;
2154 } else {
2155 delete $ENV{GIT_INDEX_FILE};
2156 }
Eric Wong8a49ee92007-02-10 20:46:50 -08002157 die $err if $err;
Eric Wong9b981fc2007-01-11 12:14:21 -08002158 wantarray ? @ret : $ret[0];
2159}
2160
2161sub assert_index_clean {
2162 my ($self, $treeish) = @_;
2163
2164 $self->tmp_index_do(sub {
2165 command_noisy('read-tree', $treeish) unless -e $self->{index};
2166 my $x = command_oneline('write-tree');
2167 my ($y) = (command(qw/cat-file commit/, $treeish) =~
2168 /^tree ($::sha1)/mo);
Eric Wonge8d120b2007-02-14 16:29:52 -08002169 return if $y eq $x;
2170
2171 warn "Index mismatch: $y != $x\nrereading $treeish\n";
2172 unlink $self->{index} or die "unlink $self->{index}: $!\n";
2173 command_noisy('read-tree', $treeish);
Eric Wong9b981fc2007-01-11 12:14:21 -08002174 $x = command_oneline('write-tree');
2175 if ($y ne $x) {
2176 ::fatal "trees ($treeish) $y != $x\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02002177 "Something is seriously wrong...";
Eric Wong9b981fc2007-01-11 12:14:21 -08002178 }
2179 });
2180}
2181
2182sub get_commit_parents {
Eric Wong0af9c9f2007-01-27 22:28:56 -08002183 my ($self, $log_entry) = @_;
Eric Wong9b981fc2007-01-11 12:14:21 -08002184 my (%seen, @ret, @tmp);
Eric Wong0af9c9f2007-01-27 22:28:56 -08002185 # legacy support for 'set-tree'; this is only used by set_tree_cb:
2186 if (my $ip = $self->{inject_parents}) {
2187 if (my $commit = delete $ip->{$log_entry->{revision}}) {
2188 push @tmp, $commit;
Eric Wong9b981fc2007-01-11 12:14:21 -08002189 }
2190 }
Eric Wongd2866f92007-01-11 12:26:16 -08002191 if (my $cur = ::verify_ref($self->refname.'^0')) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002192 push @tmp, $cur;
2193 }
Eric Wong733a65a2007-06-13 02:23:28 -07002194 if (my $ipd = $self->{inject_parents_dcommit}) {
2195 if (my $commit = delete $ipd->{$log_entry->{revision}}) {
2196 push @tmp, @$commit;
2197 }
2198 }
Eric Wong44320b92007-01-13 22:35:53 -08002199 push @tmp, $_ foreach (@{$log_entry->{parents}}, @tmp);
Eric Wong9b981fc2007-01-11 12:14:21 -08002200 while (my $p = shift @tmp) {
2201 next if $seen{$p};
2202 $seen{$p} = 1;
2203 push @ret, $p;
2204 # MAXPARENT is defined to 16 in commit-tree.c:
2205 last if @ret >= 16;
2206 }
2207 if (@tmp) {
Eric Wong44320b92007-01-13 22:35:53 -08002208 die "r$log_entry->{revision}: No room for parents:\n\t",
Eric Wong9b981fc2007-01-11 12:14:21 -08002209 join("\n\t", @tmp), "\n";
2210 }
2211 @ret;
2212}
2213
Eric Wongaea736c2007-02-16 19:15:21 -08002214sub rewrite_root {
2215 my ($self) = @_;
2216 return $self->{-rewrite_root} if exists $self->{-rewrite_root};
2217 my $k = "svn-remote.$self->{repo_id}.rewriteRoot";
2218 my $rwr = eval { command_oneline(qw/config --get/, $k) };
2219 if ($rwr) {
2220 $rwr =~ s#/+$##;
2221 if ($rwr !~ m#^[a-z\+]+://#) {
2222 die "$rwr is not a valid URL (key: $k)\n";
2223 }
2224 }
2225 $self->{-rewrite_root} = $rwr;
2226}
2227
2228sub metadata_url {
2229 my ($self) = @_;
2230 ($self->rewrite_root || $self->{url}) .
2231 (length $self->{path} ? '/' . $self->{path} : '');
2232}
2233
Eric Wong706587f2007-01-18 17:50:01 -08002234sub full_url {
Eric Wong9b981fc2007-01-11 12:14:21 -08002235 my ($self) = @_;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08002236 $self->{url} . (length $self->{path} ? '/' . $self->{path} : '');
Eric Wong9b981fc2007-01-11 12:14:21 -08002237}
2238
Eric Wongad948022007-12-15 19:08:22 -08002239
2240sub set_commit_header_env {
2241 my ($log_entry) = @_;
2242 my %env;
2243 foreach my $ned (qw/NAME EMAIL DATE/) {
2244 foreach my $ac (qw/AUTHOR COMMITTER/) {
2245 $env{"GIT_${ac}_${ned}"} = $ENV{"GIT_${ac}_${ned}"};
2246 }
2247 }
2248
2249 $ENV{GIT_AUTHOR_NAME} = $log_entry->{name};
2250 $ENV{GIT_AUTHOR_EMAIL} = $log_entry->{email};
2251 $ENV{GIT_AUTHOR_DATE} = $ENV{GIT_COMMITTER_DATE} = $log_entry->{date};
2252
2253 $ENV{GIT_COMMITTER_NAME} = (defined $log_entry->{commit_name})
2254 ? $log_entry->{commit_name}
2255 : $log_entry->{name};
2256 $ENV{GIT_COMMITTER_EMAIL} = (defined $log_entry->{commit_email})
2257 ? $log_entry->{commit_email}
2258 : $log_entry->{email};
2259 \%env;
2260}
2261
2262sub restore_commit_header_env {
2263 my ($env) = @_;
2264 foreach my $ned (qw/NAME EMAIL DATE/) {
2265 foreach my $ac (qw/AUTHOR COMMITTER/) {
2266 my $k = "GIT_${ac}_${ned}";
2267 if (defined $env->{$k}) {
2268 $ENV{$k} = $env->{$k};
2269 } else {
2270 delete $ENV{$k};
2271 }
2272 }
2273 }
2274}
2275
Karl Hasselström94bc9142008-02-03 17:56:18 +01002276sub gc {
2277 command_noisy('gc', '--auto');
2278};
2279
Eric Wong9b981fc2007-01-11 12:14:21 -08002280sub do_git_commit {
Eric Wong0af9c9f2007-01-27 22:28:56 -08002281 my ($self, $log_entry) = @_;
Eric Wong8a603772007-01-31 02:45:50 -08002282 my $lr = $self->last_rev;
2283 if (defined $lr && $lr >= $log_entry->{revision}) {
2284 die "Last fetched revision of ", $self->refname,
2285 " was r$lr, but we are about to fetch: ",
2286 "r$log_entry->{revision}!\n";
2287 }
Eric Wong060610c2007-12-08 23:27:41 -08002288 if (my $c = $self->rev_map_get($log_entry->{revision})) {
Eric Wong44320b92007-01-13 22:35:53 -08002289 croak "$log_entry->{revision} = $c already exists! ",
Eric Wong9b981fc2007-01-11 12:14:21 -08002290 "Why are we refetching it?\n";
2291 }
Eric Wongad948022007-12-15 19:08:22 -08002292 my $old_env = set_commit_header_env($log_entry);
Eric Wong44320b92007-01-13 22:35:53 -08002293 my $tree = $log_entry->{tree};
Eric Wong9b981fc2007-01-11 12:14:21 -08002294 if (!defined $tree) {
2295 $tree = $self->tmp_index_do(sub {
2296 command_oneline('write-tree') });
2297 }
2298 die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o;
2299
Deskin Millere855bfc2008-10-31 00:10:25 -04002300 my @exec = ('git', 'commit-tree', $tree);
Eric Wong0af9c9f2007-01-27 22:28:56 -08002301 foreach ($self->get_commit_parents($log_entry)) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002302 push @exec, '-p', $_;
2303 }
2304 defined(my $pid = open3(my $msg_fh, my $out_fh, '>&STDERR', @exec))
2305 or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07002306 binmode $msg_fh;
2307
2308 # we always get UTF-8 from SVN, but we may want our commits in
2309 # a different encoding.
2310 if (my $enc = Git::config('i18n.commitencoding')) {
2311 require Encode;
2312 Encode::from_to($log_entry->{log}, 'UTF-8', $enc);
2313 }
Eric Wong44320b92007-01-13 22:35:53 -08002314 print $msg_fh $log_entry->{log} or croak $!;
Eric Wongad948022007-12-15 19:08:22 -08002315 restore_commit_header_env($old_env);
Eric Wong91b03282007-02-11 00:51:33 -08002316 unless ($self->no_metadata) {
Eric Wong8a49ee92007-02-10 20:46:50 -08002317 print $msg_fh "\ngit-svn-id: $log_entry->{metadata}\n"
2318 or croak $!;
Eric Wong9760adc2007-01-31 03:06:56 -08002319 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002320 $msg_fh->flush == 0 or croak $!;
2321 close $msg_fh or croak $!;
2322 chomp(my $commit = do { local $/; <$out_fh> });
2323 close $out_fh or croak $!;
2324 waitpid $pid, 0;
2325 croak $? if $?;
2326 if ($commit !~ /^$::sha1$/o) {
2327 die "Failed to commit, invalid sha1: $commit\n";
2328 }
2329
Eric Wong060610c2007-12-08 23:27:41 -08002330 $self->rev_map_set($log_entry->{revision}, $commit, 1);
Eric Wong9b981fc2007-01-11 12:14:21 -08002331
Eric Wong44320b92007-01-13 22:35:53 -08002332 $self->{last_rev} = $log_entry->{revision};
Eric Wong9b981fc2007-01-11 12:14:21 -08002333 $self->{last_commit} = $commit;
Eric Wong8a49ee92007-02-10 20:46:50 -08002334 print "r$log_entry->{revision}";
2335 if (defined $log_entry->{svm_revision}) {
2336 print " (\@$log_entry->{svm_revision})";
Eric Wong060610c2007-12-08 23:27:41 -08002337 $self->rev_map_set($log_entry->{svm_revision}, $commit,
Eric Wong26a62d52007-02-12 13:25:25 -08002338 0, $self->svm_uuid);
Eric Wong8a49ee92007-02-10 20:46:50 -08002339 }
2340 print " = $commit ($self->{ref_id})\n";
Karl Hasselström94bc9142008-02-03 17:56:18 +01002341 if (--$_gc_nr == 0) {
2342 $_gc_nr = $_gc_period;
2343 gc();
2344 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002345 return $commit;
2346}
2347
Eric Wongfbcc1732007-02-06 18:35:30 -08002348sub match_paths {
2349 my ($self, $paths, $r) = @_;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08002350 return 1 if $self->{path} eq '';
Eric Wongd542aed2007-02-09 02:19:41 -08002351 if (my $path = $paths->{"/$self->{path}"}) {
2352 return ($path->{action} eq 'D') ? 0 : 1;
2353 }
Eric Wong4e9f6cc2007-02-09 12:17:57 -08002354 $self->{path_regex} ||= qr/^\/\Q$self->{path}\E\//;
Eric Wongfbcc1732007-02-06 18:35:30 -08002355 if (grep /$self->{path_regex}/, keys %$paths) {
2356 return 1;
2357 }
2358 my $c = '';
2359 foreach (split m#/#, $self->{path}) {
2360 $c .= "/$_";
Eric Wong74a81222007-02-10 13:28:50 -08002361 next unless ($paths->{$c} &&
2362 ($paths->{$c}->{action} =~ /^[AR]$/));
Eric Wonge5181922007-02-08 12:53:57 -08002363 if ($self->ra->check_path($self->{path}, $r) ==
2364 $SVN::Node::dir) {
Eric Wongfbcc1732007-02-06 18:35:30 -08002365 return 1;
2366 }
2367 }
2368 return 0;
2369}
2370
Eric Wong15710b62007-01-22 02:20:33 -08002371sub find_parent_branch {
2372 my ($self, $paths, $rev) = @_;
Eric Wong91b03282007-02-11 00:51:33 -08002373 return undef unless $self->follow_parent;
Eric Wonge5a0b242007-01-25 15:44:54 -08002374 unless (defined $paths) {
Eric Wongc7eba712007-01-31 03:45:28 -08002375 my $err_handler = $SVN::Error::handler;
2376 $SVN::Error::handler = \&Git::SVN::Ra::skip_unknown_revs;
Eric Wongd4eff2b2007-01-30 14:04:22 -08002377 $self->ra->get_log([$self->{path}], $rev, $rev, 0, 1, 1, sub {
2378 $paths =
2379 Git::SVN::Ra::dup_changed_paths($_[0]) });
Eric Wongc7eba712007-01-31 03:45:28 -08002380 $SVN::Error::handler = $err_handler;
Eric Wonge5a0b242007-01-25 15:44:54 -08002381 }
2382 return undef unless defined $paths;
Eric Wong15710b62007-01-22 02:20:33 -08002383
2384 # look for a parent from another branch:
Eric Wong7f578c52007-01-24 02:16:25 -08002385 my @b_path_components = split m#/#, $self->rel_path;
2386 my @a_path_components;
2387 my $i;
2388 while (@b_path_components) {
2389 $i = $paths->{'/'.join('/', @b_path_components)};
Eric Wong74a81222007-02-10 13:28:50 -08002390 last if $i && defined $i->{copyfrom_path};
Eric Wong7f578c52007-01-24 02:16:25 -08002391 unshift(@a_path_components, pop(@b_path_components));
2392 }
Eric Wong74a81222007-02-10 13:28:50 -08002393 return undef unless defined $i && defined $i->{copyfrom_path};
2394 my $branch_from = $i->{copyfrom_path};
Eric Wong7f578c52007-01-24 02:16:25 -08002395 if (@a_path_components) {
2396 print STDERR "branch_from: $branch_from => ";
2397 $branch_from .= '/'.join('/', @a_path_components);
2398 print STDERR $branch_from, "\n";
2399 }
Eric Wong3ebe8df2007-01-25 17:35:40 -08002400 my $r = $i->{copyfrom_rev};
Eric Wong15710b62007-01-22 02:20:33 -08002401 my $repos_root = $self->ra->{repos_root};
2402 my $url = $self->ra->{url};
2403 my $new_url = $repos_root . $branch_from;
2404 print STDERR "Found possible branch point: ",
2405 "$new_url => ", $self->full_url, ", $r\n";
2406 $branch_from =~ s#^/##;
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002407 my $gs = $self->other_gs($new_url, $url, $repos_root,
2408 $branch_from, $r, $self->{ref_id});
Eric Wong15710b62007-01-22 02:20:33 -08002409 my ($r0, $parent) = $gs->find_rev_before($r, 1);
Deskin Miller553589f2008-12-08 08:31:31 -05002410 {
2411 my ($base, $head);
2412 if (!defined $r0 || !defined $parent) {
2413 ($base, $head) = parse_revision_argument(0, $r);
2414 } else {
2415 if ($r0 < $r) {
2416 $gs->ra->get_log([$gs->{path}], $r0 + 1, $r, 1,
2417 0, 1, sub { $base = $_[1] - 1 });
2418 }
2419 }
2420 if (defined $base && $base <= $r) {
Eric Wongd627de62007-04-15 03:01:29 -07002421 $gs->fetch($base, $r);
2422 }
Deskin Miller553589f2008-12-08 08:31:31 -05002423 ($r0, $parent) = $gs->find_rev_before($r, 1);
Eric Wong15710b62007-01-22 02:20:33 -08002424 }
Eric Wongef70de92007-02-01 04:12:41 -08002425 if (defined $r0 && defined $parent) {
Eric Wong15710b62007-01-22 02:20:33 -08002426 print STDERR "Found branch parent: ($self->{ref_id}) $parent\n";
Eric Wong15710b62007-01-22 02:20:33 -08002427 my $ed;
2428 if ($self->ra->can_do_switch) {
Eric Wong2e5e2482007-02-23 02:21:59 -08002429 $self->assert_index_clean($parent);
Eric Wong8b8fc062007-01-22 11:44:57 -08002430 print STDERR "Following parent with do_switch\n";
Eric Wong15710b62007-01-22 02:20:33 -08002431 # do_switch works with svn/trunk >= r22312, but that
Eric Wong2b27f6c2007-01-28 04:59:05 -08002432 # is not included with SVN 1.4.3 (the latest version
Eric Wong15710b62007-01-22 02:20:33 -08002433 # at the moment), so we can't rely on it
Eric Wong83c2fcf2009-02-22 20:25:00 -08002434 $self->{last_rev} = $r0;
Eric Wong15710b62007-01-22 02:20:33 -08002435 $self->{last_commit} = $parent;
Eric Wong8841b372009-02-11 01:56:58 -08002436 $ed = SVN::Git::Fetcher->new($self, $gs->{path});
Eric Wong8a603772007-01-31 02:45:50 -08002437 $gs->ra->gs_do_switch($r0, $rev, $gs,
Eric Wong15710b62007-01-22 02:20:33 -08002438 $self->full_url, $ed)
2439 or die "SVN connection failed somewhere...\n";
Steven Walter9ff74e92007-09-28 13:24:19 -04002440 } elsif ($self->ra->trees_match($new_url, $r0,
2441 $self->full_url, $rev)) {
2442 print STDERR "Trees match:\n",
2443 " $new_url\@$r0\n",
2444 " ${\$self->full_url}\@$rev\n",
2445 "Following parent with no changes\n";
2446 $self->tmp_index_do(sub {
2447 command_noisy('read-tree', $parent);
2448 });
2449 $self->{last_commit} = $parent;
Eric Wong15710b62007-01-22 02:20:33 -08002450 } else {
Eric Wong8b8fc062007-01-22 11:44:57 -08002451 print STDERR "Following parent with do_update\n";
Eric Wong15710b62007-01-22 02:20:33 -08002452 $ed = SVN::Git::Fetcher->new($self);
Eric Wong8a603772007-01-31 02:45:50 -08002453 $self->ra->gs_do_update($rev, $rev, $self, $ed)
Eric Wong15710b62007-01-22 02:20:33 -08002454 or die "SVN connection failed somewhere...\n";
2455 }
Eric Wongf7c3fc42007-01-29 18:34:55 -08002456 print STDERR "Successfully followed parent\n";
Eric Wong15710b62007-01-22 02:20:33 -08002457 return $self->make_log_entry($rev, [$parent], $ed);
2458 }
Eric Wong15710b62007-01-22 02:20:33 -08002459 return undef;
2460}
2461
Eric Wong9b981fc2007-01-11 12:14:21 -08002462sub do_fetch {
Eric Wong706587f2007-01-18 17:50:01 -08002463 my ($self, $paths, $rev) = @_;
Eric Wong15710b62007-01-22 02:20:33 -08002464 my $ed;
Eric Wong9b981fc2007-01-11 12:14:21 -08002465 my ($last_rev, @parents);
Eric Wongb9dffd82007-02-09 01:28:30 -08002466 if (my $lc = $self->last_commit) {
2467 # we can have a branch that was deleted, then re-added
2468 # under the same name but copied from another path, in
2469 # which case we'll have multiple parents (we don't
2470 # want to break the original ref, nor lose copypath info):
2471 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2472 push @{$log_entry->{parents}}, $lc;
2473 return $log_entry;
2474 }
Eric Wong15710b62007-01-22 02:20:33 -08002475 $ed = SVN::Git::Fetcher->new($self);
Eric Wong9b981fc2007-01-11 12:14:21 -08002476 $last_rev = $self->{last_rev};
Eric Wongb9dffd82007-02-09 01:28:30 -08002477 $ed->{c} = $lc;
2478 @parents = ($lc);
Eric Wong9b981fc2007-01-11 12:14:21 -08002479 } else {
2480 $last_rev = $rev;
Eric Wong15710b62007-01-22 02:20:33 -08002481 if (my $log_entry = $self->find_parent_branch($paths, $rev)) {
2482 return $log_entry;
2483 }
2484 $ed = SVN::Git::Fetcher->new($self);
Eric Wong9b981fc2007-01-11 12:14:21 -08002485 }
Eric Wong8a603772007-01-31 02:45:50 -08002486 unless ($self->ra->gs_do_update($last_rev, $rev, $self, $ed)) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002487 die "SVN connection failed somewhere...\n";
2488 }
2489 $self->make_log_entry($rev, \@parents, $ed);
2490}
2491
Eric Wong97f69872007-01-25 11:53:13 -08002492sub get_untracked {
2493 my ($self, $ed) = @_;
2494 my @out;
2495 my $h = $ed->{empty};
Eric Wong9b981fc2007-01-11 12:14:21 -08002496 foreach (sort keys %$h) {
2497 my $act = $h->{$_} ? '+empty_dir' : '-empty_dir';
Eric Wong97f69872007-01-25 11:53:13 -08002498 push @out, " $act: " . uri_encode($_);
Eric Wong9b981fc2007-01-11 12:14:21 -08002499 warn "W: $act: $_\n";
2500 }
2501 foreach my $t (qw/dir_prop file_prop/) {
Eric Wong97f69872007-01-25 11:53:13 -08002502 $h = $ed->{$t} or next;
Eric Wong9b981fc2007-01-11 12:14:21 -08002503 foreach my $path (sort keys %$h) {
2504 my $ppath = $path eq '' ? '.' : $path;
2505 foreach my $prop (sort keys %{$h->{$path}}) {
Eric Wong1ce255d2007-01-14 23:21:16 -08002506 next if $SKIP_PROP{$prop};
Eric Wong9b981fc2007-01-11 12:14:21 -08002507 my $v = $h->{$path}->{$prop};
Eric Wong97f69872007-01-25 11:53:13 -08002508 my $t_ppath_prop = "$t: " .
2509 uri_encode($ppath) . ' ' .
2510 uri_encode($prop);
Eric Wong9b981fc2007-01-11 12:14:21 -08002511 if (defined $v) {
Eric Wong97f69872007-01-25 11:53:13 -08002512 push @out, " +$t_ppath_prop " .
2513 uri_encode($v);
Eric Wong9b981fc2007-01-11 12:14:21 -08002514 } else {
Eric Wong97f69872007-01-25 11:53:13 -08002515 push @out, " -$t_ppath_prop";
Eric Wong9b981fc2007-01-11 12:14:21 -08002516 }
2517 }
2518 }
2519 }
2520 foreach my $t (qw/absent_file absent_directory/) {
Eric Wong97f69872007-01-25 11:53:13 -08002521 $h = $ed->{$t} or next;
Eric Wong9b981fc2007-01-11 12:14:21 -08002522 foreach my $parent (sort keys %$h) {
2523 foreach my $path (sort @{$h->{$parent}}) {
Eric Wong97f69872007-01-25 11:53:13 -08002524 push @out, " $t: " .
2525 uri_encode("$parent/$path");
Eric Wong9b981fc2007-01-11 12:14:21 -08002526 warn "W: $t: $parent/$path ",
2527 "Insufficient permissions?\n";
2528 }
2529 }
2530 }
Eric Wong97f69872007-01-25 11:53:13 -08002531 \@out;
Eric Wong9b981fc2007-01-11 12:14:21 -08002532}
2533
Pete Harlane82f0d72009-01-17 20:10:14 -08002534# parse_svn_date(DATE)
2535# --------------------
2536# Given a date (in UTC) from Subversion, return a string in the format
2537# "<TZ Offset> <local date/time>" that Git will use.
2538#
2539# By default the parsed date will be in UTC; if $Git::SVN::_localtime
2540# is true we'll convert it to the local timezone instead.
Eric Wong1c8443b2007-01-14 02:17:00 -08002541sub parse_svn_date {
2542 my $date = shift || return '+0000 1970-01-01 00:00:00';
2543 my ($Y,$m,$d,$H,$M,$S) = ($date =~ /^(\d{4})\-(\d\d)\-(\d\d)T
Junio C Hamanob94ead72009-02-18 10:48:01 -08002544 (\d\d)\:(\d\d)\:(\d\d)\.\d*Z$/x) or
Eric Wong1c8443b2007-01-14 02:17:00 -08002545 croak "Unable to parse date: $date\n";
Pete Harlane82f0d72009-01-17 20:10:14 -08002546 my $parsed_date; # Set next.
2547
2548 if ($Git::SVN::_localtime) {
2549 # Translate the Subversion datetime to an epoch time.
2550 # Begin by switching ourselves to $date's timezone, UTC.
2551 my $old_env_TZ = $ENV{TZ};
2552 $ENV{TZ} = 'UTC';
2553
2554 my $epoch_in_UTC =
2555 POSIX::strftime('%s', $S, $M, $H, $d, $m - 1, $Y - 1900);
2556
2557 # Determine our local timezone (including DST) at the
2558 # time of $epoch_in_UTC. $Git::SVN::Log::TZ stored the
2559 # value of TZ, if any, at the time we were run.
2560 if (defined $Git::SVN::Log::TZ) {
2561 $ENV{TZ} = $Git::SVN::Log::TZ;
2562 } else {
2563 delete $ENV{TZ};
2564 }
2565
2566 my $our_TZ =
2567 POSIX::strftime('%Z', $S, $M, $H, $d, $m - 1, $Y - 1900);
2568
2569 # This converts $epoch_in_UTC into our local timezone.
2570 my ($sec, $min, $hour, $mday, $mon, $year,
2571 $wday, $yday, $isdst) = localtime($epoch_in_UTC);
2572
2573 $parsed_date = sprintf('%s %04d-%02d-%02d %02d:%02d:%02d',
2574 $our_TZ, $year + 1900, $mon + 1,
2575 $mday, $hour, $min, $sec);
2576
2577 # Reset us to the timezone in effect when we entered
2578 # this routine.
2579 if (defined $old_env_TZ) {
2580 $ENV{TZ} = $old_env_TZ;
2581 } else {
2582 delete $ENV{TZ};
2583 }
2584 } else {
2585 $parsed_date = "+0000 $Y-$m-$d $H:$M:$S";
2586 }
2587
2588 return $parsed_date;
Eric Wong1c8443b2007-01-14 02:17:00 -08002589}
2590
Sam Vilain8e3f9b12007-06-26 19:23:59 +12002591sub other_gs {
2592 my ($self, $new_url, $url, $repos_root,
2593 $branch_from, $r, $old_ref_id) = @_;
2594 my $gs = Git::SVN->find_by_url($new_url, $repos_root, $branch_from);
2595 unless ($gs) {
2596 my $ref_id = $old_ref_id;
2597 $ref_id =~ s/\@\d+$//;
2598 $ref_id .= "\@$r";
2599 # just grow a tail if we're not unique enough :x
2600 $ref_id .= '-' while find_ref($ref_id);
2601 print STDERR "Initializing parent: $ref_id\n";
2602 my ($u, $p, $repo_id) = ($new_url, '', $ref_id);
2603 if ($u =~ s#^\Q$url\E(/|$)##) {
2604 $p = $u;
2605 $u = $url;
2606 $repo_id = $self->{repo_id};
2607 }
2608 $gs = Git::SVN->init($u, $p, $repo_id, $ref_id, 1);
2609 }
2610 $gs
2611}
2612
Eric Wong1c8443b2007-01-14 02:17:00 -08002613sub check_author {
2614 my ($author) = @_;
2615 if (!defined $author || length $author == 0) {
2616 $author = '(no author)';
Thomas Guyot-Sionnest9231f502008-04-22 06:07:47 -04002617 } elsif (defined $::_authors && ! defined $::users{$author}) {
Eric Wong1c8443b2007-01-14 02:17:00 -08002618 die "Author: $author not defined in $::_authors file\n";
2619 }
2620 $author;
2621}
2622
Eric Wong9b981fc2007-01-11 12:14:21 -08002623sub make_log_entry {
Eric Wong97f69872007-01-25 11:53:13 -08002624 my ($self, $rev, $parents, $ed) = @_;
2625 my $untracked = $self->get_untracked($ed);
2626
Eric Wong9b981fc2007-01-11 12:14:21 -08002627 open my $un, '>>', "$self->{dir}/unhandled.log" or croak $!;
Eric Wong97f69872007-01-25 11:53:13 -08002628 print $un "r$rev\n" or croak $!;
2629 print $un $_, "\n" foreach @$untracked;
2630 my %log_entry = ( parents => $parents || [], revision => $rev,
2631 log => '');
Eric Wongfbcc1732007-02-06 18:35:30 -08002632
Eric Wong8a49ee92007-02-10 20:46:50 -08002633 my $headrev;
Eric Wongfbcc1732007-02-06 18:35:30 -08002634 my $logged = delete $self->{logged_rev_props};
Eric Wong8a49ee92007-02-10 20:46:50 -08002635 if (!$logged || $self->{-want_revprops}) {
Eric Wongfbcc1732007-02-06 18:35:30 -08002636 my $rp = $self->ra->rev_proplist($rev);
2637 foreach (sort keys %$rp) {
2638 my $v = $rp->{$_};
2639 if (/^svn:(author|date|log)$/) {
2640 $log_entry{$1} = $v;
Eric Wong8a49ee92007-02-10 20:46:50 -08002641 } elsif ($_ eq 'svm:headrev') {
2642 $headrev = $v;
Eric Wongfbcc1732007-02-06 18:35:30 -08002643 } else {
2644 print $un " rev_prop: ", uri_encode($_), ' ',
2645 uri_encode($v), "\n";
2646 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002647 }
Eric Wongfbcc1732007-02-06 18:35:30 -08002648 } else {
2649 map { $log_entry{$_} = $logged->{$_} } keys %$logged;
Eric Wong9b981fc2007-01-11 12:14:21 -08002650 }
2651 close $un or croak $!;
Eric Wong97f69872007-01-25 11:53:13 -08002652
Eric Wong9b981fc2007-01-11 12:14:21 -08002653 $log_entry{date} = parse_svn_date($log_entry{date});
Eric Wong9b981fc2007-01-11 12:14:21 -08002654 $log_entry{log} .= "\n";
Eric Wongdb03cd22007-02-13 00:38:02 -08002655 my $author = $log_entry{author} = check_author($log_entry{author});
2656 my ($name, $email) = defined $::users{$author} ? @{$::users{$author}}
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00002657 : ($author, undef);
2658
2659 my ($commit_name, $commit_email) = ($name, $email);
2660 if ($_use_log_author) {
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00002661 my $name_field;
2662 if ($log_entry{log} =~ /From:\s+(.*\S)\s*\n/i) {
2663 $name_field = $1;
2664 } elsif ($log_entry{log} =~ /Signed-off-by:\s+(.*\S)\s*\n/i) {
2665 $name_field = $1;
2666 }
2667 if (!defined $name_field) {
Stephen R. van den Bergabfa5332008-04-29 23:20:32 +02002668 if (!defined $email) {
2669 $email = $name;
2670 }
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00002671 } elsif ($name_field =~ /(.*?)\s+<(.*)>/) {
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00002672 ($name, $email) = ($1, $2);
Andy Whitcroft5ff6aae2007-12-13 06:58:15 +00002673 } elsif ($name_field =~ /(.*)@/) {
2674 ($name, $email) = ($1, $name_field);
2675 } else {
Stephen R. van den Bergabfa5332008-04-29 23:20:32 +02002676 ($name, $email) = ($name_field, $name_field);
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00002677 }
2678 }
Eric Wong91b03282007-02-11 00:51:33 -08002679 if (defined $headrev && $self->use_svm_props) {
Eric Wongaea736c2007-02-16 19:15:21 -08002680 if ($self->rewrite_root) {
2681 die "Can't have both 'useSvmProps' and 'rewriteRoot' ",
2682 "options set!\n";
2683 }
Eric Wong8a49ee92007-02-10 20:46:50 -08002684 my ($uuid, $r) = $headrev =~ m{^([a-f\d\-]{30,}):(\d+)$};
Eric Wongbefc9ad2007-02-17 02:53:07 -08002685 # we don't want "SVM: initializing mirror for junk" ...
2686 return undef if $r == 0;
2687 my $svm = $self->svm;
2688 if ($uuid ne $svm->{uuid}) {
Eric Wong8a49ee92007-02-10 20:46:50 -08002689 die "UUID mismatch on SVM path:\n",
Eric Wongbefc9ad2007-02-17 02:53:07 -08002690 "expected: $svm->{uuid}\n",
Eric Wong8a49ee92007-02-10 20:46:50 -08002691 " got: $uuid\n";
2692 }
Eric Wongbefc9ad2007-02-17 02:53:07 -08002693 my $full_url = $self->full_url;
2694 $full_url =~ s#^\Q$svm->{replace}\E(/|$)#$svm->{source}$1# or
2695 die "Failed to replace '$svm->{replace}' with ",
2696 "'$svm->{source}' in $full_url\n";
Sam Vilain18ea92b2007-02-23 12:32:29 +13002697 # throw away username for storing in records
2698 remove_username($full_url);
Eric Wong8a49ee92007-02-10 20:46:50 -08002699 $log_entry{metadata} = "$full_url\@$r $uuid";
2700 $log_entry{svm_revision} = $r;
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00002701 $email ||= "$author\@$uuid";
2702 $commit_email ||= "$author\@$uuid";
Eric Wong62e349d2007-02-16 19:57:29 -08002703 } elsif ($self->use_svnsync_props) {
2704 my $full_url = $self->svnsync->{url};
2705 $full_url .= "/$self->{path}" if length $self->{path};
Adam Robence118732007-04-24 18:02:07 -07002706 remove_username($full_url);
Eric Wong62e349d2007-02-16 19:57:29 -08002707 my $uuid = $self->svnsync->{uuid};
2708 $log_entry{metadata} = "$full_url\@$rev $uuid";
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00002709 $email ||= "$author\@$uuid";
2710 $commit_email ||= "$author\@$uuid";
Eric Wong8a49ee92007-02-10 20:46:50 -08002711 } else {
Adam Robence118732007-04-24 18:02:07 -07002712 my $url = $self->metadata_url;
2713 remove_username($url);
2714 $log_entry{metadata} = "$url\@$rev " .
Eric Wong26a62d52007-02-12 13:25:25 -08002715 $self->ra->get_uuid;
Eric Wongdb03cd22007-02-13 00:38:02 -08002716 $email ||= "$author\@" . $self->ra->get_uuid;
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00002717 $commit_email ||= "$author\@" . $self->ra->get_uuid;
Eric Wong8a49ee92007-02-10 20:46:50 -08002718 }
Eric Wongdb03cd22007-02-13 00:38:02 -08002719 $log_entry{name} = $name;
2720 $log_entry{email} = $email;
Andy Whitcroft70ae04e2007-11-22 13:44:42 +00002721 $log_entry{commit_name} = $commit_name;
2722 $log_entry{commit_email} = $commit_email;
Eric Wong9b981fc2007-01-11 12:14:21 -08002723 \%log_entry;
2724}
2725
2726sub fetch {
Eric Wong3ebe8df2007-01-25 17:35:40 -08002727 my ($self, $min_rev, $max_rev, @parents) = @_;
Eric Wong9b981fc2007-01-11 12:14:21 -08002728 my ($last_rev, $last_commit) = $self->last_rev_commit;
Eric Wong3ebe8df2007-01-25 17:35:40 -08002729 my ($base, $head) = $self->get_fetch_range($min_rev, $max_rev);
Eric Wonge5181922007-02-08 12:53:57 -08002730 $self->ra->gs_fetch_loop_common($base, $head, [$self]);
Eric Wong9b981fc2007-01-11 12:14:21 -08002731}
2732
2733sub set_tree_cb {
2734 my ($self, $log_entry, $tree, $rev, $date, $author) = @_;
Eric Wong490f49e2007-02-10 13:58:33 -08002735 $self->{inject_parents} = { $rev => $tree };
2736 $self->fetch(undef, undef);
Eric Wong9b981fc2007-01-11 12:14:21 -08002737}
2738
2739sub set_tree {
2740 my ($self, $tree) = (shift, shift);
Eric Wong1ce255d2007-01-14 23:21:16 -08002741 my $log_entry = ::get_commit_entry($tree);
Eric Wong9b981fc2007-01-11 12:14:21 -08002742 unless ($self->{last_rev}) {
Luc Heinrich0a1a1c82008-09-29 15:58:18 +02002743 ::fatal("Must have an existing revision to commit");
Eric Wong9b981fc2007-01-11 12:14:21 -08002744 }
Eric Wong61395352007-01-27 14:33:08 -08002745 my %ed_opts = ( r => $self->{last_rev},
2746 log => $log_entry->{log},
2747 ra => $self->ra,
2748 tree_a => $self->{last_commit},
2749 tree_b => $tree,
2750 editor_cb => sub {
2751 $self->set_tree_cb($log_entry, $tree, @_) },
2752 svn_path => $self->{path} );
2753 if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong9b981fc2007-01-11 12:14:21 -08002754 print "No changes\nr$self->{last_rev} = $tree\n";
2755 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002756}
2757
Eric Wong060610c2007-12-08 23:27:41 -08002758sub rebuild_from_rev_db {
2759 my ($self, $path) = @_;
2760 my $r = -1;
2761 open my $fh, '<', $path or croak "open: $!";
Michael Weber4f7ec792008-04-18 15:12:04 +02002762 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08002763 while (<$fh>) {
2764 length($_) == 41 or croak "inconsistent size in ($_) != 41";
2765 chomp($_);
2766 ++$r;
2767 next if $_ eq ('0' x 40);
2768 $self->rev_map_set($r, $_);
2769 print "r$r = $_\n";
2770 }
2771 close $fh or croak "close: $!";
2772 unlink $path or croak "unlink: $!";
2773}
2774
Eric Wongf0ecca12007-01-30 13:11:14 -08002775sub rebuild {
2776 my ($self) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08002777 my $map_path = $self->map_path;
Deskin Miller2beec892008-09-15 21:12:58 -04002778 my $partial = (-e $map_path && ! -z $map_path);
Eric Wongd6d33462007-02-16 04:05:33 -08002779 return unless ::verify_ref($self->refname.'^0');
Deskin Miller2beec892008-09-15 21:12:58 -04002780 if (!$partial && ($self->use_svm_props || $self->no_metadata)) {
Eric Wong060610c2007-12-08 23:27:41 -08002781 my $rev_db = $self->rev_db_path;
2782 $self->rebuild_from_rev_db($rev_db);
2783 if ($self->use_svm_props) {
2784 my $svm_rev_db = $self->rev_db_path($self->svm_uuid);
2785 $self->rebuild_from_rev_db($svm_rev_db);
2786 }
2787 $self->unlink_rev_db_symlink;
Eric Wong26a62d52007-02-12 13:25:25 -08002788 return;
2789 }
Deskin Miller2beec892008-09-15 21:12:58 -04002790 print "Rebuilding $map_path ...\n" if (!$partial);
2791 my ($base_rev, $head) = ($partial ? $self->rev_map_max_norebuild(1) :
2792 (undef, undef));
Eric Wong060610c2007-12-08 23:27:41 -08002793 my ($log, $ctx) =
2794 command_output_pipe(qw/rev-list --pretty=raw --no-color --reverse/,
Deskin Miller2beec892008-09-15 21:12:58 -04002795 ($head ? "$head.." : "") . $self->refname,
2796 '--');
Jan Krüger74b1e122008-06-24 02:17:36 +02002797 my $metadata_url = $self->metadata_url;
2798 remove_username($metadata_url);
Eric Wong060610c2007-12-08 23:27:41 -08002799 my $svn_uuid = $self->ra_uuid;
Sam Vilain3dfab992007-06-30 20:56:13 +12002800 my $c;
2801 while (<$log>) {
2802 if ( m{^commit ($::sha1)$} ) {
2803 $c = $1;
2804 next;
2805 }
2806 next unless s{^\s*(git-svn-id:)}{$1};
2807 my ($url, $rev, $uuid) = ::extract_metadata($_);
Sam Vilain18ea92b2007-02-23 12:32:29 +13002808 remove_username($url);
Eric Wongf0ecca12007-01-30 13:11:14 -08002809
2810 # ignore merges (from set-tree)
2811 next if (!defined $rev || !$uuid);
2812
2813 # if we merged or otherwise started elsewhere, this is
2814 # how we break out of it
Eric Wong060610c2007-12-08 23:27:41 -08002815 if (($uuid ne $svn_uuid) ||
Jan Krüger74b1e122008-06-24 02:17:36 +02002816 ($metadata_url && $url && ($url ne $metadata_url))) {
Eric Wongf0ecca12007-01-30 13:11:14 -08002817 next;
2818 }
Deskin Miller2beec892008-09-15 21:12:58 -04002819 if ($partial && $head) {
2820 print "Partial-rebuilding $map_path ...\n";
2821 print "Currently at $base_rev = $head\n";
2822 $head = undef;
2823 }
Eric Wongf0ecca12007-01-30 13:11:14 -08002824
Eric Wong060610c2007-12-08 23:27:41 -08002825 $self->rev_map_set($rev, $c);
Eric Wongf0ecca12007-01-30 13:11:14 -08002826 print "r$rev = $c\n";
2827 }
Sam Vilain3dfab992007-06-30 20:56:13 +12002828 command_close_pipe($log, $ctx);
Deskin Miller2beec892008-09-15 21:12:58 -04002829 print "Done rebuilding $map_path\n" if (!$partial || !$head);
Eric Wong060610c2007-12-08 23:27:41 -08002830 my $rev_db_path = $self->rev_db_path;
2831 if (-f $self->rev_db_path) {
2832 unlink $self->rev_db_path or croak "unlink: $!";
2833 }
2834 $self->unlink_rev_db_symlink;
Eric Wongf0ecca12007-01-30 13:11:14 -08002835}
2836
Eric Wong060610c2007-12-08 23:27:41 -08002837# rev_map:
Eric Wong9b981fc2007-01-11 12:14:21 -08002838# Tie::File seems to be prone to offset errors if revisions get sparse,
2839# it's not that fast, either. Tie::File is also not in Perl 5.6. So
2840# one of my favorite modules is out :< Next up would be one of the DBM
Eric Wong060610c2007-12-08 23:27:41 -08002841# modules, but I'm not sure which is most portable...
2842#
2843# This is the replacement for the rev_db format, which was too big
2844# and inefficient for large repositories with a lot of sparse history
2845# (mainly tags)
2846#
2847# The format is this:
2848# - 24 bytes for every record,
2849# * 4 bytes for the integer representing an SVN revision number
2850# * 20 bytes representing the sha1 of a git commit
2851# - No empty padding records like the old format
Eric Wong66ab84b2007-12-08 23:27:42 -08002852# (except the last record, which can be overwritten)
Eric Wong060610c2007-12-08 23:27:41 -08002853# - new records are written append-only since SVN revision numbers
2854# increase monotonically
2855# - lookups on SVN revision number are done via a binary search
Eric Wong66ab84b2007-12-08 23:27:42 -08002856# - Piping the file to xxd -c24 is a good way of dumping it for
2857# viewing or editing (piped back through xxd -r), should the need
2858# ever arise.
2859# - The last record can be padding revision with an all-zero sha1
2860# This is used to optimize fetch performance when using multiple
2861# "fetch" directives in .git/config
Eric Wong060610c2007-12-08 23:27:41 -08002862#
Eric Wong97ae0912007-02-11 15:21:24 -08002863# These files are disposable unless noMetadata or useSvmProps is set
Eric Wong9b981fc2007-01-11 12:14:21 -08002864
Eric Wong060610c2007-12-08 23:27:41 -08002865sub _rev_map_set {
Eric Wong26a62d52007-02-12 13:25:25 -08002866 my ($fh, $rev, $commit) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08002867
Michael Weber4f7ec792008-04-18 15:12:04 +02002868 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08002869 my $size = (stat($fh))[7];
2870 ($size % 24) == 0 or croak "inconsistent size: $size";
2871
Eric Wong66ab84b2007-12-08 23:27:42 -08002872 my $wr_offset = 0;
Eric Wong060610c2007-12-08 23:27:41 -08002873 if ($size > 0) {
2874 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
2875 my $read = sysread($fh, my $buf, 24) or croak "read: $!";
2876 $read == 24 or croak "read only $read bytes (!= 24)";
2877 my ($last_rev, $last_commit) = unpack(rev_map_fmt, $buf);
Eric Wong66ab84b2007-12-08 23:27:42 -08002878 if ($last_commit eq ('0' x40)) {
2879 if ($size >= 48) {
2880 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2881 $read = sysread($fh, $buf, 24) or
2882 croak "read: $!";
2883 $read == 24 or
2884 croak "read only $read bytes (!= 24)";
2885 ($last_rev, $last_commit) =
2886 unpack(rev_map_fmt, $buf);
2887 if ($last_commit eq ('0' x40)) {
2888 croak "inconsistent .rev_map\n";
2889 }
2890 }
2891 if ($last_rev >= $rev) {
2892 croak "last_rev is higher!: $last_rev >= $rev";
2893 }
2894 $wr_offset = -24;
Eric Wong47a0b752007-01-31 05:13:30 -08002895 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002896 }
Eric Wong66ab84b2007-12-08 23:27:42 -08002897 sysseek($fh, $wr_offset, SEEK_END) or croak "seek: $!";
Eric Wong060610c2007-12-08 23:27:41 -08002898 syswrite($fh, pack(rev_map_fmt, $rev, $commit), 24) == 24 or
2899 croak "write: $!";
Eric Wong26a62d52007-02-12 13:25:25 -08002900}
2901
2902sub mkfile {
2903 my ($path) = @_;
2904 unless (-e $path) {
2905 my ($dir, $base) = ($path =~ m#^(.*?)/?([^/]+)$#);
2906 mkpath([$dir]) unless -d $dir;
2907 open my $fh, '>>', $path or die "Couldn't create $path: $!\n";
2908 close $fh or die "Couldn't close (create) $path: $!\n";
2909 }
2910}
2911
Eric Wong060610c2007-12-08 23:27:41 -08002912sub rev_map_set {
Eric Wong26a62d52007-02-12 13:25:25 -08002913 my ($self, $rev, $commit, $update_ref, $uuid) = @_;
2914 length $commit == 40 or die "arg3 must be a full SHA1 hexsum\n";
Eric Wong060610c2007-12-08 23:27:41 -08002915 my $db = $self->map_path($uuid);
Eric Wong26a62d52007-02-12 13:25:25 -08002916 my $db_lock = "$db.lock";
2917 my $sig;
2918 if ($update_ref) {
2919 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2920 $SIG{USR1} = $SIG{USR2} = sub { $sig = $_[0] };
2921 }
2922 mkfile($db);
2923
2924 $LOCKFILES{$db_lock} = 1;
2925 my $sync;
2926 # both of these options make our .rev_db file very, very important
2927 # and we can't afford to lose it because rebuild() won't work
2928 if ($self->use_svm_props || $self->no_metadata) {
2929 $sync = 1;
Eric Wong060610c2007-12-08 23:27:41 -08002930 copy($db, $db_lock) or die "rev_map_set(@_): ",
Eric Wong26a62d52007-02-12 13:25:25 -08002931 "Failed to copy: ",
2932 "$db => $db_lock ($!)\n";
2933 } else {
Eric Wong060610c2007-12-08 23:27:41 -08002934 rename $db, $db_lock or die "rev_map_set(@_): ",
Eric Wong26a62d52007-02-12 13:25:25 -08002935 "Failed to rename: ",
2936 "$db => $db_lock ($!)\n";
2937 }
Eric Wong060610c2007-12-08 23:27:41 -08002938
Eric Wong66ab84b2007-12-08 23:27:42 -08002939 sysopen(my $fh, $db_lock, O_RDWR | O_CREAT)
Eric Wong060610c2007-12-08 23:27:41 -08002940 or croak "Couldn't open $db_lock: $!\n";
2941 _rev_map_set($fh, $rev, $commit);
Eric Wong97ae0912007-02-11 15:21:24 -08002942 if ($sync) {
2943 $fh->flush or die "Couldn't flush $db_lock: $!\n";
2944 $fh->sync or die "Couldn't sync $db_lock: $!\n";
2945 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002946 close $fh or croak $!;
Eric Wong373274f2007-01-31 13:54:23 -08002947 if ($update_ref) {
Eric Wong1e889ef2007-02-16 01:45:13 -08002948 $_head = $self;
Eric Wong373274f2007-01-31 13:54:23 -08002949 command_noisy('update-ref', '-m', "r$rev",
2950 $self->refname, $commit);
2951 }
Eric Wong060610c2007-12-08 23:27:41 -08002952 rename $db_lock, $db or die "rev_map_set(@_): ", "Failed to rename: ",
Eric Wong373274f2007-01-31 13:54:23 -08002953 "$db_lock => $db ($!)\n";
2954 delete $LOCKFILES{$db_lock};
2955 if ($update_ref) {
2956 $SIG{INT} = $SIG{HUP} = $SIG{TERM} = $SIG{ALRM} = $SIG{PIPE} =
2957 $SIG{USR1} = $SIG{USR2} = 'DEFAULT';
2958 kill $sig, $$ if defined $sig;
2959 }
Eric Wong9b981fc2007-01-11 12:14:21 -08002960}
2961
Eric Wong66ab84b2007-12-08 23:27:42 -08002962# If want_commit, this will return an array of (rev, commit) where
2963# commit _must_ be a valid commit in the archive.
2964# Otherwise, it'll return the max revision (whether or not the
2965# commit is valid or just a 0x40 placeholder).
Eric Wong060610c2007-12-08 23:27:41 -08002966sub rev_map_max {
Eric Wong66ab84b2007-12-08 23:27:42 -08002967 my ($self, $want_commit) = @_;
Eric Wongd6d33462007-02-16 04:05:33 -08002968 $self->rebuild;
Deskin Miller2beec892008-09-15 21:12:58 -04002969 my ($r, $c) = $self->rev_map_max_norebuild($want_commit);
2970 $want_commit ? ($r, $c) : $r;
2971}
2972
2973sub rev_map_max_norebuild {
2974 my ($self, $want_commit) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08002975 my $map_path = $self->map_path;
Eric Wong66ab84b2007-12-08 23:27:42 -08002976 stat $map_path or return $want_commit ? (0, undef) : 0;
Eric Wong060610c2007-12-08 23:27:41 -08002977 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
Michael Weber4f7ec792008-04-18 15:12:04 +02002978 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08002979 my $size = (stat($fh))[7];
2980 ($size % 24) == 0 or croak "inconsistent size: $size";
2981
2982 if ($size == 0) {
2983 close $fh or croak "close: $!";
Eric Wong66ab84b2007-12-08 23:27:42 -08002984 return $want_commit ? (0, undef) : 0;
Eric Wong060610c2007-12-08 23:27:41 -08002985 }
2986
Eric Wong66ab84b2007-12-08 23:27:42 -08002987 sysseek($fh, -24, SEEK_END) or croak "seek: $!";
Eric Wong060610c2007-12-08 23:27:41 -08002988 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
Eric Wong060610c2007-12-08 23:27:41 -08002989 my ($r, $c) = unpack(rev_map_fmt, $buf);
Eric Wong66ab84b2007-12-08 23:27:42 -08002990 if ($want_commit && $c eq ('0' x40)) {
2991 if ($size < 48) {
2992 return $want_commit ? (0, undef) : 0;
2993 }
2994 sysseek($fh, -48, SEEK_END) or croak "seek: $!";
2995 sysread($fh, $buf, 24) == 24 or croak "read: $!";
2996 ($r, $c) = unpack(rev_map_fmt, $buf);
2997 if ($c eq ('0'x40)) {
2998 croak "Penultimate record is all-zeroes in $map_path";
2999 }
3000 }
3001 close $fh or croak "close: $!";
3002 $want_commit ? ($r, $c) : $r;
Eric Wong9c93fee2007-01-31 17:22:31 -08003003}
3004
Eric Wong060610c2007-12-08 23:27:41 -08003005sub rev_map_get {
Eric Wong26a62d52007-02-12 13:25:25 -08003006 my ($self, $rev, $uuid) = @_;
Eric Wong060610c2007-12-08 23:27:41 -08003007 my $map_path = $self->map_path($uuid);
3008 return undef unless -e $map_path;
3009
3010 sysopen(my $fh, $map_path, O_RDONLY) or croak "open: $!";
Michael Weber4f7ec792008-04-18 15:12:04 +02003011 binmode $fh or croak "binmode: $!";
Eric Wong060610c2007-12-08 23:27:41 -08003012 my $size = (stat($fh))[7];
3013 ($size % 24) == 0 or croak "inconsistent size: $size";
3014
3015 if ($size == 0) {
3016 close $fh or croak "close: $fh";
3017 return undef;
Eric Wong9b981fc2007-01-11 12:14:21 -08003018 }
Eric Wong060610c2007-12-08 23:27:41 -08003019
3020 my ($l, $u) = (0, $size - 24);
3021 my ($r, $c, $buf);
3022
3023 while ($l <= $u) {
3024 my $i = int(($l/24 + $u/24) / 2) * 24;
3025 sysseek($fh, $i, SEEK_SET) or croak "seek: $!";
3026 sysread($fh, my $buf, 24) == 24 or croak "read: $!";
3027 my ($r, $c) = unpack('NH40', $buf);
3028
3029 if ($r < $rev) {
3030 $l = $i + 24;
3031 } elsif ($r > $rev) {
3032 $u = $i - 24;
3033 } else { # $r == $rev
3034 close($fh) or croak "close: $!";
Eric Wong66ab84b2007-12-08 23:27:42 -08003035 return $c eq ('0' x 40) ? undef : $c;
Eric Wong060610c2007-12-08 23:27:41 -08003036 }
3037 }
3038 close($fh) or croak "close: $!";
3039 undef;
Eric Wong9b981fc2007-01-11 12:14:21 -08003040}
3041
David D Kilzer111947e2007-11-11 22:56:52 -08003042# Finds the first svn revision that exists on (if $eq_ok is true) or
3043# before $rev for the current branch. It will not search any lower
3044# than $min_rev. Returns the git commit hash and svn revision number
3045# if found, else (undef, undef).
Eric Wong15710b62007-01-22 02:20:33 -08003046sub find_rev_before {
David D Kilzer111947e2007-11-11 22:56:52 -08003047 my ($self, $rev, $eq_ok, $min_rev) = @_;
Eric Wong15710b62007-01-22 02:20:33 -08003048 --$rev unless $eq_ok;
David D Kilzer111947e2007-11-11 22:56:52 -08003049 $min_rev ||= 1;
3050 while ($rev >= $min_rev) {
Eric Wong060610c2007-12-08 23:27:41 -08003051 if (my $c = $self->rev_map_get($rev)) {
Eric Wong15710b62007-01-22 02:20:33 -08003052 return ($rev, $c);
3053 }
3054 --$rev;
3055 }
3056 return (undef, undef);
3057}
3058
David D Kilzer111947e2007-11-11 22:56:52 -08003059# Finds the first svn revision that exists on (if $eq_ok is true) or
3060# after $rev for the current branch. It will not search any higher
3061# than $max_rev. Returns the git commit hash and svn revision number
3062# if found, else (undef, undef).
3063sub find_rev_after {
3064 my ($self, $rev, $eq_ok, $max_rev) = @_;
3065 ++$rev unless $eq_ok;
Eric Wong060610c2007-12-08 23:27:41 -08003066 $max_rev ||= $self->rev_map_max;
David D Kilzer111947e2007-11-11 22:56:52 -08003067 while ($rev <= $max_rev) {
Eric Wong060610c2007-12-08 23:27:41 -08003068 if (my $c = $self->rev_map_get($rev)) {
David D Kilzer111947e2007-11-11 22:56:52 -08003069 return ($rev, $c);
3070 }
3071 ++$rev;
3072 }
3073 return (undef, undef);
3074}
3075
Eric Wong9b981fc2007-01-11 12:14:21 -08003076sub _new {
Eric Wong706587f2007-01-18 17:50:01 -08003077 my ($class, $repo_id, $ref_id, $path) = @_;
3078 unless (defined $repo_id && length $repo_id) {
3079 $repo_id = $Git::SVN::default_repo_id;
3080 }
3081 unless (defined $ref_id && length $ref_id) {
Eric Wong8b8fc062007-01-22 11:44:57 -08003082 $_[2] = $ref_id = $Git::SVN::default_ref_id;
Eric Wong706587f2007-01-18 17:50:01 -08003083 }
Eric Wong7829f202008-06-28 20:40:32 -07003084 $_[1] = $repo_id;
Eric Wong706587f2007-01-18 17:50:01 -08003085 my $dir = "$ENV{GIT_DIR}/svn/$ref_id";
3086 $_[3] = $path = '' unless (defined $path);
Eric Wongb4d57e52007-02-14 15:10:44 -08003087 mkpath(["$ENV{GIT_DIR}/svn"]);
Eric Wong26a62d52007-02-12 13:25:25 -08003088 bless {
3089 ref_id => $ref_id, dir => $dir, index => "$dir/index",
Eric Wong8a49ee92007-02-10 20:46:50 -08003090 path => $path, config => "$ENV{GIT_DIR}/svn/config",
Eric Wong060610c2007-12-08 23:27:41 -08003091 map_root => "$dir/.rev_map", repo_id => $repo_id }, $class;
Eric Wong26a62d52007-02-12 13:25:25 -08003092}
3093
Eric Wong060610c2007-12-08 23:27:41 -08003094# for read-only access of old .rev_db formats
3095sub unlink_rev_db_symlink {
3096 my ($self) = @_;
3097 my $link = $self->rev_db_path;
3098 $link =~ s/\.[\w-]+$// or croak "missing UUID at the end of $link";
3099 if (-l $link) {
3100 unlink $link or croak "unlink: $link failed!";
3101 }
3102}
3103
3104sub rev_db_path {
3105 my ($self, $uuid) = @_;
3106 my $db_path = $self->map_path($uuid);
3107 $db_path =~ s{/\.rev_map\.}{/\.rev_db\.}
3108 or croak "map_path: $db_path does not contain '/.rev_map.' !";
3109 $db_path;
3110}
3111
3112# the new replacement for .rev_db
3113sub map_path {
Eric Wong26a62d52007-02-12 13:25:25 -08003114 my ($self, $uuid) = @_;
3115 $uuid ||= $self->ra_uuid;
Eric Wong060610c2007-12-08 23:27:41 -08003116 "$self->{map_root}.$uuid";
Eric Wong9b981fc2007-01-11 12:14:21 -08003117}
3118
Eric Wong1c8443b2007-01-14 02:17:00 -08003119sub uri_encode {
3120 my ($f) = @_;
3121 $f =~ s#([^a-zA-Z0-9\*!\:_\./\-])#uc sprintf("%%%02x",ord($1))#eg;
3122 $f
3123}
Eric Wong9b981fc2007-01-11 12:14:21 -08003124
Sam Vilain18ea92b2007-02-23 12:32:29 +13003125sub remove_username {
3126 $_[0] =~ s{^([^:]*://)[^@]+@}{$1};
3127}
3128
Eric Wongd976acf2007-01-04 00:45:03 -08003129package Git::SVN::Prompt;
3130use strict;
3131use warnings;
3132require SVN::Core;
3133use vars qw/$_no_auth_cache $_username/;
3134
3135sub simple {
Eric Wong30d055a2006-11-24 01:38:04 -08003136 my ($cred, $realm, $default_username, $may_save, $pool) = @_;
3137 $may_save = undef if $_no_auth_cache;
3138 $default_username = $_username if defined $_username;
3139 if (defined $default_username && length $default_username) {
3140 if (defined $realm && length $realm) {
Eric Wong6f729592007-01-15 20:15:55 -08003141 print STDERR "Authentication realm: $realm\n";
3142 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003143 }
3144 $cred->username($default_username);
3145 } else {
Eric Wongd976acf2007-01-04 00:45:03 -08003146 username($cred, $realm, $may_save, $pool);
Eric Wong30d055a2006-11-24 01:38:04 -08003147 }
3148 $cred->password(_read_password("Password for '" .
3149 $cred->username . "': ", $realm));
3150 $cred->may_save($may_save);
3151 $SVN::_Core::SVN_NO_ERROR;
3152}
3153
Eric Wongd976acf2007-01-04 00:45:03 -08003154sub ssl_server_trust {
Eric Wong30d055a2006-11-24 01:38:04 -08003155 my ($cred, $realm, $failures, $cert_info, $may_save, $pool) = @_;
3156 $may_save = undef if $_no_auth_cache;
Eric Wong6f729592007-01-15 20:15:55 -08003157 print STDERR "Error validating server certificate for '$realm':\n";
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04003158 {
3159 no warnings 'once';
3160 # All variables SVN::Auth::SSL::* are used only once,
3161 # so we're shutting up Perl warnings about this.
3162 if ($failures & $SVN::Auth::SSL::UNKNOWNCA) {
3163 print STDERR " - The certificate is not issued ",
3164 "by a trusted authority. Use the\n",
3165 " fingerprint to validate ",
3166 "the certificate manually!\n";
3167 }
3168 if ($failures & $SVN::Auth::SSL::CNMISMATCH) {
3169 print STDERR " - The certificate hostname ",
3170 "does not match.\n";
3171 }
3172 if ($failures & $SVN::Auth::SSL::NOTYETVALID) {
3173 print STDERR " - The certificate is not yet valid.\n";
3174 }
3175 if ($failures & $SVN::Auth::SSL::EXPIRED) {
3176 print STDERR " - The certificate has expired.\n";
3177 }
3178 if ($failures & $SVN::Auth::SSL::OTHER) {
3179 print STDERR " - The certificate has ",
3180 "an unknown error.\n";
3181 }
3182 } # no warnings 'once'
Eric Wong6f729592007-01-15 20:15:55 -08003183 printf STDERR
3184 "Certificate information:\n".
Eric Wong30d055a2006-11-24 01:38:04 -08003185 " - Hostname: %s\n".
3186 " - Valid: from %s until %s\n".
3187 " - Issuer: %s\n".
3188 " - Fingerprint: %s\n",
3189 map $cert_info->$_, qw(hostname valid_from valid_until
Eric Wong6f729592007-01-15 20:15:55 -08003190 issuer_dname fingerprint);
Eric Wong30d055a2006-11-24 01:38:04 -08003191 my $choice;
3192prompt:
Eric Wong6f729592007-01-15 20:15:55 -08003193 print STDERR $may_save ?
Eric Wong30d055a2006-11-24 01:38:04 -08003194 "(R)eject, accept (t)emporarily or accept (p)ermanently? " :
3195 "(R)eject or accept (t)emporarily? ";
Eric Wong6f729592007-01-15 20:15:55 -08003196 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003197 $choice = lc(substr(<STDIN> || 'R', 0, 1));
3198 if ($choice =~ /^t$/i) {
3199 $cred->may_save(undef);
3200 } elsif ($choice =~ /^r$/i) {
3201 return -1;
3202 } elsif ($may_save && $choice =~ /^p$/i) {
3203 $cred->may_save($may_save);
3204 } else {
3205 goto prompt;
3206 }
3207 $cred->accepted_failures($failures);
3208 $SVN::_Core::SVN_NO_ERROR;
3209}
3210
Eric Wongd976acf2007-01-04 00:45:03 -08003211sub ssl_client_cert {
Eric Wong30d055a2006-11-24 01:38:04 -08003212 my ($cred, $realm, $may_save, $pool) = @_;
3213 $may_save = undef if $_no_auth_cache;
Eric Wong6f729592007-01-15 20:15:55 -08003214 print STDERR "Client certificate filename: ";
3215 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003216 chomp(my $filename = <STDIN>);
3217 $cred->cert_file($filename);
3218 $cred->may_save($may_save);
3219 $SVN::_Core::SVN_NO_ERROR;
3220}
3221
Eric Wongd976acf2007-01-04 00:45:03 -08003222sub ssl_client_cert_pw {
Eric Wong30d055a2006-11-24 01:38:04 -08003223 my ($cred, $realm, $may_save, $pool) = @_;
3224 $may_save = undef if $_no_auth_cache;
3225 $cred->password(_read_password("Password: ", $realm));
3226 $cred->may_save($may_save);
3227 $SVN::_Core::SVN_NO_ERROR;
3228}
3229
Eric Wongd976acf2007-01-04 00:45:03 -08003230sub username {
Eric Wong30d055a2006-11-24 01:38:04 -08003231 my ($cred, $realm, $may_save, $pool) = @_;
3232 $may_save = undef if $_no_auth_cache;
3233 if (defined $realm && length $realm) {
Eric Wong6f729592007-01-15 20:15:55 -08003234 print STDERR "Authentication realm: $realm\n";
Eric Wong30d055a2006-11-24 01:38:04 -08003235 }
3236 my $username;
3237 if (defined $_username) {
3238 $username = $_username;
3239 } else {
Eric Wong6f729592007-01-15 20:15:55 -08003240 print STDERR "Username: ";
3241 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003242 chomp($username = <STDIN>);
3243 }
3244 $cred->username($username);
3245 $cred->may_save($may_save);
3246 $SVN::_Core::SVN_NO_ERROR;
3247}
3248
3249sub _read_password {
3250 my ($prompt, $realm) = @_;
Eric Wong6f729592007-01-15 20:15:55 -08003251 print STDERR $prompt;
3252 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003253 require Term::ReadKey;
3254 Term::ReadKey::ReadMode('noecho');
3255 my $password = '';
3256 while (defined(my $key = Term::ReadKey::ReadKey(0))) {
3257 last if $key =~ /[\012\015]/; # \n\r
3258 $password .= $key;
3259 }
3260 Term::ReadKey::ReadMode('restore');
Eric Wong6f729592007-01-15 20:15:55 -08003261 print STDERR "\n";
3262 STDERR->flush;
Eric Wong30d055a2006-11-24 01:38:04 -08003263 $password;
3264}
3265
Eric Wong27a1a802006-11-27 21:44:48 -08003266package SVN::Git::Fetcher;
3267use vars qw/@ISA/;
3268use strict;
3269use warnings;
3270use Carp qw/croak/;
Adam Robenffe256f2008-05-23 16:19:41 +02003271use File::Temp qw/tempfile/;
Eric Wong27a1a802006-11-27 21:44:48 -08003272use IO::File qw//;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003273use vars qw/$_ignore_regex/;
Eric Wong27a1a802006-11-27 21:44:48 -08003274
3275# file baton members: path, mode_a, mode_b, pool, fh, blob, base
3276sub new {
Eric Wong8841b372009-02-11 01:56:58 -08003277 my ($class, $git_svn, $switch_path) = @_;
Eric Wong27a1a802006-11-27 21:44:48 -08003278 my $self = SVN::Delta::Editor->new;
3279 bless $self, $class;
Eric Wongdbc6c742009-01-11 16:51:10 -08003280 if (exists $git_svn->{last_commit}) {
3281 $self->{c} = $git_svn->{last_commit};
Eric Wong8841b372009-02-11 01:56:58 -08003282 $self->{empty_symlinks} =
3283 _mark_empty_symlinks($git_svn, $switch_path);
Eric Wongdbc6c742009-01-11 16:51:10 -08003284 }
Eric Wongd2a9a872006-12-12 14:47:00 -08003285 $self->{empty} = {};
3286 $self->{dir_prop} = {};
3287 $self->{file_prop} = {};
3288 $self->{absent_dir} = {};
3289 $self->{absent_file} = {};
Eric Wongef3cfaa2007-01-24 03:30:57 -08003290 $self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
Eric Wong27a1a802006-11-27 21:44:48 -08003291 $self;
3292}
3293
Eric Wongdbc6c742009-01-11 16:51:10 -08003294# this uses the Ra object, so it must be called before do_{switch,update},
3295# not inside them (when the Git::SVN::Fetcher object is passed) to
3296# do_{switch,update}
3297sub _mark_empty_symlinks {
Eric Wong8841b372009-02-11 01:56:58 -08003298 my ($git_svn, $switch_path) = @_;
Eric Wong4c58a712009-01-31 17:31:12 -08003299 my $bool = Git::config_bool('svn.brokenSymlinkWorkaround');
3300 return {} if (defined($bool) && ! $bool);
3301
Eric Wongdbc6c742009-01-11 16:51:10 -08003302 my %ret;
3303 my ($rev, $cmt) = $git_svn->last_rev_commit;
3304 return {} unless ($rev && $cmt);
3305
Eric Wong4c58a712009-01-31 17:31:12 -08003306 # allow the warning to be printed for each revision we fetch to
3307 # ensure the user sees it. The user can also disable the workaround
3308 # on the repository even while git svn is running and the next
3309 # revision fetched will skip this expensive function.
3310 my $printed_warning;
Eric Wongdbc6c742009-01-11 16:51:10 -08003311 chomp(my $empty_blob = `git hash-object -t blob --stdin < /dev/null`);
3312 my ($ls, $ctx) = command_output_pipe(qw/ls-tree -r -z/, $cmt);
3313 local $/ = "\0";
Eric Wong8841b372009-02-11 01:56:58 -08003314 my $pfx = defined($switch_path) ? $switch_path : $git_svn->{path};
Eric Wongdbc6c742009-01-11 16:51:10 -08003315 $pfx .= '/' if length($pfx);
3316 while (<$ls>) {
3317 chomp;
3318 s/\A100644 blob $empty_blob\t//o or next;
Eric Wong4c58a712009-01-31 17:31:12 -08003319 unless ($printed_warning) {
3320 print STDERR "Scanning for empty symlinks, ",
3321 "this may take a while if you have ",
3322 "many empty files\n",
3323 "You may disable this with `",
3324 "git config svn.brokenSymlinkWorkaround ",
3325 "false'.\n",
3326 "This may be done in a different ",
3327 "terminal without restarting ",
3328 "git svn\n";
3329 $printed_warning = 1;
3330 }
Eric Wongdbc6c742009-01-11 16:51:10 -08003331 my $path = $_;
3332 my (undef, $props) =
3333 $git_svn->ra->get_file($pfx.$path, $rev, undef);
3334 if ($props->{'svn:special'}) {
3335 $ret{$path} = 1;
3336 }
3337 }
3338 command_close_pipe($ls, $ctx);
3339 \%ret;
3340}
3341
Eric Wongb03a71a2009-01-11 18:23:38 -08003342# returns true if a given path is inside a ".git" directory
3343sub in_dot_git {
3344 $_[0] =~ m{(?:^|/)\.git(?:/|$)};
3345}
3346
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003347# return value: 0 -- don't ignore, 1 -- ignore
3348sub is_path_ignored {
3349 my ($path) = @_;
3350 return 1 if in_dot_git($path);
3351 return 0 unless defined($_ignore_regex);
3352 return 1 if $path =~ m!$_ignore_regex!o;
3353 return 0;
3354}
3355
Eric Wong8b8fc062007-01-22 11:44:57 -08003356sub set_path_strip {
3357 my ($self, $path) = @_;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08003358 $self->{path_strip} = qr/^\Q$path\E(\/|$)/ if length $path;
Eric Wong8b8fc062007-01-22 11:44:57 -08003359}
3360
Eric Wongd2a9a872006-12-12 14:47:00 -08003361sub open_root {
3362 { path => '' };
3363}
3364
3365sub open_directory {
3366 my ($self, $path, $pb, $rev) = @_;
3367 { path => $path };
3368}
3369
Eric Wong706587f2007-01-18 17:50:01 -08003370sub git_path {
3371 my ($self, $path) = @_;
Eric Wong2b27f6c2007-01-28 04:59:05 -08003372 if ($self->{path_strip}) {
3373 $path =~ s!$self->{path_strip}!! or
3374 die "Failed to strip path '$path' ($self->{path_strip})\n";
3375 }
Eric Wong706587f2007-01-18 17:50:01 -08003376 $path;
3377}
3378
Eric Wong27a1a802006-11-27 21:44:48 -08003379sub delete_entry {
3380 my ($self, $path, $rev, $pb) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003381 return undef if is_path_ignored($path);
Eric Wong4a87db02007-01-04 01:38:18 -08003382
Eric Wong706587f2007-01-18 17:50:01 -08003383 my $gpath = $self->git_path($path);
Eric Wong8a603772007-01-31 02:45:50 -08003384 return undef if ($gpath eq '');
3385
Eric Wong4a87db02007-01-04 01:38:18 -08003386 # remove entire directories.
Eric Wong706587f2007-01-18 17:50:01 -08003387 if (command('ls-tree', $self->{c}, '--', $gpath) =~ /^040000 tree/) {
Eric Wong4a87db02007-01-04 01:38:18 -08003388 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3389 -r --name-only -z/,
Eric Wong706587f2007-01-18 17:50:01 -08003390 $self->{c}, '--', $gpath);
Eric Wong4a87db02007-01-04 01:38:18 -08003391 local $/ = "\0";
3392 while (<$ls>) {
Eric Wongef3cfaa2007-01-24 03:30:57 -08003393 chomp;
3394 $self->{gii}->remove($_);
Eric Wong9e3cdbd2007-02-09 12:23:47 -08003395 print "\tD\t$_\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08003396 }
Eric Wong9e3cdbd2007-02-09 12:23:47 -08003397 print "\tD\t$gpath/\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08003398 command_close_pipe($ls, $ctx);
3399 $self->{empty}->{$path} = 0
3400 } else {
Eric Wongef3cfaa2007-01-24 03:30:57 -08003401 $self->{gii}->remove($gpath);
Eric Wong9e3cdbd2007-02-09 12:23:47 -08003402 print "\tD\t$gpath\n" unless $::_q;
Eric Wong4a87db02007-01-04 01:38:18 -08003403 }
Eric Wong27a1a802006-11-27 21:44:48 -08003404 undef;
3405}
3406
3407sub open_file {
3408 my ($self, $path, $pb, $rev) = @_;
Eric Wongb03a71a2009-01-11 18:23:38 -08003409 my ($mode, $blob);
3410
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003411 goto out if is_path_ignored($path);
Eric Wongb03a71a2009-01-11 18:23:38 -08003412
Eric Wong706587f2007-01-18 17:50:01 -08003413 my $gpath = $self->git_path($path);
Eric Wongb03a71a2009-01-11 18:23:38 -08003414 ($mode, $blob) = (command('ls-tree', $self->{c}, '--', $gpath)
Eric Wong27a1a802006-11-27 21:44:48 -08003415 =~ /^(\d{6}) blob ([a-f\d]{40})\t/);
Eric Wong006ede52006-12-08 01:55:19 -08003416 unless (defined $mode && defined $blob) {
3417 die "$path was not found in commit $self->{c} (r$rev)\n";
3418 }
Eric Wongdbc6c742009-01-11 16:51:10 -08003419 if ($mode eq '100644' && $self->{empty_symlinks}->{$path}) {
3420 $mode = '120000';
3421 }
Eric Wongb03a71a2009-01-11 18:23:38 -08003422out:
Eric Wong27a1a802006-11-27 21:44:48 -08003423 { path => $path, mode_a => $mode, mode_b => $mode, blob => $blob,
Eric Wong0864e3b2006-11-28 02:50:17 -08003424 pool => SVN::Pool->new, action => 'M' };
Eric Wong27a1a802006-11-27 21:44:48 -08003425}
3426
3427sub add_file {
3428 my ($self, $path, $pb, $cp_path, $cp_rev) = @_;
Eric Wongb03a71a2009-01-11 18:23:38 -08003429 my $mode;
3430
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003431 if (!is_path_ignored($path)) {
Eric Wongb03a71a2009-01-11 18:23:38 -08003432 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3433 delete $self->{empty}->{$dir};
3434 $mode = '100644';
3435 }
3436 { path => $path, mode_a => $mode, mode_b => $mode,
Eric Wong0864e3b2006-11-28 02:50:17 -08003437 pool => SVN::Pool->new, action => 'A' };
Eric Wong27a1a802006-11-27 21:44:48 -08003438}
3439
Eric Wongd2a9a872006-12-12 14:47:00 -08003440sub add_directory {
3441 my ($self, $path, $cp_path, $cp_rev) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003442 goto out if is_path_ignored($path);
Eric Wong12a6d752007-12-14 08:39:09 -08003443 my $gpath = $self->git_path($path);
3444 if ($gpath eq '') {
3445 my ($ls, $ctx) = command_output_pipe(qw/ls-tree
3446 -r --name-only -z/,
3447 $self->{c});
3448 local $/ = "\0";
3449 while (<$ls>) {
3450 chomp;
3451 $self->{gii}->remove($_);
3452 print "\tD\t$_\n" unless $::_q;
3453 }
3454 command_close_pipe($ls, $ctx);
3455 $self->{empty}->{$path} = 0;
3456 }
Eric Wongd2a9a872006-12-12 14:47:00 -08003457 my ($dir, $file) = ($path =~ m#^(.*?)/?([^/]+)$#);
3458 delete $self->{empty}->{$dir};
3459 $self->{empty}->{$path} = 1;
Eric Wongb03a71a2009-01-11 18:23:38 -08003460out:
Eric Wongd2a9a872006-12-12 14:47:00 -08003461 { path => $path };
3462}
3463
3464sub change_dir_prop {
3465 my ($self, $db, $prop, $value) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003466 return undef if is_path_ignored($db->{path});
Eric Wongd2a9a872006-12-12 14:47:00 -08003467 $self->{dir_prop}->{$db->{path}} ||= {};
3468 $self->{dir_prop}->{$db->{path}}->{$prop} = $value;
3469 undef;
3470}
3471
3472sub absent_directory {
3473 my ($self, $path, $pb) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003474 return undef if is_path_ignored($path);
Eric Wongd2a9a872006-12-12 14:47:00 -08003475 $self->{absent_dir}->{$pb->{path}} ||= [];
3476 push @{$self->{absent_dir}->{$pb->{path}}}, $path;
3477 undef;
3478}
3479
3480sub absent_file {
3481 my ($self, $path, $pb) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003482 return undef if is_path_ignored($path);
Eric Wongd2a9a872006-12-12 14:47:00 -08003483 $self->{absent_file}->{$pb->{path}} ||= [];
3484 push @{$self->{absent_file}->{$pb->{path}}}, $path;
3485 undef;
3486}
3487
Eric Wong27a1a802006-11-27 21:44:48 -08003488sub change_file_prop {
3489 my ($self, $fb, $prop, $value) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003490 return undef if is_path_ignored($fb->{path});
Eric Wong27a1a802006-11-27 21:44:48 -08003491 if ($prop eq 'svn:executable') {
3492 if ($fb->{mode_b} != 120000) {
3493 $fb->{mode_b} = defined $value ? 100755 : 100644;
3494 }
3495 } elsif ($prop eq 'svn:special') {
3496 $fb->{mode_b} = defined $value ? 120000 : 100644;
Eric Wongd2a9a872006-12-12 14:47:00 -08003497 } else {
3498 $self->{file_prop}->{$fb->{path}} ||= {};
3499 $self->{file_prop}->{$fb->{path}}->{$prop} = $value;
Eric Wong27a1a802006-11-27 21:44:48 -08003500 }
3501 undef;
3502}
3503
3504sub apply_textdelta {
3505 my ($self, $fb, $exp) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003506 return undef if is_path_ignored($fb->{path});
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08003507 my $fh = $::_repository->temp_acquire('svn_delta');
Eric Wong27a1a802006-11-27 21:44:48 -08003508 # $fh gets auto-closed() by SVN::TxDelta::apply(),
3509 # (but $base does not,) so dup() it for reading in close_file
3510 open my $dup, '<&', $fh or croak $!;
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08003511 my $base = $::_repository->temp_acquire('git_blob');
Eric Wongb03a71a2009-01-11 18:23:38 -08003512
Eric Wong27a1a802006-11-27 21:44:48 -08003513 if ($fb->{blob}) {
Eric Wongbaf5fa82009-01-11 16:51:11 -08003514 my ($base_is_link, $size);
3515
Eric Wongdbc6c742009-01-11 16:51:10 -08003516 if ($fb->{mode_a} eq '120000' &&
3517 ! $self->{empty_symlinks}->{$fb->{path}}) {
3518 print $base 'link ' or die "print $!\n";
Eric Wongbaf5fa82009-01-11 16:51:11 -08003519 $base_is_link = 1;
Eric Wongdbc6c742009-01-11 16:51:10 -08003520 }
Eric Wongbaf5fa82009-01-11 16:51:11 -08003521 retry:
3522 $size = $::_repository->cat_blob($fb->{blob}, $base);
Junio C Hamanod683a0e2008-05-27 23:33:22 -07003523 die "Failed to read object $fb->{blob}" if ($size < 0);
Eric Wong27a1a802006-11-27 21:44:48 -08003524
3525 if (defined $exp) {
3526 seek $base, 0, 0 or croak $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08003527 my $got = ::md5sum($base);
Eric Wongbaf5fa82009-01-11 16:51:11 -08003528 if ($got ne $exp) {
3529 my $err = "Checksum mismatch: ".
3530 "$fb->{path} $fb->{blob}\n" .
3531 "expected: $exp\n" .
3532 " got: $got\n";
3533 if ($base_is_link) {
3534 warn $err,
3535 "Retrying... (possibly ",
3536 "a bad symlink from SVN)\n";
3537 $::_repository->temp_reset($base);
3538 $base_is_link = 0;
3539 goto retry;
3540 }
3541 die $err;
3542 }
Eric Wong27a1a802006-11-27 21:44:48 -08003543 }
3544 }
3545 seek $base, 0, 0 or croak $!;
Marcus Griep0b191382008-08-12 12:00:53 -04003546 $fb->{fh} = $fh;
Eric Wong27a1a802006-11-27 21:44:48 -08003547 $fb->{base} = $base;
Marcus Griep0b191382008-08-12 12:00:53 -04003548 [ SVN::TxDelta::apply($base, $dup, undef, $fb->{path}, $fb->{pool}) ];
Eric Wong27a1a802006-11-27 21:44:48 -08003549}
3550
3551sub close_file {
3552 my ($self, $fb, $exp) = @_;
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +02003553 return undef if is_path_ignored($fb->{path});
Eric Wongb03a71a2009-01-11 18:23:38 -08003554
Eric Wong27a1a802006-11-27 21:44:48 -08003555 my $hash;
Eric Wong706587f2007-01-18 17:50:01 -08003556 my $path = $self->git_path($fb->{path});
Eric Wong27a1a802006-11-27 21:44:48 -08003557 if (my $fh = $fb->{fh}) {
Eric Wong7faf0682007-05-27 15:59:01 -07003558 if (defined $exp) {
3559 seek($fh, 0, 0) or croak $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08003560 my $got = ::md5sum($fh);
Eric Wong7faf0682007-05-27 15:59:01 -07003561 if ($got ne $exp) {
3562 die "Checksum mismatch: $path\n",
3563 "expected: $exp\n got: $got\n";
3564 }
3565 }
Eric Wong27a1a802006-11-27 21:44:48 -08003566 if ($fb->{mode_b} == 120000) {
Marcus Griep510b0942008-08-12 12:45:39 -04003567 sysseek($fh, 0, 0) or croak $!;
Eric Wongdbc6c742009-01-11 16:51:10 -08003568 my $rd = sysread($fh, my $buf, 5);
Marcus Griep510b0942008-08-12 12:45:39 -04003569
Eric Wongdbc6c742009-01-11 16:51:10 -08003570 if (!defined $rd) {
3571 croak "sysread: $!\n";
3572 } elsif ($rd == 0) {
Marcus Griep510b0942008-08-12 12:45:39 -04003573 warn "$path has mode 120000",
Eric Wongdbc6c742009-01-11 16:51:10 -08003574 " but it points to nothing\n",
3575 "converting to an empty file with mode",
3576 " 100644\n";
3577 $fb->{mode_b} = '100644';
3578 } elsif ($buf ne 'link ') {
3579 warn "$path has mode 120000",
3580 " but is not a link\n";
Marcus Griep510b0942008-08-12 12:45:39 -04003581 } else {
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08003582 my $tmp_fh = $::_repository->temp_acquire(
3583 'svn_hash');
Marcus Griep510b0942008-08-12 12:45:39 -04003584 my $res;
3585 while ($res = sysread($fh, my $str, 1024)) {
3586 my $out = syswrite($tmp_fh, $str, $res);
3587 defined($out) && $out == $res
3588 or croak("write ",
Marcus Griep836ff952008-09-08 12:53:01 -04003589 Git::temp_path($tmp_fh),
Marcus Griep510b0942008-08-12 12:45:39 -04003590 ": $!\n");
3591 }
3592 defined $res or croak $!;
3593
3594 ($fh, $tmp_fh) = ($tmp_fh, $fh);
3595 Git::temp_release($tmp_fh, 1);
Eric Wong7fc35e02007-12-19 00:06:45 -08003596 }
Eric Wong27a1a802006-11-27 21:44:48 -08003597 }
Adam Robenffe256f2008-05-23 16:19:41 +02003598
Marcus Griep0b191382008-08-12 12:00:53 -04003599 $hash = $::_repository->hash_and_insert_object(
Marcus Griep836ff952008-09-08 12:53:01 -04003600 Git::temp_path($fh));
Eric Wong27a1a802006-11-27 21:44:48 -08003601 $hash =~ /^[a-f\d]{40}$/ or die "not a sha1: $hash\n";
Marcus Griep0b191382008-08-12 12:00:53 -04003602
3603 Git::temp_release($fb->{base}, 1);
Marcus Griep510b0942008-08-12 12:45:39 -04003604 Git::temp_release($fh, 1);
Eric Wong27a1a802006-11-27 21:44:48 -08003605 } else {
3606 $hash = $fb->{blob} or die "no blob information\n";
3607 }
3608 $fb->{pool}->clear;
Eric Wongef3cfaa2007-01-24 03:30:57 -08003609 $self->{gii}->update($fb->{mode_b}, $hash, $path) or croak $!;
Eric Wong9e3cdbd2007-02-09 12:23:47 -08003610 print "\t$fb->{action}\t$path\n" if $fb->{action} && ! $::_q;
Eric Wong27a1a802006-11-27 21:44:48 -08003611 undef;
3612}
3613
3614sub abort_edit {
3615 my $self = shift;
Eric Wongef3cfaa2007-01-24 03:30:57 -08003616 $self->{nr} = $self->{gii}->{nr};
3617 delete $self->{gii};
Eric Wong27a1a802006-11-27 21:44:48 -08003618 $self->SUPER::abort_edit(@_);
3619}
3620
3621sub close_edit {
3622 my $self = shift;
Eric Wongdad73c02006-11-28 14:06:05 -08003623 $self->{git_commit_ok} = 1;
Eric Wongef3cfaa2007-01-24 03:30:57 -08003624 $self->{nr} = $self->{gii}->{nr};
3625 delete $self->{gii};
Eric Wong27a1a802006-11-27 21:44:48 -08003626 $self->SUPER::close_edit(@_);
3627}
Eric Wong1a82e792006-06-16 02:55:13 -07003628
Eric Wonga5e0ced2006-06-12 15:23:48 -07003629package SVN::Git::Editor;
Eric Wong24e22aa2007-01-29 00:07:49 -08003630use vars qw/@ISA $_rmdir $_cp_similarity $_find_copies_harder $_rename_limit/;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003631use strict;
3632use warnings;
3633use Carp qw/croak/;
3634use IO::File;
3635
3636sub new {
Eric Wong61395352007-01-27 14:33:08 -08003637 my ($class, $opts) = @_;
3638 foreach (qw/svn_path r ra tree_a tree_b log editor_cb/) {
3639 die "$_ required!\n" unless (defined $opts->{$_});
Eric Wonga5e0ced2006-06-12 15:23:48 -07003640 }
Eric Wong61395352007-01-27 14:33:08 -08003641
3642 my $pool = SVN::Pool->new;
3643 my $mods = generate_diff($opts->{tree_a}, $opts->{tree_b});
3644 my $types = check_diff_paths($opts->{ra}, $opts->{svn_path},
3645 $opts->{r}, $mods);
3646
3647 # $opts->{ra} functions should not be used after this:
3648 my @ce = $opts->{ra}->get_commit_editor($opts->{log},
3649 $opts->{editor_cb}, $pool);
3650 my $self = SVN::Delta::Editor->new(@ce, $pool);
3651 bless $self, $class;
3652 foreach (qw/svn_path r tree_a tree_b/) {
3653 $self->{$_} = $opts->{$_};
3654 }
3655 $self->{url} = $opts->{ra}->{url};
3656 $self->{mods} = $mods;
3657 $self->{types} = $types;
3658 $self->{pool} = $pool;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003659 $self->{bat} = { '' => $self->open_root($self->{r}, $self->{pool}) };
3660 $self->{rm} = { };
Eric Wongd3a840d2007-01-26 01:32:45 -08003661 $self->{path_prefix} = length $self->{svn_path} ?
3662 "$self->{svn_path}/" : '';
Brad King128de652008-07-25 11:32:37 -04003663 $self->{config} = $opts->{config};
Eric Wonga5e0ced2006-06-12 15:23:48 -07003664 return $self;
3665}
3666
Eric Wong61395352007-01-27 14:33:08 -08003667sub generate_diff {
3668 my ($tree_a, $tree_b) = @_;
3669 my @diff_tree = qw(diff-tree -z -r);
Eric Wong24e22aa2007-01-29 00:07:49 -08003670 if ($_cp_similarity) {
3671 push @diff_tree, "-C$_cp_similarity";
Eric Wong61395352007-01-27 14:33:08 -08003672 } else {
3673 push @diff_tree, '-C';
3674 }
Eric Wong24e22aa2007-01-29 00:07:49 -08003675 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
3676 push @diff_tree, "-l$_rename_limit" if defined $_rename_limit;
Eric Wong61395352007-01-27 14:33:08 -08003677 push @diff_tree, $tree_a, $tree_b;
3678 my ($diff_fh, $ctx) = command_output_pipe(@diff_tree);
3679 local $/ = "\0";
3680 my $state = 'meta';
3681 my @mods;
3682 while (<$diff_fh>) {
3683 chomp $_; # this gets rid of the trailing "\0"
3684 if ($state eq 'meta' && /^:(\d{6})\s(\d{6})\s
Florian Weimer2d0c8ac2008-08-31 17:05:09 +02003685 ($::sha1)\s($::sha1)\s
Eric Wong61395352007-01-27 14:33:08 -08003686 ([MTCRAD])\d*$/xo) {
3687 push @mods, { mode_a => $1, mode_b => $2,
Florian Weimer2d0c8ac2008-08-31 17:05:09 +02003688 sha1_a => $3, sha1_b => $4,
3689 chg => $5 };
3690 if ($5 =~ /^(?:C|R)$/) {
Eric Wong61395352007-01-27 14:33:08 -08003691 $state = 'file_a';
3692 } else {
3693 $state = 'file_b';
3694 }
3695 } elsif ($state eq 'file_a') {
3696 my $x = $mods[$#mods] or croak "Empty array\n";
3697 if ($x->{chg} !~ /^(?:C|R)$/) {
3698 croak "Error parsing $_, $x->{chg}\n";
3699 }
3700 $x->{file_a} = $_;
3701 $state = 'file_b';
3702 } elsif ($state eq 'file_b') {
3703 my $x = $mods[$#mods] or croak "Empty array\n";
3704 if (exists $x->{file_a} && $x->{chg} !~ /^(?:C|R)$/) {
3705 croak "Error parsing $_, $x->{chg}\n";
3706 }
3707 if (!exists $x->{file_a} && $x->{chg} =~ /^(?:C|R)$/) {
3708 croak "Error parsing $_, $x->{chg}\n";
3709 }
3710 $x->{file_b} = $_;
3711 $state = 'meta';
3712 } else {
3713 croak "Error parsing $_\n";
3714 }
3715 }
3716 command_close_pipe($diff_fh, $ctx);
3717 \@mods;
3718}
3719
3720sub check_diff_paths {
3721 my ($ra, $pfx, $rev, $mods) = @_;
3722 my %types;
3723 $pfx .= '/' if length $pfx;
3724
3725 sub type_diff_paths {
3726 my ($ra, $types, $path, $rev) = @_;
3727 my @p = split m#/+#, $path;
3728 my $c = shift @p;
3729 unless (defined $types->{$c}) {
3730 $types->{$c} = $ra->check_path($c, $rev);
3731 }
3732 while (@p) {
3733 $c .= '/' . shift @p;
3734 next if defined $types->{$c};
3735 $types->{$c} = $ra->check_path($c, $rev);
3736 }
3737 }
3738
3739 foreach my $m (@$mods) {
3740 foreach my $f (qw/file_a file_b/) {
3741 next unless defined $m->{$f};
3742 my ($dir) = ($m->{$f} =~ m#^(.*?)/?(?:[^/]+)$#);
3743 if (length $pfx.$dir && ! defined $types{$dir}) {
3744 type_diff_paths($ra, \%types, $pfx.$dir, $rev);
3745 }
3746 }
3747 }
3748 \%types;
3749}
3750
Eric Wonga5e0ced2006-06-12 15:23:48 -07003751sub split_path {
3752 return ($_[0] =~ m#^(.*?)/?([^/]+)$#);
3753}
3754
3755sub repo_path {
Eric Wongd3a840d2007-01-26 01:32:45 -08003756 my ($self, $path) = @_;
3757 $self->{path_prefix}.(defined $path ? $path : '');
Eric Wonga5e0ced2006-06-12 15:23:48 -07003758}
3759
3760sub url_path {
3761 my ($self, $path) = @_;
Eric Wong29633bb2007-07-15 21:53:50 -07003762 if ($self->{url} =~ m#^https?://#) {
Eric Wong6a004d32008-10-21 14:12:15 -07003763 $path =~ s/([^~a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg;
Eric Wong29633bb2007-07-15 21:53:50 -07003764 }
Eric Wong6e8548c2007-01-27 01:32:00 -08003765 $self->{url} . '/' . $self->repo_path($path);
Eric Wonga5e0ced2006-06-12 15:23:48 -07003766}
3767
3768sub rmdirs {
Eric Wong61395352007-01-27 14:33:08 -08003769 my ($self) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003770 my $rm = $self->{rm};
3771 delete $rm->{''}; # we never delete the url we're tracking
3772 return unless %$rm;
3773
3774 foreach (keys %$rm) {
3775 my @d = split m#/#, $_;
3776 my $c = shift @d;
3777 $rm->{$c} = 1;
3778 while (@d) {
3779 $c .= '/' . shift @d;
3780 $rm->{$c} = 1;
3781 }
3782 }
3783 delete $rm->{$self->{svn_path}};
3784 delete $rm->{''}; # we never delete the url we're tracking
3785 return unless %$rm;
3786
Eric Wong61395352007-01-27 14:33:08 -08003787 my ($fh, $ctx) = command_output_pipe(qw/ls-tree --name-only -r -z/,
3788 $self->{tree_b});
Eric Wonga5e0ced2006-06-12 15:23:48 -07003789 local $/ = "\0";
3790 while (<$fh>) {
3791 chomp;
Eric Wong747fa122006-11-24 22:38:17 -08003792 my @dn = split m#/#, $_;
Eric Wongc07eee12006-06-19 17:59:35 -07003793 while (pop @dn) {
3794 delete $rm->{join '/', @dn};
3795 }
3796 unless (%$rm) {
Eric Wong22600a22007-02-01 13:12:26 -08003797 close $fh;
Eric Wongc07eee12006-06-19 17:59:35 -07003798 return;
3799 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07003800 }
Eric Wongaef4e922006-12-15 10:59:54 -08003801 command_close_pipe($fh, $ctx);
Eric Wongc07eee12006-06-19 17:59:35 -07003802
Eric Wonga5e0ced2006-06-12 15:23:48 -07003803 my ($r, $p, $bat) = ($self->{r}, $self->{pool}, $self->{bat});
3804 foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
3805 $self->close_directory($bat->{$d}, $p);
3806 my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
Eric Wong44320b92007-01-13 22:35:53 -08003807 print "\tD+\t$d/\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003808 $self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
3809 delete $bat->{$d};
3810 }
3811}
3812
3813sub open_or_add_dir {
3814 my ($self, $full_path, $baton) = @_;
Eric Wong6e8548c2007-01-27 01:32:00 -08003815 my $t = $self->{types}->{$full_path};
3816 if (!defined $t) {
3817 die "$full_path not known in r$self->{r} or we have a bug!\n";
3818 }
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04003819 {
3820 no warnings 'once';
3821 # SVN::Node::none and SVN::Node::file are used only once,
3822 # so we're shutting up Perl's warnings about them.
3823 if ($t == $SVN::Node::none) {
3824 return $self->add_directory($full_path, $baton,
3825 undef, -1, $self->{pool});
3826 } elsif ($t == $SVN::Node::dir) {
3827 return $self->open_directory($full_path, $baton,
3828 $self->{r}, $self->{pool});
3829 } # no warnings 'once'
3830 print STDERR "$full_path already exists in repository at ",
3831 "r$self->{r} and it is not a directory (",
3832 ($t == $SVN::Node::file ? 'file' : 'unknown'),"/$t)\n";
3833 } # no warnings 'once'
Eric Wonga5e0ced2006-06-12 15:23:48 -07003834 exit 1;
3835}
3836
3837sub ensure_path {
3838 my ($self, $path) = @_;
3839 my $bat = $self->{bat};
Eric Wong6e8548c2007-01-27 01:32:00 -08003840 my $repo_path = $self->repo_path($path);
3841 return $bat->{''} unless (length $repo_path);
3842 my @p = split m#/+#, $repo_path;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003843 my $c = shift @p;
3844 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{''});
3845 while (@p) {
3846 my $c0 = $c;
3847 $c .= '/' . shift @p;
3848 $bat->{$c} ||= $self->open_or_add_dir($c, $bat->{$c0});
3849 }
3850 return $bat->{$c};
3851}
3852
Brad King128de652008-07-25 11:32:37 -04003853# Subroutine to convert a globbing pattern to a regular expression.
3854# From perl cookbook.
3855sub glob2pat {
3856 my $globstr = shift;
3857 my %patmap = ('*' => '.*', '?' => '.', '[' => '[', ']' => ']');
3858 $globstr =~ s{(.)} { $patmap{$1} || "\Q$1" }ge;
3859 return '^' . $globstr . '$';
3860}
3861
3862sub check_autoprop {
3863 my ($self, $pattern, $properties, $file, $fbat) = @_;
3864 # Convert the globbing pattern to a regular expression.
3865 my $regex = glob2pat($pattern);
3866 # Check if the pattern matches the file name.
3867 if($file =~ m/($regex)/) {
3868 # Parse the list of properties to set.
3869 my @props = split(/;/, $properties);
3870 foreach my $prop (@props) {
3871 # Parse 'name=value' syntax and set the property.
3872 if ($prop =~ /([^=]+)=(.*)/) {
3873 my ($n,$v) = ($1,$2);
3874 for ($n, $v) {
3875 s/^\s+//; s/\s+$//;
3876 }
3877 $self->change_file_prop($fbat, $n, $v);
3878 }
3879 }
3880 }
3881}
3882
3883sub apply_autoprops {
3884 my ($self, $file, $fbat) = @_;
3885 my $conf_t = ${$self->{config}}{'config'};
3886 no warnings 'once';
3887 # Check [miscellany]/enable-auto-props in svn configuration.
3888 if (SVN::_Core::svn_config_get_bool(
3889 $conf_t,
3890 $SVN::_Core::SVN_CONFIG_SECTION_MISCELLANY,
3891 $SVN::_Core::SVN_CONFIG_OPTION_ENABLE_AUTO_PROPS,
3892 0)) {
3893 # Auto-props are enabled. Enumerate them to look for matches.
3894 my $callback = sub {
3895 $self->check_autoprop($_[0], $_[1], $file, $fbat);
3896 };
3897 SVN::_Core::svn_config_enumerate(
3898 $conf_t,
3899 $SVN::_Core::SVN_CONFIG_SECTION_AUTO_PROPS,
3900 $callback);
3901 }
3902}
3903
Eric Wonga5e0ced2006-06-12 15:23:48 -07003904sub A {
Eric Wong44320b92007-01-13 22:35:53 -08003905 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003906 my ($dir, $file) = split_path($m->{file_b});
3907 my $pbat = $self->ensure_path($dir);
3908 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3909 undef, -1);
Eric Wong44320b92007-01-13 22:35:53 -08003910 print "\tA\t$m->{file_b}\n" unless $::_q;
Brad King128de652008-07-25 11:32:37 -04003911 $self->apply_autoprops($file, $fbat);
Eric Wonga5e0ced2006-06-12 15:23:48 -07003912 $self->chg_file($fbat, $m);
3913 $self->close_file($fbat,undef,$self->{pool});
3914}
3915
3916sub C {
Eric Wong44320b92007-01-13 22:35:53 -08003917 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003918 my ($dir, $file) = split_path($m->{file_b});
3919 my $pbat = $self->ensure_path($dir);
3920 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3921 $self->url_path($m->{file_a}), $self->{r});
Eric Wong44320b92007-01-13 22:35:53 -08003922 print "\tC\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003923 $self->chg_file($fbat, $m);
3924 $self->close_file($fbat,undef,$self->{pool});
3925}
3926
3927sub delete_entry {
3928 my ($self, $path, $pbat) = @_;
3929 my $rpath = $self->repo_path($path);
3930 my ($dir, $file) = split_path($rpath);
3931 $self->{rm}->{$dir} = 1;
3932 $self->SUPER::delete_entry($rpath, $self->{r}, $pbat, $self->{pool});
3933}
3934
3935sub R {
Eric Wong44320b92007-01-13 22:35:53 -08003936 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003937 my ($dir, $file) = split_path($m->{file_b});
3938 my $pbat = $self->ensure_path($dir);
3939 my $fbat = $self->add_file($self->repo_path($m->{file_b}), $pbat,
3940 $self->url_path($m->{file_a}), $self->{r});
Eric Wong44320b92007-01-13 22:35:53 -08003941 print "\tR\t$m->{file_a} => $m->{file_b}\n" unless $::_q;
Paul Talacko7c4d0212008-09-06 18:50:38 -07003942 $self->apply_autoprops($file, $fbat);
Eric Wonga5e0ced2006-06-12 15:23:48 -07003943 $self->chg_file($fbat, $m);
3944 $self->close_file($fbat,undef,$self->{pool});
3945
3946 ($dir, $file) = split_path($m->{file_a});
3947 $pbat = $self->ensure_path($dir);
3948 $self->delete_entry($m->{file_a}, $pbat);
3949}
3950
3951sub M {
Eric Wong44320b92007-01-13 22:35:53 -08003952 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003953 my ($dir, $file) = split_path($m->{file_b});
3954 my $pbat = $self->ensure_path($dir);
3955 my $fbat = $self->open_file($self->repo_path($m->{file_b}),
3956 $pbat,$self->{r},$self->{pool});
Eric Wong44320b92007-01-13 22:35:53 -08003957 print "\t$m->{chg}\t$m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07003958 $self->chg_file($fbat, $m);
3959 $self->close_file($fbat,undef,$self->{pool});
3960}
3961
3962sub T { shift->M(@_) }
3963
3964sub change_file_prop {
3965 my ($self, $fbat, $pname, $pval) = @_;
3966 $self->SUPER::change_file_prop($fbat, $pname, $pval, $self->{pool});
3967}
3968
Florian Weimer214a34d2008-08-31 17:45:04 +02003969sub _chg_file_get_blob ($$$$) {
3970 my ($self, $fbat, $m, $which) = @_;
Marten Svanfeldt (dev)1b3069a2008-11-13 00:38:06 +08003971 my $fh = $::_repository->temp_acquire("git_blob_$which");
Florian Weimer214a34d2008-08-31 17:45:04 +02003972 if ($m->{"mode_$which"} =~ /^120/) {
3973 print $fh 'link ' or croak $!;
3974 $self->change_file_prop($fbat,'svn:special','*');
3975 } elsif ($m->{mode_a} =~ /^120/ && $m->{"mode_$which"} !~ /^120/) {
3976 $self->change_file_prop($fbat,'svn:special',undef);
3977 }
3978 my $blob = $m->{"sha1_$which"};
3979 return ($fh,) if ($blob =~ /^0{40}$/);
3980 my $size = $::_repository->cat_blob($blob, $fh);
3981 croak "Failed to read object $blob" if ($size < 0);
3982 $fh->flush == 0 or croak $!;
3983 seek $fh, 0, 0 or croak $!;
3984
3985 my $exp = ::md5sum($fh);
3986 seek $fh, 0, 0 or croak $!;
3987 return ($fh, $exp);
3988}
3989
Eric Wonga5e0ced2006-06-12 15:23:48 -07003990sub chg_file {
3991 my ($self, $fbat, $m) = @_;
3992 if ($m->{mode_b} =~ /755$/ && $m->{mode_a} !~ /755$/) {
3993 $self->change_file_prop($fbat,'svn:executable','*');
3994 } elsif ($m->{mode_b} !~ /755$/ && $m->{mode_a} =~ /755$/) {
3995 $self->change_file_prop($fbat,'svn:executable',undef);
3996 }
Florian Weimer8598db932008-08-31 17:47:09 +02003997 my ($fh_a, $exp_a) = _chg_file_get_blob $self, $fbat, $m, 'a';
3998 my ($fh_b, $exp_b) = _chg_file_get_blob $self, $fbat, $m, 'b';
Eric Wongf7197df2006-10-14 15:48:35 -07003999 my $pool = SVN::Pool->new;
Florian Weimer8598db932008-08-31 17:47:09 +02004000 my $atd = $self->apply_textdelta($fbat, $exp_a, $pool);
4001 if (-s $fh_a) {
4002 my $txstream = SVN::TxDelta::new ($fh_a, $fh_b, $pool);
Eric Wong991255c2008-08-31 19:45:07 -07004003 my $res = SVN::TxDelta::send_txstream($txstream, @$atd, $pool);
4004 if (defined $res) {
4005 die "Unexpected result from send_txstream: $res\n",
4006 "(SVN::Core::VERSION: $SVN::Core::VERSION)\n";
4007 }
Florian Weimer8598db932008-08-31 17:47:09 +02004008 } else {
4009 my $got = SVN::TxDelta::send_stream($fh_b, @$atd, $pool);
4010 die "Checksum mismatch\nexpected: $exp_b\ngot: $got\n"
4011 if ($got ne $exp_b);
4012 }
4013 Git::temp_release($fh_b, 1);
4014 Git::temp_release($fh_a, 1);
Eric Wongf7197df2006-10-14 15:48:35 -07004015 $pool->clear;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004016}
4017
4018sub D {
Eric Wong44320b92007-01-13 22:35:53 -08004019 my ($self, $m) = @_;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004020 my ($dir, $file) = split_path($m->{file_b});
4021 my $pbat = $self->ensure_path($dir);
Eric Wong44320b92007-01-13 22:35:53 -08004022 print "\tD\t$m->{file_b}\n" unless $::_q;
Eric Wonga5e0ced2006-06-12 15:23:48 -07004023 $self->delete_entry($m->{file_b}, $pbat);
4024}
4025
4026sub close_edit {
4027 my ($self) = @_;
4028 my ($p,$bat) = ($self->{pool}, $self->{bat});
4029 foreach (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$bat) {
Eric Wong64427542007-05-19 02:58:37 -07004030 next if $_ eq '';
Eric Wonga5e0ced2006-06-12 15:23:48 -07004031 $self->close_directory($bat->{$_}, $p);
4032 }
Eric Wong64427542007-05-19 02:58:37 -07004033 $self->close_directory($bat->{''}, $p);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004034 $self->SUPER::close_edit($p);
4035 $p->clear;
4036}
4037
4038sub abort_edit {
4039 my ($self) = @_;
4040 $self->SUPER::abort_edit($self->{pool});
Eric Wong61395352007-01-27 14:33:08 -08004041}
4042
4043sub DESTROY {
4044 my $self = shift;
4045 $self->SUPER::DESTROY(@_);
Eric Wonga5e0ced2006-06-12 15:23:48 -07004046 $self->{pool}->clear;
4047}
4048
Eric Wong44320b92007-01-13 22:35:53 -08004049# this drives the editor
4050sub apply_diff {
Eric Wong61395352007-01-27 14:33:08 -08004051 my ($self) = @_;
4052 my $mods = $self->{mods};
Eric Wong44320b92007-01-13 22:35:53 -08004053 my %o = ( D => 1, R => 0, C => -1, A => 3, M => 3, T => 3 );
Eric Wong6e8548c2007-01-27 01:32:00 -08004054 foreach my $m (sort { $o{$a->{chg}} <=> $o{$b->{chg}} } @$mods) {
Eric Wong44320b92007-01-13 22:35:53 -08004055 my $f = $m->{chg};
4056 if (defined $o{$f}) {
4057 $self->$f($m);
4058 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004059 fatal("Invalid change type: $f");
Eric Wong44320b92007-01-13 22:35:53 -08004060 }
4061 }
Eric Wong24e22aa2007-01-29 00:07:49 -08004062 $self->rmdirs if $_rmdir;
Eric Wong6e8548c2007-01-27 01:32:00 -08004063 if (@$mods == 0) {
Eric Wong44320b92007-01-13 22:35:53 -08004064 $self->abort_edit;
4065 } else {
4066 $self->close_edit;
4067 }
Eric Wong6e8548c2007-01-27 01:32:00 -08004068 return scalar @$mods;
Eric Wong44320b92007-01-13 22:35:53 -08004069}
4070
Eric Wongd81bf822007-01-10 01:22:38 -08004071package Git::SVN::Ra;
Eric Wong6af1db42007-02-14 16:04:10 -08004072use vars qw/@ISA $config_dir $_log_window_size/;
Eric Wongd81bf822007-01-10 01:22:38 -08004073use strict;
4074use warnings;
Eric Wonga51cdb02007-09-07 04:00:40 -07004075my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
Eric Wongd81bf822007-01-10 01:22:38 -08004076
4077BEGIN {
4078 # enforce temporary pool usage for some simple functions
Sam Vilainc5f71ad2007-06-15 15:43:59 +12004079 no strict 'refs';
Eric Wongbf8a40b2009-01-25 15:35:52 -08004080 for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root
4081 get_file/) {
Sam Vilainc5f71ad2007-06-15 15:43:59 +12004082 my $SUPER = "SUPER::$f";
4083 *$f = sub {
4084 my $self = shift;
4085 my $pool = SVN::Pool->new;
4086 my @ret = $self->$SUPER(@_,$pool);
4087 $pool->clear;
4088 wantarray ? @ret : $ret[0];
4089 };
Eric Wongd81bf822007-01-10 01:22:38 -08004090 }
Eric Wongd81bf822007-01-10 01:22:38 -08004091}
4092
Steven Walter9ff74e92007-09-28 13:24:19 -04004093sub _auth_providers () {
4094 [
4095 SVN::Client::get_simple_provider(),
4096 SVN::Client::get_ssl_server_trust_file_provider(),
4097 SVN::Client::get_simple_prompt_provider(
4098 \&Git::SVN::Prompt::simple, 2),
4099 SVN::Client::get_ssl_client_cert_file_provider(),
4100 SVN::Client::get_ssl_client_cert_prompt_provider(
4101 \&Git::SVN::Prompt::ssl_client_cert, 2),
Sebastian Noack77266e92008-02-25 15:56:28 +01004102 SVN::Client::get_ssl_client_cert_pw_file_provider(),
Steven Walter9ff74e92007-09-28 13:24:19 -04004103 SVN::Client::get_ssl_client_cert_pw_prompt_provider(
4104 \&Git::SVN::Prompt::ssl_client_cert_pw, 2),
4105 SVN::Client::get_username_provider(),
4106 SVN::Client::get_ssl_server_trust_prompt_provider(
4107 \&Git::SVN::Prompt::ssl_server_trust),
4108 SVN::Client::get_username_prompt_provider(
4109 \&Git::SVN::Prompt::username, 2)
4110 ]
4111}
4112
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004113sub escape_uri_only {
4114 my ($uri) = @_;
4115 my @tmp;
4116 foreach (split m{/}, $uri) {
Eric Wong6a004d32008-10-21 14:12:15 -07004117 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004118 push @tmp, $_;
4119 }
4120 join('/', @tmp);
4121}
4122
4123sub escape_url {
4124 my ($url) = @_;
4125 if ($url =~ m#^(https?)://([^/]+)(.*)$#) {
4126 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only($3));
4127 $url = "$scheme://$domain$uri";
4128 }
4129 $url;
4130}
4131
Eric Wongd81bf822007-01-10 01:22:38 -08004132sub new {
4133 my ($class, $url) = @_;
Eric Wongf6f09872007-01-18 18:22:18 -08004134 $url =~ s!/+$!!;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004135 return $RA if ($RA && $RA->{url} eq $url);
Eric Wongf6f09872007-01-18 18:22:18 -08004136
Eric Wongd81bf822007-01-10 01:22:38 -08004137 SVN::_Core::svn_config_ensure($config_dir, undef);
Steven Walter9ff74e92007-09-28 13:24:19 -04004138 my ($baton, $callbacks) = SVN::Core::auth_open_helper(_auth_providers);
Eric Wongd81bf822007-01-10 01:22:38 -08004139 my $config = SVN::Core::config_get_config($config_dir);
Eric Wong7730fbe2007-07-04 14:07:42 -07004140 $RA = undef;
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004141 my $dont_store_passwords = 1;
4142 my $conf_t = ${$config}{'config'};
4143 {
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004144 no warnings 'once';
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004145 # The usage of $SVN::_Core::SVN_CONFIG_* variables
4146 # produces warnings that variables are used only once.
4147 # I had not found the better way to shut them up, so
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004148 # the warnings of type 'once' are disabled in this block.
Eygene Ryabinkin602015e2007-10-06 22:57:19 +04004149 if (SVN::_Core::svn_config_get_bool($conf_t,
4150 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4151 $SVN::_Core::SVN_CONFIG_OPTION_STORE_PASSWORDS,
4152 1) == 0) {
4153 SVN::_Core::svn_auth_set_parameter($baton,
4154 $SVN::_Core::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS,
4155 bless (\$dont_store_passwords, "_p_void"));
4156 }
4157 if (SVN::_Core::svn_config_get_bool($conf_t,
4158 $SVN::_Core::SVN_CONFIG_SECTION_AUTH,
4159 $SVN::_Core::SVN_CONFIG_OPTION_STORE_AUTH_CREDS,
4160 1) == 0) {
4161 $Git::SVN::Prompt::_no_auth_cache = 1;
4162 }
Eygene Ryabinkinfd499bc2007-10-15 11:19:12 +04004163 } # no warnings 'once'
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004164 my $self = SVN::Ra->new(url => escape_url($url), auth => $baton,
Eric Wongd81bf822007-01-10 01:22:38 -08004165 config => $config,
4166 pool => SVN::Pool->new,
4167 auth_provider_callbacks => $callbacks);
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004168 $self->{url} = $url;
Eric Wongd81bf822007-01-10 01:22:38 -08004169 $self->{svn_path} = $url;
4170 $self->{repos_root} = $self->get_repos_root;
Eric Wong4e9f6cc2007-02-09 12:17:57 -08004171 $self->{svn_path} =~ s#^\Q$self->{repos_root}\E(/|$)##;
Eric Wong0dc03d62007-05-13 01:04:43 -07004172 $self->{cache} = { check_path => { r => 0, data => {} },
4173 get_dir => { r => 0, data => {} } };
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004174 $RA = bless $self, $class;
Eric Wongd81bf822007-01-10 01:22:38 -08004175}
4176
Eric Wong0dc03d62007-05-13 01:04:43 -07004177sub check_path {
4178 my ($self, $path, $r) = @_;
4179 my $cache = $self->{cache}->{check_path};
4180 if ($r == $cache->{r} && exists $cache->{data}->{$path}) {
4181 return $cache->{data}->{$path};
4182 }
4183 my $pool = SVN::Pool->new;
4184 my $t = $self->SUPER::check_path($path, $r, $pool);
4185 $pool->clear;
4186 if ($r != $cache->{r}) {
4187 %{$cache->{data}} = ();
4188 $cache->{r} = $r;
4189 }
4190 $cache->{data}->{$path} = $t;
4191}
4192
4193sub get_dir {
4194 my ($self, $dir, $r) = @_;
4195 my $cache = $self->{cache}->{get_dir};
4196 if ($r == $cache->{r}) {
4197 if (my $x = $cache->{data}->{$dir}) {
4198 return wantarray ? @$x : $x->[0];
4199 }
4200 }
4201 my $pool = SVN::Pool->new;
4202 my ($d, undef, $props) = $self->SUPER::get_dir($dir, $r, $pool);
4203 my %dirents = map { $_ => { kind => $d->{$_}->kind } } keys %$d;
4204 $pool->clear;
4205 if ($r != $cache->{r}) {
4206 %{$cache->{data}} = ();
4207 $cache->{r} = $r;
4208 }
4209 $cache->{data}->{$dir} = [ \%dirents, $r, $props ];
4210 wantarray ? (\%dirents, $r, $props) : \%dirents;
4211}
4212
Eric Wongd81bf822007-01-10 01:22:38 -08004213sub DESTROY {
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004214 # do not call the real DESTROY since we store ourselves in $RA
Eric Wongd81bf822007-01-10 01:22:38 -08004215}
4216
Eric Wong1ef626b2009-01-17 22:11:44 -08004217# get_log(paths, start, end, limit,
4218# discover_changed_paths, strict_node_history, receiver)
Eric Wongd81bf822007-01-10 01:22:38 -08004219sub get_log {
4220 my ($self, @args) = @_;
4221 my $pool = SVN::Pool->new;
Eric Wong1ef626b2009-01-17 22:11:44 -08004222
4223 # the limit parameter was not supported in SVN 1.1.x, so we
4224 # drop it. Therefore, the receiver callback passed to it
4225 # is made aware of this limitation by being wrapped if
4226 # the limit passed to is being wrapped.
4227 if ($SVN::Core::VERSION le '1.2.0') {
4228 my $limit = splice(@args, 3, 1);
4229 if ($limit > 0) {
4230 my $receiver = pop @args;
4231 push(@args, sub { &$receiver(@_) if (--$limit >= 0) });
4232 }
4233 }
Eric Wongd81bf822007-01-10 01:22:38 -08004234 my $ret = $self->SUPER::get_log(@args, $pool);
4235 $pool->clear;
4236 $ret;
4237}
4238
Steven Walter9ff74e92007-09-28 13:24:19 -04004239sub trees_match {
4240 my ($self, $url1, $rev1, $url2, $rev2) = @_;
4241 my $ctx = SVN::Client->new(auth => _auth_providers);
4242 my $out = IO::File->new_tmpfile;
4243
4244 # older SVN (1.1.x) doesn't take $pool as the last parameter for
4245 # $ctx->diff(), so we'll create a default one
4246 my $pool = SVN::Pool->new_default_sub;
4247
4248 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
4249 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
4250 $out->flush;
4251 my $ret = (($out->stat)[7] == 0);
4252 close $out or croak $!;
4253
4254 $ret;
4255}
4256
Eric Wongd81bf822007-01-10 01:22:38 -08004257sub get_commit_editor {
Eric Wong44320b92007-01-13 22:35:53 -08004258 my ($self, $log, $cb, $pool) = @_;
Eric Wongd81bf822007-01-10 01:22:38 -08004259 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef, 0) : ();
Eric Wong44320b92007-01-13 22:35:53 -08004260 $self->SUPER::get_commit_editor($log, $cb, @lock, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08004261}
4262
Eric Wongd81bf822007-01-10 01:22:38 -08004263sub gs_do_update {
Eric Wong8a603772007-01-31 02:45:50 -08004264 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
4265 my $new = ($rev_a == $rev_b);
4266 my $path = $gs->{path};
4267
Eric Wong2e5e2482007-02-23 02:21:59 -08004268 if ($new && -e $gs->{index}) {
4269 unlink $gs->{index} or die
4270 "Couldn't unlink index: $gs->{index}: $!\n";
4271 }
Eric Wongd81bf822007-01-10 01:22:38 -08004272 my $pool = SVN::Pool->new;
Eric Wong8b8fc062007-01-22 11:44:57 -08004273 $editor->set_path_strip($path);
Eric Wong2b27f6c2007-01-28 04:59:05 -08004274 my (@pc) = split m#/#, $path;
4275 my $reporter = $self->do_update($rev_b, (@pc ? shift @pc : ''),
Eric Wong8a603772007-01-31 02:45:50 -08004276 1, $editor, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08004277 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
Eric Wong2b27f6c2007-01-28 04:59:05 -08004278
4279 # Since we can't rely on svn_ra_reparent being available, we'll
4280 # just have to do some magic with set_path to make it so
4281 # we only want a partial path.
4282 my $sp = '';
4283 my $final = join('/', @pc);
4284 while (@pc) {
4285 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
4286 $sp .= '/' if length $sp;
4287 $sp .= shift @pc;
4288 }
4289 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
4290
Eric Wong2b27f6c2007-01-28 04:59:05 -08004291 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
4292
Eric Wongd81bf822007-01-10 01:22:38 -08004293 $reporter->finish_report($pool);
4294 $pool->clear;
4295 $editor->{git_commit_ok};
4296}
4297
Eric Wong2b27f6c2007-01-28 04:59:05 -08004298# this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
4299# svn_ra_reparent didn't work before 1.4)
Eric Wongd81bf822007-01-10 01:22:38 -08004300sub gs_do_switch {
Eric Wong8a603772007-01-31 02:45:50 -08004301 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
4302 my $path = $gs->{path};
Eric Wongd81bf822007-01-10 01:22:38 -08004303 my $pool = SVN::Pool->new;
Eric Wong2b27f6c2007-01-28 04:59:05 -08004304
4305 my $full_url = $self->{url};
4306 my $old_url = $full_url;
Eric Wongcfbe7ab2007-11-11 23:37:42 -08004307 $full_url .= '/' . escape_uri_only($path) if length $path;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004308 my ($ra, $reparented);
Alec Berrymanad0a82b2008-09-14 17:14:16 -04004309
4310 if ($old_url =~ m#^svn(\+ssh)?://#) {
4311 $_[0] = undef;
4312 $self = undef;
4313 $RA = undef;
4314 $ra = Git::SVN::Ra->new($full_url);
4315 $ra_invalid = 1;
4316 } elsif ($old_url ne $full_url) {
4317 SVN::_Ra::svn_ra_reparent($self->{session}, $full_url, $pool);
4318 $self->{url} = $full_url;
4319 $reparented = 1;
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004320 }
Alec Berrymanad0a82b2008-09-14 17:14:16 -04004321
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004322 $ra ||= $self;
Eric Wongf4392df2008-09-06 20:18:18 -07004323 $url_b = escape_url($url_b);
Eric Wong8a603772007-01-31 02:45:50 -08004324 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08004325 my @lock = $SVN::Core::VERSION ge '1.2.0' ? (undef) : ();
Eric Wong8b8fc062007-01-22 11:44:57 -08004326 $reporter->set_path('', $rev_a, 0, @lock, $pool);
Eric Wongd81bf822007-01-10 01:22:38 -08004327 $reporter->finish_report($pool);
Eric Wong2b27f6c2007-01-28 04:59:05 -08004328
Eric Wong5d3b7cd2007-01-29 19:16:01 -08004329 if ($reparented) {
4330 SVN::_Ra::svn_ra_reparent($self->{session}, $old_url, $pool);
4331 $self->{url} = $old_url;
4332 }
Eric Wong2b27f6c2007-01-28 04:59:05 -08004333
Eric Wongd81bf822007-01-10 01:22:38 -08004334 $pool->clear;
4335 $editor->{git_commit_ok};
4336}
4337
Eric Wongb54a9012007-06-13 02:37:03 -07004338sub longest_common_path {
4339 my ($gsv, $globs) = @_;
Eric Wongd2ae1432007-02-07 11:50:16 -08004340 my %common;
Eric Wonge5181922007-02-08 12:53:57 -08004341 my $common_max = scalar @$gsv;
4342
4343 foreach my $gs (@$gsv) {
Eric Wongd2ae1432007-02-07 11:50:16 -08004344 my @tmp = split m#/#, $gs->{path};
4345 my $p = '';
4346 foreach (@tmp) {
4347 $p .= length($p) ? "/$_" : $_;
4348 $common{$p} ||= 0;
4349 $common{$p}++;
4350 }
4351 }
Eric Wonge5181922007-02-08 12:53:57 -08004352 $globs ||= [];
4353 $common_max += scalar @$globs;
4354 foreach my $glob (@$globs) {
4355 my @tmp = split m#/#, $glob->{path}->{left};
4356 my $p = '';
4357 foreach (@tmp) {
4358 $p .= length($p) ? "/$_" : $_;
4359 $common{$p} ||= 0;
4360 $common{$p}++;
4361 }
4362 }
4363
Eric Wongd2ae1432007-02-07 11:50:16 -08004364 my $longest_path = '';
4365 foreach (sort {length $b <=> length $a} keys %common) {
Eric Wonge5181922007-02-08 12:53:57 -08004366 if ($common{$_} == $common_max) {
Eric Wongd2ae1432007-02-07 11:50:16 -08004367 $longest_path = $_;
4368 last;
4369 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08004370 }
Eric Wongb54a9012007-06-13 02:37:03 -07004371 $longest_path;
4372}
4373
4374sub gs_fetch_loop_common {
4375 my ($self, $base, $head, $gsv, $globs) = @_;
4376 return if ($base > $head);
4377 my $inc = $_log_window_size;
4378 my ($min, $max) = ($base, $head < $base + $inc ? $head : $base + $inc);
4379 my $longest_path = longest_common_path($gsv, $globs);
Eric Wonga51cdb02007-09-07 04:00:40 -07004380 my $ra_url = $self->{url};
Eric Wong0af9c9f2007-01-27 22:28:56 -08004381 while (1) {
Eric Wongd4eff2b2007-01-30 14:04:22 -08004382 my %revs;
Eric Wongd2ae1432007-02-07 11:50:16 -08004383 my $err;
Eric Wongf7c3fc42007-01-29 18:34:55 -08004384 my $err_handler = $SVN::Error::handler;
Eric Wongd2ae1432007-02-07 11:50:16 -08004385 $SVN::Error::handler = sub {
4386 ($err) = @_;
4387 skip_unknown_revs($err);
4388 };
4389 sub _cb {
4390 my ($paths, $r, $author, $date, $log) = @_;
4391 [ dup_changed_paths($paths),
4392 { author => $author, date => $date, log => $log } ];
4393 }
4394 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
4395 sub { $revs{$_[1]} = _cb(@_) });
Deskin Miller99366562009-02-08 19:33:18 -05004396 if ($err) {
4397 print "Checked through r$max\r";
4398 }
Eric Wongd2ae1432007-02-07 11:50:16 -08004399 if ($err && $max >= $head) {
4400 print STDERR "Path '$longest_path' ",
4401 "was probably deleted:\n",
4402 $err->expanded_message,
4403 "\nWill attempt to follow ",
4404 "revisions r$min .. r$max ",
4405 "committed before the deletion\n";
4406 my $hi = $max;
4407 while (--$hi >= $min) {
4408 my $ok;
4409 $self->get_log([$longest_path], $min, $hi,
4410 0, 1, 1, sub {
4411 $ok ||= $_[1];
4412 $revs{$_[1]} = _cb(@_) });
4413 if ($ok) {
4414 print STDERR "r$min .. r$ok OK\n";
4415 last;
4416 }
4417 }
4418 }
Eric Wongd4eff2b2007-01-30 14:04:22 -08004419 $SVN::Error::handler = $err_handler;
Eric Wongfbcc1732007-02-06 18:35:30 -08004420
Eric Wonge5181922007-02-08 12:53:57 -08004421 my %exists = map { $_->{path} => $_ } @$gsv;
Eric Wongd4eff2b2007-01-30 14:04:22 -08004422 foreach my $r (sort {$a <=> $b} keys %revs) {
Eric Wongfbcc1732007-02-06 18:35:30 -08004423 my ($paths, $logged) = @{$revs{$r}};
Eric Wonge5181922007-02-08 12:53:57 -08004424
4425 foreach my $gs ($self->match_globs(\%exists, $paths,
4426 $globs, $r)) {
Eric Wong060610c2007-12-08 23:27:41 -08004427 if ($gs->rev_map_max >= $r) {
Eric Wongfbcc1732007-02-06 18:35:30 -08004428 next;
4429 }
4430 next unless $gs->match_paths($paths, $r);
4431 $gs->{logged_rev_props} = $logged;
Eric Wonge8d120b2007-02-14 16:29:52 -08004432 if (my $last_commit = $gs->last_commit) {
4433 $gs->assert_index_clean($last_commit);
4434 }
Eric Wongfbcc1732007-02-06 18:35:30 -08004435 my $log_entry = $gs->do_fetch($paths, $r);
4436 if ($log_entry) {
Eric Wong0af9c9f2007-01-27 22:28:56 -08004437 $gs->do_git_commit($log_entry);
4438 }
Eric Wong321b1842008-01-02 10:10:03 -08004439 $INDEX_FILES{$gs->{index}} = 1;
Eric Wong0af9c9f2007-01-27 22:28:56 -08004440 }
Eric Wonge5181922007-02-08 12:53:57 -08004441 foreach my $g (@$globs) {
Eric Wong93f26892007-02-11 01:20:26 -08004442 my $k = "svn-remote.$g->{remote}." .
4443 "$g->{t}-maxRev";
4444 Git::SVN::tmp_config($k, $r);
Eric Wonge5181922007-02-08 12:53:57 -08004445 }
Eric Wonga51cdb02007-09-07 04:00:40 -07004446 if ($ra_invalid) {
4447 $_[0] = undef;
4448 $self = undef;
4449 $RA = undef;
4450 $self = Git::SVN::Ra->new($ra_url);
4451 $ra_invalid = undef;
4452 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08004453 }
Eric Wong9c93fee2007-01-31 17:22:31 -08004454 # pre-fill the .rev_db since it'll eventually get filled in
4455 # with '0' x40 if something new gets committed
Eric Wonge5181922007-02-08 12:53:57 -08004456 foreach my $gs (@$gsv) {
Eric Wong66ab84b2007-12-08 23:27:42 -08004457 next if $gs->rev_map_max >= $max;
4458 next if defined $gs->rev_map_get($max);
4459 $gs->rev_map_set($max, 0 x40);
Eric Wong9c93fee2007-01-31 17:22:31 -08004460 }
Eric Wongc3560e52007-02-12 16:03:32 -08004461 foreach my $g (@$globs) {
4462 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
4463 Git::SVN::tmp_config($k, $max);
4464 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08004465 last if $max >= $head;
4466 $min = $max + 1;
4467 $max += $inc;
4468 $max = $head if ($max > $head);
4469 }
Karl Hasselström94bc9142008-02-03 17:56:18 +01004470 Git::SVN::gc();
Eric Wong0af9c9f2007-01-27 22:28:56 -08004471}
4472
Marcus Griep570d35c2008-08-08 01:41:57 -07004473sub get_dir_globbed {
4474 my ($self, $left, $depth, $r) = @_;
4475
4476 my @x = eval { $self->get_dir($left, $r) };
4477 return unless scalar @x == 3;
4478 my $dirents = $x[0];
4479 my @finalents;
4480 foreach my $de (keys %$dirents) {
4481 next if $dirents->{$de}->{kind} != $SVN::Node::dir;
4482 if ($depth > 1) {
4483 my @args = ("$left/$de", $depth - 1, $r);
4484 foreach my $dir ($self->get_dir_globbed(@args)) {
4485 push @finalents, "$de/$dir";
4486 }
4487 } else {
4488 push @finalents, $de;
4489 }
4490 }
4491 @finalents;
4492}
4493
Eric Wonge5181922007-02-08 12:53:57 -08004494sub match_globs {
4495 my ($self, $exists, $paths, $globs, $r) = @_;
Eric Wong74a81222007-02-10 13:28:50 -08004496
4497 sub get_dir_check {
4498 my ($self, $exists, $g, $r) = @_;
Marcus Griep570d35c2008-08-08 01:41:57 -07004499
4500 my @dirs = $self->get_dir_globbed($g->{path}->{left},
4501 $g->{path}->{depth},
4502 $r);
4503
4504 foreach my $de (@dirs) {
Eric Wong74a81222007-02-10 13:28:50 -08004505 my $p = $g->{path}->full_path($de);
4506 next if $exists->{$p};
4507 next if (length $g->{path}->{right} &&
4508 ($self->check_path($p, $r) !=
4509 $SVN::Node::dir));
4510 $exists->{$p} = Git::SVN->init($self->{url}, $p, undef,
4511 $g->{ref}->full_path($de), 1);
4512 }
4513 }
Eric Wonge5181922007-02-08 12:53:57 -08004514 foreach my $g (@$globs) {
Eric Wong74a81222007-02-10 13:28:50 -08004515 if (my $path = $paths->{"/$g->{path}->{left}"}) {
4516 if ($path->{action} =~ /^[AR]$/) {
4517 get_dir_check($self, $exists, $g, $r);
4518 }
4519 }
Eric Wonge5181922007-02-08 12:53:57 -08004520 foreach (keys %$paths) {
Eric Wong28710f72007-02-14 13:32:21 -08004521 if (/$g->{path}->{left_regex}/ &&
4522 !/$g->{path}->{regex}/) {
Eric Wong74a81222007-02-10 13:28:50 -08004523 next if $paths->{$_}->{action} !~ /^[AR]$/;
4524 get_dir_check($self, $exists, $g, $r);
4525 }
Eric Wonge5181922007-02-08 12:53:57 -08004526 next unless /$g->{path}->{regex}/;
4527 my $p = $1;
4528 my $pathname = $g->{path}->full_path($p);
4529 next if $exists->{$pathname};
Eric Wong0c1ec5a2007-04-18 00:17:33 -07004530 next if ($self->check_path($pathname, $r) !=
4531 $SVN::Node::dir);
Eric Wonge5181922007-02-08 12:53:57 -08004532 $exists->{$pathname} = Git::SVN->init(
4533 $self->{url}, $pathname, undef,
4534 $g->{ref}->full_path($p), 1);
4535 }
4536 my $c = '';
4537 foreach (split m#/#, $g->{path}->{left}) {
4538 $c .= "/$_";
4539 next unless ($paths->{$c} &&
Eric Wong74a81222007-02-10 13:28:50 -08004540 ($paths->{$c}->{action} =~ /^[AR]$/));
4541 get_dir_check($self, $exists, $g, $r);
Eric Wonge5181922007-02-08 12:53:57 -08004542 }
4543 }
4544 values %$exists;
4545}
4546
Eric Wonge6434f82007-01-23 16:29:23 -08004547sub minimize_url {
4548 my ($self) = @_;
4549 return $self->{url} if ($self->{url} eq $self->{repos_root});
4550 my $url = $self->{repos_root};
4551 my @components = split(m!/!, $self->{svn_path});
4552 my $c = '';
4553 do {
4554 $url .= "/$c" if length $c;
4555 eval { (ref $self)->new($url)->get_latest_revnum };
4556 } while ($@ && ($c = shift @components));
4557 $url;
4558}
4559
Eric Wongd81bf822007-01-10 01:22:38 -08004560sub can_do_switch {
4561 my $self = shift;
4562 unless (defined $can_do_switch) {
4563 my $pool = SVN::Pool->new;
4564 my $rep = eval {
4565 $self->do_switch(1, '', 0, $self->{url},
4566 SVN::Delta::Editor->new, $pool);
4567 };
4568 if ($@) {
4569 $can_do_switch = 0;
4570 } else {
4571 $rep->abort_report($pool);
4572 $can_do_switch = 1;
4573 }
4574 $pool->clear;
4575 }
4576 $can_do_switch;
4577}
4578
Eric Wong0af9c9f2007-01-27 22:28:56 -08004579sub skip_unknown_revs {
4580 my ($err) = @_;
4581 my $errno = $err->apr_err();
4582 # Maybe the branch we're tracking didn't
4583 # exist when the repo started, so it's
4584 # not an error if it doesn't, just continue
4585 #
4586 # Wonderfully consistent library, eh?
4587 # 160013 - svn:// and file://
4588 # 175002 - http(s)://
4589 # 175007 - http(s):// (this repo required authorization, too...)
4590 # More codes may be discovered later...
4591 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
Eric Wonga6a15a92007-03-30 17:54:48 -07004592 my $err_key = $err->expanded_message;
4593 # revision numbers change every time, filter them out
4594 $err_key =~ s/\d+/\0/g;
4595 $err_key = "$errno\0$err_key";
4596 unless ($ignored_err{$err_key}) {
4597 warn "W: Ignoring error from SVN, path probably ",
4598 "does not exist: ($errno): ",
4599 $err->expanded_message,"\n";
Eric Wongeee8a172008-01-07 02:40:40 -08004600 warn "W: Do not be alarmed at the above message ",
4601 "git-svn is just searching aggressively for ",
4602 "old history.\n",
4603 "This may take a while on large repositories\n";
Eric Wonga6a15a92007-03-30 17:54:48 -07004604 $ignored_err{$err_key} = 1;
4605 }
Eric Wong0af9c9f2007-01-27 22:28:56 -08004606 return;
4607 }
4608 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
4609}
4610
4611# svn_log_changed_path_t objects passed to get_log are likely to be
4612# overwritten even if only the refs are copied to an external variable,
4613# so we should dup the structures in their entirety. Using an externally
4614# passed pool (instead of our temporary and quickly cleared pool in
4615# Git::SVN::Ra) does not help matters at all...
4616sub dup_changed_paths {
4617 my ($paths) = @_;
4618 return undef unless $paths;
4619 my %ret;
4620 foreach my $p (keys %$paths) {
4621 my $i = $paths->{$p};
4622 my %s = map { $_ => $i->$_ }
4623 qw/copyfrom_path copyfrom_rev action/;
4624 $ret{$p} = \%s;
4625 }
4626 \%ret;
4627}
4628
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004629package Git::SVN::Log;
4630use strict;
4631use warnings;
4632use POSIX qw/strftime/;
Ben Waltone8717842009-02-24 14:44:49 -05004633use Time::Local;
David D Kilzer111947e2007-11-11 22:56:52 -08004634use constant commit_log_separator => ('-' x 72) . "\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004635use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline
4636 %rusers $show_commit $incremental/;
4637my $l_fmt;
4638
4639sub cmt_showable {
4640 my ($c) = @_;
4641 return 1 if defined $c->{r};
Eric Wongc16d0872007-04-08 00:59:22 -07004642
4643 # big commit message got truncated by the 16k pretty buffer in rev-list
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004644 if ($c->{l} && $c->{l}->[-1] eq "...\n" &&
4645 $c->{a_raw} =~ /\@([a-f\d\-]+)>$/) {
Eric Wongc16d0872007-04-08 00:59:22 -07004646 @{$c->{l}} = ();
Eric Wong44320b92007-01-13 22:35:53 -08004647 my @log = command(qw/cat-file commit/, $c->{c});
Eric Wongc16d0872007-04-08 00:59:22 -07004648
4649 # shift off the headers
4650 shift @log while ($log[0] ne '');
Eric Wong44320b92007-01-13 22:35:53 -08004651 shift @log;
Eric Wongc16d0872007-04-08 00:59:22 -07004652
4653 # TODO: make $c->{l} not have a trailing newline in the future
4654 @{$c->{l}} = map { "$_\n" } grep !/^git-svn-id: /, @log;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004655
4656 (undef, $c->{r}, undef) = ::extract_metadata(
Eric Wong44320b92007-01-13 22:35:53 -08004657 (grep(/^git-svn-id: /, @log))[-1]);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004658 }
4659 return defined $c->{r};
4660}
4661
4662sub log_use_color {
Jeff Kingcd459e32007-12-11 01:28:42 -05004663 return $color || Git->repository->get_colorbool('color.diff');
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004664}
4665
4666sub git_svn_log_cmd {
Eric Wong3bc718b2007-02-13 17:09:40 -08004667 my ($r_min, $r_max, @args) = @_;
4668 my $head = 'HEAD';
Eric Wong6ed77262007-08-15 09:55:18 -07004669 my (@files, @log_opts);
Eric Wong3bc718b2007-02-13 17:09:40 -08004670 foreach my $x (@args) {
Eric Wong6ed77262007-08-15 09:55:18 -07004671 if ($x eq '--' || @files) {
4672 push @files, $x;
4673 } else {
4674 if (::verify_ref("$x^0")) {
4675 $head = $x;
4676 } else {
4677 push @log_opts, $x;
4678 }
4679 }
Eric Wong3bc718b2007-02-13 17:09:40 -08004680 }
4681
Eric Wong13c823f2007-04-08 00:59:19 -07004682 my ($url, $rev, $uuid, $gs) = ::working_head_info($head);
4683 $gs ||= Git::SVN->_new;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004684 my @cmd = (qw/log --abbrev-commit --pretty=raw --default/,
4685 $gs->refname);
4686 push @cmd, '-r' unless $non_recursive;
4687 push @cmd, qw/--raw --name-status/ if $verbose;
4688 push @cmd, '--color' if log_use_color();
Eric Wong6ed77262007-08-15 09:55:18 -07004689 push @cmd, @log_opts;
4690 if (defined $r_max && $r_max == $r_min) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004691 push @cmd, '--max-count=1';
Eric Wong060610c2007-12-08 23:27:41 -08004692 if (my $c = $gs->rev_map_get($r_max)) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004693 push @cmd, $c;
4694 }
Eric Wong6ed77262007-08-15 09:55:18 -07004695 } elsif (defined $r_max) {
David D Kilzer111947e2007-11-11 22:56:52 -08004696 if ($r_max < $r_min) {
4697 ($r_min, $r_max) = ($r_max, $r_min);
4698 }
4699 my (undef, $c_max) = $gs->find_rev_before($r_max, 1, $r_min);
4700 my (undef, $c_min) = $gs->find_rev_after($r_min, 1, $r_max);
4701 # If there are no commits in the range, both $c_max and $c_min
4702 # will be undefined. If there is at least 1 commit in the
4703 # range, both will be defined.
4704 return () if !defined $c_min || !defined $c_max;
4705 if ($c_min eq $c_max) {
4706 push @cmd, '--max-count=1', $c_min;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004707 } else {
David D Kilzer111947e2007-11-11 22:56:52 -08004708 push @cmd, '--boundary', "$c_min..$c_max";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004709 }
4710 }
Eric Wong6ed77262007-08-15 09:55:18 -07004711 return (@cmd, @files);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004712}
4713
4714# adapted from pager.c
4715sub config_pager {
4716 $pager ||= $ENV{GIT_PAGER} || $ENV{PAGER};
4717 if (!defined $pager) {
4718 $pager = 'less';
4719 } elsif (length $pager == 0 || $pager eq 'cat') {
4720 $pager = undef;
4721 }
Jeff Kingcd459e32007-12-11 01:28:42 -05004722 $ENV{GIT_PAGER_IN_USE} = defined($pager);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004723}
4724
4725sub run_pager {
Eric Wongb0193042007-09-21 18:48:45 -07004726 return unless -t *STDOUT && defined $pager;
Marcus Griep971e6282008-09-10 11:09:46 -04004727 pipe my ($rfd, $wfd) or return;
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004728 defined(my $pid = fork) or ::fatal "Can't fork: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004729 if (!$pid) {
4730 open STDOUT, '>&', $wfd or
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004731 ::fatal "Can't redirect to stdout: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004732 return;
4733 }
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004734 open STDIN, '<&', $rfd or ::fatal "Can't redirect stdin: $!";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004735 $ENV{LESS} ||= 'FRSX';
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004736 exec $pager or ::fatal "Can't run pager: $! ($pager)";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004737}
4738
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08004739sub format_svn_date {
Ben Waltone8717842009-02-24 14:44:49 -05004740 # some systmes don't handle or mishandle %z, so be creative.
4741 my $t = shift;
4742 my $gm = timelocal(gmtime($t));
4743 my $sign = qw( + + - )[ $t <=> $gm ];
4744 my $gmoff = sprintf("%s%02d%02d", $sign, (gmtime(abs($t - $gm)))[2,1]);
4745 return strftime("%Y-%m-%d %H:%M:%S $gmoff (%a, %d %b %Y)", localtime($t));
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08004746}
4747
4748sub parse_git_date {
4749 my ($t, $tz) = @_;
4750 # Date::Parse isn't in the standard Perl distro :(
4751 if ($tz =~ s/^\+//) {
4752 $t += tz_to_s_offset($tz);
4753 } elsif ($tz =~ s/^\-//) {
4754 $t -= tz_to_s_offset($tz);
4755 }
4756 return $t;
4757}
4758
4759sub set_local_timezone {
4760 if (defined $TZ) {
4761 $ENV{TZ} = $TZ;
4762 } else {
4763 delete $ENV{TZ};
4764 }
4765}
4766
Eric Wong21819a32007-01-27 14:38:10 -08004767sub tz_to_s_offset {
4768 my ($tz) = @_;
4769 $tz =~ s/(\d\d)$//;
4770 return ($1 * 60) + ($tz * 3600);
4771}
4772
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004773sub get_author_info {
4774 my ($dest, $author, $t, $tz) = @_;
4775 $author =~ s/(?:^\s*|\s*$)//g;
4776 $dest->{a_raw} = $author;
4777 my $au;
Eric Wong1c8443b2007-01-14 02:17:00 -08004778 if ($::_authors) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004779 $au = $rusers{$author} || undef;
4780 }
4781 if (!$au) {
4782 ($au) = ($author =~ /<([^>]+)\@[^>]+>$/);
4783 }
4784 $dest->{t} = $t;
4785 $dest->{tz} = $tz;
4786 $dest->{a} = $au;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08004787 $dest->{t_utc} = parse_git_date($t, $tz);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004788}
4789
4790sub process_commit {
4791 my ($c, $r_min, $r_max, $defer) = @_;
4792 if (defined $r_min && defined $r_max) {
4793 if ($r_min == $c->{r} && $r_min == $r_max) {
4794 show_commit($c);
4795 return 0;
4796 }
4797 return 1 if $r_min == $r_max;
4798 if ($r_min < $r_max) {
4799 # we need to reverse the print order
4800 return 0 if (defined $limit && --$limit < 0);
4801 push @$defer, $c;
4802 return 1;
4803 }
4804 if ($r_min != $r_max) {
4805 return 1 if ($r_min < $c->{r});
4806 return 1 if ($r_max > $c->{r});
4807 }
4808 }
4809 return 0 if (defined $limit && --$limit < 0);
4810 show_commit($c);
4811 return 1;
4812}
4813
4814sub show_commit {
4815 my $c = shift;
4816 if ($oneline) {
4817 my $x = "\n";
4818 if (my $l = $c->{l}) {
4819 while ($l->[0] =~ /^\s*$/) { shift @$l }
4820 $x = $l->[0];
4821 }
4822 $l_fmt ||= 'A' . length($c->{r});
4823 print 'r',pack($l_fmt, $c->{r}),' | ';
4824 print "$c->{c} | " if $show_commit;
4825 print $x;
4826 } else {
4827 show_commit_normal($c);
4828 }
4829}
4830
4831sub show_commit_changed_paths {
4832 my ($c) = @_;
4833 return unless $c->{changed};
4834 print "Changed paths:\n", @{$c->{changed}};
4835}
4836
4837sub show_commit_normal {
4838 my ($c) = @_;
David D Kilzer111947e2007-11-11 22:56:52 -08004839 print commit_log_separator, "r$c->{r} | ";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004840 print "$c->{c} | " if $show_commit;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08004841 print "$c->{a} | ", format_svn_date($c->{t_utc}), ' | ';
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004842 my $nr_line = 0;
4843
4844 if (my $l = $c->{l}) {
4845 while ($l->[$#$l] eq "\n" && $#$l > 0
4846 && $l->[($#$l - 1)] eq "\n") {
4847 pop @$l;
4848 }
4849 $nr_line = scalar @$l;
4850 if (!$nr_line) {
4851 print "1 line\n\n\n";
4852 } else {
4853 if ($nr_line == 1) {
4854 $nr_line = '1 line';
4855 } else {
4856 $nr_line .= ' lines';
4857 }
4858 print $nr_line, "\n";
4859 show_commit_changed_paths($c);
4860 print "\n";
4861 print $_ foreach @$l;
4862 }
4863 } else {
4864 print "1 line\n";
4865 show_commit_changed_paths($c);
4866 print "\n";
4867
4868 }
Eric Wong488a63e2007-02-15 00:40:42 -08004869 foreach my $x (qw/raw stat diff/) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004870 if ($c->{$x}) {
4871 print "\n";
4872 print $_ foreach @{$c->{$x}}
4873 }
4874 }
4875}
4876
4877sub cmd_show_log {
4878 my (@args) = @_;
4879 my ($r_min, $r_max);
4880 my $r_last = -1; # prevent dupes
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08004881 set_local_timezone();
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004882 if (defined $::_revision) {
4883 if ($::_revision =~ /^(\d+):(\d+)$/) {
4884 ($r_min, $r_max) = ($1, $2);
4885 } elsif ($::_revision =~ /^\d+$/) {
4886 $r_min = $r_max = $::_revision;
4887 } else {
4888 ::fatal "-r$::_revision is not supported, use ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02004889 "standard 'git log' arguments instead";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004890 }
4891 }
4892
4893 config_pager();
Eric Wong6ed77262007-08-15 09:55:18 -07004894 @args = git_svn_log_cmd($r_min, $r_max, @args);
David D Kilzer111947e2007-11-11 22:56:52 -08004895 if (!@args) {
4896 print commit_log_separator unless $incremental || $oneline;
4897 return;
4898 }
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004899 my $log = command_output_pipe(@args);
4900 run_pager();
Eric Wong488a63e2007-02-15 00:40:42 -08004901 my (@k, $c, $d, $stat);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004902 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
4903 while (<$log>) {
David D Kilzer60f3ff12007-11-10 22:10:34 -08004904 if (/^${esc_color}commit -?($::sha1_short)/o) {
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004905 my $cmt = $1;
4906 if ($c && cmt_showable($c) && $c->{r} != $r_last) {
4907 $r_last = $c->{r};
4908 process_commit($c, $r_min, $r_max, \@k) or
4909 goto out;
4910 }
4911 $d = undef;
4912 $c = { c => $cmt };
4913 } elsif (/^${esc_color}author (.+) (\d+) ([\-\+]?\d+)$/o) {
4914 get_author_info($c, $1, $2, $3);
4915 } elsif (/^${esc_color}(?:tree|parent|committer) /o) {
4916 # ignore
4917 } elsif (/^${esc_color}:\d{6} \d{6} $::sha1_short/o) {
4918 push @{$c->{raw}}, $_;
4919 } elsif (/^${esc_color}[ACRMDT]\t/) {
4920 # we could add $SVN->{svn_path} here, but that requires
4921 # remote access at the moment (repo_path_split)...
4922 s#^(${esc_color})([ACRMDT])\t#$1 $2 #o;
4923 push @{$c->{changed}}, $_;
4924 } elsif (/^${esc_color}diff /o) {
4925 $d = 1;
4926 push @{$c->{diff}}, $_;
4927 } elsif ($d) {
4928 push @{$c->{diff}}, $_;
Eric Wong488a63e2007-02-15 00:40:42 -08004929 } elsif (/^\ .+\ \|\s*\d+\ $esc_color[\+\-]*
4930 $esc_color*[\+\-]*$esc_color$/x) {
4931 $stat = 1;
4932 push @{$c->{stat}}, $_;
4933 } elsif ($stat && /^ \d+ files changed, \d+ insertions/) {
4934 push @{$c->{stat}}, $_;
4935 $stat = undef;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004936 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
4937 ($c->{url}, $c->{r}, undef) = ::extract_metadata($1);
4938 } elsif (s/^${esc_color} //o) {
4939 push @{$c->{l}}, $_;
4940 }
4941 }
4942 if ($c && defined $c->{r} && $c->{r} != $r_last) {
4943 $r_last = $c->{r};
4944 process_commit($c, $r_min, $r_max, \@k);
4945 }
4946 if (@k) {
David D Kilzer111947e2007-11-11 22:56:52 -08004947 ($r_min, $r_max) = ($r_max, $r_min);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004948 process_commit($_, $r_min, $r_max) foreach reverse @k;
4949 }
4950out:
Eric Wongc843c462007-01-12 03:07:31 -08004951 close $log;
David D Kilzer111947e2007-11-11 22:56:52 -08004952 print commit_log_separator unless $incremental || $oneline;
Eric Wongf8c9d1d2007-01-12 02:35:20 -08004953}
4954
Tim Stoakes6fb53752008-02-10 15:21:08 +10304955sub cmd_blame {
Steven Grimm4be40382008-05-10 22:11:18 -07004956 my $path = pop;
Tim Stoakes6fb53752008-02-10 15:21:08 +10304957
4958 config_pager();
4959 run_pager();
4960
Steven Grimm4be40382008-05-10 22:11:18 -07004961 my ($fh, $ctx, $rev);
4962
4963 if ($_git_format) {
4964 ($fh, $ctx) = command_output_pipe('blame', @_, $path);
4965 while (my $line = <$fh>) {
4966 if ($line =~ /^\^?([[:xdigit:]]+)\s/) {
4967 # Uncommitted edits show up as a rev ID of
4968 # all zeros, which we can't look up with
4969 # cmt_metadata
4970 if ($1 !~ /^0+$/) {
4971 (undef, $rev, undef) =
4972 ::cmt_metadata($1);
4973 $rev = '0' if (!$rev);
4974 } else {
4975 $rev = '0';
4976 }
4977 $rev = sprintf('%-10s', $rev);
4978 $line =~ s/^\^?[[:xdigit:]]+(\s)/$rev$1/;
4979 }
4980 print $line;
Tim Stoakes6fb53752008-02-10 15:21:08 +10304981 }
Steven Grimm4be40382008-05-10 22:11:18 -07004982 } else {
4983 ($fh, $ctx) = command_output_pipe('blame', '-p', @_, 'HEAD',
4984 '--', $path);
4985 my ($sha1);
4986 my %authors;
4987 while (my $line = <$fh>) {
4988 if ($line =~ /^([[:xdigit:]]{40})\s\d+\s\d+/) {
4989 $sha1 = $1;
4990 (undef, $rev, undef) = ::cmt_metadata($1);
4991 $rev = '0' if (!$rev);
4992 }
4993 elsif ($line =~ /^author (.*)/) {
4994 $authors{$rev} = $1;
4995 $authors{$rev} =~ s/\s/_/g;
4996 }
4997 elsif ($line =~ /^\t(.*)$/) {
4998 printf("%6s %10s %s\n", $rev, $authors{$rev}, $1);
4999 }
5000 }
Tim Stoakes6fb53752008-02-10 15:21:08 +10305001 }
5002 command_close_pipe($fh, $ctx);
5003}
5004
Eric Wong706587f2007-01-18 17:50:01 -08005005package Git::SVN::Migration;
5006# these version numbers do NOT correspond to actual version numbers
5007# of git nor git-svn. They are just relative.
5008#
5009# v0 layout: .git/$id/info/url, refs/heads/$id-HEAD
5010#
5011# v1 layout: .git/$id/info/url, refs/remotes/$id
5012#
5013# v2 layout: .git/svn/$id/info/url, refs/remotes/$id
5014#
5015# v3 layout: .git/svn/$id, refs/remotes/$id
5016# - info/url may remain for backwards compatibility
5017# - this is what we migrate up to this layout automatically,
5018# - this will be used by git svn init on single branches
Eric Wong26a62d52007-02-12 13:25:25 -08005019# v3.1 layout (auto migrated):
5020# - .rev_db => .rev_db.$UUID, .rev_db will remain as a symlink
5021# for backwards compatibility
Eric Wong706587f2007-01-18 17:50:01 -08005022#
5023# v4 layout: .git/svn/$repo_id/$id, refs/remotes/$repo_id/$id
5024# - this is only created for newly multi-init-ed
5025# repositories. Similar in spirit to the
5026# --use-separate-remotes option in git-clone (now default)
5027# - we do not automatically migrate to this (following
5028# the example set by core git)
Eric Wong060610c2007-12-08 23:27:41 -08005029#
5030# v5 layout: .rev_db.$UUID => .rev_map.$UUID
5031# - newer, more-efficient format that uses 24-bytes per record
5032# with no filler space.
5033# - use xxd -c24 < .rev_map.$UUID to view and debug
5034# - This is a one-way migration, repositories updated to the
5035# new format will not be able to use old git-svn without
5036# rebuilding the .rev_db. Rebuilding the rev_db is not
5037# possible if noMetadata or useSvmProps are set; but should
5038# be no problem for users that use the (sensible) defaults.
Eric Wong706587f2007-01-18 17:50:01 -08005039use strict;
5040use warnings;
5041use Carp qw/croak/;
5042use File::Path qw/mkpath/;
Eric Wong47e39c52007-01-21 04:27:09 -08005043use File::Basename qw/dirname basename/;
5044use vars qw/$_minimize/;
Eric Wong706587f2007-01-18 17:50:01 -08005045
5046sub migrate_from_v0 {
5047 my $git_dir = $ENV{GIT_DIR};
5048 return undef unless -d $git_dir;
5049 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5050 my $migrated = 0;
5051 while (<$fh>) {
5052 chomp;
5053 my ($id, $orig_ref) = ($_, $_);
5054 next unless $id =~ s#^refs/heads/(.+)-HEAD$#$1#;
5055 next unless -f "$git_dir/$id/info/url";
5056 my $new_ref = "refs/remotes/$id";
5057 if (::verify_ref("$new_ref^0")) {
5058 print STDERR "W: $orig_ref is probably an old ",
5059 "branch used by an ancient version of ",
5060 "git-svn.\n",
5061 "However, $new_ref also exists.\n",
5062 "We will not be able ",
5063 "to use this branch until this ",
5064 "ambiguity is resolved.\n";
5065 next;
5066 }
5067 print STDERR "Migrating from v0 layout...\n" if !$migrated;
5068 print STDERR "Renaming ref: $orig_ref => $new_ref\n";
5069 command_noisy('update-ref', $new_ref, $orig_ref);
5070 command_noisy('update-ref', '-d', $orig_ref, $orig_ref);
5071 $migrated++;
5072 }
5073 command_close_pipe($fh, $ctx);
5074 print STDERR "Done migrating from v0 layout...\n" if $migrated;
5075 $migrated;
5076}
5077
5078sub migrate_from_v1 {
5079 my $git_dir = $ENV{GIT_DIR};
5080 my $migrated = 0;
5081 return $migrated unless -d $git_dir;
5082 my $svn_dir = "$git_dir/svn";
5083
5084 # just in case somebody used 'svn' as their $id at some point...
5085 return $migrated if -d $svn_dir && ! -f "$svn_dir/info/url";
5086
5087 print STDERR "Migrating from a git-svn v1 layout...\n";
5088 mkpath([$svn_dir]);
5089 print STDERR "Data from a previous version of git-svn exists, but\n\t",
5090 "$svn_dir\n\t(required for this version ",
Frederik Schwarzer8f510be2008-07-14 18:30:24 +02005091 "($::VERSION) of git-svn) does not exist.\n";
Eric Wong706587f2007-01-18 17:50:01 -08005092 my ($fh, $ctx) = command_output_pipe(qw/rev-parse --symbolic --all/);
5093 while (<$fh>) {
5094 my $x = $_;
5095 next unless $x =~ s#^refs/remotes/##;
5096 chomp $x;
5097 next unless -f "$git_dir/$x/info/url";
5098 my $u = eval { ::file_to_s("$git_dir/$x/info/url") };
5099 next unless $u;
5100 my $dn = dirname("$git_dir/svn/$x");
5101 mkpath([$dn]) unless -d $dn;
5102 if ($x eq 'svn') { # they used 'svn' as GIT_SVN_ID:
5103 mkpath(["$git_dir/svn/svn"]);
5104 print STDERR " - $git_dir/$x/info => ",
5105 "$git_dir/svn/$x/info\n";
5106 rename "$git_dir/$x/info", "$git_dir/svn/$x/info" or
5107 croak "$!: $x";
5108 # don't worry too much about these, they probably
5109 # don't exist with repos this old (save for index,
5110 # and we can easily regenerate that)
5111 foreach my $f (qw/unhandled.log index .rev_db/) {
5112 rename "$git_dir/$x/$f", "$git_dir/svn/$x/$f";
5113 }
5114 } else {
5115 print STDERR " - $git_dir/$x => $git_dir/svn/$x\n";
5116 rename "$git_dir/$x", "$git_dir/svn/$x" or
5117 croak "$!: $x";
5118 }
5119 $migrated++;
5120 }
5121 command_close_pipe($fh, $ctx);
5122 print STDERR "Done migrating from a git-svn v1 layout\n";
5123 $migrated;
5124}
5125
5126sub read_old_urls {
5127 my ($l_map, $pfx, $path) = @_;
5128 my @dir;
5129 foreach (<$path/*>) {
5130 if (-r "$_/info/url") {
5131 $pfx .= '/' if $pfx && $pfx !~ m!/$!;
5132 my $ref_id = $pfx . basename $_;
5133 my $url = ::file_to_s("$_/info/url");
5134 $l_map->{$ref_id} = $url;
5135 } elsif (-d $_) {
5136 push @dir, $_;
5137 }
5138 }
5139 foreach (@dir) {
5140 my $x = $_;
5141 $x =~ s!^\Q$ENV{GIT_DIR}\E/svn/!!o;
5142 read_old_urls($l_map, $x, $_);
5143 }
5144}
5145
5146sub migrate_from_v2 {
5147 my @cfg = command(qw/config -l/);
5148 return if grep /^svn-remote\..+\.url=/, @cfg;
5149 my %l_map;
5150 read_old_urls(\%l_map, '', "$ENV{GIT_DIR}/svn");
5151 my $migrated = 0;
5152
5153 foreach my $ref_id (sort keys %l_map) {
Eric Wong471bc002007-02-01 04:06:27 -08005154 eval { Git::SVN->init($l_map{$ref_id}, '', undef, $ref_id) };
5155 if ($@) {
5156 Git::SVN->init($l_map{$ref_id}, '', $ref_id, $ref_id);
5157 }
Eric Wong706587f2007-01-18 17:50:01 -08005158 $migrated++;
5159 }
5160 $migrated;
5161}
5162
Eric Wong47e39c52007-01-21 04:27:09 -08005163sub minimize_connections {
5164 my $r = Git::SVN::read_all_remotes();
5165 my $new_urls = {};
5166 my $root_repos = {};
5167 foreach my $repo_id (keys %$r) {
5168 my $url = $r->{$repo_id}->{url} or next;
5169 my $fetch = $r->{$repo_id}->{fetch} or next;
5170 my $ra = Git::SVN::Ra->new($url);
5171
5172 # skip existing cases where we already connect to the root
5173 if (($ra->{url} eq $ra->{repos_root}) ||
Eric Wong7829f202008-06-28 20:40:32 -07005174 ($ra->{repos_root} eq $repo_id)) {
Eric Wong47e39c52007-01-21 04:27:09 -08005175 $root_repos->{$ra->{url}} = $repo_id;
5176 next;
5177 }
5178
5179 my $root_ra = Git::SVN::Ra->new($ra->{repos_root});
5180 my $root_path = $ra->{url};
Eric Wong4e9f6cc2007-02-09 12:17:57 -08005181 $root_path =~ s#^\Q$ra->{repos_root}\E(/|$)##;
Eric Wong47e39c52007-01-21 04:27:09 -08005182 foreach my $path (keys %$fetch) {
5183 my $ref_id = $fetch->{$path};
5184 my $gs = Git::SVN->new($ref_id, $repo_id, $path);
5185
5186 # make sure we can read when connecting to
5187 # a higher level of a repository
5188 my ($last_rev, undef) = $gs->last_rev_commit;
5189 if (!defined $last_rev) {
5190 $last_rev = eval {
5191 $root_ra->get_latest_revnum;
5192 };
5193 next if $@;
5194 }
5195 my $new = $root_path;
5196 $new .= length $path ? "/$path" : '';
5197 eval {
5198 $root_ra->get_log([$new], $last_rev, $last_rev,
5199 0, 0, 1, sub { });
5200 };
5201 next if $@;
5202 $new_urls->{$ra->{repos_root}}->{$new} =
5203 { ref_id => $ref_id,
5204 old_repo_id => $repo_id,
5205 old_path => $path };
5206 }
5207 }
5208
5209 my @emptied;
5210 foreach my $url (keys %$new_urls) {
5211 # see if we can re-use an existing [svn-remote "repo_id"]
5212 # instead of creating a(n ugly) new section:
Eric Wong7829f202008-06-28 20:40:32 -07005213 my $repo_id = $root_repos->{$url} || $url;
Eric Wong47e39c52007-01-21 04:27:09 -08005214
5215 my $fetch = $new_urls->{$url};
5216 foreach my $path (keys %$fetch) {
5217 my $x = $fetch->{$path};
5218 Git::SVN->init($url, $path, $repo_id, $x->{ref_id});
5219 my $pfx = "svn-remote.$x->{old_repo_id}";
5220
5221 my $old_fetch = quotemeta("$x->{old_path}:".
5222 "refs/remotes/$x->{ref_id}");
Eric Wong8b8fc062007-01-22 11:44:57 -08005223 command_noisy(qw/config --unset/,
Eric Wong47e39c52007-01-21 04:27:09 -08005224 "$pfx.fetch", '^'. $old_fetch . '$');
5225 delete $r->{$x->{old_repo_id}}->
5226 {fetch}->{$x->{old_path}};
5227 if (!keys %{$r->{$x->{old_repo_id}}->{fetch}}) {
Eric Wong8b8fc062007-01-22 11:44:57 -08005228 command_noisy(qw/config --unset/,
Eric Wong47e39c52007-01-21 04:27:09 -08005229 "$pfx.url");
5230 push @emptied, $x->{old_repo_id}
5231 }
5232 }
5233 }
5234 if (@emptied) {
Johannes Schindelin8befc502008-12-14 23:10:52 +01005235 my $file = $ENV{GIT_CONFIG} || "$ENV{GIT_DIR}/config";
Eric Wong47e39c52007-01-21 04:27:09 -08005236 print STDERR <<EOF;
5237The following [svn-remote] sections in your config file ($file) are empty
5238and can be safely removed:
5239EOF
5240 print STDERR "[svn-remote \"$_\"]\n" foreach @emptied;
5241 }
5242}
5243
Eric Wong706587f2007-01-18 17:50:01 -08005244sub migration_check {
5245 migrate_from_v0();
5246 migrate_from_v1();
5247 migrate_from_v2();
Eric Wong47e39c52007-01-21 04:27:09 -08005248 minimize_connections() if $_minimize;
Eric Wong706587f2007-01-18 17:50:01 -08005249}
5250
Eric Wongef3cfaa2007-01-24 03:30:57 -08005251package Git::IndexInfo;
5252use strict;
5253use warnings;
5254use Git qw/command_input_pipe command_close_pipe/;
5255
5256sub new {
5257 my ($class) = @_;
5258 my ($gui, $ctx) = command_input_pipe(qw/update-index -z --index-info/);
5259 bless { gui => $gui, ctx => $ctx, nr => 0}, $class;
5260}
5261
5262sub remove {
5263 my ($self, $path) = @_;
5264 if (print { $self->{gui} } '0 ', 0 x 40, "\t", $path, "\0") {
5265 return ++$self->{nr};
5266 }
5267 undef;
5268}
5269
5270sub update {
5271 my ($self, $mode, $hash, $path) = @_;
5272 if (print { $self->{gui} } $mode, ' ', $hash, "\t", $path, "\0") {
5273 return ++$self->{nr};
5274 }
5275 undef;
5276}
5277
5278sub DESTROY {
5279 my ($self) = @_;
5280 command_close_pipe($self->{gui}, $self->{ctx});
5281}
5282
Eric Wong4bb9ed02007-02-03 13:29:17 -08005283package Git::SVN::GlobSpec;
5284use strict;
5285use warnings;
5286
5287sub new {
5288 my ($class, $glob) = @_;
Eric Wong4bb9ed02007-02-03 13:29:17 -08005289 my $re = $glob;
5290 $re =~ s!/+$!!g; # no need for trailing slashes
Marcus Griep570d35c2008-08-08 01:41:57 -07005291 $re =~ m!^([^*]*)(\*(?:/\*)*)([^*]*)$!;
5292 my $temp = $re;
5293 my ($left, $right) = ($1, $3);
5294 $re = $2;
5295 my $depth = $re =~ tr/*/*/;
5296 if ($depth != $temp =~ tr/*/*/) {
5297 die "Only one set of wildcard directories " .
5298 "(e.g. '*' or '*/*/*') is supported: '$glob'\n";
5299 }
5300 if ($depth == 0) {
Eric Wonge5181922007-02-08 12:53:57 -08005301 die "One '*' is needed for glob: '$glob'\n";
Eric Wong4bb9ed02007-02-03 13:29:17 -08005302 }
Marcus Griep570d35c2008-08-08 01:41:57 -07005303 $re =~ s!\*!\[^/\]*!g;
5304 $re = quotemeta($left) . "($re)" . quotemeta($right);
Eric Wong4e9f6cc2007-02-09 12:17:57 -08005305 if (length $left && !($left =~ s!/+$!!g)) {
5306 die "Missing trailing '/' on left side of: '$glob' ($left)\n";
5307 }
5308 if (length $right && !($right =~ s!^/+!!g)) {
5309 die "Missing leading '/' on right side of: '$glob' ($right)\n";
5310 }
Eric Wong74a81222007-02-10 13:28:50 -08005311 my $left_re = qr/^\/\Q$left\E(\/|$)/;
5312 bless { left => $left, right => $right, left_regex => $left_re,
Marcus Griep570d35c2008-08-08 01:41:57 -07005313 regex => qr/$re/, glob => $glob, depth => $depth }, $class;
Eric Wong4bb9ed02007-02-03 13:29:17 -08005314}
5315
5316sub full_path {
5317 my ($self, $path) = @_;
5318 return (length $self->{left} ? "$self->{left}/" : '') .
5319 $path . (length $self->{right} ? "/$self->{right}" : '');
5320}
5321
Eric Wong3397f9d2006-02-16 01:24:16 -08005322__END__
5323
5324Data structures:
5325
Eric Wong4bb9ed02007-02-03 13:29:17 -08005326
5327$remotes = { # returned by read_all_remotes()
5328 'svn' => {
5329 # svn-remote.svn.url=https://svn.musicpd.org
5330 url => 'https://svn.musicpd.org',
5331 # svn-remote.svn.fetch=mpd/trunk:trunk
5332 fetch => {
5333 'mpd/trunk' => 'trunk',
5334 },
5335 # svn-remote.svn.tags=mpd/tags/*:tags/*
5336 tags => {
5337 path => {
5338 left => 'mpd/tags',
5339 right => '',
5340 regex => qr!mpd/tags/([^/]+)$!,
5341 glob => 'tags/*',
5342 },
5343 ref => {
5344 left => 'tags',
5345 right => '',
5346 regex => qr!tags/([^/]+)$!,
5347 glob => 'tags/*',
5348 },
5349 }
5350 }
5351};
5352
Eric Wong44320b92007-01-13 22:35:53 -08005353$log_entry hashref as returned by libsvn_log_entry()
Eric Wong3397f9d2006-02-16 01:24:16 -08005354{
Eric Wong44320b92007-01-13 22:35:53 -08005355 log => 'whitespace-formatted log entry
Eric Wong3397f9d2006-02-16 01:24:16 -08005356', # trailing newline is preserved
5357 revision => '8', # integer
5358 date => '2004-02-24T17:01:44.108345Z', # commit date
5359 author => 'committer name'
5360};
5361
Eric Wong6e8548c2007-01-27 01:32:00 -08005362
5363# this is generated by generate_diff();
Eric Wong3397f9d2006-02-16 01:24:16 -08005364@mods = array of diff-index line hashes, each element represents one line
5365 of diff-index output
5366
5367diff-index line ($m hash)
5368{
5369 mode_a => first column of diff-index output, no leading ':',
5370 mode_b => second column of diff-index output,
5371 sha1_b => sha1sum of the final blob,
Eric Wongac8e0b92006-03-03 01:20:07 -08005372 chg => change type [MCRADT],
Eric Wong3397f9d2006-02-16 01:24:16 -08005373 file_a => original file name of a file (iff chg is 'C' or 'R')
5374 file_b => new/current file name of a file (any chg)
5375}
5376;
Eric Wonga5e0ced2006-06-12 15:23:48 -07005377
Eric Wonga00439a2006-06-27 19:39:13 -07005378# retval of read_url_paths{,_all}();
5379$l_map = {
5380 # repository root url
5381 'https://svn.musicpd.org' => {
5382 # repository path # GIT_SVN_ID
5383 'mpd/trunk' => 'trunk',
5384 'mpd/tags/0.11.5' => 'tags/0.11.5',
5385 },
5386}
5387
Eric Wonga5e0ced2006-06-12 15:23:48 -07005388Notes:
5389 I don't trust the each() function on unless I created %hash myself
5390 because the internal iterator may not have started at base.