2 use vars qw
/@ISA $config_dir $_ignore_refs_regex $_log_window_size/;
7 use Git
::SVN
::Utils
qw(
18 my ($ra_invalid, $can_do_switch, %ignored_err, $RA);
21 # enforce temporary pool usage for some simple functions
23 for my $f (qw
/rev_proplist get_latest_revnum get_uuid get_repos_root
25 my $SUPER = "SUPER::$f";
28 my $pool = SVN
::Pool
->new;
29 my @ret = $self->$SUPER(@_,$pool);
31 wantarray ?
@ret : $ret[0];
36 # serf has a bug that leads to a coredump upon termination if the
37 # remote access object is left around (not fixed yet in serf 1.3.1).
38 # Explicitly free it to work around the issue.
44 sub _auth_providers
() {
46 SVN
::Client
::get_simple_provider
(),
47 SVN
::Client
::get_ssl_server_trust_file_provider
(),
48 SVN
::Client
::get_simple_prompt_provider
(
49 \
&Git
::SVN
::Prompt
::simple
, 2),
50 SVN
::Client
::get_ssl_client_cert_file_provider
(),
51 SVN
::Client
::get_ssl_client_cert_prompt_provider
(
52 \
&Git
::SVN
::Prompt
::ssl_client_cert
, 2),
53 SVN
::Client
::get_ssl_client_cert_pw_file_provider
(),
54 SVN
::Client
::get_ssl_client_cert_pw_prompt_provider
(
55 \
&Git
::SVN
::Prompt
::ssl_client_cert_pw
, 2),
56 SVN
::Client
::get_username_provider
(),
57 SVN
::Client
::get_ssl_server_trust_prompt_provider
(
58 \
&Git
::SVN
::Prompt
::ssl_server_trust
),
59 SVN
::Client
::get_username_prompt_provider
(
60 \
&Git
::SVN
::Prompt
::username
, 2)
63 # earlier 1.6.x versions would segfault, and <= 1.5.x didn't have
65 if (::compare_svn_version
('1.6.15') >= 0) {
66 my $config = SVN
::Core
::config_get_config
($config_dir);
68 # config_get_config returns all config files from
69 # ~/.subversion, auth_get_platform_specific_client_providers
70 # just wants the config "file".
71 @a = ($config->{'config'}, undef);
72 $p = SVN
::Core
::auth_get_platform_specific_client_providers
(@a);
73 # Insert the return value from
74 # auth_get_platform_specific_providers
80 sub prepare_config_once
{
81 SVN
::_Core
::svn_config_ensure
($config_dir, undef);
82 my ($baton, $callbacks) = SVN
::Core
::auth_open_helper
(_auth_providers
);
83 my $config = SVN
::Core
::config_get_config
($config_dir);
84 my $dont_store_passwords = 1;
85 my $conf_t = $config->{'config'};
88 # The usage of $SVN::_Core::SVN_CONFIG_* variables
89 # produces warnings that variables are used only once.
90 # I had not found the better way to shut them up, so
91 # the warnings of type 'once' are disabled in this block.
92 if (SVN
::_Core
::svn_config_get_bool
($conf_t,
93 $SVN::_Core
::SVN_CONFIG_SECTION_AUTH
,
94 $SVN::_Core
::SVN_CONFIG_OPTION_STORE_PASSWORDS
,
96 SVN
::_Core
::svn_auth_set_parameter
($baton,
97 $SVN::_Core
::SVN_AUTH_PARAM_DONT_STORE_PASSWORDS
,
98 bless (\
$dont_store_passwords, "_p_void"));
100 if (SVN
::_Core
::svn_config_get_bool
($conf_t,
101 $SVN::_Core
::SVN_CONFIG_SECTION_AUTH
,
102 $SVN::_Core
::SVN_CONFIG_OPTION_STORE_AUTH_CREDS
,
104 $Git::SVN
::Prompt
::_no_auth_cache
= 1;
107 return ($config, $baton, $callbacks);
108 } # no warnings 'once'
111 Memoize
::memoize
'_auth_providers';
112 Memoize
::memoize
'prepare_config_once';
116 my ($class, $url) = @_;
117 $url = canonicalize_url
($url);
118 return $RA if ($RA && $RA->url eq $url);
123 my ($config, $baton, $callbacks) = prepare_config_once
();
124 my $self = SVN
::Ra
->new(url
=> $url, auth
=> $baton,
126 pool
=> SVN
::Pool
->new,
127 auth_provider_callbacks
=> $callbacks);
128 $RA = bless $self, $class;
130 # Make sure its canonicalized
132 $self->{svn_path
} = $url;
133 $self->{repos_root
} = $self->get_repos_root;
134 $self->{svn_path
} =~ s
#^\Q$self->{repos_root}\E(/|$)##;
135 $self->{cache
} = { check_path
=> { r
=> 0, data
=> {} },
136 get_dir
=> { r
=> 0, data
=> {} } };
146 $self->{url
} = canonicalize_url
($url);
154 my ($self, $path, $r) = @_;
155 my $cache = $self->{cache
}->{check_path
};
156 if ($r == $cache->{r
} && exists $cache->{data
}->{$path}) {
157 return $cache->{data
}->{$path};
159 my $pool = SVN
::Pool
->new;
160 my $t = $self->SUPER::check_path
($path, $r, $pool);
162 if ($r != $cache->{r
}) {
163 %{$cache->{data
}} = ();
166 $cache->{data
}->{$path} = $t;
170 my ($self, $dir, $r) = @_;
171 my $cache = $self->{cache
}->{get_dir
};
172 if ($r == $cache->{r
}) {
173 if (my $x = $cache->{data
}->{$dir}) {
174 return wantarray ? @
$x : $x->[0];
177 my $pool = SVN
::Pool
->new;
178 my ($d, undef, $props);
180 if (::compare_svn_version
('1.4.0') >= 0) {
181 # n.b. in addition to being potentially more efficient,
182 # this works around what appears to be a bug in some
184 my $kind = 1; # SVN_DIRENT_KIND
185 ($d, undef, $props) = $self->get_dir2($dir, $r, $kind, $pool);
187 ($d, undef, $props) = $self->SUPER::get_dir
($dir, $r, $pool);
189 my %dirents = map { $_ => { kind
=> $d->{$_}->kind } } keys %$d;
191 if ($r != $cache->{r
}) {
192 %{$cache->{data
}} = ();
195 $cache->{data
}->{$dir} = [ \
%dirents, $r, $props ];
196 wantarray ?
(\
%dirents, $r, $props) : \
%dirents;
199 # get_log(paths, start, end, limit,
200 # discover_changed_paths, strict_node_history, receiver)
202 my ($self, @args) = @_;
203 my $pool = SVN
::Pool
->new;
205 # svn_log_changed_path_t objects passed to get_log are likely to be
206 # overwritten even if only the refs are copied to an external variable,
207 # so we should dup the structures in their entirety. Using an
208 # externally passed pool (instead of our temporary and quickly cleared
209 # pool in Git::SVN::Ra) does not help matters at all...
210 my $receiver = pop @args;
211 my $prefix = "/".$self->{svn_path
};
212 $prefix =~ s
#/+($)##;
213 my $prefix_regex = qr
#^\Q$prefix\E#;
216 return &$receiver(@_) unless $paths;
218 foreach my $p (keys %$paths) {
219 my $i = $paths->{$p};
220 # Make path relative to our url, not repos_root
221 $p =~ s/$prefix_regex//;
222 my %s = map { $_ => $i->$_; }
223 qw
/copyfrom_path copyfrom_rev action/;
224 if ($s{'copyfrom_path'}) {
225 $s{'copyfrom_path'} =~ s/$prefix_regex//;
226 $s{'copyfrom_path'} = canonicalize_path
($s{'copyfrom_path'});
234 # the limit parameter was not supported in SVN 1.1.x, so we
235 # drop it. Therefore, the receiver callback passed to it
236 # is made aware of this limitation by being wrapped if
237 # the limit passed to is being wrapped.
238 if (::compare_svn_version
('1.2.0') <= 0) {
239 my $limit = splice(@args, 3, 1);
241 my $receiver = pop @args;
242 push(@args, sub { &$receiver(@_) if (--$limit >= 0) });
245 my $ret = $self->SUPER::get_log
(@args, $pool);
251 my ($self, $url1, $rev1, $url2, $rev2) = @_;
252 my $ctx = SVN
::Client
->new(auth
=> _auth_providers
);
253 my $out = IO
::File
->new_tmpfile;
255 # older SVN (1.1.x) doesn't take $pool as the last parameter for
256 # $ctx->diff(), so we'll create a default one
257 my $pool = SVN
::Pool
->new_default_sub;
259 $ra_invalid = 1; # this will open a new SVN::Ra connection to $url1
260 $ctx->diff([], $url1, $rev1, $url2, $rev2, 1, 1, 0, $out, $out);
262 my $ret = (($out->stat)[7] == 0);
263 close $out or croak
$!;
268 sub get_commit_editor
{
269 my ($self, $log, $cb, $pool) = @_;
271 my @lock = (::compare_svn_version
('1.2.0') >= 0) ?
(undef, 0) : ();
272 $self->SUPER::get_commit_editor
($log, $cb, @lock, $pool);
276 my ($self, $rev_a, $rev_b, $gs, $editor) = @_;
277 my $new = ($rev_a == $rev_b);
278 my $path = $gs->path;
280 if ($new && -e
$gs->{index}) {
281 unlink $gs->{index} or die
282 "Couldn't unlink index: $gs->{index}: $!\n";
284 my $pool = SVN
::Pool
->new;
285 $editor->set_path_strip($path);
286 my (@pc) = split m
#/#, $path;
287 my $reporter = $self->do_update($rev_b, (@pc ?
shift @pc : ''),
289 my @lock = (::compare_svn_version
('1.2.0') >= 0) ?
(undef) : ();
291 # Since we can't rely on svn_ra_reparent being available, we'll
292 # just have to do some magic with set_path to make it so
293 # we only want a partial path.
295 my $final = join('/', @pc);
297 $reporter->set_path($sp, $rev_b, 0, @lock, $pool);
298 $sp .= '/' if length $sp;
301 die "BUG: '$sp' != '$final'\n" if ($sp ne $final);
303 $reporter->set_path($sp, $rev_a, $new, @lock, $pool);
305 $reporter->finish_report($pool);
307 $editor->{git_commit_ok
};
310 # this requires SVN 1.4.3 or later (do_switch didn't work before 1.4.3, and
311 # svn_ra_reparent didn't work before 1.4)
313 my ($self, $rev_a, $rev_b, $gs, $url_b, $editor) = @_;
314 my $path = $gs->path;
315 my $pool = SVN
::Pool
->new;
317 my $old_url = $self->url;
318 my $full_url = add_path_to_url
( $self->url, $path );
319 my ($ra, $reparented);
321 if ($old_url =~ m
#^svn(\+\w+)?://# ||
322 ($full_url =~ m
#^https?://# &&
323 canonicalize_url
($full_url) ne $full_url)) {
327 $ra = Git
::SVN
::Ra
->new($full_url);
329 } elsif ($old_url ne $full_url) {
330 SVN
::_Ra
::svn_ra_reparent
(
332 canonicalize_url
($full_url),
335 $self->url($full_url);
340 $url_b = canonicalize_url
($url_b);
341 my $reporter = $ra->do_switch($rev_b, '', 1, $url_b, $editor, $pool);
342 my @lock = (::compare_svn_version
('1.2.0') >= 0) ?
(undef) : ();
343 $reporter->set_path('', $rev_a, 0, @lock, $pool);
344 $reporter->finish_report($pool);
347 SVN
::_Ra
::svn_ra_reparent
($self->{session
}, $old_url, $pool);
348 $self->url($old_url);
352 $editor->{git_commit_ok
};
355 sub longest_common_path
{
356 my ($gsv, $globs) = @_;
358 my $common_max = scalar @
$gsv;
360 foreach my $gs (@
$gsv) {
361 my @tmp = split m
#/#, $gs->path;
364 $p .= length($p) ?
"/$_" : $_;
370 $common_max += scalar @
$globs;
371 foreach my $glob (@
$globs) {
372 my @tmp = split m
#/#, $glob->{path}->{left};
375 $p .= length($p) ?
"/$_" : $_;
381 my $longest_path = '';
382 foreach (sort {length $b <=> length $a} keys %common) {
383 if ($common{$_} == $common_max) {
391 sub gs_fetch_loop_common
{
392 my ($self, $base, $head, $gsv, $globs) = @_;
393 return if ($base > $head);
394 my $gpool = SVN
::Pool
->new_default;
395 my $ra_url = $self->url;
396 my $reload_ra = sub {
401 $self = Git
::SVN
::Ra
->new($ra_url);
404 my $inc = $_log_window_size;
405 my ($min, $max) = ($base, $head < $base + $inc ?
$head : $base + $inc);
406 my $longest_path = longest_common_path
($gsv, $globs);
407 my $find_trailing_edge;
411 my $err_handler = $SVN::Error
::handler
;
412 $SVN::Error
::handler
= sub {
414 skip_unknown_revs
($err);
417 my ($paths, $r, $author, $date, $log) = @_;
419 { author
=> $author, date
=> $date, log => $log } ];
421 $self->get_log([$longest_path], $min, $max, 0, 1, 1,
422 sub { $revs{$_[1]} = _cb
(@_) });
424 print "Checked through r$max\r";
426 $find_trailing_edge = 1;
428 if ($err and $find_trailing_edge) {
429 print STDERR
"Path '$longest_path' ",
430 "was probably deleted:\n",
431 $err->expanded_message,
432 "\nWill attempt to follow ",
433 "revisions r$min .. r$max ",
434 "committed before the deletion\n";
436 while (--$hi >= $min) {
438 $self->get_log([$longest_path], $min, $hi,
441 $revs{$_[1]} = _cb
(@_) });
443 print STDERR
"r$min .. r$ok OK\n";
447 $find_trailing_edge = 0;
449 $SVN::Error
::handler
= $err_handler;
451 my %exists = map { $_->path => $_ } @
$gsv;
452 foreach my $r (sort {$a <=> $b} keys %revs) {
453 my ($paths, $logged) = @
{delete $revs{$r}};
455 foreach my $gs ($self->match_globs(\
%exists, $paths,
457 if ($gs->rev_map_max >= $r) {
460 next unless $gs->match_paths($paths, $r);
461 $gs->{logged_rev_props
} = $logged;
462 if (my $last_commit = $gs->last_commit) {
463 $gs->assert_index_clean($last_commit);
465 my $log_entry = $gs->do_fetch($paths, $r);
467 $gs->do_git_commit($log_entry);
469 $Git::SVN
::INDEX_FILES
{$gs->{index}} = 1;
471 foreach my $g (@
$globs) {
472 my $k = "svn-remote.$g->{remote}." .
474 Git
::SVN
::tmp_config
($k, $r);
476 $reload_ra->() if $ra_invalid;
478 # pre-fill the .rev_db since it'll eventually get filled in
479 # with '0' x40 if something new gets committed
480 foreach my $gs (@
$gsv) {
481 next if $gs->rev_map_max >= $max;
482 next if defined $gs->rev_map_get($max);
483 $gs->rev_map_set($max, 0 x40
);
485 foreach my $g (@
$globs) {
486 my $k = "svn-remote.$g->{remote}.$g->{t}-maxRev";
487 Git
::SVN
::tmp_config
($k, $max);
489 last if $max >= $head;
492 $max = $head if ($max > $head);
499 sub get_dir_globbed
{
500 my ($self, $left, $depth, $r) = @_;
502 my @x = eval { $self->get_dir($left, $r) };
503 return unless scalar @x == 3;
506 foreach my $de (keys %$dirents) {
507 next if $dirents->{$de}->{kind
} != $SVN::Node
::dir
;
509 my @args = ("$left/$de", $depth - 1, $r);
510 foreach my $dir ($self->get_dir_globbed(@args)) {
511 push @finalents, "$de/$dir";
514 push @finalents, $de;
520 # return value: 0 -- don't ignore, 1 -- ignore
523 my $refname = $g->{ref}->full_path($p);
524 return 1 if defined($g->{ignore_refs_regex
}) &&
525 $refname =~ m!$g->{ignore_refs_regex}!;
526 return 0 unless defined($_ignore_refs_regex);
527 return 1 if $refname =~ m!$_ignore_refs_regex!o;
532 my ($self, $exists, $paths, $globs, $r) = @_;
535 my ($self, $exists, $g, $r) = @_;
537 my @dirs = $self->get_dir_globbed($g->{path
}->{left
},
541 foreach my $de (@dirs) {
542 my $p = $g->{path
}->full_path($de);
543 next if $exists->{$p};
544 next if (length $g->{path
}->{right
} &&
545 ($self->check_path($p, $r) !=
547 next unless $p =~ /$g->{path}->{regex}/;
548 $exists->{$p} = Git
::SVN
->init($self->url, $p, undef,
549 $g->{ref}->full_path($de), 1);
552 foreach my $g (@
$globs) {
553 if (my $path = $paths->{"/$g->{path}->{left}"}) {
554 if ($path->{action
} =~ /^[AR]$/) {
555 get_dir_check
($self, $exists, $g, $r);
558 foreach (keys %$paths) {
559 if (/$g->{path}->{left_regex}/ &&
560 !/$g->{path}->{regex}/) {
561 next if $paths->{$_}->{action
} !~ /^[AR]$/;
562 get_dir_check
($self, $exists, $g, $r);
564 next unless /$g->{path}->{regex}/;
566 my $pathname = $g->{path
}->full_path($p);
567 next if is_ref_ignored
($g, $p);
568 next if $exists->{$pathname};
569 next if ($self->check_path($pathname, $r) !=
571 $exists->{$pathname} = Git
::SVN
->init(
572 $self->url, $pathname, undef,
573 $g->{ref}->full_path($p), 1);
576 foreach (split m
#/#, $g->{path}->{left}) {
578 next unless ($paths->{$c} &&
579 ($paths->{$c}->{action
} =~ /^[AR]$/));
580 get_dir_check
($self, $exists, $g, $r);
588 return $self->url if ($self->url eq $self->{repos_root
});
589 my $url = $self->{repos_root
};
590 my @components = split(m!/!, $self->{svn_path
});
593 $url = add_path_to_url
($url, $c);
595 my $ra = (ref $self)->new($url);
596 my $latest = $ra->get_latest_revnum;
597 $ra->get_log("", $latest, 0, 1, 0, 1, sub {});
599 } while ($@
&& ($c = shift @components));
601 return canonicalize_url
($url);
606 unless (defined $can_do_switch) {
607 my $pool = SVN
::Pool
->new;
609 $self->do_switch(1, '', 0, $self->url,
610 SVN
::Delta
::Editor
->new, $pool);
615 $rep->abort_report($pool);
623 sub skip_unknown_revs
{
625 my $errno = $err->apr_err();
626 # Maybe the branch we're tracking didn't
627 # exist when the repo started, so it's
628 # not an error if it doesn't, just continue
630 # Wonderfully consistent library, eh?
631 # 160013 - svn:// and file://
632 # 175002 - http(s)://
633 # 175007 - http(s):// (this repo required authorization, too...)
634 # More codes may be discovered later...
635 if ($errno == 175007 || $errno == 175002 || $errno == 160013) {
636 my $err_key = $err->expanded_message;
637 # revision numbers change every time, filter them out
638 $err_key =~ s/\d+/\0/g;
639 $err_key = "$errno\0$err_key";
640 unless ($ignored_err{$err_key}) {
641 warn "W: Ignoring error from SVN, path probably ",
642 "does not exist: ($errno): ",
643 $err->expanded_message,"\n";
644 warn "W: Do not be alarmed at the above message ",
645 "git-svn is just searching aggressively for ",
647 "This may take a while on large repositories\n";
648 $ignored_err{$err_key} = 1;
652 die "Error from SVN, ($errno): ", $err->expanded_message,"\n";
660 Git::SVN::Ra - Subversion remote access functions for git-svn
666 my $ra = Git::SVN::Ra->new($branchurl);
667 my ($dirents, $fetched_revnum, $props) =
668 $ra->get_dir('.', $SVN::Core::INVALID_REVNUM);
672 This is a wrapper around the L<SVN::Ra> module for use by B<git-svn>.
673 It fills in some default parameters (such as the authentication
674 scheme), smooths over incompatibilities between libsvn versions, adds
675 caching, and implements some functions specific to B<git-svn>.
677 Do not use it unless you are developing git-svn. The interface will
678 change as git-svn evolves.
682 Subversion perl bindings,
685 C<Git::SVN::Ra> has not been tested using callers other than
692 =head1 INCOMPATIBILITIES