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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
|
#line 1 "inc/Module/Install/GetProgramLocations.pm - /Library/Perl/5.8.1/Module/Install/GetProgramLocations.pm"
package Module::Install::GetProgramLocations;
use strict;
use Config;
use Cwd;
use Carp;
use File::Spec;
use Sort::Versions;
use Exporter();
use vars qw( @ISA $VERSION @EXPORT );
use Module::Install::Base;
@ISA = qw( Module::Install::Base Exporter );
@EXPORT = qw( &Get_GNU_Version
&Get_Bzip2_Version
);
$VERSION = sprintf "%d.%02d%02d", q/0.30.0/ =~ /(\d+)/g;
# ---------------------------------------------------------------------------
sub Get_Program_Locations
{
my $self = shift;
my %info = %{ shift @_ };
foreach my $program (keys %info)
{
croak "argname is required for $program"
unless defined $info{$program}{'argname'};
}
# Module::Install says it requires perl 5.004
$self->requires( perl => '5.004' );
$self->include_deps('Config',0);
$self->include_deps('File::Spec',0);
$self->include_deps('Sort::Versions',0);
$self->include_deps('Cwd',0);
my %user_specified_program_paths =
$self->_Get_User_Specified_Program_Locations(\%info);
if (keys %user_specified_program_paths)
{
return $self->_Get_ARGV_Program_Locations(\%info,
\%user_specified_program_paths);
}
else
{
return $self->_Prompt_User_For_Program_Locations(\%info);
}
}
# ---------------------------------------------------------------------------
sub _Get_User_Specified_Program_Locations
{
my $self = shift;
my %info = %{ shift @_ };
my %user_specified_program_paths;
my @remaining_args;
# Look for user-provided paths in @ARGV
foreach my $arg (@ARGV)
{
my ($var,$value) = $arg =~ /^(.*?)=(.*)$/;
push(@remaining_args, $arg), next unless defined $var;
$value = undef if $value eq '';
my $is_a_program_arg = 0;
foreach my $program (keys %info)
{
if ($var eq $info{$program}{'argname'})
{
$user_specified_program_paths{$program} = $value;
$is_a_program_arg = 1;
last;
}
}
push @remaining_args, $arg unless $is_a_program_arg;
}
@ARGV = @remaining_args;
return %user_specified_program_paths;
}
# ---------------------------------------------------------------------------
sub _Get_ARGV_Program_Locations
{
my $self = shift;
my %info = %{ shift @_ };
my %program_locations = %{ shift @_ };
my %program_info;
foreach my $program_name (sort keys %info)
{
$program_info{$program_name} =
{ 'path' => undef, 'type' => undef, 'version' => undef };
next if exists $program_locations{$program_name} &&
$program_locations{$program_name} eq '';
$program_locations{$program_name} = $info{$program_name}{'default'}
unless exists $program_locations{$program_name};
my $full_path = $self->_Make_Absolute($program_locations{$program_name});
if (!defined $self->can_run($full_path))
{
warn "\"$full_path\" does not appear to be a valid executable\n";
warn "Using anyway\n";
$program_info{$program_name} =
{ path => $full_path, type => undef, version => undef };
}
else
{
my ($is_valid,$type,$version) =
$self->_Program_Version_Is_Valid($program_name,$full_path,\%info);
unless($is_valid)
{
warn "\"$full_path\" is not a correct version\n";
warn "Using anyway\n";
}
$program_info{$program_name} =
{ path => $full_path, type => $type, version => $version };
}
}
return %program_info;
}
# ---------------------------------------------------------------------------
sub _Prompt_User_For_Program_Locations
{
my $self = shift;
my %info = %{ shift @_ };
print "Enter the full path, or \"none\" for none.\n";
my $last_choice = '';
my %program_info;
ASK: foreach my $program_name (sort keys %info)
{
my ($name,$full_path);
# Convert any default to a full path, initially
$name = $Config{$program_name};
$full_path = $self->can_run($name);
if ($name eq '' || !defined $full_path)
{
$name = $info{$program_name}{'default'};
$full_path = $self->can_run($name);
}
$full_path = 'none' if !defined $full_path || $name eq '';
my $allowed_types = '';
if (exists $info{$program_name}{'types'})
{
foreach my $type (keys %{ $info{$program_name}{'types'} } )
{
$allowed_types .= ", $type";
}
$allowed_types =~ s/^, //;
$allowed_types =~ s/(.*), /$1, or /;
$allowed_types = " ($allowed_types";
$allowed_types .= scalar(keys %{ $info{$program_name}{'types'} }) > 1 ?
" types)" : " type)";
}
my $choice = $self->prompt(
"Where can I find your \"$program_name\" executable?" .
"$allowed_types" => $full_path);
$program_info{$program_name} =
{ path => undef, type => undef, version => undef }, next
if $choice eq 'none';
$choice = $self->_Make_Absolute($choice);
if (!defined $self->can_run($choice))
{
warn "\"$choice\" does not appear to be a valid executable\n";
if ($last_choice ne $choice)
{
$last_choice = $choice;
redo ASK;
}
warn "Using anyway\n";
}
else
{
my ($is_valid,$type,$version) =
$self->_Program_Version_Is_Valid($program_name,$choice,\%info);
if(!$is_valid)
{
warn "\"$choice\" is not a correct version\n";
if ($last_choice ne $choice)
{
$last_choice = $choice;
redo ASK;
}
warn "Using anyway\n";
}
$program_info{$program_name} =
{ path => $choice, type => $type, version => $version };
}
}
return %program_info;
}
# ---------------------------------------------------------------------------
sub _Program_Version_Is_Valid
{
my $self = shift;
my $program_name = shift;
my $program = shift;
my %info = %{ shift @_ };
if (exists $info{$program_name}{'types'})
{
my $version;
TYPE: foreach my $type (keys %{$info{$program_name}{'types'}})
{
$version = &{$info{$program_name}{'types'}{$type}{'fetch'}}($program);
next TYPE unless defined $version;
if ($self->Version_Matches_Range($version,
$info{$program_name}{'types'}{$type}{'numbers'}))
{
return (1,$type,$version);
}
}
my $version_string = '<UNKNOWN>';
$version_string = $version if defined $version;
warn "\"$program\" version $version_string is not valid for any of the following:\n";
foreach my $type (keys %{$info{$program_name}{'types'}})
{
warn " $type => " .
$info{$program_name}{'types'}{$type}{'numbers'} . "\n";
}
return (0,undef,undef);
}
return (1,undef,undef);
}
# ---------------------------------------------------------------------------
sub Version_Matches_Range
{
my $self = shift;
my $version = shift;
my $version_specification = shift;
my $range_pattern = '([\[\(].*?\s*,\s*.*?[\]\)])';
my @ranges = $version_specification =~ /$range_pattern/g;
die "Version specification \"$version_specification\" is incorrect\n"
unless @ranges;
foreach my $range (@ranges)
{
my ($lower_bound,$lower_version,$upper_version,$upper_bound) =
( $range =~ /([\[\(])(.*?)\s*,\s*(.*?)([\]\)])/ );
$lower_bound = '>' . ( $lower_bound eq '[' ? '=' : '');
$upper_bound = '<' . ( $upper_bound eq ']' ? '=' : '');
my ($lower_bound_satisified, $upper_bound_satisified);
$lower_bound_satisified =
($lower_version eq '' || versioncmp($version,$lower_version) == 1 ||
($lower_bound eq '>=' && versioncmp($version,$lower_version) == 0));
$upper_bound_satisified =
($upper_version eq '' || versioncmp($version,$upper_version) == -1 ||
($upper_bound eq '<=' && versioncmp($version,$upper_version) == 0));
return 1 if $lower_bound_satisified && $upper_bound_satisified;
}
return 0;
}
# ---------------------------------------------------------------------------
# Returns the original if the full path can't be found
sub _Make_Absolute
{
my $self = shift;
my $program = shift;
if(File::Spec->file_name_is_absolute($program))
{
return $program;
}
else
{
my $path_to_choice = undef;
foreach my $dir ((split /$Config::Config{path_sep}/, $ENV{PATH}), cwd())
{
$path_to_choice = File::Spec->catfile($dir, $program);
last if defined $self->can_run($path_to_choice);
}
return $program unless -e $path_to_choice;
warn "WARNING: Avoiding security risks by converting to absolute paths\n";
warn "\"$program\" is currently in your path at \"$path_to_choice\"\n";
return $path_to_choice;
}
}
# ---------------------------------------------------------------------------
sub Get_GNU_Version
{
my $self = shift;
my $program = shift;
die "Missing GNU program to get version for" unless defined $program;
my $version_message;
# Newer versions
{
my $command = "$program --version 2>" . File::Spec->devnull();
$version_message = `$command`;
}
# Older versions use -V
unless($version_message =~ /\b(GNU|Free\s+Software\s+Foundation)\b/s)
{
my $command = "$program -V 2>&1 1>" . File::Spec->devnull();
$version_message = `$command`;
}
return undef unless
$version_message =~ /\b(GNU|Free\s+Software\s+Foundation)\b/s;
my ($program_version) = $version_message =~ /^.*?([\d]+\.[\d.a-z]+)/s;
return $program_version;
}
# ---------------------------------------------------------------------------
sub Get_Bzip2_Version
{
my $self = shift;
my $program = shift;
my $command = "$program --help 2>&1 1>" . File::Spec->devnull();
my $version_message = `$command`;
my ($program_version) = $version_message =~ /^.*?([\d]+\.[\d.a-z]+)/s;
return $program_version;
}
1;
# ---------------------------------------------------------------------------
#line 617
|