git-svn: factor out _collapse_dotdot function
[alt-git.git] / perl / Git / SVN / Utils.pm
blob4925410dd1ebed4c279a124a25557fd4c767cd83
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 # Turn foo/../bar into bar
76 sub _collapse_dotdot {
77 my $path = shift;
79 1 while $path =~ s{/[^/]+/+\.\.}{};
80 1 while $path =~ s{[^/]+/+\.\./}{};
81 1 while $path =~ s{[^/]+/+\.\.}{};
83 return $path;
87 sub canonicalize_path {
88 my ($path) = @_;
89 my $dot_slash_added = 0;
90 if (substr($path, 0, 1) ne "/") {
91 $path = "./" . $path;
92 $dot_slash_added = 1;
94 # File::Spec->canonpath doesn't collapse x/../y into y (for a
95 # good reason), so let's do this manually.
96 $path =~ s#/+#/#g;
97 $path =~ s#/\.(?:/|$)#/#g;
98 $path = _collapse_dotdot($path);
99 $path =~ s#/$##g;
100 $path =~ s#^\./## if $dot_slash_added;
101 $path =~ s#^/##;
102 $path =~ s#^\.$##;
103 return $path;
107 =head3 canonicalize_url
109 my $canonicalized_url = canonicalize_url($url);
111 Converts $url into a canonical form which is safe to pass to the SVN
112 API as a URL.
114 =cut
116 sub canonicalize_url {
117 my $url = shift;
119 # The 1.7 way to do it
120 if ( defined &SVN::_Core::svn_uri_canonicalize ) {
121 return SVN::_Core::svn_uri_canonicalize($url);
123 # There wasn't a 1.6 way to do it, so we do it ourself.
124 else {
125 return _canonicalize_url_ourselves($url);
130 sub _canonicalize_url_ourselves {
131 my ($url) = @_;
132 $url =~ s#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
133 return $url;