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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
|
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: Builder.pm 2212 2008-05-02 22:03:06Z auno $
package MT::Builder;
use strict;
use base qw( MT::ErrorHandler );
use MT::Util qw( weaken );
sub NODE () { 'MT::Template::Node' }
sub new { bless { }, $_[0] }
sub compile {
my $build = shift;
my($ctx, $text, $opt) = @_;
my $tmpl;
$opt ||= { uncompiled => 1 };
my $depth = $opt->{depth} ||= 0;
my $ids;
my $classes;
my $errors;
# handle $builder->compile($template) signature
if (UNIVERSAL::isa($ctx, 'MT::Template')) {
$tmpl = $ctx;
$ctx = $tmpl->context;
$text = $tmpl->text;
$tmpl->reset_tokens();
$ids = $build->{__state}{ids} = {};
$classes = $build->{__state}{classes} = {};
$errors = $build->{__state}{errors} = [];
$build->{__state}{tmpl} = $tmpl;
} else {
$ids = $build->{__state}{ids} || {};
$classes = $build->{__state}{classes} || {};
$tmpl = $build->{__state}{tmpl};
$errors = $build->{__state}{errors} ||= [];
}
return [ ] unless defined $text;
my $mods;
# Translate any HTML::Template markup into native MT syntax.
if ($text =~ m/<(?:MT_TRANS\b|MT_ACTION\b|(?:tmpl_(?:if|loop|unless|else|var|include)))/i) {
translate_html_tmpl($text);
}
my $state = $build->{__state};
local $state->{tokens} = [];
local $state->{classes} = $classes;
local $state->{tmpl} = $tmpl;
local $state->{ids} = $ids;
local $state->{text} = \$text;
my $pos = 0;
my $len = length $text;
# MT tag syntax: <MTFoo>, <$MTFoo$>, <$MTFoo>
# <MT:Foo>, <$MT:Foo>, <$MT:Foo$>
# <MTFoo:Bar>, <$MTFoo:Bar>, <$MTFoo:Bar$>
# For 'function' tags, the '$' characters are optional
# For namespace, the ':' is optional for the default 'MT' namespace.
# Other namespaces (like 'Foo') would require the colon.
# Tag and attributes are case-insensitive. So you can write:
# <mtfoo>...</MTFOO>
while ($text =~ m!(<\$?(MT:?)((?:<[^>]+?>|"(?:<[^>]+?>|.)*?"|'(?:<[^>]+?>|.)*?'|.)+?)[\$/]?>)!gis) {
my($whole_tag, $prefix, $tag) = ($1, $2, $3);
($tag, my($args)) = split /\s+/, $tag, 2;
my $sec_start = pos $text;
my $tag_start = $sec_start - length $whole_tag;
_text_block($state, $pos, $tag_start) if $pos < $tag_start;
$args ||= '';
# Structure of a node:
# tag name, attribute hashref, contained tokens, template text,
# attributes arrayref, parent array reference
my $rec = bless [ $tag, \my %args, undef, undef, \my @args ], NODE;
while ($args =~ /
(?:
(?:
((?:\w|:)+) #1
\s*=\s*
(?:(?:
(["']) #2
((?:<[^>]+?>|.)*?) #3
\2
( #4
(?:
[,:]
(["']) #5
(?:(?:<[^>]+?>|.)*?)
\5
)+
)?
) |
(\S+)) #6
)
) |
(\w+) #7
/gsx) {
if (defined $7) {
# An unnamed attribute gets stored in the 'name' argument.
$args{'name'} = $7;
} else {
my $attr = lc $1;
my $value = defined $6 ? $6 : $3;
my $extra = $4;
if (defined $extra) {
my @extra;
push @extra, $2 while $extra =~ m/[,:](["'])((?:<[^>]+?>|.)*?)\1/gs;
$value = [ $value, @extra ];
}
# We need a reference to the filters to check
# attributes and whether they need to be in the array of
# attributes for post-processing.
$mods ||= $ctx->{__filters};
push @args, [$attr, $value] if exists $mods->{$attr};
$args{$attr} = $value;
if ($attr eq 'id') {
# store a reference to this token based on the 'id' for it
$ids->{$3} = $rec;
}
elsif ($attr eq 'class') {
# store a reference to this token based on the 'id' for it
$classes->{lc $3} ||= [];
push @{ $classes->{lc $3} }, $rec;
}
}
}
my($h, $is_container) = $ctx->handler_for($tag);
if (!$h) {
# determine line #
my $pre_error = substr($text, 0, $tag_start);
my @m = $pre_error =~ m/\r?\n/g;
my $line = scalar @m;
if ($depth) {
$opt->{error_line} = $line;
push @$errors, { message => MT->translate("<[_1]> at line [_2] is unrecognized.", $prefix . $tag, "#"), line => $line };
} else {
push @$errors, { message => MT->translate("<[_1]> at line [_2] is unrecognized.", $prefix . $tag, $line + 1), line => $line };
}
}
if ($is_container) {
if ($whole_tag !~ m|/>$|) {
my ($sec_end, $tag_end) = _consume_up_to(\$text,$sec_start,$tag);
if ($sec_end) {
my $sec = $tag =~ m/ignore/i ? '' # ignore MTIgnore blocks
: substr $text, $sec_start, $sec_end - $sec_start;
if ($sec !~ m/<\$?MT/i) {
$rec->[2] = [ ($sec ne '' ? ['TEXT', $sec ] : ()) ];
}
else {
local $opt->{depth} = $opt->{depth} + 1;
local $opt->{parent} = $rec;
$rec->[2] = $build->compile($ctx, $sec, $opt);
if ( @$errors ) {
my $pre_error = substr($text, 0, $sec_start);
my @m = $pre_error =~ m/\r?\n/g;
my $line = scalar @m;
foreach (@$errors) {
$line += $_->{line};
$_->{line} = $line;
$_->{message} =~ s/#/$line/;
}
}
# unless (defined $rec->[2]) {
# my $pre_error = substr($text, 0, $sec_start);
# my @m = $pre_error =~ m/\r?\n/g;
# my $line = scalar @m;
# if ($depth) {
# $opt->{error_line} = $line + ($opt->{error_line} || 0);
# return;
# }
# else {
# $line += ($opt->{error_line} || 0) + 1;
# my $err = $build->errstr;
# $err =~ s/#/$line/;
# return $build->error($err);
# }
# }
}
$rec->[3] = $sec if $opt->{uncompiled};
}
else {
my $pre_error = substr($text, 0, $tag_start);
my @m = $pre_error =~ m/\r?\n/g;
my $line = scalar @m;
if ($depth) {
# $opt->{error_line} = $line;
# return $build->error(MT->translate("<[_1]> with no </[_1]> on line #", $prefix . $tag));
push @$errors, { message => MT->translate("<[_1]> with no </[_1]> on line [_2].", $prefix . $tag, "#" ), line => $line };
}
else {
push @$errors, { message => MT->translate("<[_1]> with no </[_1]> on line [_2].", $prefix . $tag, $line +1 ), line => $line + 1 };
# return $build->error(MT->translate("<[_1]> with no </[_1]> on line [_2]", $prefix . $tag, $line + 1));
}
last; # return undef;
}
$pos = $tag_end + 1;
(pos $text) = $tag_end;
}
else {
$rec->[3] = '';
}
}
weaken($rec->[5] = $opt->{parent} || $tmpl);
weaken($rec->[6] = $tmpl);
push @{ $state->{tokens} }, $rec;
$pos = pos $text;
}
_text_block($state, $pos, $len) if $pos < $len;
if (defined $tmpl) {
# assign token and id references to template
$tmpl->tokens($state->{tokens});
$tmpl->token_ids($state->{ids});
$tmpl->token_classes($state->{classes});
$tmpl->errors($state->{errors})
if $state->{errors} && (@{$state->{errors}});
}
return $state->{tokens};
}
sub translate_html_tmpl {
$_[0] =~ s!<(/?)tmpl_(if|loop|unless|else|var|include)\b!<$1mt:$2!ig;
$_[0] =~ s!<MT_TRANS\b!<__trans!ig;
$_[0] =~ s!<MT_ACTION\b!<__action!ig;
}
sub _consume_up_to {
my($text, $start, $stoptag) = @_;
my $pos;
(pos $$text) = $start;
while ($$text =~ m!(<([\$/]?)MT:?($stoptag)\b(?:[^>]*?)[\$/]?>)!gi) {
my($whole_tag, $prefix, $tag) = ($1, $2, $3);
my $end = pos $$text;
if ($prefix && ($prefix eq '/')) {
return ($end - length($whole_tag), $end);
} elsif ($whole_tag !~ m|/>|) {
my ($sec_end, $end_tag) = _consume_up_to($text, $end, $tag);
last if !$sec_end;
(pos $$text) = $end_tag;
}
}
# special case for unclosed 'else' tag:
if (lc($stoptag) eq 'else' || lc($stoptag) eq 'elseif') {
return ($start + length($$text), $start + length($$text));
}
return (0, 0);
}
sub _text_block {
my $text = substr ${ $_[0]->{text} }, $_[1], $_[2] - $_[1];
if ((defined $text) && ($text ne '')) {
my $rec = bless [ 'TEXT', $text, undef, undef, undef, $_[0]->{tokens}, $_[0]->{tmpl} ], NODE;
# Avoids circular reference between NODE and TOKENS, MT::Template.
weaken($rec->[5]);
weaken($rec->[6]);
push @{ $_[0]->{tokens} }, $rec;
}
}
sub syntree2str {
my ($tokens, $depth) = @_;
my $string = '';
foreach my $t (@$tokens) {
my ($name, $args, $tokens, $uncompiled) = @$t;
$string .= (" " x $depth) . $name;
if (ref $args eq 'HASH') {
$string .= join(", ", (map { " $_ => " . $args->{$_} }
(keys %$args)));
}
$string.= "\n";
$string .= syntree2str($tokens, $depth + 2);
}
return $string;
}
sub build {
my $build = shift;
my($ctx, $tokens, $cond) = @_;
my $timer;
if ($MT::DebugMode & 8) {
$timer = MT->get_timer();
}
if ($cond) {
my %lcond;
# lowercase condtional keys since we're storing tags in lowercase now
%lcond = map { lc $_ => $cond->{$_} } keys %$cond;
$cond = \%lcond;
} else {
$cond = {};
}
# Avoids circular reference between MT::Template::Context and MT::Builder.
local $ctx->{__stash}{builder} = $build;
my $res = '';
my $ph = $ctx->post_process_handler;
for my $t (@$tokens) {
if ($t->[0] eq 'TEXT') {
$res .= $t->[1];
} else {
my($tokens, $tokens_else, $uncompiled);
my $tag = lc $t->[0];
if ($cond && (exists $cond->{ $tag } && !$cond->{ $tag })) {
# if there's a cond for this tag and it's false,
# walk the children and look for an MTElse.
# the children of the MTElse will become $tokens
for my $tok (@{ $t->[2] }) {
if (lc $tok->[0] eq 'else' || lc $tok->[0] eq 'elseif') {
$tokens = $tok->[2];
$uncompiled = $tok->[3];
last;
}
}
next unless $tokens;
} else {
if ($t->[2] && ref($t->[2])) {
# either there is no cond for this tag, or it's true,
# so we want to partition the children into
# those which are inside an else and those which are not.
($tokens, $tokens_else) = ([], []);
for my $sub (@{ $t->[2] }) {
if (lc $sub->[0] eq 'else' || lc $sub->[0] eq 'elseif') {
push @$tokens_else, $sub;
} else {
push @$tokens, $sub;
}
}
}
$uncompiled = $t->[3];
}
my($h, $type) = $ctx->handler_for($t->[0]);
if ($h) {
$timer->pause_partial if $timer;
local($ctx->{__stash}{tag}) = $t->[0];
local($ctx->{__stash}{tokens}) = ref($tokens) ? bless $tokens, 'MT::Template::Tokens' : undef;
local($ctx->{__stash}{tokens_else}) = ref($tokens_else) ? bless $tokens_else, 'MT::Template::Tokens' : undef;
local($ctx->{__stash}{uncompiled}) = $uncompiled;
my %args = %{$t->[1]} if defined $t->[1];
my @args = @{$t->[4]} if defined $t->[4];
# process variables
foreach my $v (keys %args) {
if (ref $args{$v} eq 'ARRAY') {
foreach (@{$args{$v}}) {
if (m/^\$([A-Za-z_](\w|\.)*)$/) {
$_ = $ctx->var($1);
}
}
} else {
if ($args{$v} =~ m/^\$([A-Za-z_](\w|\.)*)$/) {
$args{$v} = $ctx->var($1);
}
}
}
foreach (@args) {
$_ = [ $_->[0], $_->[1] ];
my $arg = $_;
if (ref $arg->[1] eq 'ARRAY') {
$arg->[1] = [ @{$arg->[1]} ];
foreach (@{$arg->[1]}) {
if (m/^\$([A-Za-z_](\w|\.)*)$/) {
$_ = $ctx->var($1);
}
}
} else {
if ($arg->[1] =~ m/^\$([A-Za-z_](\w|\.)*)$/) {
$arg->[1] = $ctx->var($1);
}
}
}
# Stores a reference to the ordered list of arguments,
# just in case the handler wants them
local $args{'@'} = \@args;
my $out = $h->($ctx, \%args, $cond);
unless (defined $out) {
my $err = $ctx->errstr;
if (defined $err) {
return $build->error(MT->translate("Error in <mt[_1]> tag: [_2]", $t->[0], $ctx->errstr));
}
else {
# no error was given, so undef will mean '' in
# such a scenario
$out = '';
}
}
if ((defined $type) && ($type == 2)) {
# conditional; process result
my $vars = $ctx->{__stash}{vars};
local $vars->{__value__} = delete $vars->{__cond_value__};
local $vars->{__name__} = delete $vars->{__cond_name__};
$out = $out ? $ctx->slurp(\%args, $cond) : $ctx->else(\%args, $cond);
delete $vars->{__cond_tag__};
return $build->error(MT->translate("Error in <mt[_1]> tag: [_2]", $t->[0], $ctx->errstr))
unless defined $out;
}
$out = $ph->($ctx, \%args, $out, \@args)
if %args && $ph;
$res .= $out
if defined $out;
if ($timer) {
$timer->mark("tag_"
. lc($t->[0]) . args_to_string(\%args));
}
} else {
if ($t->[0] !~ m/^_/) { # placeholder tag. just ignore
return $build->error(MT->translate("Unknown tag found: [_1]", $t->[0]));
}
}
}
}
return $res;
}
sub args_to_string {
my ($args) = @_;
my $str = '';
foreach my $a (keys %$args) {
next if $a eq '@';
next unless defined $args->{$a};
next if $args->{$a} eq '';
$str .= ';' . $a . ':';
if (ref $args->{$a} eq 'ARRAY') {
foreach my $aa (@{ $args->{$a} }) {
$aa = '...' if $aa =~ m/ /;
$str .= $aa . ';';
}
chop($str);
} else {
$str .= $args->{$a} =~ m/ / ? '...' : $args->{$a};
}
}
my $more_args = $args->{'@'};
if ($more_args && @$more_args) {
foreach my $a (@$more_args) {
if (ref $a->[1] eq 'ARRAY') {
$str .= ' ' . $a->[0] . '=';
foreach my $aa (@{ $a->[1] }) {
$aa = '...' if $aa =~ m/ /;
$str .= $aa . ';';
}
chop($str);
} else {
next if exists $args->{$a->[0]}
&& ($args->{$a->[0]} eq $a->[1]);
next unless defined $args->[1];
next if $args->[1] eq '';
$str .= ';' . $a->[0] . ':';
$str .= $a->[1];
}
}
}
return $str ne '' ? '[' . substr($str,1) . ']' : '';
}
1;
__END__
=head1 NAME
MT::Builder - Parser and interpreter for MT templates
=head1 SYNOPSIS
use MT::Builder;
use MT::Template::Context;
my $build = MT::Builder->new;
my $ctx = MT::Template::Context->new;
my $tokens = $build->compile($ctx, '<$MTVersion$>')
or die $build->errstr;
defined(my $out = $build->build($ctx, $tokens))
or die $build->errstr;
=head1 DESCRIPTION
I<MT::Builder> provides the parser and interpreter for taking a template
body and turning it into a generated output page. An I<MT::Builder> object
knows how to parse a string of text into tokens, then take those tokens and
build a scalar string representing the output of the page. It does not,
however, know anything about the types of tags that it encounters; it hands
off this work to the I<MT::Template::Context> object, which can look up a
tag and determine whether it's valid, whether it's a container or substitution
tag, etc.
All I<MT::Builder> knows is the basic structure of a Movable Type tag, and
how to break up a string into pieces: plain text pieces interspersed with
tag callouts. It then knows how to take a list of these tokens/pieces and
build a completed page, using the same I<MT::Template::Context> object to
actually fill in the values for the Movable Type tags.
=head1 USAGE
=head2 MT::Builder->new
Constructs and returns a new parser/interpreter object.
=head2 $build->compile($ctx, $string)
Given an I<MT::Template::Context> object I<$ctx>, breaks up the scalar string
I<$string> into tokens and returns the list of tokens as a reference to an
array. Returns C<undef> on compilation failure.
=head2 $build->build($ctx, \@tokens [, \%cond ])
Given an I<MT::Template::Context> object I<$ctx>, turns a list of tokens
I<\@tokens> and generates an output page. Returns the output page on success,
C<undef> on failure. Note that the empty string (C<''>) and the number zero
(C<0>) are both valid return values for this method, so you should check
specifically for an undefined value when checking for errors.
The optional argument I<\%cond> specifies a list of conditions under which
the tokens will be interpreted. If provided, I<\%cond> should be a reference
to a hash, where the keys are MT tag names (without the leading C<MT>), and
the values are boolean flags specifying whether to include the tag; a true
value means that the tag should be included in the final output, a false value
that it should not. This is useful when a template includes conditional
container tags (eg C<E<lt>MTEntryIfExtendedE<gt>>), and you wish to influence
the inclusion of these container tags. For example, if a template contains
the container
<MTEntryIfExtended>
<$MTEntryMore$>
</MTEntryIfExtended>
and you wish to exclude this conditional, you could call I<build> like this:
my $out = $build->build($ctx, $tokens, { EntryIfExtended => 0 });
=head2 $build->syntree2str(\@tokens)
Internal debugging routine to dump a set of template tokens. Returns a
readable string of contents of the C<$tokens> parameter.
=head1 ERROR HANDLING
On an error, the above methods return C<undef>, and the error message can
be obtained by calling the method I<errstr> on the object. For example:
defined(my $out = $build->build($ctx, $tokens))
or die $build->errstr;
=head1 AUTHOR & COPYRIGHTS
Please see the I<MT> manpage for author, copyright, and license information.
=cut
|