1 # Copyright (C) 1997, 2001, 2002, 2003 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 package Automake
::Condition
;
23 use vars
'@ISA', '@EXPORT_OK';
25 @EXPORT_OK = qw
/TRUE FALSE reduce_and reduce_or/;
29 Automake::Condition - record a conjunction of conditionals
33 use Automake::Condition;
35 # Create a condition to represent "COND1 and not COND2".
36 my $cond = new Automake::Condition "COND1_TRUE", "COND2_FALSE";
37 # Create a condition to represent "not COND3".
38 my $other = new Automake::Condition "COND3_FALSE";
40 # Create a condition to represent
41 # "COND1 and not COND2 and not COND3".
42 my $both = $cond->merge ($other);
44 # Likewise, but using a list of conditional strings
45 my $both2 = $cond->merge_conds ("COND3_FALSE");
47 # Strip from $both any subconditions which are in $other.
48 # This is the opposite of merge.
49 $cond = $both->strip ($other);
51 # Return the list of conditions ("COND1_TRUE", "COND2_FALSE"):
52 my @conds = $cond->conds;
54 # Is $cond always true? (Not in this example)
55 if ($cond->true) { ... }
57 # Is $cond always false? (Not in this example)
58 if ($cond->false) { ... }
60 # Return the list of conditionals as a string:
61 # "COND1_TRUE COND2_FALSE"
62 my $str = $cond->string;
64 # Return the list of conditionals as a human readable string:
66 my $str = $cond->human;
68 # Return the list of conditionals as a AC_SUBST-style string:
69 # "@COND1_TRUE@@COND2_FALSE@"
70 my $subst = $cond->subst_string;
72 # Is $cond true when $both is true? (Yes in this example)
73 if ($cond->true_when ($both)) { ... }
75 # Is $cond redundant w.r.t. {$other, $both}?
76 # (Yes in this example)
77 if ($cond->redundant_wrt ($other, $both)) { ... }
79 # Does $cond imply any of {$other, $both}?
80 # (Not in this example)
81 if ($cond->implies_any ($other, $both)) { ... }
83 # Remove superfluous conditionals assuming they will eventually
84 # be multiplied together.
85 # (Returns @conds = ($both) in this example, because
86 # $other and $cond are implied by $both.)
87 @conds = Automake::Condition::reduce_and ($other, $both, $cond);
89 # Remove superfluous conditionals assuming they will eventually
91 # (Returns @conds = ($cond, $other) in this example, because
92 # $both is a subset condition of $cond: $cond is true whenever $both
94 @conds = Automake::Condition::reduce_or ($other, $both, $cond);
96 # Invert a Condition. This returns a list of Conditions.
101 A C<Condition> is a conjunction of conditionals (i.e., atomic conditions
102 defined in F<configure.ac> by C<AM_CONDITIONAL>. In Automake they
103 are used to represent the conditions into which F<Makefile> variables and
104 F<Makefile> rules are defined.
106 If the variable C<VAR> is defined as
114 then it will be associated a C<Condition> created with
115 the following statement.
117 new Automake::Condition "COND1_TRUE", "COND2_TRUE";
119 Remember that a C<Condition> is a I<conjunction> of conditionals, so
120 the above C<Condition> means C<VAR> is defined when C<COND1>
121 B<and> C<COND2> are true. There is no way to express disjunctions
122 (i.e., I<or>s) with this class (but see L<DisjConditions>).
124 Another point worth to mention is that each C<Condition> object is
125 unique with respect to its conditionals. Two C<Condition> objects
126 created for the same set of conditionals will have the same adress.
127 This makes it easy to compare C<Condition>s, just compare the
130 my $c1 = new Automake::Condition "COND1_TRUE", "COND2_TRUE";
131 my $c2 = new Automake::Condition "COND1_TRUE", "COND2_TRUE";
138 =item C<$cond = new Automake::Condition [@conds]>
140 Return a C<Condition> objects for the conjunctions of conditionals
141 listed in C<@conds> as strings.
143 An item in C<@conds> should be either C<"FALSE">, C<"TRUE">, or have
144 the form C<"NAME_FALSE"> or C<"NAME_TRUE"> where C<NAME> can be
145 anything (in practice C<NAME> should be the name of a conditional
146 declared in F<configure.ac> with C<AM_CONDITIONAL>, but it's not
147 C<Automake::Condition>'s responsability to ensure this).
149 An empty C<@conds> means C<"TRUE">.
151 As explained previously, the reference (object) returned is unique
152 with respect to C<@conds>. For this purpose, duplicate elements are
153 ignored, and C<@conds> is rewriten as C<("FALSE")> if it contains
154 C<"FALSE"> or two contradictory conditionals (such as C<"NAME_FALSE">
157 Therefore the following two statements create the same object (they
158 both create the C<"FALSE"> condition).
160 my $c3 = new Automake::Condition "COND1_TRUE", "COND1_FALSE";
161 my $c4 = new Automake::Condition "COND2_TRUE", "FALSE";
163 $c3 == FALSE; # True!
167 # Keys in this hash are conditional strings. Values are the
168 # associated object conditions. This is used by `new' to reuse
169 # Condition objects with identical conditionals.
170 use vars
'%_condition_singletons';
171 # Do NOT reset this hash here. It's already empty by default,
172 # and any setting would otherwise occur AFTER the `TRUE' and `FALSE'
173 # constants definitions.
174 # %_condition_singletons = ();
178 my ($class, @conds) = @_;
184 # Accept strings like "FOO BAR" as shorthand for ("FOO", "BAR").
185 @conds = map { split (' ', $_) } @conds;
187 for my $cond (@conds)
189 next if $cond eq 'TRUE';
191 # Catch some common programming errors:
192 # - A Condition passed to new
193 confess
"`$cond' is a reference, expected a string" if ref $cond;
194 # - A Condition passed as a string to new
195 confess
"`$cond' does not look like a condition" if $cond =~ /::/;
197 # Detect cases when @conds can be simplified to FALSE.
198 if (($cond eq 'FALSE' && $#conds > 0)
199 || ($cond =~ /^(.*)_TRUE$/ && exists $self->{'hash'}{"${1}_FALSE"})
200 || ($cond =~ /^(.*)_FALSE$/ && exists $self->{'hash'}{"${1}_TRUE"}))
205 $self->{'hash'}{$cond} = 1;
208 my $key = $self->string;
209 if (exists $_condition_singletons{$key})
211 return $_condition_singletons{$key};
213 $_condition_singletons{$key} = $self;
217 =item C<$newcond = $cond-E<gt>merge (@otherconds)>
219 Return a new condition which is the conjunction of
220 C<$cond> and C<@otherconds>.
226 my ($self, @otherconds) = @_;
227 new Automake
::Condition
(map { $_->conds } ($self, @otherconds));
230 =item C<$newcond = $cond-E<gt>merge_conds (@conds)>
232 Return a new condition which is the conjunction of C<$cond> and
233 C<@conds>, where C<@conds> is a list of conditional strings, as
240 my ($self, @conds) = @_;
241 new Automake
::Condition
$self->conds, @conds;
244 =item C<$newcond = $cond-E<gt>strip ($minuscond)>
246 Return a new condition which has all the conditionals of C<$cond>
247 except those of C<$minuscond>. This is the opposite of C<merge>.
253 my ($self, $minus) = @_;
254 my @res = grep { not $minus->has ($_) } $self->conds;
255 return new Automake
::Condition
@res;
258 =item C<@list = $cond-E<gt>conds>
260 Return the set of conditionals defining C<$cond>, as strings. Note that
261 this might not be exactly the list passed to C<new> (or a
262 concatenation of such lists if C<merge> was used), because of the
263 cleanup mentioned in C<new>'s description.
265 For instance C<$c3-E<gt>conds> will simply return C<("FALSE")>.
272 my @conds = keys %{$self->{'hash'}};
273 return ("TRUE") unless @conds;
277 # Undocumented, shouldn't be needed out of this class.
280 my ($self, $cond) = @_;
281 return exists $self->{'hash'}{$cond};
284 =item C<$cond-E<gt>false>
286 Return 1 iff this condition is always false.
293 return $self->has ('FALSE');
296 =item C<$cond-E<gt>true>
298 Return 1 iff this condition is always true.
305 return 0 == keys %{$self->{'hash'}};
308 =item C<$cond-E<gt>string>
310 Build a string which denotes the condition.
312 For instance using the C<$cond> definition from L<SYNOPSYS>,
313 C<$cond-E<gt>string> will return C<"COND1_TRUE COND2_FALSE">.
321 return $self->{'string'} if defined $self->{'string'};
330 $res = join (' ', $self->conds);
332 $self->{'string'} = $res;
336 =item C<$cond-E<gt>human>
338 Build a human readable string which denotes the condition.
340 For instance using the C<$cond> definition from L<SYNOPSYS>,
341 C<$cond-E<gt>string> will return C<"COND1 and !COND2">.
348 if ($s =~ /^(.*)_(TRUE|FALSE)$/)
350 return (($2 eq 'FALSE') ?
'!' : '') . $1;
362 return $self->{'human'} if defined $self->{'human'};
371 $res = join (' and ', map { _to_human
$_ } $self->conds);
373 $self->{'human'} = $res;
377 =item C<$cond-E<gt>subst_string>
379 Build a C<AC_SUBST>-style string for output in F<Makefile.in>.
381 For instance using the C<$cond> definition from L<SYNOPSYS>,
382 C<$cond-E<gt>subst_string> will return C<"@COND1_TRUE@@COND2_FALSE@">.
386 sub subst_string
($ )
390 return $self->{'subst_string'} if defined $self->{'subst_string'};
397 elsif (! $self->true)
399 $res = '@' . join ('@@', sort $self->conds) . '@';
401 $self->{'subst_string'} = $res;
405 =item C<$cond-E<gt>true_when ($when)>
407 Return 1 iff C<$cond> is true when C<$when> is true.
410 Using the definitions from L<SYNOPSYS>, C<$cond> is true
411 when C<$both> is true, but the converse is wrong.
417 my ($self, $when) = @_;
419 # Nothing is true when FALSE (not even FALSE itself, but it
420 # shouldn't hurt if you decide to change that).
421 return 0 if $self->false || $when->false;
423 # If we are true, we stay true when $when is true :)
424 return 1 if $self->true;
426 # $SELF is true under $WHEN if each conditional component of $SELF
428 foreach my $cond ($self->conds)
430 return 0 unless $when->has ($cond);
435 =item C<$cond-E<gt>redundant_wrt (@conds)>
437 Return 1 iff C<$cond> is true for any condition in C<@conds>.
438 If @conds is empty, return 1 iff C<$cond> is C<FALSE>.
443 sub redundant_wrt
($@
)
445 my ($self, @conds) = @_;
447 foreach my $cond (@conds)
449 return 1 if $self->true_when ($cond);
454 =item C<$cond-E<gt>implies_any (@conds)>
456 Return 1 iff C<$cond> implies any of the conditions in C<@conds>.
463 my ($self, @conds) = @_;
465 foreach my $cond (@conds)
467 return 1 if $cond->true_when ($self);
472 =item C<$cond-E<gt>not>
474 Return a negation of C<$cond> as a list of C<Condition>s.
475 This list should be used to construct a C<DisjConditions>
476 (we cannot return a C<DisjConditions> from C<Automake::Condition>,
477 because that would make these two packages interdependent).
484 return @
{$self->{'not'}} if defined $self->{'not'};
486 map { new Automake
::Condition
&conditional_negate
($_) } $self->conds;
487 $self->{'not'} = [@res];
491 =item C<$cond-E<gt>multiply (@conds)>
493 Assumption: C<@conds> represent a disjunction of conditions.
495 Return the result of multiplying C<$cond> with that disjunction.
496 The result will be a list of conditions suitable to construct a
503 my ($self, @set) = @_;
507 my $ans = $self->merge ($cond);
511 # FALSE can always be removed from a disjunction.
514 # Now, $self is a common factor of the remaining conditions.
515 # If one of the conditions is $self, we can discard the rest.
517 if exists $res{$self};
519 return (values %res);
522 =head2 Other helper functions
528 The C<"TRUE"> conditional.
532 The C<"FALSE"> conditional.
536 use constant TRUE
=> new Automake
::Condition
"TRUE";
537 use constant FALSE
=> new Automake
::Condition
"FALSE";
539 =item C<reduce_and (@conds)>
541 Return a subset of @conds with the property that the conjunction of
542 the subset is the same as the conjunction of @conds. For example, if
543 both C<COND1_TRUE COND2_TRUE> and C<COND1_TRUE> are in the list,
544 discard the latter. If the input list is empty, return C<(TRUE)>.
555 $cond = shift @conds;
557 # FALSE is absorbent.
561 if (! $cond->redundant_wrt (@ret, @conds))
567 return TRUE
if @ret == 0;
571 =item C<reduce_or (@conds)>
573 Return a subset of @conds with the property that the disjunction of
574 the subset is equivalent to the disjunction of @conds. For example,
575 if both C<COND1_TRUE COND2_TRUE> and C<COND1_TRUE> are in the list,
576 discard the former. If the input list is empty, return C<(FALSE)>.
587 $cond = shift @conds;
595 unless $cond->implies_any (@ret, @conds);
598 return FALSE
if @ret == 0;
602 =item C<conditional_negate ($condstr)>
604 Negate a conditional string.
608 sub conditional_negate
($)
612 $cond =~ s/TRUE$/TRUEO/;
613 $cond =~ s/FALSE$/TRUE/;
614 $cond =~ s/TRUEO$/FALSE/;
621 L<Automake::DisjConditions>.
625 C<AM_CONDITIONAL>s and supporting code were added to Automake 1.1o by
626 Ian Lance Taylor <ian@cygnus.org> in 1997. Since then it has been
627 improved by Tom Tromey <tromey@redhat.com>, Richard Boulton
628 <richard@tartarus.org>, Raja R Harinath <harinath@cs.umn.edu>,
629 Akim Demaille <akim@epita.fr>, and Alexandre Duret-Lutz <adl@gnu.org>.
635 ### Setup "GNU" style for perl-mode and cperl-mode.
637 ## perl-indent-level: 2
638 ## perl-continued-statement-offset: 2
639 ## perl-continued-brace-offset: 0
640 ## perl-brace-offset: 0
641 ## perl-brace-imaginary-offset: 0
642 ## perl-label-offset: -2
643 ## cperl-indent-level: 2
644 ## cperl-brace-offset: 0
645 ## cperl-continued-brace-offset: 0
646 ## cperl-label-offset: -2
647 ## cperl-extra-newline-before-brace: t
648 ## cperl-merge-trailing-else: nil
649 ## cperl-continued-statement-offset: 2