git-svn: use SVN 1.7 to canonicalize when possible
[git.git] / perl / Git / SVN / Utils.pm
blob246d1aa6010956353e11cee0b6e7e594234ce094
1 package Git::SVN::Utils;
3 use strict;
4 use warnings;
6 use SVN::Core;
8 use base qw(Exporter);
10 our @EXPORT_OK = qw(
11 fatal
12 can_compress
13 canonicalize_path
14 canonicalize_url
18 =head1 NAME
20 Git::SVN::Utils - utility functions used across Git::SVN
22 =head1 SYNOPSIS
24 use Git::SVN::Utils qw(functions to import);
26 =head1 DESCRIPTION
28 This module contains functions which are useful across many different
29 parts of Git::SVN. Mostly it's a place to put utility functions
30 rather than duplicate the code or have classes grabbing at other
31 classes.
33 =head1 FUNCTIONS
35 All functions can be imported only on request.
37 =head3 fatal
39 fatal(@message);
41 Display a message and exit with a fatal error code.
43 =cut
45 # Note: not certain why this is in use instead of die. Probably because
46 # the exit code of die is 255? Doesn't appear to be used consistently.
47 sub fatal (@) { print STDERR "@_\n"; exit 1 }
50 =head3 can_compress
52 my $can_compress = can_compress;
54 Returns true if Compress::Zlib is available, false otherwise.
56 =cut
58 my $can_compress;
59 sub can_compress {
60 return $can_compress if defined $can_compress;
62 return $can_compress = eval { require Compress::Zlib; };
66 =head3 canonicalize_path
68 my $canoncalized_path = canonicalize_path($path);
70 Converts $path into a canonical form which is safe to pass to the SVN
71 API as a file path.
73 =cut
75 sub canonicalize_path {
76 my ($path) = @_;
77 my $dot_slash_added = 0;
78 if (substr($path, 0, 1) ne "/") {
79 $path = "./" . $path;
80 $dot_slash_added = 1;
82 # File::Spec->canonpath doesn't collapse x/../y into y (for a
83 # good reason), so let's do this manually.
84 $path =~ s#/+#/#g;
85 $path =~ s#/\.(?:/|$)#/#g;
86 $path =~ s#/[^/]+/\.\.##g;
87 $path =~ s#/$##g;
88 $path =~ s#^\./## if $dot_slash_added;
89 $path =~ s#^/##;
90 $path =~ s#^\.$##;
91 return $path;
95 =head3 canonicalize_url
97 my $canonicalized_url = canonicalize_url($url);
99 Converts $url into a canonical form which is safe to pass to the SVN
100 API as a URL.
102 =cut
104 sub canonicalize_url {
105 my $url = shift;
107 # The 1.7 way to do it
108 if ( defined &SVN::_Core::svn_uri_canonicalize ) {
109 return SVN::_Core::svn_uri_canonicalize($url);
111 # There wasn't a 1.6 way to do it, so we do it ourself.
112 else {
113 return _canonicalize_url_ourselves($url);
118 sub _canonicalize_url_ourselves {
119 my ($url) = @_;
120 $url =~ s#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
121 return $url;