/usr/share/perl5/Arch/Backend.pm is in libarch-perl 0.5.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | # Arch Perl library, Copyright (C) 2005 Mikhael Goikhman
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
use 5.005;
use strict;
package Arch::Backend;
use Arch::Util;
use Exporter;
use vars qw(@ISA @EXPORT_OK $EXE $NAME $VRSN $CACHE_CONFIG);
@ISA = qw(Exporter);
@EXPORT_OK = qw(
arch_backend arch_backend_name arch_backend_version is_baz is_tla
has_archive_setup_cmd has_file_diffs_cmd has_register_archive_name_arg
has_tree_version_dir_opt has_tree_id_cmd has_set_tree_version_cmd
has_cache_feature get_cache_config
has_commit_version_arg has_commit_files_separator
has_revlib_patch_set_dir
);
BEGIN {
$EXE ||= $ENV{ARCH_BACKEND} || $ENV{TLA} || $ENV{BAZ} || "tla";
}
sub arch_backend (;$) {
$EXE = shift if $_[0];
return $EXE;
}
sub _parse_name_version () {
my ($line1) = Arch::Util::run_tla("--version") || "";
if ($line1 =~ /\b(tla|baz)(?:--.*--)?.*(\d+\.\d+(?:.\d+)?)/) {
($NAME, $VRSN) = ($1, $2);
} else {
($NAME, $VRSN) = ("tla", "1.3");
if ($EXE =~ /(tla|baz)(?:-(\d\.\d+(?:.\d+)?))/) {
$NAME = $1;
$VRSN = $2 if $2;
}
warn "Can't parse '$EXE --version' and determine arch backend name/version.\n"
. "Please check \$ARCH_BACKEND and optionally notify arch-perl developers.\n"
. "Assuming ($NAME, $VRSN). Set \$ARCH_PERL_QUIET to disable this warning.\n"
unless $ENV{ARCH_PERL_QUIET};
}
#print "arch_backend name and version: ($NAME, $VRSN)\n";
return ($NAME, $VRSN);
}
sub arch_backend_name () {
return $NAME ||= (_parse_name_version)[0];
}
sub arch_backend_version () {
return $VRSN ||= (_parse_name_version)[1];
}
sub is_baz () {
return arch_backend_name() eq "baz";
}
sub is_tla () {
return arch_backend_name() eq "tla";
}
sub has_archive_setup_cmd () {
return is_tla();
}
sub has_file_diffs_cmd () {
return is_tla() && arch_backend_version() =~ /^1\.[12]/;
}
sub has_register_archive_name_arg () {
return is_tla();
}
sub has_tree_version_dir_opt () {
return is_baz();
}
sub has_tree_id_cmd () {
return is_baz();
}
sub has_set_tree_version_cmd () {
return is_tla();
}
sub has_cache_feature () {
return is_baz();
}
sub get_cache_config () {
unless ($CACHE_CONFIG) {
my $output = "";
if (has_cache_feature()) {
# baz-1.1 .. baz-1.3.2 prints on stderr instead of stdout
my $baz_is_buggy = 1;
if ($baz_is_buggy) {
my $file = "$ENV{HOME}/.arch-params/=arch-cache";
if (-f $file) {
my $dir = Arch::Util::load_file($file);
$dir =~ s/\r?\n.*//s;
$output = "Location: $dir\n" if $dir && -d $dir;
}
} else {
$output = Arch::Util::run_tla("cache-config");
}
}
my $location = $output =~ /^Location: (.*)/m && $1 || undef;
$CACHE_CONFIG = {
dir => $location,
};
}
return $CACHE_CONFIG;
}
sub has_commit_version_arg () {
return is_tla() || is_baz() && arch_backend_version() =~ /^1\.[0123]/;
}
sub has_commit_files_separator () {
return has_commit_version_arg();
}
sub has_revlib_patch_set_dir () {
return is_tla() || is_baz() && arch_backend_version() =~ /^1\.[0123]/;
}
1;
__END__
=head1 NAME
Arch::Backend - Arch backend feature specific functions
=head1 SYNOPSIS
use Arch::Backend qw(arch_backend is_baz has_file_diffs_cmd);
my $exe = arch_backend();
print "Not in tree, try '$exe init-tree'\n";
my $version = Arch::Backend::arch_backend_version;
print "Using baz $version as a backend\n" if is_baz();
my $cmd = has_file_diffs_cmd()
? "file-diffs"
: "file-diff";
Arch::Util::run_tla($cmd, $filename);
=head1 DESCRIPTION
A set of helper functions suitable for GNU Arch related projects in Perl.
Higher (object oriented) levels of Arch/Perl library make use of these
helper functions to query certain aspects (like incompatible features)
of the actual arch backend used.
=head1 FUNCTIONS
The following functions are available:
B<arch_backend>,
B<arch_backend_name>,
B<arch_backend_version>,
B<is_tla>,
B<is_baz>,
B<has_archive_setup_cmd>,
B<has_file_diffs_cmd>,
B<has_register_archive_name_arg>,
B<has_tree_version_dir_opt>,
B<has_tree_id_cmd>,
B<has_set_tree_version_cmd>,
B<has_cache_feature>,
B<get_cache_config>,
B<has_commit_version_arg>,
B<has_commit_files_separator>,
B<has_revlib_patch_set_dir>.
=over 4
=item B<arch_backend> [I<exe>]
Return or set the arch backend executable, like "/opt/bin/tla" or "baz-1.3".
By default, the arch backend executable is taken from environment variable
$ARCH_BACKEND (or $TLA, or $BAZ). If no environment variable is set, then
"tla" is used.
=item B<arch_backend_name>
Return the brand name of the arch backend, "tla" or "baz".
=item B<arch_backend_version>
Return the arch backend version, like "1.3.1".
=item B<is_tla>
Return true if B<arch_backend_name> is "tla".
=item B<is_baz>
Return true if B<arch_backend_name> is "baz".
=item B<has_archive_setup_cmd>
Return true if the arch backend has "archive-setup" command. baz removed
this command.
=item B<has_file_diffs_cmd>
Return true if the arch backend has "file-diffs" command. It was renamed
to "file-diff" in tla-1.3.
=item B<has_register_archive_name_arg>
Return true if the arch backend's "register-archive" command supports two
positional arguments, one of which is archive name. baz-1.3 removed such
syntax; the previous baz versions supported this syntax, but it was
useless, since the archive was accessed anyway.
=item B<has_tree_version_dir_opt>
Return true if the arch backend's "tree-version" command supports "-d"
options. This is true for baz.
=item B<has_tree_id_cmd>
Return true if the arch backend has "tree-id" command.
This is true for baz.
=item B<has_set_tree_version_cmd>
Return true if the arch backend has "set-tree-version" command.
baz removed this command and merged it into "tree-version".
=item B<has_cache_feature>
Return true if the arch backend supports Arch Cache feature.
This is true for baz.
=item B<get_cache_config>
Return hash with the following keys: dir - directory of the local cache
(or undef if not applicable).
=item B<has_commit_version_arg>
Return true if the arch backend's "commit" command supports version
argument. baz-1.4 removed this functionality.
=item B<has_commit_files_separator>
Return true if the arch backend's "commit" command requires "--"
argument to separate files. baz-1.4 removed this separator.
=item B<has_revlib_patch_set_dir>
Return true if the arch backend's creates ,,patch-set subdirectory in
revision library. baz-1.4 removed this functionality.
=back
=head1 BUGS
This module uses heuristics and does not (intend to) provide the perfect
information. Requires constant updating.
=head1 AUTHORS
Mikhael Goikhman (migo@homemail.com--Perl-GPL/arch-perl--devel).
=head1 SEE ALSO
For more information, see L<tla>, L<baz>, L<Arch>.
=cut
|