1 package Git
::SVN
::Utils
;
21 Git::SVN::Utils - utility functions used across Git::SVN
25 use Git::SVN::Utils qw(functions to import);
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
36 All functions can be imported only on request.
42 Display a message and exit with a fatal error code.
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 }
53 my $can_compress = can_compress;
55 Returns true if Compress::Zlib is available, false otherwise.
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
76 # Turn foo/../bar into bar
77 sub _collapse_dotdot
{
80 1 while $path =~ s{/[^/]+/+\.\.}{};
81 1 while $path =~ s{[^/]+/+\.\./}{};
82 1 while $path =~ s{[^/]+/+\.\.}{};
88 sub canonicalize_path
{
92 # The 1.7 way to do it
93 if ( defined &SVN
::_Core
::svn_dirent_canonicalize
) {
94 $path = _collapse_dotdot
($path);
95 $rv = SVN
::_Core
::svn_dirent_canonicalize
($path);
97 # The 1.6 way to do it
98 # This can return undef on subversion-perl-1.4.2-2.el5 (CentOS 5.2)
99 elsif ( defined &SVN
::_Core
::svn_path_canonicalize
) {
100 $path = _collapse_dotdot
($path);
101 $rv = SVN
::_Core
::svn_path_canonicalize
($path);
104 return $rv if defined $rv;
106 # No SVN API canonicalization is available, or the SVN API
107 # didn't return a successful result, do it ourselves
108 return _canonicalize_path_ourselves
($path);
112 sub _canonicalize_path_ourselves
{
114 my $dot_slash_added = 0;
115 if (substr($path, 0, 1) ne "/") {
116 $path = "./" . $path;
117 $dot_slash_added = 1;
120 $path =~ s
#/\.(?:/|$)#/#g;
121 $path = _collapse_dotdot
($path);
123 $path =~ s
#^\./## if $dot_slash_added;
130 =head3 canonicalize_url
132 my $canonicalized_url = canonicalize_url($url);
134 Converts $url into a canonical form which is safe to pass to the SVN
139 sub canonicalize_url
{
142 # The 1.7 way to do it
143 if ( defined &SVN
::_Core
::svn_uri_canonicalize
) {
144 return SVN
::_Core
::svn_uri_canonicalize
($url);
146 # There wasn't a 1.6 way to do it, so we do it ourself.
148 return _canonicalize_url_ourselves
($url);
153 sub _canonicalize_url_ourselves
{
155 $url =~ s
#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
162 my $new_path = join_paths(@paths);
164 Appends @paths together into a single path. Any empty paths are ignored.
171 @paths = grep { defined $_ && length $_ } @paths;
173 return '' unless @paths;
174 return $paths[0] if @paths == 1;
176 my $new_path = shift @paths;
177 $new_path =~ s{/+$}{};
179 my $last_path = pop @paths;
180 $last_path =~ s{^/+}{};
182 for my $path (@paths) {
185 $new_path .= "/$path";
188 return $new_path .= "/$last_path";