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
|
package PDF::FromHTML::Template::Container::Loop;
use strict;
BEGIN {
use vars qw(@ISA);
@ISA = qw(PDF::FromHTML::Template::Container);
use PDF::FromHTML::Template::Container;
}
sub new
{
my $class = shift;
my $self = $class->SUPER::new(@_);
if (exists $self->{MAXITERS} && $self->{MAXITERS} < 1)
{
die "<loop> MAXITERS must be greater than or equal to 1", $/;
}
else
{
$self->{MAXITERS} = 0;
}
return $self;
}
sub _do_page
{
my $self=shift;
my ($context) = @_;
return 0 unless $self->should_render($context);
unless ($self->{ITERATOR} && $self->{ITERATOR}->more_params)
{
$self->{ITERATOR} = $self->make_iterator($context);
}
my $iterator = $self->{ITERATOR};
$iterator->enter_scope;
while ($iterator->can_continue)
{
$iterator->next;
$self->SUPER::begin_page($context);
}
$iterator->exit_scope;
return 1;
}
sub begin_page
{
_do_page(@_,'begin_page');
}
sub end_page
{
_do_page(@_,'end_page');
}
sub make_iterator
{
my $self = shift;
my ($context) = @_;
return PDF::FromHTML::Template::Factory->create('ITERATOR',
NAME => $context->get($self, 'NAME'),
MAXITERS => $context->get($self, 'MAXITERS'),
CONTEXT => $context,
);
}
sub render
{
my $self = shift;
my ($context) = @_;
return 0 unless $self->should_render($context);
unless ($self->{ITERATOR} && $self->{ITERATOR}->more_params)
{
$self->{ITERATOR} = $self->make_iterator($context);
}
my $iterator = $self->{ITERATOR};
$iterator->enter_scope;
while ($iterator->can_continue)
{
$iterator->next;
unless ($self->iterate_over_children($context))
{
$iterator->back_up;
last;
}
$self->reset;
}
$iterator->exit_scope;
if ($iterator->more_params) {
splice(@{$iterator->{DATA}}, 0, $iterator->{INDEX}+1);
$iterator->{MAX_INDEX} = $#{$iterator->{DATA}};
return 0;
}
return 1;
}
sub total_of
{
my $self = shift;
my ($context, $attr) = @_;
my $iterator = $self->make_iterator($context);
my $total = 0;
$iterator->enter_scope;
while ($iterator->can_continue)
{
$iterator->next;
$total += $self->SUPER::total_of($context, $attr);
}
$iterator->exit_scope;
return $total;
}
sub max_of
{
my $self = shift;
my ($context, $attr) = @_;
my $iterator = $self->make_iterator($context);
my $max = $context->get($self, $attr);
$iterator->enter_scope;
while ($iterator->can_continue)
{
$iterator->next;
my $v = $self->SUPER::max_of($context, $attr);
$max = $v if $max < $v;
}
$iterator->exit_scope;
return $max;
}
1;
__END__
=head1 NAME
PDF::FromHTML::Template::Container::Loop - Provide a looping construct
=head1 NODE NAME
LOOP
=head1 INHERITANCE
PDF::FromHTML::Template::Container
=head1 ATTRIBUTES
=over 4
=item * NAME - the name of a parameter that points to an array of hashes.
=back
=head1 CHILDREN
None
=head1 AFFECTS
Nothing
=head1 DEPENDENCIES
FOOTER - indicates where to pagebreak
=head1 USAGE
<loop name="LOOPY">
... Children here ...
</loop>
The children tags will have access to the values specified in LOOPY, as well as
the parameters specified outside.
=head1 AUTHOR
Rob Kinyon (rkinyon@columbus.rr.com)
=head1 SEE ALSO
HTML::Template, FOOTER
=cut
|