Git::SVN::Utils: remove irrelevant comment
[alt-git.git] / perl / Git / SVN / Utils.pm
blob17ba698a6d01f16f8028fc43e1c67bff96294994
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
15 join_paths
19 =head1 NAME
21 Git::SVN::Utils - utility functions used across Git::SVN
23 =head1 SYNOPSIS
25 use Git::SVN::Utils qw(functions to import);
27 =head1 DESCRIPTION
29 This module contains functions which are useful across many different
30 parts of Git::SVN. Mostly it's a place to put utility functions
31 rather than duplicate the code or have classes grabbing at other
32 classes.
34 =head1 FUNCTIONS
36 All functions can be imported only on request.
38 =head3 fatal
40 fatal(@message);
42 Display a message and exit with a fatal error code.
44 =cut
46 # Note: not certain why this is in use instead of die. Probably because
47 # the exit code of die is 255? Doesn't appear to be used consistently.
48 sub fatal (@) { print STDERR "@_\n"; exit 1 }
51 =head3 can_compress
53 my $can_compress = can_compress;
55 Returns true if Compress::Zlib is available, false otherwise.
57 =cut
59 my $can_compress;
60 sub can_compress {
61 return $can_compress if defined $can_compress;
63 return $can_compress = eval { require Compress::Zlib; };
67 =head3 canonicalize_path
69 my $canoncalized_path = canonicalize_path($path);
71 Converts $path into a canonical form which is safe to pass to the SVN
72 API as a file path.
74 =cut
76 # Turn foo/../bar into bar
77 sub _collapse_dotdot {
78 my $path = shift;
80 1 while $path =~ s{/[^/]+/+\.\.}{};
81 1 while $path =~ s{[^/]+/+\.\./}{};
82 1 while $path =~ s{[^/]+/+\.\.}{};
84 return $path;
88 sub canonicalize_path {
89 my ($path) = @_;
90 my $dot_slash_added = 0;
91 if (substr($path, 0, 1) ne "/") {
92 $path = "./" . $path;
93 $dot_slash_added = 1;
95 $path =~ s#/+#/#g;
96 $path =~ s#/\.(?:/|$)#/#g;
97 $path = _collapse_dotdot($path);
98 $path =~ s#/$##g;
99 $path =~ s#^\./## if $dot_slash_added;
100 $path =~ s#^/##;
101 $path =~ s#^\.$##;
102 return $path;
106 =head3 canonicalize_url
108 my $canonicalized_url = canonicalize_url($url);
110 Converts $url into a canonical form which is safe to pass to the SVN
111 API as a URL.
113 =cut
115 sub canonicalize_url {
116 my $url = shift;
118 # The 1.7 way to do it
119 if ( defined &SVN::_Core::svn_uri_canonicalize ) {
120 return SVN::_Core::svn_uri_canonicalize($url);
122 # There wasn't a 1.6 way to do it, so we do it ourself.
123 else {
124 return _canonicalize_url_ourselves($url);
129 sub _canonicalize_url_ourselves {
130 my ($url) = @_;
131 $url =~ s#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
132 return $url;
136 =head3 join_paths
138 my $new_path = join_paths(@paths);
140 Appends @paths together into a single path. Any empty paths are ignored.
142 =cut
144 sub join_paths {
145 my @paths = @_;
147 @paths = grep { defined $_ && length $_ } @paths;
149 return '' unless @paths;
150 return $paths[0] if @paths == 1;
152 my $new_path = shift @paths;
153 $new_path =~ s{/+$}{};
155 my $last_path = pop @paths;
156 $last_path =~ s{^/+}{};
158 for my $path (@paths) {
159 $path =~ s{^/+}{};
160 $path =~ s{/+$}{};
161 $new_path .= "/$path";
164 return $new_path .= "/$last_path";