New AUTOLOAD function.
[artemus.git] / Art5.pm
blobe35d7a2f21c3d74ee5ef92a630e7f483c8043ddc
1 #####################################################################
3 # Artemus - Template Toolkit version 5
5 # Copyright (C) 2000/2011 Angel Ortega <angel@triptico.com>
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License
9 # as published by the Free Software Foundation; either version 2
10 # of the License, or (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 # http://triptico.com
23 #####################################################################
25 use locale;
27 package Art5;
29 use strict;
30 use warnings;
31 use Carp;
33 $Art5::VERSION = '5.0.2-dev';
35 sub parse {
36 my $self = shift;
37 my $seq = shift;
38 my @ret = ();
40 # delete leading blanks and a possible brace
41 $$seq =~ s/^\s*\{?\s*//;
43 while ($$seq) {
44 # delete comments
45 if ($$seq =~ s/^#.*$//gm) {
46 $$seq =~ s/^\s+//;
48 elsif ($$seq =~ s/^(@?)"(([^"\\]*(\\.[^"\\]*)*))"\s*//) {
49 # double quoted string
50 my $op = $1 || '"';
51 my $str = $2;
53 # replace usual escaped characters
54 $str =~ s/\\n/\n/g;
55 $str =~ s/\\r/\r/g;
56 $str =~ s/\\t/\t/g;
57 $str =~ s/\\"/\"/g;
58 $str =~ s/\\\\/\\/g;
60 push(@ret, [ $op, $str ]);
62 elsif ($$seq =~ s/^(@?)'(([^'\\]*(\\.[^'\\]*)*))'\s*//) {
63 # single quoted string
64 my $op = $1 || '"';
65 my $str = $2;
67 $str =~ s/\\'/\'/g;
68 $str =~ s/\\\\/\\/g;
70 push(@ret, [ $op, $str ]);
72 elsif ($$seq =~ s/^(\d+(\.\d+)?)\s*//) {
73 # number
74 push(@ret, [ '"', $1 ]);
76 elsif ($$seq =~ /^\{\s*/) {
77 # another code sequence
78 push(@ret, $self->parse($seq));
80 elsif ($$seq =~ s/^\}\s*//) {
81 # end of sequence
82 last;
84 elsif ($$seq =~ s/^%([^\s\{\}]+)\s*//) {
85 # external hash value
86 push(@ret, [ '%', $1 ]);
88 elsif ($$seq =~ s/^\$(\d+)\s*//) {
89 # argument
90 push(@ret, [ '$', $1 ]);
92 elsif ($$seq =~ s/^([^\s\{\}]+)\s*//) {
93 # opcode
95 # nothing yet? operator call
96 if (scalar(@ret) == 0) {
97 push(@ret, $1);
99 else {
100 push(@ret, [ $1 ]);
103 else {
104 croak "Artemus5 syntax error near '$$seq'";
108 # no program? build a NOP */
109 if (!@ret) {
110 @ret = ('"', '');
113 # is the first thing in the sequence an array
114 # (instruction) and not a string (opcode)?
115 if (ref($ret[0]) eq 'ARRAY') {
116 # only one instruction? return as is
117 if (scalar(@ret) == 1) {
118 @ret = @{$ret[0]};
120 else {
121 # otherwise, prepend a '?' (joiner)
122 unshift(@ret, '?');
126 return [ @ret ];
130 sub compile {
131 my $self = shift;
132 my $str = shift;
134 # was this code already compiled?
135 if (!exists($self->{pc}->{$str})) {
136 # joiner opcode
137 my @ret = ( '?' );
139 # split by the Artemus5 marks
140 my @stream = split(/(<\{|\}>)/, $str);
142 # alternate between literal strings and Artemus5 code
143 while (@stream) {
144 my $p = shift(@stream);
146 if ($p eq '<{') {
147 $p = '{' . shift(@stream) . '}';
148 push(@ret, $self->parse(\$p));
149 shift(@stream);
151 elsif (defined $p) {
152 push(@ret, [ '"', $p ]);
156 my $ret = [ @ret ];
158 $self->{pc}->{$str} = $ret;
161 return $self->{pc}->{$str};
165 sub code {
166 my $self = shift;
167 my $op = shift;
169 if (!exists($self->{op}->{$op})) {
170 my $src = undef;
172 # filter opcode to only allow
173 # characters valid in file names
174 $op =~ s/[^\w\d_-]//g;
176 # does a loader_func() exist?
177 if (ref($self->{loader_func}) eq 'CODE') {
178 $src = $self->{loader_func}->($op);
181 if (!defined($src)) {
182 # try to resolve by loading
183 # a source file from the path
184 foreach my $p (@{$self->{path}}) {
185 my $fp = $p . '/' . $op;
187 # does a precompiled script already exist?
188 if ($self->{cache} && -f $fp) {
189 my $cp = $self->{cache} . $op;
191 if (-f $cp && -M $cp < -M $fp) {
192 # it does and it's fresh; import wildly
193 $self->{op}->{$op} = eval "require '$cp'";
194 last;
198 # load the source
199 if (open(F, $fp)) {
200 $src = join('', <F>);
201 close F;
203 last;
208 # compile if available
209 if (defined($src)) {
210 $self->{op}->{$op} = $self->compile($src);
212 # if there is a cache directory, save the compiled code
213 if ($self->{cache} and open(F, '>' . $self->{cache} . $op)) {
214 use Data::Dumper;
216 print F Dumper($self->{op}->{$op});
217 close F;
222 return $self->{op}->{$op};
226 sub exec {
227 my $self = shift;
228 my $prg = shift;
229 my $ret;
231 if (ref($prg) && !$self->{abort}) {
232 # if it has additonal arguments,
233 # wrap the call in a stack with them
234 if (scalar(@_)) {
235 push(@{$self->{stack}}, [ @_ ]);
237 $ret = $self->exec($prg);
239 pop(@{$self->{stack}});
241 else {
242 # stream of Artemus5 code
243 my @stream = @{$prg};
245 # pick opcode
246 my $op = shift(@stream);
248 # pick code
249 my $c = $self->code($op);
251 if (ref($c) eq 'CODE') {
252 $ret = $c->(@stream);
254 elsif (ref($c) eq 'ARRAY') {
255 $ret = $self->exec(
257 map { $self->exec($_) } @stream
260 else {
261 if ($self->code('AUTOLOAD')) {
262 $ret = $self->exec(['AUTOLOAD', $op]);
264 else {
265 croak "Artemus5 opcode not found: $op";
271 if (!defined($ret)) {
272 $ret = '';
275 return $ret;
279 sub exec0 {
280 my $self = shift;
282 return $self->exec(@_) || 0;
286 sub init {
287 my $self = shift;
289 $self->{stack} = [ [] ];
291 $self->{op}->{VERSION} = [ '"', $Art5::VERSION ];
293 $self->{op}->{VERSION_STR} = [
294 '?', [ '"', 'Artemus ' ], [ 'VERSION' ]
297 # literal
298 $self->{op}->{'"'} = sub {
299 return $_[0];
302 # translateable literal
303 $self->{op}->{'@'} = sub {
304 return $self->{t}->{$_[0]} || $_[0];
307 # argument
308 $self->{op}->{'$'} = sub {
309 return $self->{stack}->[-1]->[$_[0]];
312 # external hash (e.g. CGI variables)
313 $self->{op}->{'%'} = sub {
314 my $var = shift;
316 return $var eq '%' ? $self->{xh} : $self->{xh}->{$var};
319 # joiner
320 $self->{op}->{'?'} = sub {
321 if (scalar(@_) == 1) {
322 return $self->exec($_[0]);
325 return join('', map { $self->exec($_); } @_);
328 # array
329 $self->{op}->{'&'} = sub {
330 return [ map { $self->exec($_); } @_ ];
333 # assignation
334 $self->{op}->{'='} = sub {
335 $self->{op}->{$self->exec($_[0])} =
336 [ '"', $self->exec($_[1]) ];
338 return '';
341 # list of translation pairs
342 $self->{op}->{'T'} = sub {
343 while (scalar(@_) > 1) {
344 my $k = $self->exec(shift);
345 my $v = $self->exec(shift);
347 $self->{t}->{$k} = $v;
350 return '';
353 $self->{op}->{eq} = sub {
354 $self->exec($_[0]) eq
355 $self->exec($_[1]) ? 1 : 0;
357 $self->{op}->{ne} = sub {
358 $self->exec($_[0]) ne
359 $self->exec($_[1]) ? 1 : 0;
362 $self->{op}->{and} = sub {
363 $self->exec($_[0]) && $self->exec($_[1]);
365 $self->{op}->{or} = sub {
366 $self->exec($_[0]) || $self->exec($_[1]);
368 $self->{op}->{not} = sub {
369 $self->exec($_[0]) ? 0 : 1;
372 $self->{op}->{if} = sub {
373 my $ret = '';
375 if ($self->exec($_[0])) {
376 $ret = $self->exec($_[1]);
378 elsif (scalar(@_) == 3) {
379 $ret = $self->exec($_[2]);
382 $ret;
385 $self->{op}->{add} = sub {
386 return $self->exec0($_[0]) + $self->exec0($_[1]);
388 $self->{op}->{sub} = sub {
389 return $self->exec0($_[0]) - $self->exec0($_[1]);
391 $self->{op}->{mul} = sub {
392 return $self->exec0($_[0]) * $self->exec0($_[1]);
394 $self->{op}->{div} = sub {
395 return $self->exec0($_[0]) / $self->exec0($_[1]);
398 $self->{op}->{gt} = sub {
399 return $self->exec0($_[0]) > $self->exec0($_[1]);
401 $self->{op}->{lt} = sub {
402 return $self->exec0($_[0]) < $self->exec0($_[1]);
404 $self->{op}->{random} = sub {
405 return $self->exec($_[rand(scalar(@_))]);
408 $self->{op}->{env} = sub {
409 # no arguments? return keys as an arrayref
410 if (scalar(@_) == 0) {
411 return [ keys(%ENV) ];
414 return $ENV{$self->exec($_[0])};
417 $self->{op}->{foreach} = sub {
418 my $list = shift;
419 my $code = shift || [ '$', 0 ];
420 my $sep = shift || [ '"', '' ];
421 my $header = shift || [ '"', '' ];
423 my @ret = ();
424 my $ph = '';
426 foreach my $e (@{$self->exec($list)}) {
427 # create a stack for the elements
428 # and store the element in the stack
429 push(@{$self->{stack}}, ref($e) ? $e : [ $e ]);
431 # execute the header code
432 my $o = $self->exec($header);
434 # if it's different from previous header,
435 # strip from output; otherwise, remember
436 # for next time
437 if ($ph eq $o) {
438 $o = '';
440 else {
441 $ph = $o;
444 # execute the body code
445 $o .= $self->exec($code);
447 push(@ret, $o);
449 # destroy last stack
450 pop(@{$self->{stack}});
453 return join($self->exec($sep), @ret);
456 $self->{op}->{case} = sub {
457 my $value = $self->exec(shift);
458 my $oth;
460 # if args are odd, the last one is
461 # the 'otherwise' case
462 if (scalar(@_) % 2) {
463 $oth = pop(@_);
466 # now treat the rest of arguments as
467 # pairs of case / result
468 while (@_) {
469 my $case = $self->exec(shift);
470 my $res = shift;
472 if ($value eq $case) {
473 return $self->exec($res);
477 return defined($oth) ? $self->exec($oth) : '';
480 $self->{op}->{seq} = sub {
481 my $from = $self->exec0(shift);
482 my $to = $self->exec0(shift);
484 return [ $from .. $to ];
487 $self->{op}->{sort} = sub {
488 my $list = $self->exec(shift);
489 my $code = shift || [ '$', 0 ];
491 # create a stack for the elements
492 push(@{$self->{stack}}, []);
494 my $ret = [ sort {
495 $self->{stack}->[-1] = ref($a) ? $a : [ $a ];
496 my $va = $self->exec($code);
498 $self->{stack}->[-1] = ref($b) ? $b : [ $b ];
499 my $vb = $self->exec($code);
501 $va cmp $vb;
502 } @{$list} ];
504 # destroy last stack
505 pop(@{$self->{stack}});
507 return $ret;
510 $self->{op}->{reverse} = sub {
511 return [ reverse @{$self->exec(shift)} ];
514 $self->{op}->{size} = sub { return scalar @{$self->exec($_[0])} };
516 $self->{op}->{split} = sub {
517 if (scalar(@_) == 3) {
518 return [ map { [ split($self->exec($_[1]), $_) ] }
519 split($self->exec($_[0]), $self->exec($_[2]))
522 return [ split($self->exec($_[0]), $self->exec($_[1])) ];
525 $self->{op}->{dump} = sub {
526 use Data::Dumper;
528 return Dumper($self->exec($_[0]));
531 $self->{xh}->{arch} = 'Unix';
533 return $self;
537 sub process {
538 my $self = shift;
539 my $src = shift;
541 my $c = $self->compile($src);
543 return $self->exec($c, @_);
547 sub new {
548 my $class = shift;
550 my $self = bless { @_ }, $class;
552 $self->{path} ||= [];
554 if ($self->{cache}) {
555 mkdir $self->{cache};
558 return $self->init();
562 __END__
563 =pod
565 =head1 NAME
567 Art5 - Template Toolkit
569 =head1 SYNOPSIS
571 use Art5;
573 # creates a new object
574 my $art5 = Art5->new(path => \@path_to_templates);
576 # compiles and executes a string of Art5 code
577 my $r = $art5->process($source_code);
579 =head1 DESCRIPTION
581 Artemus is a template toolkit. It filters text files, parsing, compiling
582 and executing code surrounded by special marks (leaving the rest
583 untouched) and concatenating everything as output. Its main purpose is
584 to filter HTML files, but it can be used for any scripting need related
585 to text filtering and substitution.
587 The main purpose of the Art5 API is to add your own functions to the
588 Art5 machine to make them part of the programming language. For more
589 information on the Art5 Templating Language, please see the included
590 L<art5_overview> document.
592 This can be done by adding code to the C<op> component of the Art5
593 object. For example, this is a way to add a C<localtime> function to
594 Art5:
596 $art5->{op}->{localtime} = sub { return localtime(); };
598 Art5 functions can also accept arguments. They arrive as code streams
599 that must be executed before use. For example, this is a function that
600 accept two numbers and returns the average:
602 $art5->{op}->{avg} = sub {
603 my $v1 = shift;
604 my $v2 = shift;
606 return ($art5->exec($v1) + $art5->exec($v2)) / 2;
609 Art5 functions always have to return something. If you have nothing to
610 return, use an empty string. If an array must be returned (for example,
611 to be feed to C<foreach>, return a reference to it (not the array
612 itself).
614 The external hash can similarly accessed by tweaking the C<xh>
615 component. In this example, the running program process id will be
616 accesible as %pid:
618 $art5->{xh}->{pid} = $!;
620 =head1 FUNCTIONS AND METHODS
622 =cut
624 =head2 new
626 $art5 = Art5->new(
627 [ path => \@directories, ]
628 [ cache => $directory, ]
629 [ loader_func => \&function, ]
632 Creates a new Art5 object. The object creation accepts the following
633 arguments:
635 =head3 path
637 A reference to a list of directories where templates are to be found.
639 =head3 cache
641 A directory path where compiled templates are to be cached. These compiled
642 templates are raw Data::Dumper output of the compiled stream, and are
643 loaded back with simple C<eval()>, so take B<extreme care>.
645 =head3 loader_func
647 A pointer to a function to be called whenever a new template is queried
648 by the underlying system. This function should return the content of a
649 template or undef if not found. This mechanism is used to have an external
650 storage for templates (as in a SQL Database, for example). Take note that
651 templates retrived this way cannot be cached (this defect will eventually
652 be solved).
654 This function is called before any search in the L<path>.
656 =head2 process
658 my $ret_val = $art->process($art5_code);
660 Compiles a string of Art5 code, executes it and returns the exit
661 value.
663 =head2 compile
665 my $opcode_stream = $art5->compile($art5_code);
667 Reads a string of Art5 code and returns a compiled stream.
669 =head2 exec
671 my $ret_val = $art5->exec($opcode_stream);
673 Executes a compiled stream (returned by C<compile()>) and returns
674 the exit value.
676 =head1 AUTHOR
678 Angel Ortega angel@triptico.com