2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
6 use vars qw
/ $AUTHOR $VERSION
7 $SVN_URL $SVN_INFO $SVN_WC $SVN_UUID
8 $GIT_SVN_INDEX $GIT_SVN
9 $GIT_DIR $REV_DIR $GIT_SVN_DIR/;
10 $AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
11 $VERSION = '1.1.0-pre';
14 $GIT_DIR = abs_path
($ENV{GIT_DIR
} || '.git');
15 $ENV{GIT_DIR
} = $GIT_DIR;
17 my $LC_ALL = $ENV{LC_ALL
};
18 # make sure the svn binary gives consistent output between locales and TZs:
22 # If SVN:: library support is added, please make the dependencies
23 # optional and preserve the capability to use the command-line client.
24 # use eval { require SVN::... } to make it lazy load
25 # We don't use any modules not in the standard Perl distribution:
28 use File
::Basename qw
/dirname basename/;
29 use File
::Path qw
/mkpath/;
30 use Getopt
::Long qw
/:config gnu_getopt no_ignore_case auto_abbrev/;
32 use POSIX qw
/strftime/;
33 my $sha1 = qr/[a-f\d]{40}/;
34 my $sha1_short = qr/[a-f\d]{4,40}/;
35 my ($_revision,$_stdin,$_no_ignore_ext,$_no_stop_copy,$_help,$_rmdir,$_edit,
36 $_find_copies_harder, $_l, $_cp_similarity,
37 $_repack, $_repack_nr, $_repack_flags,
38 $_template, $_shared, $_no_default_regex, $_no_graft_copy,
39 $_version, $_upgrade, $_authors, $_branch_all_refs, @_opt_m);
40 my (@_branch_from, %tree_map, %users);
41 my ($_svn_co_url_revs, $_svn_pg_peg_revs);
42 my @repo_path_split_cache;
44 my %fc_opts = ( 'no-ignore-externals' => \
$_no_ignore_ext,
45 'branch|b=s' => \
@_branch_from,
46 'branch-all-refs|B' => \
$_branch_all_refs,
47 'authors-file|A=s' => \
$_authors,
48 'repack:i' => \
$_repack,
49 'repack-flags|repack-args|repack-opts=s' => \
$_repack_flags);
51 my ($_trunk, $_tags, $_branches);
52 my %multi_opts = ( 'trunk|T=s' => \
$_trunk,
53 'tags|t=s' => \
$_tags,
54 'branches|b=s' => \
$_branches );
55 my %init_opts = ( 'template=s' => \
$_template, 'shared' => \
$_shared );
57 # yes, 'native' sets "\n". Patches to fix this for non-*nix systems welcome:
58 my %EOL = ( CR
=> "\015", LF
=> "\012", CRLF
=> "\015\012", native
=> "\012" );
61 fetch
=> [ \
&fetch
, "Download new revisions from SVN",
62 { 'revision|r=s' => \
$_revision, %fc_opts } ],
63 init
=> [ \
&init
, "Initialize a repo for tracking" .
64 " (requires URL argument)",
66 commit
=> [ \
&commit
, "Commit git revisions to SVN",
67 { 'stdin|' => \
$_stdin,
70 'find-copies-harder' => \
$_find_copies_harder,
72 'copy-similarity|C=i'=> \
$_cp_similarity,
75 'show-ignore' => [ \
&show_ignore
, "Show svn:ignore listings", { } ],
76 rebuild
=> [ \
&rebuild
, "Rebuild git-svn metadata (after git clone)",
77 { 'no-ignore-externals' => \
$_no_ignore_ext,
78 'upgrade' => \
$_upgrade } ],
79 'graft-branches' => [ \
&graft_branches
,
80 'Detect merges/branches from already imported history',
81 { 'merge-rx|m' => \
@_opt_m,
82 'no-default-regex' => \
$_no_default_regex,
83 'no-graft-copy' => \
$_no_graft_copy } ],
84 'multi-init' => [ \
&multi_init
,
85 'Initialize multiple trees (like git-svnimport)',
86 { %multi_opts, %fc_opts } ],
87 'multi-fetch' => [ \
&multi_fetch
,
88 'Fetch multiple trees (like git-svnimport)',
93 for (my $i = 0; $i < @ARGV; $i++) {
94 if (defined $cmd{$ARGV[$i]}) {
101 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
103 read_repo_config
(\
%opts);
104 GetOptions
(%opts, 'help|H|h' => \
$_help,
105 'version|V' => \
$_version,
106 'id|i=s' => \
$GIT_SVN) or exit 1;
110 version
() if $_version;
111 usage
(1) unless defined $cmd;
113 load_authors
() if $_authors;
114 load_all_refs
() if $_branch_all_refs;
116 migration_check
() unless $cmd =~ /^(?:init|multi-init)$/;
117 $cmd{$cmd}->[0]->(@ARGV);
120 ####################### primary functions ######################
122 my $exit = shift || 0;
123 my $fd = $exit ? \
*STDERR
: \
*STDOUT
;
125 git
-svn
- bidirectional operations between a single Subversion tree
and git
126 Usage
: $0 <command
> [options
] [arguments
]\n
128 print $fd "Available commands:\n" unless $cmd;
130 foreach (sort keys %cmd) {
131 next if $cmd && $cmd ne $_;
132 print $fd ' ',pack('A13',$_),$cmd{$_}->[1],"\n";
133 foreach (keys %{$cmd{$_}->[2]}) {
134 # prints out arguments as they should be passed:
135 my $x = s
#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
136 print $fd ' ' x
17, join(', ', map { length $_ > 1 ?
138 split /\|/,$_)," $x\n";
142 \nGIT_SVN_ID may be set
in the environment
or via the
--id
/-i switch to an
143 arbitrary identifier
if you
're tracking multiple SVN branches/repositories in
144 one git repository and want to keep them separate. See git-svn(1) for more
151 print "git-svn version $VERSION\n";
156 $SVN_URL = shift or undef;
159 sys('git
-update
-ref',"refs/remotes/$GIT_SVN","$GIT_SVN-HEAD");
161 check_upgrade_needed();
164 my $pid = open(my $rev_list,'-|');
165 defined $pid or croak $!;
167 exec("git-rev-list","refs/remotes/$GIT_SVN") or croak $!;
170 while (<$rev_list>) {
173 croak "Non-SHA1: $c\n" unless $c =~ /^$sha1$/o;
174 my @commit = grep(/^git-svn-id: /,`git-cat-file commit $c`);
175 next if (!@commit); # skip merges
176 my $id = $commit[$#commit];
177 my ($url, $rev, $uuid) = ($id =~ /^git-svn-id:\s(\S+?)\@(\d+)
179 if (!$rev || !$uuid || !$url) {
180 # some of the original repositories I made had
181 # indentifiers like this:
182 ($rev, $uuid) = ($id =~/^git-svn-id:\s(\d+)
184 if (!$rev || !$uuid) {
185 croak "Unable to extract revision or UUID from ",
190 # if we merged or otherwise started elsewhere, this is
191 # how we break out of it
192 next if (defined $SVN_UUID && ($uuid ne $SVN_UUID));
193 next if (defined $SVN_URL && defined $url && ($url ne $SVN_URL));
195 print "r$rev = $c\n";
196 unless (defined $latest) {
197 if (!$SVN_URL && !$url) {
198 croak "SVN repository location required: $url\n";
205 assert_revision_eq_or_unknown($rev, $c);
206 sys('git
-update
-ref',"svn/$GIT_SVN/revs/$rev",$c);
207 $newest_rev = $rev if ($rev > $newest_rev);
209 close $rev_list or croak $?;
210 if (!chdir $SVN_WC) {
211 svn_cmd_checkout($SVN_URL, $latest, $SVN_WC);
212 chdir $SVN_WC or croak $!;
216 defined $pid or croak $!;
218 my @svn_up = qw(svn up);
219 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
220 sys
(@svn_up,"-r$newest_rev");
221 $ENV{GIT_INDEX_FILE
} = $GIT_SVN_INDEX;
223 exec('git-write-tree') or croak
$!;
230 Keeping deprecated refs
/head/$GIT_SVN-HEAD
for now
. Please remove it
231 when you have upgraded your tools
and habits to
use refs
/remotes/$GIT_SVN
237 $SVN_URL = shift or die "SVN repository location required " .
238 "as a command-line argument\n";
239 $SVN_URL =~ s!/+$!!; # strip trailing slash
240 unless (-d
$GIT_DIR) {
241 my @init_db = ('git-init-db');
242 push @init_db, "--template=$_template" if defined $_template;
243 push @init_db, "--shared" if defined $_shared;
251 check_upgrade_needed
();
252 $SVN_URL ||= file_to_s
("$GIT_SVN_DIR/info/url");
253 my @log_args = -d
$SVN_WC ?
($SVN_WC) : ($SVN_URL);
254 unless ($_revision) {
255 $_revision = -d
$SVN_WC ?
'BASE:HEAD' : '0:HEAD';
257 push @log_args, "-r$_revision";
258 push @log_args, '--stop-on-copy' unless $_no_stop_copy;
260 my $svn_log = svn_log_raw
(@log_args);
262 my $base = next_log_entry
($svn_log) or croak
"No base revision!\n";
263 my $last_commit = undef;
264 unless (-d
$SVN_WC) {
265 svn_cmd_checkout
($SVN_URL,$base->{revision
},$SVN_WC);
266 chdir $SVN_WC or croak
$!;
268 $last_commit = git_commit
($base, @parents);
269 assert_tree
($last_commit);
271 chdir $SVN_WC or croak
$!;
273 eval { $last_commit = file_to_s
("$REV_DIR/$base->{revision}") };
274 # looks like a user manually cp'd and svn switch'ed
275 unless ($last_commit) {
276 sys
(qw
/svn revert -R ./);
277 assert_svn_wc_clean
($base->{revision
});
278 $last_commit = git_commit
($base, @parents);
279 assert_tree
($last_commit);
282 my @svn_up = qw(svn up);
283 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
285 while (my $log_msg = next_log_entry
($svn_log)) {
286 assert_tree
($last_commit);
287 if ($last->{revision
} >= $log_msg->{revision
}) {
288 croak
"Out of order: last >= current: ",
289 "$last->{revision} >= $log_msg->{revision}\n";
291 # Revert is needed for cases like:
292 # https://svn.musicpd.org/Jamming/trunk (r166:167), but
293 # I can't seem to reproduce something like that on a test...
294 sys
(qw
/svn revert -R ./);
295 assert_svn_wc_clean
($last->{revision
});
296 sys
(@svn_up,"-r$log_msg->{revision}");
297 $last_commit = git_commit
($log_msg, $last_commit, @parents);
300 unless (-e
"$GIT_DIR/refs/heads/master") {
301 sys
(qw(git-update-ref refs/heads/master),$last_commit);
303 close $svn_log->{fh
};
309 check_upgrade_needed
();
310 if ($_stdin || !@commits) {
311 print "Reading from stdin...\n";
314 if (/\b($sha1_short)\b/o) {
315 unshift @commits, $1;
320 foreach my $c (@commits) {
321 chomp(my @tmp = safe_qx
('git-rev-parse',$c));
322 if (scalar @tmp == 1) {
324 } elsif (scalar @tmp > 1) {
325 push @revs, reverse (safe_qx
('git-rev-list',@tmp));
327 die "Failed to rev-parse $c\n";
332 chdir $SVN_WC or croak
"Unable to chdir $SVN_WC: $!\n";
333 my $info = svn_info
('.');
334 my $fetched = fetch
();
335 if ($info->{Revision
} != $fetched->{revision
}) {
336 print STDERR
"There are new revisions that were fetched ",
337 "and need to be merged (or acknowledged) ",
338 "before committing.\n";
341 $info = svn_info
('.');
343 my $svn_current_rev = $info->{'Last Changed Rev'};
344 foreach my $c (@revs) {
345 my $mods = svn_checkout_tree
($svn_current_rev, $c);
346 if (scalar @
$mods == 0) {
347 print "Skipping, no changes detected\n";
350 $svn_current_rev = svn_commit_tree
($svn_current_rev, $c);
352 print "Done committing ",scalar @revs," revisions to SVN\n";
356 require File
::Find
or die $!;
357 my $exclude_file = "$GIT_DIR/info/exclude";
358 open my $fh, '<', $exclude_file or croak
$!;
359 chomp(my @excludes = (<$fh>));
360 close $fh or croak
$!;
362 $SVN_URL ||= file_to_s
("$GIT_SVN_DIR/info/url");
363 chdir $SVN_WC or croak
$!;
365 File
::Find
::find
({wanted
=>sub{if(lstat $_ && -d _
&& -d
"$_/.svn"){
367 @
{$ign{$_}} = svn_propget_base
('svn:ignore', $_);
368 }}, no_chdir
=>1},'.');
371 foreach (@
{$ign{'.'}}) { print '/',$_ if /\S
/ }
373 foreach my $i (sort keys %ign) {
374 print "\n# ",$i,"\n";
375 foreach (@
{$ign{$i}}) { print '/',$i,'/',$_ if /\S/ }
380 my $gr_file = "$GIT_DIR/info/grafts";
381 my ($grafts, $comments) = read_grafts
($gr_file);
385 # temporarily disable our grafts file to make this idempotent
386 chomp($gr_sha1 = safe_qx
(qw
/git-hash-object -w/,$gr_file));
387 rename $gr_file, "$gr_file~$gr_sha1" or croak
$!;
390 my $l_map = read_url_paths
();
391 my @re = map { qr/$_/is } @_opt_m if @_opt_m;
392 unless ($_no_default_regex) {
393 push @re, ( qr/\b(?:merge|merging|merged)\s+(\S.+)/is,
394 qr/\b(?:from|of)\s+(\S.+)/is );
396 foreach my $u (keys %$l_map) {
398 foreach my $p (keys %{$l_map->{$u}}) {
399 graft_merge_msg
($grafts,$l_map,$u,$p);
402 graft_file_copy
($grafts,$l_map,$u) unless $_no_graft_copy;
405 write_grafts
($grafts, $comments, $gr_file);
406 unlink "$gr_file~$gr_sha1" if $gr_sha1;
413 $url =~ s
#/+$## if $url;
414 if ($_trunk !~ m
#^[a-z\+]+://#) {
415 $_trunk = '/' . $_trunk if ($_trunk !~ m
#^/#);
417 print STDERR
"E: '$_trunk' is not a complete URL ",
418 "and a separate URL is not specified\n";
421 $_trunk = $url . $_trunk;
423 if ($GIT_SVN eq 'git-svn') {
424 print "GIT_SVN_ID set to 'trunk' for $_trunk\n";
425 $GIT_SVN = $ENV{GIT_SVN_ID
} = 'trunk';
429 complete_url_ls_init
($url, $_branches, '--branches/-b', '');
430 complete_url_ls_init
($url, $_tags, '--tags/-t', 'tags/');
434 # try to do trunk first, since branches/tags
435 # may be descended from it.
436 if (-d
"$GIT_DIR/svn/trunk") {
437 print "Fetching trunk\n";
438 defined(my $pid = fork) or croak
$!;
440 $GIT_SVN = $ENV{GIT_SVN_ID
} = 'trunk';
448 rec_fetch
('', "$GIT_DIR/svn", @_);
451 ########################### utility functions #########################
454 my ($pfx, $p, @args) = @_;
456 foreach (sort <$p/*>) {
457 if (-r
"$_/info/url") {
458 $pfx .= '/' if $pfx && $pfx !~ m
!/$!;
459 my $id = $pfx . basename
$_;
460 next if $id eq 'trunk';
461 print "Fetching $id\n";
462 defined(my $pid = fork) or croak
$!;
464 $GIT_SVN = $ENV{GIT_SVN_ID
} = $id;
477 $x =~ s!^\Q$GIT_DIR\E/svn/!!;
482 sub complete_url_ls_init
{
483 my ($url, $var, $switch, $pfx) = @_;
485 print STDERR
"W: $switch not specified\n";
489 if ($var !~ m
#^[a-z\+]+://#) {
490 $var = '/' . $var if ($var !~ m
#^/#);
492 print STDERR
"E: '$var' is not a complete URL ",
493 "and a separate URL is not specified\n";
498 chomp(my @ls = safe_qx
(qw
/svn ls --non-interactive/, $var));
500 defined(my $pid = fork) or croak
$!;
502 foreach my $u (map { "$var/$_" } (grep m
!/$!, @ls)) {
504 if ($u !~ m!\Q$var\E/(.+)$!) {
505 print STDERR
"W: Unrecognized URL: $u\n";
506 die "This should never happen\n";
509 print "init $u => $id\n";
510 $GIT_SVN = $ENV{GIT_SVN_ID
} = $id;
524 my @tmp = split m
#/#, $_;
526 while (my $x = shift @tmp) {
532 foreach (sort {length $b <=> length $a} keys %common) {
533 if ($common{$_} == @
$paths) {
540 # this isn't funky-filename safe, but good enough for now...
541 sub graft_file_copy
{
542 my ($grafts, $l_map, $u) = @_;
543 my $paths = $l_map->{$u};
544 my $pfx = common_prefix
([keys %$paths]);
546 my $pid = open my $fh, '-|';
547 defined $pid or croak
$!;
549 exec(qw
/svn log -v/, $u.$pfx) or croak
$!;
551 my ($r, $mp) = (undef, undef);
556 } elsif (/^r(\d+) \| /) {
557 $r = $1 unless defined $r;
558 } elsif (/^Changed paths:/) {
560 } elsif ($mp && m
#^ [AR] /(\S.*?) \(from /(\S+?):(\d+)\)$#) {
561 my $dbg = "r$r | $_";
562 my ($p1, $p0, $r0) = ($1, $2, $3);
564 foreach my $x (keys %$paths) {
565 next unless ($p1 =~ /^\Q$x\E/);
566 my $i = $paths->{$x};
567 my $f = "$GIT_DIR/svn/$i/revs/$r";
569 print STDERR
"r$r of $i not imported,",
576 foreach my $x (keys %$paths) {
577 next unless ($p0 =~ /^\Q$x\E/);
578 my $i = $paths->{$x};
579 my $f = "$GIT_DIR/svn/$i/revs/$r0";
580 while ($r0 && !-r
$f) {
581 # could be an older revision, too...
583 $f = "$GIT_DIR/svn/$i/revs/$r0";
586 print STDERR
"r$r0 of $i not imported,",
590 my $r1 = file_to_s
($f);
591 $grafts->{$c}->{$r1} = 1;
597 sub process_merge_msg_matches
{
598 my ($grafts, $l_map, $u, $p, $c, @matches) = @_;
601 # merging with ourselves is not interesting
603 if ($l_map->{$u}->{$_}) {
609 foreach my $w (@weak) {
611 # no exact match, use branch name as regexp.
612 my $re = qr/\Q$w\E/i;
613 foreach (keys %{$l_map->{$u}}) {
622 foreach (keys %{$l_map->{$u}}) {
629 my ($rev) = ($c->{m
} =~ /^git
-svn
-id
:\s
(?
:\S
+?
)\@
(\d
+)
630 \s
(?
:[a
-f\d\
-]+)$/xsm
);
631 unless (defined $rev) {
632 ($rev) = ($c->{m
} =~/^git
-svn
-id
:\s
(\d
+)
633 \@
(?
:[a
-f\d\
-]+)/xsm
);
634 return unless defined $rev;
636 foreach my $m (@strong) {
637 my ($r0, $s0) = find_rev_before
($rev, $m);
638 $grafts->{$c->{c
}}->{$s0} = 1 if defined $s0;
642 sub graft_merge_msg
{
643 my ($grafts, $l_map, $u, $p, @re) = @_;
645 my $x = $l_map->{$u}->{$p};
646 my $rl = rev_list_raw
($x);
647 while (my $c = next_rev_list_entry
($rl)) {
648 foreach my $re (@re) {
649 my (@br) = ($c->{m
} =~ /$re/g);
651 process_merge_msg_matches
($grafts,$l_map,$u,$p,$c,@br);
658 my $info = shift || svn_info
('.');
659 $SVN_UUID = $info->{'Repository UUID'} or
660 croak
"Repository UUID unreadable\n";
661 s_to_file
($SVN_UUID,"$GIT_SVN_DIR/info/uuid");
666 defined $pid or croak
$!;
668 open my $null, '>', '/dev/null' or croak
$!;
669 open STDERR
, '>&', $null or croak
$!;
670 open STDOUT
, '>&', $null or croak
$!;
677 sub repo_path_split
{
678 my $full_url = shift;
679 $full_url =~ s
#/+$##;
681 foreach (@repo_path_split_cache) {
682 if ($full_url =~ s
#$_##) {
684 $full_url =~ s
#^/+##;
685 return ($u, $full_url);
689 my ($url, $path) = ($full_url =~ m!^([a-z\+]+://[^/]*)(.*)$!i);
691 my @paths = split(m
#/+#, $path);
693 while (quiet_run
(qw
/svn ls --non-interactive/, $url)) {
694 my $n = shift @paths || last;
697 push @repo_path_split_cache, qr/^(\Q$url\E)/;
698 $path = join('/',@paths);
699 return ($url, $path);
703 defined $SVN_URL or croak
"SVN repository location required\n";
704 unless (-d
$GIT_DIR) {
705 croak
"GIT_DIR=$GIT_DIR does not exist!\n";
707 mkpath
([$GIT_SVN_DIR]);
708 mkpath
(["$GIT_SVN_DIR/info"]);
710 s_to_file
($SVN_URL,"$GIT_SVN_DIR/info/url");
712 open my $fd, '>>', "$GIT_SVN_DIR/info/exclude" or croak
$!;
713 print $fd '.svn',"\n";
714 close $fd or croak
$!;
715 my ($url, $path) = repo_path_split
($SVN_URL);
716 s_to_file
($url, "$GIT_SVN_DIR/info/repo_url");
717 s_to_file
($path, "$GIT_SVN_DIR/info/repo_path");
720 sub assert_svn_wc_clean
{
722 croak
"$svn_rev is not an integer!\n" unless ($svn_rev =~ /^\d+$/);
723 my $lcr = svn_info
('.')->{'Last Changed Rev'};
724 if ($svn_rev != $lcr) {
725 print STDERR
"Checking for copy-tree ... ";
726 my @diff = grep(/^Index: /,(safe_qx
(qw(svn diff),
727 "-r$lcr:$svn_rev")));
729 croak
"Nope! Expected r$svn_rev, got r$lcr\n";
731 print STDERR
"OK!\n";
734 my @status = grep(!/^Performing status on external/,(`svn status`));
735 @status = grep(!/^\s*$/,@status);
736 if (scalar @status) {
737 print STDERR
"Tree ($SVN_WC) is not clean:\n";
738 print STDERR
$_ foreach @status;
745 croak
"Not a sha1: $treeish\n" unless $treeish =~ /^$sha1$/o;
746 chomp(my $type = `git-cat-file -t $treeish`);
748 while ($type eq 'tag') {
749 chomp(($treeish, $type) = `git-cat-file tag $treeish`);
751 if ($type eq 'commit') {
752 $expected = (grep /^tree /,`git-cat-file commit $treeish`)[0];
753 ($expected) = ($expected =~ /^tree ($sha1)$/);
754 die "Unable to get tree from $treeish\n" unless $expected;
755 } elsif ($type eq 'tree') {
756 $expected = $treeish;
758 die "$treeish is a $type, expected tree, tag or commit\n";
761 my $old_index = $ENV{GIT_INDEX_FILE
};
762 my $tmpindex = $GIT_SVN_INDEX.'.assert-tmp';
764 unlink $tmpindex or croak
$!;
766 $ENV{GIT_INDEX_FILE
} = $tmpindex;
768 chomp(my $tree = `git-write-tree`);
770 $ENV{GIT_INDEX_FILE
} = $old_index;
772 delete $ENV{GIT_INDEX_FILE
};
774 if ($tree ne $expected) {
775 croak
"Tree mismatch, Got: $tree, Expected: $expected\n";
780 sub parse_diff_tree
{
786 chomp $_; # this gets rid of the trailing "\0"
787 if ($state eq 'meta' && /^:(\d
{6})\s
(\d
{6})\s
788 $sha1\s
($sha1)\s
([MTCRAD
])\d
*$/xo
) {
789 push @mods, { mode_a
=> $1, mode_b
=> $2,
790 sha1_b
=> $3, chg
=> $4 };
791 if ($4 =~ /^(?:C|R)$/) {
796 } elsif ($state eq 'file_a') {
797 my $x = $mods[$#mods] or croak
"Empty array\n";
798 if ($x->{chg
} !~ /^(?:C|R)$/) {
799 croak
"Error parsing $_, $x->{chg}\n";
803 } elsif ($state eq 'file_b') {
804 my $x = $mods[$#mods] or croak
"Empty array\n";
805 if (exists $x->{file_a
} && $x->{chg
} !~ /^(?:C|R)$/) {
806 croak
"Error parsing $_, $x->{chg}\n";
808 if (!exists $x->{file_a
} && $x->{chg
} =~ /^(?:C|R)$/) {
809 croak
"Error parsing $_, $x->{chg}\n";
814 croak
"Error parsing $_\n";
817 close $diff_fh or croak
$!;
822 sub svn_check_prop_executable
{
824 return if -l
$m->{file_b
};
825 if ($m->{mode_b
} =~ /755$/) {
826 chmod((0755 &~ umask),$m->{file_b
}) or croak
$!;
827 if ($m->{mode_a
} !~ /755$/) {
828 sys
(qw(svn propset svn:executable 1), $m->{file_b
});
830 -x
$m->{file_b
} or croak
"$m->{file_b} is not executable!\n";
831 } elsif ($m->{mode_b
} !~ /755$/ && $m->{mode_a
} =~ /755$/) {
832 sys
(qw(svn propdel svn:executable), $m->{file_b
});
833 chmod((0644 &~ umask),$m->{file_b
}) or croak
$!;
834 -x
$m->{file_b
} and croak
"$m->{file_b} is executable!\n";
838 sub svn_ensure_parent_path
{
839 my $dir_b = dirname
(shift);
840 svn_ensure_parent_path
($dir_b) if ($dir_b ne File
::Spec
->curdir);
841 mkpath
([$dir_b]) unless (-d
$dir_b);
842 sys
(qw(svn add -N), $dir_b) unless (-d
"$dir_b/.svn");
845 sub precommit_check
{
847 my (%rm_file, %rmdir_check, %added_check);
849 my %o = ( D
=> 0, R
=> 1, C
=> 2, A
=> 3, M
=> 3, T
=> 3 );
850 foreach my $m (sort { $o{$a->{chg
}} <=> $o{$b->{chg
}} } @
$mods) {
851 if ($m->{chg
} eq 'R') {
852 if (-d
$m->{file_b
}) {
853 err_dir_to_file
("$m->{file_a} => $m->{file_b}");
855 # dir/$file => dir/file/$file
856 my $dirname = dirname
($m->{file_b
});
857 while ($dirname ne File
::Spec
->curdir) {
858 if ($dirname ne $m->{file_a
}) {
859 $dirname = dirname
($dirname);
862 err_file_to_dir
("$m->{file_a} => $m->{file_b}");
864 # baz/zzz => baz (baz is a file)
865 $dirname = dirname
($m->{file_a
});
866 while ($dirname ne File
::Spec
->curdir) {
867 if ($dirname ne $m->{file_b
}) {
868 $dirname = dirname
($dirname);
871 err_dir_to_file
("$m->{file_a} => $m->{file_b}");
874 if ($m->{chg
} =~ /^(D|R)$/) {
875 my $t = $1 eq 'D' ?
'file_b' : 'file_a';
876 $rm_file{ $m->{$t} } = 1;
877 my $dirname = dirname
( $m->{$t} );
878 my $basename = basename
( $m->{$t} );
879 $rmdir_check{$dirname}->{$basename} = 1;
880 } elsif ($m->{chg
} =~ /^(?:A|C)$/) {
881 if (-d
$m->{file_b
}) {
882 err_dir_to_file
($m->{file_b
});
884 my $dirname = dirname
( $m->{file_b
} );
885 my $basename = basename
( $m->{file_b
} );
886 $added_check{$dirname}->{$basename} = 1;
887 while ($dirname ne File
::Spec
->curdir) {
888 if ($rm_file{$dirname}) {
889 err_file_to_dir
($m->{file_b
});
891 $dirname = dirname
$dirname;
895 return (\
%rmdir_check, \
%added_check);
897 sub err_dir_to_file
{
899 print STDERR
"Node change from directory to file ",
900 "is not supported by Subversion: ",$file,"\n";
903 sub err_file_to_dir
{
905 print STDERR
"Node change from file to directory ",
906 "is not supported by Subversion: ",$file,"\n";
911 sub svn_checkout_tree
{
912 my ($svn_rev, $treeish) = @_;
913 my $from = file_to_s
("$REV_DIR/$svn_rev");
915 print "diff-tree $from $treeish\n";
916 my $pid = open my $diff_fh, '-|';
917 defined $pid or croak
$!;
919 my @diff_tree = qw(git-diff-tree -z -r);
920 if ($_cp_similarity) {
921 push @diff_tree, "-C$_cp_similarity";
923 push @diff_tree, '-C';
925 push @diff_tree, '--find-copies-harder' if $_find_copies_harder;
926 push @diff_tree, "-l$_l" if defined $_l;
927 exec(@diff_tree, $from, $treeish) or croak
$!;
929 my $mods = parse_diff_tree
($diff_fh);
931 # git can do empty commits, but SVN doesn't allow it...
934 my ($rm, $add) = precommit_check
($mods);
936 my %o = ( D
=> 1, R
=> 0, C
=> -1, A
=> 3, M
=> 3, T
=> 3 );
937 foreach my $m (sort { $o{$a->{chg
}} <=> $o{$b->{chg
}} } @
$mods) {
938 if ($m->{chg
} eq 'C') {
939 svn_ensure_parent_path
( $m->{file_b
} );
940 sys
(qw(svn cp), $m->{file_a
}, $m->{file_b
});
941 apply_mod_line_blob
($m);
942 svn_check_prop_executable
($m);
943 } elsif ($m->{chg
} eq 'D') {
944 sys
(qw(svn rm --force), $m->{file_b
});
945 } elsif ($m->{chg
} eq 'R') {
946 svn_ensure_parent_path
( $m->{file_b
} );
947 sys
(qw(svn mv --force), $m->{file_a
}, $m->{file_b
});
948 apply_mod_line_blob
($m);
949 svn_check_prop_executable
($m);
950 } elsif ($m->{chg
} eq 'M') {
951 apply_mod_line_blob
($m);
952 svn_check_prop_executable
($m);
953 } elsif ($m->{chg
} eq 'T') {
954 sys
(qw(svn rm --force),$m->{file_b
});
955 apply_mod_line_blob
($m);
956 sys
(qw(svn add --force), $m->{file_b
});
957 svn_check_prop_executable
($m);
958 } elsif ($m->{chg
} eq 'A') {
959 svn_ensure_parent_path
( $m->{file_b
} );
960 apply_mod_line_blob
($m);
961 sys
(qw(svn add --force), $m->{file_b
});
962 svn_check_prop_executable
($m);
964 croak
"Invalid chg: $m->{chg}\n";
968 assert_tree
($treeish);
969 if ($_rmdir) { # remove empty directories
970 handle_rmdir
($rm, $add);
972 assert_tree
($treeish);
976 # svn ls doesn't work with respect to the current working tree, but what's
977 # in the repository. There's not even an option for it... *sigh*
978 # (added files don't show up and removed files remain in the ls listing)
980 my ($dir, $rm, $add) = @_;
981 chomp(my @ls = safe_qx
('svn','ls',$dir));
984 s
#/$##; # trailing slashes are evil
985 push @ret, $_ unless $rm->{$dir}->{$_};
987 if (exists $add->{$dir}) {
988 push @ret, keys %{$add->{$dir}};
996 foreach my $dir (sort {length $b <=> length $a} keys %$rm) {
997 my $ls = svn_ls_current
($dir, $rm, $add);
998 next if (scalar @
$ls);
999 sys
(qw(svn rm --force),$dir);
1001 my $dn = dirname
$dir;
1002 $rm->{ $dn }->{ basename
$dir } = 1;
1003 $ls = svn_ls_current
($dn, $rm, $add);
1004 while (scalar @
$ls == 0 && $dn ne File
::Spec
->curdir) {
1005 sys
(qw(svn rm --force),$dn);
1006 $dir = basename
$dn;
1008 $rm->{ $dn }->{ $dir } = 1;
1009 $ls = svn_ls_current
($dn, $rm, $add);
1014 sub svn_commit_tree
{
1015 my ($svn_rev, $commit) = @_;
1016 my $commit_msg = "$GIT_SVN_DIR/.svn-commit.tmp.$$";
1017 my %log_msg = ( msg
=> '' );
1018 open my $msg, '>', $commit_msg or croak
$!;
1020 chomp(my $type = `git-cat-file -t $commit`);
1021 if ($type eq 'commit') {
1022 my $pid = open my $msg_fh, '-|';
1023 defined $pid or croak
$!;
1026 exec(qw(git-cat-file commit), $commit) or croak
$!;
1031 $in_msg = 1 if (/^\s*$/);
1032 } elsif (/^git-svn-id: /) {
1033 # skip this, we regenerate the correct one
1034 # on re-fetch anyways
1036 print $msg $_ or croak
$!;
1039 close $msg_fh or croak
$!;
1041 close $msg or croak
$!;
1043 if ($_edit || ($type eq 'tree')) {
1044 my $editor = $ENV{VISUAL
} || $ENV{EDITOR
} || 'vi';
1045 system($editor, $commit_msg);
1048 # file_to_s removes all trailing newlines, so just use chomp() here:
1049 open $msg, '<', $commit_msg or croak
$!;
1050 { local $/; chomp($log_msg{msg
} = <$msg>); }
1051 close $msg or croak
$!;
1053 my ($oneline) = ($log_msg{msg
} =~ /([^\n\r]+)/);
1054 print "Committing $commit: $oneline\n";
1056 if (defined $LC_ALL) {
1057 $ENV{LC_ALL
} = $LC_ALL;
1059 delete $ENV{LC_ALL
};
1061 my @ci_output = safe_qx
(qw(svn commit -F),$commit_msg);
1064 my ($committed) = ($ci_output[$#ci_output] =~ /(\d+)/);
1065 if (!defined $committed) {
1066 my $out = join("\n",@ci_output);
1067 print STDERR
"W: Trouble parsing \`svn commit' output:\n\n",
1068 $out, "\n\nAssuming English locale...";
1069 ($committed) = ($out =~ /^Committed revision \d+\./sm);
1070 defined $committed or die " FAILED!\n",
1071 "Commit output failed to parse committed revision!\n",
1072 print STDERR
" OK\n";
1075 my @svn_up = qw(svn up);
1076 push @svn_up, '--ignore-externals' unless $_no_ignore_ext;
1077 if ($committed == ($svn_rev + 1)) {
1078 push @svn_up, "-r$committed";
1080 my $info = svn_info
('.');
1081 my $date = $info->{'Last Changed Date'} or die "Missing date\n";
1082 if ($info->{'Last Changed Rev'} != $committed) {
1083 croak
"$info->{'Last Changed Rev'} != $committed\n"
1085 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
1086 /(\d
{4})\
-(\d\d
)\
-(\d\d
)\s
1087 (\d\d
)\
:(\d\d
)\
:(\d\d
)\s
([\
-\
+]\d
+)/x
)
1088 or croak
"Failed to parse date: $date\n";
1089 $log_msg{date
} = "$tz $Y-$m-$d $H:$M:$S";
1090 $log_msg{author
} = $info->{'Last Changed Author'};
1091 $log_msg{revision
} = $committed;
1092 $log_msg{msg
} .= "\n";
1093 my $parent = file_to_s
("$REV_DIR/$svn_rev");
1094 git_commit
(\
%log_msg, $parent, $commit);
1097 # resync immediately
1098 push @svn_up, "-r$svn_rev";
1100 return fetch
("$committed=$commit")->{revision
};
1105 my $pid = open my $fh, '-|';
1106 defined $pid or croak
$!;
1108 exec(qw
/git-rev-list --pretty=raw/, @args) or croak
$!;
1110 return { fh
=> $fh, t
=> { } };
1113 sub next_rev_list_entry
{
1118 if (/^commit ($sha1)$/o) {
1120 $rl->{t
} = { c
=> $1 };
1125 } elsif (/^parent ($sha1)$/o) {
1132 return ($x != $rl->{t
}) ?
$x : undef;
1135 # read the entire log into a temporary file (which is removed ASAP)
1136 # and store the file handle + parser state
1138 my (@log_args) = @_;
1139 my $log_fh = IO
::File
->new_tmpfile or croak
$!;
1141 defined $pid or croak
$!;
1143 open STDOUT
, '>&', $log_fh or croak
$!;
1144 exec (qw(svn log), @log_args) or croak
$!
1148 seek $log_fh, 0, 0 or croak
$!;
1149 return { state => 'sep', fh
=> $log_fh };
1152 sub next_log_entry
{
1153 my $log = shift; # retval of svn_log_raw()
1155 my $fh = $log->{fh
};
1160 if ($log->{state} eq 'msg') {
1161 if ($ret->{lines
}) {
1162 $ret->{msg
} .= $_."\n";
1163 unless(--$ret->{lines
}) {
1164 $log->{state} = 'sep';
1167 croak
"Log parse error at: $_\n",
1173 if ($log->{state} ne 'sep') {
1174 croak
"Log parse error at: $_\n",
1175 "state: $log->{state}\n",
1179 $log->{state} = 'rev';
1181 # if we have an empty log message, put something there:
1183 $ret->{msg
} ||= "\n";
1184 delete $ret->{lines
};
1189 if ($log->{state} eq 'rev' && s/^r(\d+)\s*\|\s*//) {
1191 my ($author, $date, $lines) = split(/\s*\|\s*/, $_, 3);
1192 ($lines) = ($lines =~ /(\d+)/);
1193 my ($Y,$m,$d,$H,$M,$S,$tz) = ($date =~
1194 /(\d
{4})\
-(\d\d
)\
-(\d\d
)\s
1195 (\d\d
)\
:(\d\d
)\
:(\d\d
)\s
([\
-\
+]\d
+)/x
)
1196 or croak
"Failed to parse date: $date\n";
1197 $ret = { revision
=> $rev,
1198 date
=> "$tz $Y-$m-$d $H:$M:$S",
1202 if (defined $_authors && ! defined $users{$author}) {
1203 die "Author: $author not defined in ",
1206 $log->{state} = 'msg_start';
1209 # skip the first blank line of the message:
1210 if ($log->{state} eq 'msg_start' && /^$/) {
1211 $log->{state} = 'msg';
1212 } elsif ($log->{state} eq 'msg') {
1213 if ($ret->{lines
}) {
1214 $ret->{msg
} .= $_."\n";
1215 unless (--$ret->{lines
}) {
1216 $log->{state} = 'sep';
1219 croak
"Log parse error at: $_\n",
1220 $ret->{revision
},"\n";
1228 my $url = shift || $SVN_URL;
1230 my $pid = open my $info_fh, '-|';
1231 defined $pid or croak
$!;
1234 exec(qw(svn info),$url) or croak
$!;
1238 # only single-lines seem to exist in svn info output
1239 while (<$info_fh>) {
1241 if (m
#^([^:]+)\s*:\s*(\S.*)$#) {
1243 push @
{$ret->{-order
}}, $1;
1246 close $info_fh or croak
$!;
1250 sub sys
{ system(@_) == 0 or croak
$?
}
1253 my ($from, $to) = @_;
1254 my $es = svn_propget_base
('svn:eol-style', $to);
1255 open my $rfd, '<', $from or croak
$!;
1256 binmode $rfd or croak
$!;
1257 open my $wfd, '>', $to or croak
$!;
1258 binmode $wfd or croak
$!;
1260 my $eol = $EOL{$es} or undef;
1265 defined($r = sysread($rfd, $buf, 4096)) or croak
$!;
1268 if ($buf =~ /\015$/) {
1270 defined($r = sysread($rfd,$c,1)) or croak
$!;
1271 $buf .= $c if $r > 0;
1273 $buf =~ s/(?:\015\012|\015|\012)/$eol/gs;
1276 for ($w = 0; $w < $r; $w += $t) {
1277 $t = syswrite($wfd, $buf, $r - $w, $w) or croak
$!;
1283 sub do_update_index
{
1284 my ($z_cmd, $cmd, $no_text_base) = @_;
1286 my $z = open my $p, '-|';
1287 defined $z or croak
$!;
1288 unless ($z) { exec @
$z_cmd or croak
$! }
1290 my $pid = open my $ui, '|-';
1291 defined $pid or croak
$!;
1293 exec('git-update-index',"--$cmd",'-z','--stdin') or croak
$!;
1296 while (my $x = <$p>) {
1298 if (!$no_text_base && lstat $x && ! -l _
&&
1299 svn_propget_base
('svn:keywords', $x)) {
1300 my $mode = -x _ ?
0755 : 0644;
1301 my ($v,$d,$f) = File
::Spec
->splitpath($x);
1302 my $tb = File
::Spec
->catfile($d, '.svn', 'tmp',
1303 'text-base',"$f.svn-base");
1306 $tb = File
::Spec
->catfile($d, '.svn',
1307 'text-base',"$f.svn-base");
1310 unlink $x or croak
$!;
1312 chmod(($mode &~ umask), $x) or croak
$!;
1316 close $ui or croak
$!;
1320 my $no_text_base = shift;
1321 do_update_index
([qw
/git-diff-files --name-only -z/],
1324 do_update_index
([qw
/git-ls-files -z --others/,
1325 "--exclude-from=$GIT_SVN_DIR/info/exclude"],
1331 my ($str, $file, $mode) = @_;
1332 open my $fd,'>',$file or croak
$!;
1333 print $fd $str,"\n" or croak
$!;
1334 close $fd or croak
$!;
1335 chmod ($mode &~ umask, $file) if (defined $mode);
1340 open my $fd,'<',$file or croak
"$!: file: $file\n";
1343 close $fd or croak
$!;
1348 sub assert_revision_unknown
{
1350 if (-f
"$REV_DIR/$revno") {
1351 croak
"$REV_DIR/$revno already exists! ",
1352 "Why are we refetching it?";
1358 my @x = safe_qx
('git-cat-file','commit',$x);
1359 my @y = safe_qx
('git-cat-file','commit',$y);
1360 if (($y[0] ne $x[0]) || $x[0] !~ /^tree $sha1\n$/
1361 || $y[0] !~ /^tree $sha1\n$/) {
1362 print STDERR
"Trees not equal: $y[0] != $x[0]\n";
1368 sub assert_revision_eq_or_unknown
{
1369 my ($revno, $commit) = @_;
1370 if (-f
"$REV_DIR/$revno") {
1371 my $current = file_to_s
("$REV_DIR/$revno");
1372 if (($commit ne $current) && !trees_eq
($commit, $current)) {
1373 croak
"$REV_DIR/$revno already exists!\n",
1374 "current: $current\nexpected: $commit\n";
1381 my ($log_msg, @parents) = @_;
1382 assert_revision_unknown
($log_msg->{revision
});
1383 my $out_fh = IO
::File
->new_tmpfile or croak
$!;
1385 map_tree_joins
() if (@_branch_from && !%tree_map);
1387 # commit parents can be conditionally bound to a particular
1388 # svn revision via: "svn_revno=commit_sha1", filter them out here:
1390 foreach my $p (@parents) {
1391 next unless defined $p;
1392 if ($p =~ /^(\d+)=($sha1_short)$/o) {
1393 if ($1 == $log_msg->{revision
}) {
1394 push @exec_parents, $2;
1397 push @exec_parents, $p if $p =~ /$sha1_short/o;
1402 defined $pid or croak
$!;
1404 $ENV{GIT_INDEX_FILE
} = $GIT_SVN_INDEX;
1406 chomp(my $tree = `git-write-tree`);
1408 if (exists $tree_map{$tree}) {
1409 my %seen_parent = map { $_ => 1 } @exec_parents;
1410 foreach (@
{$tree_map{$tree}}) {
1411 # MAXPARENT is defined to 16 in commit-tree.c:
1412 if ($seen_parent{$_} || @exec_parents > 16) {
1415 push @exec_parents, $_;
1416 $seen_parent{$_} = 1;
1419 my $msg_fh = IO
::File
->new_tmpfile or croak
$!;
1420 print $msg_fh $log_msg->{msg
}, "\ngit-svn-id: ",
1421 "$SVN_URL\@$log_msg->{revision}",
1422 " $SVN_UUID\n" or croak
$!;
1423 $msg_fh->flush == 0 or croak
$!;
1424 seek $msg_fh, 0, 0 or croak
$!;
1426 set_commit_env
($log_msg);
1428 my @exec = ('git-commit-tree',$tree);
1429 push @exec, '-p', $_ foreach @exec_parents;
1430 open STDIN
, '<&', $msg_fh or croak
$!;
1431 open STDOUT
, '>&', $out_fh or croak
$!;
1432 exec @exec or croak
$!;
1437 $out_fh->flush == 0 or croak
$!;
1438 seek $out_fh, 0, 0 or croak
$!;
1439 chomp(my $commit = do { local $/; <$out_fh> });
1440 if ($commit !~ /^$sha1$/o) {
1441 croak
"Failed to commit, invalid sha1: $commit\n";
1443 my @update_ref = ('git-update-ref',"refs/remotes/$GIT_SVN",$commit);
1444 if (my $primary_parent = shift @exec_parents) {
1446 defined $pid or croak
$!;
1450 exec 'git-rev-parse','--verify',
1451 "refs/remotes/$GIT_SVN^0" or croak
$!;
1454 push @update_ref, $primary_parent unless $?
;
1457 sys
('git-update-ref',"svn/$GIT_SVN/revs/$log_msg->{revision}",$commit);
1458 print "r$log_msg->{revision} = $commit\n";
1459 if ($_repack && (--$_repack_nr == 0)) {
1460 $_repack_nr = $_repack;
1461 sys
("git repack $_repack_flags");
1466 sub set_commit_env
{
1468 my $author = $log_msg->{author
};
1469 my ($name,$email) = defined $users{$author} ? @
{$users{$author}}
1470 : ($author,"$author\@$SVN_UUID");
1471 $ENV{GIT_AUTHOR_NAME
} = $ENV{GIT_COMMITTER_NAME
} = $name;
1472 $ENV{GIT_AUTHOR_EMAIL
} = $ENV{GIT_COMMITTER_EMAIL
} = $email;
1473 $ENV{GIT_AUTHOR_DATE
} = $ENV{GIT_COMMITTER_DATE
} = $log_msg->{date
};
1476 sub apply_mod_line_blob
{
1478 if ($m->{mode_b
} =~ /^120/) {
1479 blob_to_symlink
($m->{sha1_b
}, $m->{file_b
});
1481 blob_to_file
($m->{sha1_b
}, $m->{file_b
});
1485 sub blob_to_symlink
{
1486 my ($blob, $link) = @_;
1487 defined $link or croak
"\$link not defined!\n";
1488 croak
"Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
1489 if (-l
$link || -f _
) {
1490 unlink $link or croak
$!;
1493 my $dest = `git-cat-file blob $blob`; # no newline, so no chomp
1494 symlink $dest, $link or croak
$!;
1498 my ($blob, $file) = @_;
1499 defined $file or croak
"\$file not defined!\n";
1500 croak
"Not a sha1: $blob\n" unless $blob =~ /^$sha1$/o;
1501 if (-l
$file || -f _
) {
1502 unlink $file or croak
$!;
1505 open my $blob_fh, '>', $file or croak
"$!: $file\n";
1507 defined $pid or croak
$!;
1510 open STDOUT
, '>&', $blob_fh or croak
$!;
1511 exec('git-cat-file','blob',$blob) or croak
$!;
1516 close $blob_fh or croak
$!;
1520 my $pid = open my $child, '-|';
1521 defined $pid or croak
$!;
1523 exec(@_) or croak
$!;
1525 my @ret = (<$child>);
1526 close $child or croak
$?
;
1527 die $?
if $?
; # just in case close didn't error out
1528 return wantarray ?
@ret : join('',@ret);
1531 sub svn_compat_check
{
1532 my @co_help = safe_qx
(qw(svn co -h));
1533 unless (grep /ignore-externals/,@co_help) {
1534 print STDERR
"W: Installed svn version does not support ",
1535 "--ignore-externals\n";
1536 $_no_ignore_ext = 1;
1538 if (grep /usage: checkout URL\[\@REV\]/,@co_help) {
1539 $_svn_co_url_revs = 1;
1541 if (grep /\[TARGET\[\@REV\]\.\.\.\]/, `svn propget -h`) {
1542 $_svn_pg_peg_revs = 1;
1545 # I really, really hope nobody hits this...
1546 unless (grep /stop-on-copy/, (safe_qx
(qw(svn log -h)))) {
1548 W
: The installed svn version does
not support the
--stop
-on
-copy flag
in
1550 Lets hope the directory you
're tracking is not a branch or tag
1551 and was never moved within the repository...
1557 # *sigh*, new versions of svn won't honor
-r
<rev
> without URL@
<rev
>,
1558 # (and they won't honor URL@<rev> without -r<rev>, too!)
1559 sub svn_cmd_checkout
{
1560 my ($url, $rev, $dir) = @_;
1561 my @cmd = ('svn','co', "-r$rev");
1562 push @cmd, '--ignore-externals' unless $_no_ignore_ext;
1563 $url .= "\@$rev" if $_svn_co_url_revs;
1564 sys
(@cmd, $url, $dir);
1567 sub check_upgrade_needed
{
1569 my $pid = open my $child, '-|';
1570 defined $pid or croak
$!;
1573 exec('git-rev-parse',"$GIT_SVN-HEAD") or croak
$!;
1575 my @ret = (<$child>);
1576 close $child or croak
$?
;
1577 die $?
if $?
; # just in case close didn't error out
1578 return wantarray ?
@ret : join('',@ret);
1581 my $head = eval { safe_qx
('git-rev-parse',"refs/remotes/$GIT_SVN") };
1583 print STDERR
"Please run: $0 rebuild --upgrade\n";
1588 # fills %tree_map with a reverse mapping of trees to commits. Useful
1589 # for finding parents to commit on.
1590 sub map_tree_joins
{
1592 foreach my $br (@_branch_from) {
1593 my $pid = open my $pipe, '-|';
1594 defined $pid or croak
$!;
1596 exec(qw(git-rev-list --topo-order --pretty=raw), $br)
1600 if (/^commit ($sha1)$/o) {
1603 # if we've seen a commit,
1604 # we've seen its parents
1605 last if $seen{$commit};
1606 my ($tree) = (<$pipe> =~ /^tree ($sha1)$/o);
1607 unless (defined $tree) {
1608 die "Failed to parse commit $commit\n";
1610 push @
{$tree_map{$tree}}, $commit;
1614 close $pipe; # we could be breaking the pipe early
1619 if (@_branch_from) {
1620 print STDERR
'--branch|-b parameters are ignored when ',
1621 "--branch-all-refs|-B is passed\n";
1624 # don't worry about rev-list on non-commit objects/tags,
1625 # it shouldn't blow up if a ref is a blob or tree...
1626 chomp(@_branch_from = `git-rev-parse --symbolic --all`);
1629 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1631 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
1632 while (<$authors>) {
1634 next unless /^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/;
1635 my ($user, $name, $email) = ($1, $2, $3);
1636 $users{$user} = [$name, $email];
1638 close $authors or croak
$!;
1641 sub svn_propget_base
{
1643 $f .= '@BASE' if $_svn_pg_peg_revs;
1644 return safe_qx
(qw
/svn propget/, $p, $f);
1649 foreach (`git-rev-parse --symbolic --all`) {
1650 next unless s
#^refs/remotes/##;
1652 next unless -f
"$GIT_DIR/svn/$_/info/url";
1657 sub migration_check
{
1658 return if (-d
"$GIT_DIR/svn" || !-d
$GIT_DIR);
1659 print "Upgrading repository...\n";
1660 unless (-d
"$GIT_DIR/svn") {
1661 mkdir "$GIT_DIR/svn" or croak
$!;
1663 print "Data from a previous version of git-svn exists, but\n\t",
1664 "$GIT_SVN_DIR\n\t(required for this version ",
1665 "($VERSION) of git-svn) does not.\n";
1667 foreach my $x (`git-rev-parse --symbolic --all`) {
1668 next unless $x =~ s
#^refs/remotes/##;
1670 next unless -f
"$GIT_DIR/$x/info/url";
1671 my $u = eval { file_to_s
("$GIT_DIR/$x/info/url") };
1673 my $dn = dirname
("$GIT_DIR/svn/$x");
1674 mkpath
([$dn]) unless -d
$dn;
1675 rename "$GIT_DIR/$x", "$GIT_DIR/svn/$x" or croak
"$!: $x";
1676 my ($url, $path) = repo_path_split
($u);
1677 s_to_file
($url, "$GIT_DIR/svn/$x/info/repo_url");
1678 s_to_file
($path, "$GIT_DIR/svn/$x/info/repo_path");
1680 print "Done upgrading.\n";
1683 sub find_rev_before
{
1684 my ($r, $git_svn_id) = @_;
1685 my @revs = map { basename
$_ } <$GIT_DIR/svn/$git_svn_id/revs/*>;
1686 foreach my $r0 (sort { $b <=> $a } @revs) {
1688 return ($r0, file_to_s
("$GIT_DIR/svn/$git_svn_id/revs/$r0"));
1690 return (undef, undef);
1694 $GIT_SVN ||= $ENV{GIT_SVN_ID
} || 'git-svn';
1695 $GIT_SVN_DIR = "$GIT_DIR/svn/$GIT_SVN";
1696 $GIT_SVN_INDEX = "$GIT_SVN_DIR/index";
1698 $REV_DIR = "$GIT_SVN_DIR/revs";
1699 $SVN_WC = "$GIT_SVN_DIR/tree";
1702 # convert GetOpt::Long specs for use by git-repo-config
1703 sub read_repo_config
{
1704 return unless -d
$GIT_DIR;
1706 foreach my $o (keys %$opts) {
1707 my $v = $opts->{$o};
1708 my ($key) = ($o =~ /^([a-z\-]+)/);
1710 my $arg = 'git-repo-config';
1711 $arg .= ' --int' if ($o =~ /[:=]i$/);
1712 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1713 if (ref $v eq 'ARRAY') {
1714 chomp(my @tmp = `$arg --get-all svn.$key`);
1717 chomp(my $tmp = `$arg --get svn.$key`);
1718 if ($tmp && !($arg =~ / --bool / && $tmp eq 'false')) {
1725 sub set_default_vals
{
1726 if (defined $_repack) {
1727 $_repack = 1000 if ($_repack <= 0);
1728 $_repack_nr = $_repack;
1729 $_repack_flags ||= '';
1734 my $gr_file = shift;
1735 my ($grafts, $comments) = ({}, {});
1736 if (open my $fh, '<', $gr_file) {
1739 if (/^($sha1)\s+/) {
1742 @
{$comments->{$c}} = @tmp;
1745 foreach my $p (split /\s+/, $_) {
1746 $grafts->{$c}->{$p} = 1;
1752 close $fh or croak
$!;
1753 @
{$comments->{'END'}} = @tmp if @tmp;
1755 return ($grafts, $comments);
1759 my ($grafts, $comments, $gr_file) = @_;
1761 open my $fh, '>', $gr_file or croak
$!;
1762 foreach my $c (sort keys %$grafts) {
1763 if ($comments->{$c}) {
1764 print $fh $_ foreach @
{$comments->{$c}};
1766 my $p = $grafts->{$c};
1767 delete $p->{$c}; # commits are not self-reproducing...
1768 my $pid = open my $ch, '-|';
1769 defined $pid or croak
$!;
1771 exec(qw
/git-cat-file commit/, $c) or croak
$!;
1774 if (/^parent ([a-f\d]{40})/) {
1780 close $ch; # breaking the pipe
1781 print $fh $c, ' ', join(' ', sort keys %$p),"\n";
1783 if ($comments->{'END'}) {
1784 print $fh $_ foreach @
{$comments->{'END'}};
1786 close $fh or croak
$!;
1789 sub read_url_paths
{
1791 git_svn_each
(sub { my $x = shift;
1792 my $u = file_to_s
("$GIT_DIR/svn/$x/info/repo_url");
1793 my $p = file_to_s
("$GIT_DIR/svn/$x/info/repo_path");
1794 # we hate trailing slashes
1795 if ($u =~ s
#(?:^\/+|\/+$)##g) {
1796 s_to_file
($u,"$GIT_DIR/svn/$x/info/repo_url");
1798 if ($p =~ s
#(?:^\/+|\/+$)##g) {
1799 s_to_file
($p,"$GIT_DIR/svn/$x/info/repo_path");
1801 $l_map->{$u}->{$p} = $x;
1810 $svn_log hashref
(as returned by svn_log_raw
)
1812 fh
=> file handle of the
log file
,
1813 state => state of the
log file parser
(sep
/msg/rev
/msg_start
...)
1816 $log_msg hashref as returned by next_log_entry
($svn_log)
1818 msg
=> 'whitespace-formatted log entry
1819 ', # trailing newline is preserved
1820 revision
=> '8', # integer
1821 date
=> '2004-02-24T17:01:44.108345Z', # commit date
1822 author
=> 'committer name'
1826 @mods = array of diff
-index line hashes
, each element represents one line
1827 of diff
-index output
1829 diff
-index line
($m hash
)
1831 mode_a
=> first column of diff
-index output
, no leading
':',
1832 mode_b
=> second column of diff
-index output
,
1833 sha1_b
=> sha1sum of the final blob
,
1834 chg
=> change type
[MCRADT
],
1835 file_a
=> original file name of a file
(iff chg is
'C' or 'R')
1836 file_b
=> new
/current file name of a file
(any chg
)