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
|
package CPAN::Requirements::Dynamic;
$CPAN::Requirements::Dynamic::VERSION = '0.002';
use strict;
use warnings;
use Carp 'croak';
use Parse::CPAN::Meta;
sub _version_satisfies {
my ($version, $range) = @_;
require CPAN::Meta::Requirements::Range;
return CPAN::Meta::Requirements::Range->with_string_requirement($range)->accepts($version);
}
my %default_commands = (
can_run => sub {
my ($self, $command) = @_;
require IPC::Cmd;
return IPC::Cmd::can_run($command);
},
config_defined => sub {
my ($self, $entry) = @_;
return $self->{config}->get($entry) eq 'define';
},
has_env => sub {
my ($self, $entry) = @_;
return !!$ENV{$entry};
},
has_perl => sub {
my ($self, $range) = @_;
return _version_satisfies($], $range);
},
is_extended => sub {
return !!$ENV{EXTENDED_TESTING};
},
is_os => sub {
my ($self, @wanted) = @_;
return !!grep { $_ eq $^O } @wanted
},
is_os_type => sub {
my ($self, $wanted) = @_;
require Perl::OSType;
return Perl::OSType::is_os_type($wanted);
},
is_smoker => sub {
return !!$ENV{AUTOMATED_TESTING};
},
want_xs => sub {
my ($self) = @_;
return !!0 if $self->{pureperl_only};
require ExtUtils::HasCompiler;
return ExtUtils::HasCompiler::can_compile_extension(config => $self->{config});
},
);
sub new {
my ($class, %args) = @_;
return bless {
config => $args{config} || do { require ExtUtils::Config; ExtUtils::Config->new },
prereqs => $args{prereqs} || do { require CPAN::Meta::Prereqs; CPAN::Meta::Prereqs->new },
commands => $args{commands} || \%default_commands,
pureperl_only => $args{pureperl_only},
}, $class;
}
sub _get_command {
my ($self, $name) = @_;
if ($name eq 'or') {
return sub {
my ($self, @each) = @_;
for my $elem (@each) {
return !!1 if $self->_run_condition($elem);
}
return !!0;
};
} elsif ($name eq 'and') {
return sub {
my ($self, @each) = @_;
for my $elem (@each) {
return !!0 if not $self->_run_condition($elem);
}
return !!1;
};
} else {
return $self->{commands}{$name} || croak "No such command $name";
}
}
sub _run_condition {
my ($self, $condition) = @_;
my $negate = !!0;
my ($function, @arguments) = @{ $condition };
while ($function eq 'not') {
$function = shift @arguments;
$negate = !$negate;
}
my $method = $self->_get_command($function);
my $primary = $self->$method(@arguments);
return $negate ? !$primary : $primary;
}
sub evaluate {
my ($self, $argument) = @_;
my $version = $argument->{version};
croak "Dynamic prereqs spec version $version is not supported" if int $version > 1;
my @prereqs;
for my $entry (@{ $argument->{expressions} }) {
if ($self->_run_condition($entry->{condition})) {
if ($entry->{error}) {
die "$entry->{error}\n";
} elsif (my $prereqs = $entry->{prereqs}) {
my $phase = $entry->{phase} || 'runtime';
my $relation = $entry->{relation} || 'requires';
my $prereqs = { $phase => { $relation => $entry->{prereqs} } };
push @prereqs, CPAN::Meta::Prereqs->new($prereqs);
}
}
}
return $self->{prereqs}->with_merged_prereqs(\@prereqs);
}
sub evaluate_file {
my ($self, $filename) = @_;
my $structure = Parse::CPAN::Meta->load_file($filename);
return $self->evaluate($structure);
}
1;
# ABSTRACT: Dynamic prerequisites in meta files
__END__
=pod
=encoding UTF-8
=head1 NAME
CPAN::Requirements::Dynamic - Dynamic prerequisites in meta files
=head1 VERSION
version 0.002
=head1 SYNOPSIS
my $result = $dynamic->evaluate({
expressions => [
{
condition => [ 'has_perl' => 'v5.20.0' ],
prereqs => { Bar => "1.3" },
},
{
condition => [ is_os => 'linux' ],
prereqs => { Baz => "1.4" },
},
{
condition => [ config_defined => 'usethreads' ],
prereqs => { Quz => "1.5" },
},
{
condition => [ and =>
[ config_defined => 'usethreads' ],
[ is_os => 'openbsd' ],
],
prereqs => { Euz => "1.7" },
},
{
condition => [ not => is_os_type => 'Unix'],
error => 'OS unsupported',
},
],
});
=head1 DESCRIPTION
This module implements a format for describing dynamic prerequisites of a distribution.
=head1 METHODS
=head2 new(%options)
This constructor takes two (optional but recommended) named arguments
=over 4
=item * config
This is an L<ExtUtils::Config|ExtUtils::Config> (compatible) object for reading configuration.
=item * pureperl_only
This should be the value of the C<pureperl-only> flag.
=back
=head2 evaluate(%options)
This takes a hash with two named arguments: C<version> and C<expressions>. The former is the version of the format, it currently defaults to 1. The latter is a list of hashes that can contain the following keys:
=over 4
=item * condition
The condition of the dynamic requirement. This is an array with a name as first values and zero or more arguments following it. The semantics are described below under L</Conditions>
=item * prereqs
The prereqs is a hash with modules for keys and the required version as values (e.g. C<< { Foo => '1.234' } >>).
=item * phase
The phase of the requirements. This defaults to C<'runtime'>. Other valid values include C<'build'> and C<'test'>.
=item * relation
The relation of the requirements. This defaults to C<'requires'>, but other valid values include C<'recommends'>, C<'suggests'> and C<'conflicts'>.
=item * error
It will die with this error if set. The two messages C<"No support for OS"> and C<"OS unsupported"> have special meaning to CPAN Testers and are generally encouraged for situations that indicate not a failed build but an impossibility to build.
=back
C<condition> and one of C<prereqs> or C<error> are mandatory.
=head2 evaluate_file($filename)
This takes a filename, that can be either a YAML file or a JSON file, and evaluates it.
=head2 Conditions
=head3 can_run($command)
Returns true if a C<$command> can be run.
=head3 config_defined($variable)
This returns true if a specific configuration variable is defined.
=head3 has_env($variable)
This returns true if the environmental variable with the name in C<$variable> is true.
=head3 has_perl($version)
Returns true if the perl version satisfies C<$version>. C<$version> is interpreted exactly as in the CPAN::Meta spec (e.g. C<1.2> equals C<< '>= 1.2' >>).
=head3 is_extended
Returns true if extended testing is asked for.
=head3 is_os(@systems)
Returns true if the OS name equals any of C<@systems>.
=head3 is_os_type($type)
Returns true if the OS type equals C<$type>. Typical values of C<$type> are C<'Unix'> or C<'Windows'>.
=head3 is_smoker
Returns true when running on a smoker.
=head3 has_env
This returns true if the given environmental variable is true.
=head3 want_xs
This returns true if a compiler appears to be available, and the C<pureperl_only> option has not been set.
=head3 not
This takes an expression and negates its value.
=head3 or
This takes list of arrayrefs, each containing a condition expression. If at least one of the conditions is true this will also return true.
=head3 and
This takes a list of arrayrefs, each containing a condition expression. If all of the conditions are true this will also return true.
=head1 AUTHOR
Leon Timmermans <fawaka@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2023 by Leon Timmermans.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|