* Makefile.am (cvs-release): Upload to ~ftp/pub/automake, not
[automake.git] / lib / Automake / Condition.pm
blob34f443efb13d238f46596925178f5f107c11e408
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)
6 # any later version.
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
16 # 02111-1307, USA.
18 package Automake::Condition;
19 use strict;
20 use Carp;
22 require Exporter;
23 use vars '@ISA', '@EXPORT_OK';
24 @ISA = qw/Exporter/;
25 @EXPORT_OK = qw/TRUE FALSE reduce_and reduce_or/;
27 =head1 NAME
29 Automake::Condition - record a conjunction of conditionals
31 =head1 SYNOPSIS
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:
65 # "COND1 and !COND2"
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
90 # be summed together.
91 # (Returns @conds = ($cond, $other) in this example, because
92 # $both is a subset condition of $cond: $cond is true whenever $both
93 # is true.)
94 @conds = Automake::Condition::reduce_or ($other, $both, $cond);
96 # Invert a Condition. This returns a list of Conditions.
97 @conds = $both->not;
99 =head1 DESCRIPTION
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
108 if COND1
109 if COND2
110 VAR = value
111 endif
112 endif
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
128 references.
130 my $c1 = new Automake::Condition "COND1_TRUE", "COND2_TRUE";
131 my $c2 = new Automake::Condition "COND1_TRUE", "COND2_TRUE";
132 $c1 == $c2; # True!
134 =head2 Methods
136 =over 4
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">
155 and C<"NAME_TRUE">.)
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";
162 $c3 == $c4; # True!
163 $c3 == FALSE; # True!
165 =cut
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 = ();
176 sub new ($;@)
178 my ($class, @conds) = @_;
179 my $self = {
180 hash => {},
182 bless $self, $class;
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"}))
202 return &FALSE;
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;
214 return $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>.
222 =cut
224 sub merge ($@)
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
234 passed to C<new>.
236 =cut
238 sub merge_conds ($@)
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>.
249 =cut
251 sub strip ($$)
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")>.
267 =cut
269 sub conds ($ )
271 my ($self) = @_;
272 my @conds = keys %{$self->{'hash'}};
273 return ("TRUE") unless @conds;
274 return sort @conds;
277 # Undocumented, shouldn't be needed out of this class.
278 sub has ($$)
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.
288 =cut
290 sub false ($ )
292 my ($self) = @_;
293 return $self->has ('FALSE');
296 =item C<$cond-E<gt>true>
298 Return 1 iff this condition is always true.
300 =cut
302 sub true ($ )
304 my ($self) = @_;
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">.
315 =cut
317 sub string ($ )
319 my ($self) = @_;
321 return $self->{'string'} if defined $self->{'string'};
323 my $res = '';
324 if ($self->false)
326 $res = 'FALSE';
328 else
330 $res = join (' ', $self->conds);
332 $self->{'string'} = $res;
333 return $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">.
343 =cut
345 sub _to_human ($ )
347 my ($s) = @_;
348 if ($s =~ /^(.*)_(TRUE|FALSE)$/)
350 return (($2 eq 'FALSE') ? '!' : '') . $1;
352 else
354 return $s;
358 sub human ($ )
360 my ($self) = @_;
362 return $self->{'human'} if defined $self->{'human'};
364 my $res = '';
365 if ($self->false)
367 $res = 'FALSE';
369 else
371 $res = join (' and ', map { _to_human $_ } $self->conds);
373 $self->{'human'} = $res;
374 return $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@">.
384 =cut
386 sub subst_string ($ )
388 my ($self) = @_;
390 return $self->{'subst_string'} if defined $self->{'subst_string'};
392 my $res = '';
393 if ($self->false)
395 $res = '#';
397 elsif (! $self->true)
399 $res = '@' . join ('@@', sort $self->conds) . '@';
401 $self->{'subst_string'} = $res;
402 return $res;
405 =item C<$cond-E<gt>true_when ($when)>
407 Return 1 iff C<$cond> is true when C<$when> is true.
408 Return 0 otherwise.
410 Using the definitions from L<SYNOPSYS>, C<$cond> is true
411 when C<$both> is true, but the converse is wrong.
413 =cut
415 sub true_when ($$)
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
427 # exists in $WHEN.
428 foreach my $cond ($self->conds)
430 return 0 unless $when->has ($cond);
432 return 1;
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>.
439 Return 0 otherwise.
441 =cut
443 sub redundant_wrt ($@)
445 my ($self, @conds) = @_;
447 foreach my $cond (@conds)
449 return 1 if $self->true_when ($cond);
451 return $self->false;
454 =item C<$cond-E<gt>implies_any (@conds)>
456 Return 1 iff C<$cond> implies any of the conditions in C<@conds>.
457 Return 0 otherwise.
459 =cut
461 sub implies_any ($@)
463 my ($self, @conds) = @_;
465 foreach my $cond (@conds)
467 return 1 if $cond->true_when ($self);
469 return 0;
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).
479 =cut
481 sub not ($ )
483 my ($self) = @_;
484 return @{$self->{'not'}} if defined $self->{'not'};
485 my @res =
486 map { new Automake::Condition &conditional_negate ($_) } $self->conds;
487 $self->{'not'} = [@res];
488 return @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
497 C<DisjConditions>.
499 =cut
501 sub multiply ($@)
503 my ($self, @set) = @_;
504 my %res = ();
505 for my $cond (@set)
507 my $ans = $self->merge ($cond);
508 $res{$ans} = $ans;
511 # FALSE can always be removed from a disjunction.
512 delete $res{FALSE};
514 # Now, $self is a common factor of the remaining conditions.
515 # If one of the conditions is $self, we can discard the rest.
516 return ($self, ())
517 if exists $res{$self};
519 return (values %res);
522 =head2 Other helper functions
524 =over 4
526 =item C<TRUE>
528 The C<"TRUE"> conditional.
530 =item C<FALSE>
532 The C<"FALSE"> conditional.
534 =cut
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)>.
546 =cut
548 sub reduce_and (@)
550 my (@conds) = @_;
551 my @ret = ();
552 my $cond;
553 while (@conds > 0)
555 $cond = shift @conds;
557 # FALSE is absorbent.
558 return FALSE
559 if $cond == FALSE;
561 if (! $cond->redundant_wrt (@ret, @conds))
563 push (@ret, $cond);
567 return TRUE if @ret == 0;
568 return @ret;
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)>.
578 =cut
580 sub reduce_or (@)
582 my (@conds) = @_;
583 my @ret = ();
584 my $cond;
585 while (@conds > 0)
587 $cond = shift @conds;
589 next
590 if $cond == FALSE;
591 return TRUE
592 if $cond == TRUE;
594 push (@ret, $cond)
595 unless $cond->implies_any (@ret, @conds);
598 return FALSE if @ret == 0;
599 return @ret;
602 =item C<conditional_negate ($condstr)>
604 Negate a conditional string.
606 =cut
608 sub conditional_negate ($)
610 my ($cond) = @_;
612 $cond =~ s/TRUE$/TRUEO/;
613 $cond =~ s/FALSE$/TRUE/;
614 $cond =~ s/TRUEO$/FALSE/;
616 return $cond;
619 =head1 SEE ALSO
621 L<Automake::DisjConditions>.
623 =head1 HISTORY
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>.
631 =cut
635 ### Setup "GNU" style for perl-mode and cperl-mode.
636 ## Local Variables:
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
650 ## End: