JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
* template.php (parse_template): every tag preceded by string.
[wfpl.git] / template.php
index 03f11ea..07e6e12 100644 (file)
@@ -57,35 +57,9 @@ function parse_template_file($filename) {
        return parse_template(file_get_contents($filename));
 }
 
-# See also parse_template and fill_template.
-
-
-# To track our position in the template and in the data, we use a linked 
-# stack structure.  Each node is a hash with a reference to the parent 
-# node along with whatever other data you want to add.  For each stack, 
-# you simply keep a variable with a reference to the top element.  Then 
-# the push and pop operations are:
-
-# $top =& tem_push($top);
-# $top =& $top['parent'];
-
-function &tem_push(&$stack = NULL) {
-       static $refs = array();
-
-       # Since a PHP reference is *not* a pointer to data, but a pointer to 
-       # a variable (or array slot), we *have* to first put the new node in
-       # $refs, and then reference it from $new.
-
-       $refs[] = array();
-       $new =& $refs[count($refs)-1];
-       if($stack) $new['parent'] =& $stack;
-       return $new;
-}
-
-
-# First we take the template string and convert it into a tree of
-# strings and sub-templates.  A template is a hash with a name string,
-# a pieces array, and possibly an args array.
+# We parse the template string into a tree of strings and sub-templates.  
+# A template is a hash with a name string, a pieces array, and possibly 
+# an args array.
 
 function parse_template($string) {
        $tem =& tem_push();
@@ -93,23 +67,23 @@ function parse_template($string) {
        # note: for some reason this captures '<!--' but not '-->'.
        $matches = preg_split("/(<!--)?(~[^~]*~)(?(1)-->)/", $string, -1, PREG_SPLIT_DELIM_CAPTURE);
        foreach($matches as $match) {
-               if(substr($match,0,1) == '~') {
+               if($match == '~~') $match = '~';
+               if(substr($match,0,1) == '~' and strlen($match) > 2) {
                        $args = explode(' ', substr($match,1,-1));
 
                        if(count($args) == 1 and $args[0] == '}') $name = '';
                        else $name = array_shift($args);
 
                        if(last($args) == '{') {  # open block
-                               array_pop($args);
-                               # create a new sub-template
-                               # and add it to the parent.
-                               $tem =& tem_push($tem);
-                               $tem['parent']['pieces'][] =& $tem;
+                               array_pop($args);  # drop '{'
+                               if(!is_string(last($tem['pieces']))) $tem['pieces'][] = '';
+                               $tem =& tem_push($tem);              # create a new sub-template
+                               $tem['parent']['pieces'][] =& $tem;  # as a piece of the parent
                                $tem['name'] = $name;
                                $tem['pieces'] = array();
                                $tem['args'] = $args;
                        } elseif(last($args) == '}') {  # close block
-                               array_pop($args);
+                               array_pop($args);  # drop '}'
                                $cur = $tem['name'];
                                if($name && $name != $cur) {
                                        die("Invalid template: tried to close '$name', but '$cur' is current.");
@@ -125,6 +99,58 @@ function parse_template($string) {
        return $tem;
 }
 
+function fill_template($template, &$data, &$context = NULL) {
+       if(!$context) {
+               $context =& tem_push($context);
+               $context['data'] =& $data;
+       }
+
+       foreach($template['pieces'] as $tem) {
+               if(is_string($tem)) $output .= $tem;
+               elseif($tem['pieces']) {  # sub-template
+                       $rows =& tem_row_data($tem, $context);
+                       foreach($rows as $key => &$row) {
+                               $context =& tem_push($context);
+                               $context['data'] =& $row;
+                               $context['rows'] =& $rows;
+                                       $output .= fill_template($tem, $row, $context);
+                               $context =& $context['parent'];
+
+                       }
+               } else {  # variable
+                       $output .= tem_encoded_data($tem, $context);
+               }
+       }
+       return $output;
+}
+
+
+# Implementation
+# --------------
+
+
+# To track our position in the template and in the data, we use a linked 
+# stack structure.  Each node is a hash with a reference to the parent 
+# node along with whatever other data you want to add.  For each stack, 
+# you simply keep a variable with a reference to the top element.  Then 
+# the push and pop operations are:
+
+# $top =& tem_push($top);
+# $top =& $top['parent'];
+
+function &tem_push(&$stack = NULL) {
+       static $refs = array();
+
+       # Since a PHP reference is *not* a pointer to data, but a pointer to 
+       # a variable (or array slot), we *have* to first put the new node in
+       # $refs, and then reference it from $new.
+
+       $refs[] = array();
+       $new =& $refs[count($refs)-1];
+       if($stack) $new['parent'] =& $stack;
+       return $new;
+}
+
 # To fill out a template, we do a depth-first traversal of the template 
 # tree, replacing all tags with the data values.
 
@@ -155,7 +181,7 @@ function tem_data_as_rows($value) {
 # To look up a key, we check each namespace (starting with the
 # innermost one) until a value is found.
 
-function tem_find_scope($key, $context) {
+function tem_data_scope($key, $context) {
        $scope = $context;
        do{
                if(array_key_exists($key, $scope['data'])) {
@@ -167,14 +193,14 @@ function tem_find_scope($key, $context) {
        return array('parent' => $context);
 }
 
-function tem_get($key, $context) {
-       $scope = tem_find_scope($key, $context);
+function tem_get_data($key, $context) {
+       $scope = tem_data_scope($key, $context);
        if($scope) return $scope['data'][$key];
 }
 
 # Return the value for a tag as a set of rows to fill a sub-template.
 # If $tag has an arg, call the tem_auto function to munge the data.
-function &tem_get_rows($tag, $context)
+function &tem_row_data($tag, $context)
 {
        $key = $tag['name'];
        if(count($tag['args'])) {
@@ -182,7 +208,7 @@ function &tem_get_rows($tag, $context)
                function_exists($func)
                        or die("ERROR: template auto function '$func' not found.<br>\n");
        }
-       $scope = tem_find_scope($key, $context);
+       $scope = tem_data_scope($key, $context);
 
        if($func) $value = $func($key, $scope);
        else $value = $scope['data'][$key];
@@ -194,10 +220,10 @@ function &tem_get_rows($tag, $context)
 }
 
 # Return the value for a tag as an encoded string.
-function tem_get_enc($tag, $context)
+function tem_encoded_data($tag, $context)
 {
        $key = $tag['name'];
-       $value = tem_get($key, $context);
+       $value = tem_get_data($key, $context);
        foreach($tag['args'] as $encoding) {
                $func = "enc_$encoding";
                if(function_exists($func)) $value = $func($value, $key);
@@ -206,31 +232,6 @@ function tem_get_enc($tag, $context)
        return $value;
 }
 
-function fill_template($template, &$data, &$context = NULL) {
-       if(!$context) {
-               $context =& tem_push($context);
-               $context['data'] =& $data;
-       }
-
-       foreach($template['pieces'] as $tem) {
-               if(is_string($tem)) $output .= $tem;
-               elseif($tem['pieces']) {  # sub-template
-                       $rows =& tem_get_rows($tem, $context);
-                       foreach($rows as $key => &$row) {
-                               $context =& tem_push($context);
-                               $context['data'] =& $row;
-                               $context['rows'] =& $rows;
-                                       $output .= fill_template($tem, $row, $context);
-                               $context =& $context['parent'];
-
-                       }
-               } else {  # variable
-                       $output .= tem_get_enc($tem, $context);
-               }
-       }
-       return $output;
-}
-
 
 
 # Return a hash containing the top-level sub-templates of tem.
@@ -282,10 +283,10 @@ function tem_auto_sep($key, $context) {
        # else we are on the last row (cursor has hit the end and reset).
 }
 
-# 'once' sections will be shown once unless the corresponding data value
+# 'show' sections will be shown unless the corresponding data value
 # is false.  We check only for false; 0 or '' will not work.
 
-function tem_auto_once($key, $context) {
+function tem_auto_show($key, $context) {
        if($context['data'][$key] !== false)
                return tem_data_as_rows(true);
 }