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
|
package PDF::FromHTML::Template::Container::Conditional;
#GGG Convert <conditional> to be a special case of <switch>?
use strict;
BEGIN {
use vars qw(@ISA);
@ISA = qw(PDF::FromHTML::Template::Container);
use PDF::FromHTML::Template::Container;
}
my %isOp = (
'=' => '==',
(map { $_ => $_ } ( '>', '<', '==', '!=', '>=', '<=' )),
(map { $_ => $_ } ( 'gt', 'lt', 'eq', 'ne', 'ge', 'le' )),
);
# This cannot be within a should_render() function because the conditional needs
# to return true even if the conditional is false. We are indicating that this
# branch has done everything it needs to do, not that this branch is calling for
# a pagebreak.
sub conditional_passes
{
my $self = shift;
my ($context) = @_;
my $name = $context->get($self, 'NAME');
return 0 unless $name =~ /\S/;
my $val = $context->param($name);
$val = @{$val} while UNIVERSAL::isa($val, 'ARRAY');
$val = ${$val} while UNIVERSAL::isa($val, 'SCALAR');
my $istrue = (defined $val && $val) ? 1 : 0;
my $value = $context->get($self, 'VALUE');
if (defined $value)
{
my $op = $context->get($self, 'OP');
$op = defined $op && exists $isOp{$op}
? $isOp{$op}
: '==';
my $res;
for ($op)
{
/^>$/ && do { $res = ($val > $value); last };
/^<$/ && do { $res = ($val < $value); last };
/^==$/ && do { $res = ($val == $value); last };
/^!=$/ && do { $res = ($val != $value); last };
/^>=$/ && do { $res = ($val >= $value); last };
/^<=$/ && do { $res = ($val <= $value); last };
/^gt$/ && do { $res = ($val gt $value); last };
/^lt$/ && do { $res = ($val lt $value); last };
/^eq$/ && do { $res = ($val eq $value); last };
/^ne$/ && do { $res = ($val ne $value); last };
/^ge$/ && do { $res = ($val ge $value); last };
/^le$/ && do { $res = ($val le $value); last };
die "Unknown operator '$op' in conditional resolve", $/;
}
return 1;
}
elsif (my $is = uc $context->get($self, 'IS'))
{
if ($is eq 'TRUE')
{
return $istrue;
}
else
{
warn "Conditional 'is' value was [$is], defaulting to 'FALSE'" . $/
if $is ne 'FALSE';
return !$istrue;
}
}
return $istrue;
}
sub render
{
my $self = shift;
my ($context) = @_;
return 0 unless $self->should_render($context);
return 1 unless $self->conditional_passes($context);
return $self->iterate_over_children($context);
}
sub max_of
{
my $self = shift;
my ($context, $attr) = @_;
return 0 unless $self->conditional_passes($context);
return $self->SUPER::max_of($context, $attr);
}
sub total_of
{
my $self = shift;
my ($context, $attr) = @_;
return 0 unless $self->conditional_passes($context);
return $self->SUPER::total_of($context, $attr);
}
sub _do_page
{
my $self = shift;
return unless $self->conditional_passes(@_);
return $self->SUPER::_do_page( @_ );
}
sub begin_page
{
_do_page(@_,'begin_page');
}
sub end_page
{
_do_page(@_,'end_page');
}
1;
__END__
=head1 NAME
PDF::FromHTML::Template::Container::Conditional - Conditionally allow children to render
=head1 NODE NAME
CONDITIONAL
IF (an alias for CONDITIONAL)
=head1 INHERITANCE
PDF::FromHTML::Template::Container
=head1 ATTRIBUTES
=over 4
=item * NAME - Required. This is a parameter name, whose value will determine
if the conditional passed or fails. If NAME is not specified, the conditional
will consider to always fail.
=item * OP - defaults to == (numeric equality). If VALUE is specified, this will
be how NAME and VALUE are compared. OP can be any of the 6 numeric comparison
operators or the 6 string comparison operators.
=item * VALUE - if this is specified, OP will be checked. This is a standard
attribute, so if you want a parameter, prepend it with '$'.
=item * IS - If there is no VALUE attribute, this will be checked. IS can be
either 'FALSE' or 'TRUE'. The boolean of NAME will be compared and the
conditional will branch appropriately. If NAME has no value, this will fail.
=item * NONE - If there is no IS and no VALUE, then an attempt will be made to
find the variable defined by NAME. If it exists and is true, the condition
will succeed. Otherwise, it will fail.
=back
=head1 CHILDREN
None
=head1 AFFECTS
Nothing
=head1 DEPENDENCIES
None
=head1 USAGE
<if name="__PAGE__" OP="!=" VALUE="__LAST_PAGE__">
... Children execute if the current page is not the last page ...
</if>
<if name="Param1" OP="eq" VALUE="$Param2">
... Children execute if Param1 is string-wise equals to Param2 ...
</if>
=head1 AUTHOR
Rob Kinyon (rkinyon@columbus.rr.com)
=head1 SEE ALSO
=cut
|