Image engine rewritten, cache directories ignored
[core.git] / inc / classes / main / template / class_BaseTemplateEngine.php
1 <?php
2 /**
3  * A generic template engine
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class BaseTemplateEngine extends BaseFrameworkSystem {
25         /**
26          * The local path name where all templates and sub folders for special
27          * templates are stored. We will internally determine the language plus
28          * "html" for web templates or "emails" for email templates
29          */
30         private $templateBasePath = '';
31
32         /**
33          * Template type
34          */
35         private $templateType = 'html';
36
37         /**
38          * The extension for web and email templates (not compiled templates)
39          */
40         private $templateExtension = '.tpl';
41
42         /**
43          * The extension for code templates (not compiled templates)
44          */
45         private $codeExtension = '.ctp';
46
47         /**
48          * Path relative to $templateBasePath and language code for compiled code-templates
49          */
50         private $compileOutputPath = 'templates/_compiled/';
51
52         /**
53          * The path name for all templates
54          */
55         private $genericBasePath = 'templates/';
56
57         /**
58          * The raw (maybe uncompiled) template
59          */
60         private $rawTemplateData = '';
61
62         /**
63          * Template data with compiled-in variables
64          */
65         private $compiledData = '';
66
67         /**
68          * The last loaded template's FQFN for debugging the engine
69          */
70         private $lastTemplate = '';
71
72         /**
73          * The variable stack for the templates
74          */
75         private $varStack = array();
76
77         /**
78          * Loaded templates for recursive protection and detection
79          */
80         private $loadedTemplates = array();
81
82         /**
83          * Compiled templates for recursive protection and detection
84          */
85         private $compiledTemplates = array();
86
87         /**
88          * Loaded raw template data
89          */
90         private $loadedRawData = null;
91
92         /**
93          * Raw templates which are linked in code templates
94          */
95         private $rawTemplates = null;
96
97         /**
98          * A regular expression for variable=value pairs
99          */
100         private $regExpVarValue = '/([\w_]+)(="([^"]*)"|=([\w_]+))?/';
101
102         /**
103          * A regular expression for filtering out code tags
104          *
105          * E.g.: {?template:variable=value;var2=value2;[...]?}
106          */
107         private $regExpCodeTags = '/\{\?([a-z_]+)(:("[^"]+"|[^?}]+)+)?\?\}/';
108
109         /**
110          * Loaded helpers
111          */
112         private $helpers = array();
113
114         /**
115          * Current variable group
116          */
117         private $currGroup = 'general';
118
119         /**
120          * All template groups except "general"
121          */
122         private $varGroups = array();
123
124         /**
125          * Code begin
126          */
127         private $codeBegin = '<?php';
128
129         /**
130          * Code end
131          */
132         private $codeEnd = '?>';
133
134         // Exception codes for the template engine
135         const EXCEPTION_TEMPLATE_TYPE_IS_UNEXPECTED   = 0x110;
136         const EXCEPTION_TEMPLATE_CONTAINS_INVALID_VAR = 0x111;
137         const EXCEPTION_INVALID_VIEW_HELPER           = 0x112;
138
139         /**
140          * Protected constructor
141          *
142          * @param       $className      Name of the class
143          * @return      void
144          */
145         protected function __construct ($className) {
146                 // Call parent constructor
147                 parent::__construct($className);
148
149                 // Clean up a little
150                 $this->removeNumberFormaters();
151                 $this->removeSystemArray();
152         }
153
154         /**
155          * Search for a variable in the stack
156          *
157          * @param       $var    The variable we are looking for
158          * @return      $idx    FALSE means not found, >=0 means found on a specific index
159          */
160         private function isVariableAlreadySet ($var) {
161                 // First everything is not found
162                 $found = false;
163
164                 // Is the group there?
165                 if (isset($this->varStack[$this->currGroup])) {
166                         // Now search for it
167                         foreach ($this->varStack[$this->currGroup] as $idx => $currEntry) {
168                                 //* DEBUG: */ echo __METHOD__.":currGroup={$this->currGroup},idx={$idx},currEntry={$currEntry['name']},var={$var}<br />\n";
169                                 // Is the entry found?
170                                 if ($currEntry['name'] == $var) {
171                                         // Found!
172                                         //* DEBUG: */ echo __METHOD__.":FOUND!<br />\n";
173                                         $found = $idx;
174                                         break;
175                                 } // END - if
176                         } // END - foreach
177                 } // END - if
178
179                 // Return the current position
180                 return $found;
181         }
182
183         /**
184          * Return a content of a variable or null if not found
185          *
186          * @param       $var            The variable we are looking for
187          * @return      $content        Content of the variable or null if not found
188          */
189         protected function readVariable ($var) {
190                 // First everything is not found
191                 $content = null;
192
193                 // Get variable index
194                 $found = $this->isVariableAlreadySet($var);
195
196                 // Is the variable found?
197                 if ($found !== false) {
198                         // Read it
199                         $found = $this->varStack[$this->currGroup][$found]['value'];
200                 } // END - if
201
202                 //* DEBUG: */ echo __METHOD__.": group=".$this->currGroup.",var=".$var.", found=".$found."<br />\n";
203
204                 // Return the current position
205                 return $found;
206         }
207
208         /**
209          * Add a variable to the stack
210          *
211          * @param       $var    The variable we are looking for
212          * @param       $value  The value we want to store in the variable
213          * @return      void
214          */
215         private function addVariable ($var, $value) {
216                 // Set general variable group
217                 $this->setVariableGroup('general');
218
219                 // Add it to the stack
220                 $this->addGroupVariable($var, $value);
221         }
222
223         /**
224          * Returns all variables of current group or empty array
225          *
226          * @return      $result         Wether array of found variables or empty array
227          */
228         private function readCurrentGroup () {
229                 // Default is not found
230                 $result = array();
231
232                 // Is the group there?
233                 if (isset($this->varStack[$this->currGroup])) {
234                         // Then use it
235                         $result = $this->varStack[$this->currGroup];
236                 } // END - if
237
238                 // Return result
239                 return $result;
240         }
241
242         /**
243          * Settter for variable group
244          *
245          * @param       $groupName      Name of variable group
246          * @param       $add            Wether add this group
247          * @retur4n     void
248          */
249         public function setVariableGroup ($groupName, $add = true) {
250                 // Set group name
251                 //* DEBIG: */ echo __METHOD__.": currGroup=".$groupName."<br />\n";
252                 $this->currGroup = $groupName;
253
254                 // Skip group 'general'
255                 if (($groupName != 'general') && ($add === true)) {
256                         $this->varGroups[$groupName] = 'OK';
257                 } // END - if
258         }
259
260
261         /**
262          * Adds a variable to current group
263          *
264          * @param       $var    Variable to set
265          * @param       $value  Value to store in variable
266          * @return      void
267          */
268         public function addGroupVariable ($var, $value) {
269                 //* DEBUG: */ echo __METHOD__.": group=".$this->currGroup.", var=".$var.", value=".$value."<br />\n";
270
271                 // Get current variables in group
272                 $currVars = $this->readCurrentGroup();
273
274                 // Append our variable
275                 $currVars[] = array(
276                         'name'  => $var,
277                         'value' => $value
278                 );
279
280                 // Add it to the stack
281                 $this->varStack[$this->currGroup] = $currVars;
282         }
283
284         /**
285          * Modify an entry on the stack
286          *
287          * @param       $var    The variable we are looking for
288          * @param       $value  The value we want to store in the variable
289          * @return      void
290          */
291         private function modifyVariable ($var, $value) {
292                 // Get index for variable
293                 $idx = $this->isVariableAlreadySet($var);
294
295                 // Is the variable set?
296                 if ($idx !== false) {
297                         // Then modify it
298                         $this->varStack[$this->currGroup][$idx]['value'] = $value;
299                 } // END - if
300         }
301
302         /**
303          * Setter for template type. Only 'html', 'emails' and 'compiled' should
304          * be sent here
305          *
306          * @param       $templateType   The current template's type
307          * @return      void
308          */
309         protected final function setTemplateType ($templateType) {
310                 $this->templateType = (string) $templateType;
311         }
312
313         /**
314          * Setter for the last loaded template's FQFN
315          *
316          * @param       $template       The last loaded template
317          * @return      void
318          */
319         private final function setLastTemplate ($template) {
320                 $this->lastTemplate = (string) $template;
321         }
322
323         /**
324          * Getter for the last loaded template's FQFN
325          *
326          * @return      $template       The last loaded template
327          */
328         private final function getLastTemplate () {
329                 return $this->lastTemplate;
330         }
331
332         /**
333          * Setter for base path
334          *
335          * @param               $templateBasePath               The relative base path for all templates
336          * @return      void
337          */
338         public final function setTemplateBasePath ($templateBasePath) {
339                 // And set it
340                 $this->templateBasePath = (string) $templateBasePath;
341         }
342
343         /**
344          * Getter for base path
345          *
346          * @return      $templateBasePath               The relative base path for all templates
347          */
348         public final function getTemplateBasePath () {
349                 // And set it
350                 return $this->templateBasePath;
351         }
352
353         /**
354          * Getter for generic base path
355          *
356          * @return      $templateBasePath               The relative base path for all templates
357          */
358         public final function getGenericBasePath () {
359                 // And set it
360                 return $this->genericBasePath;
361         }
362
363         /**
364          * Setter for template extension
365          *
366          * @param               $templateExtension      The file extension for all uncompiled
367          *                                                      templates
368          * @return      void
369          */
370         public final function setRawTemplateExtension ($templateExtension) {
371                 // And set it
372                 $this->templateExtension = (string) $templateExtension;
373         }
374
375         /**
376          * Setter for code template extension
377          *
378          * @param               $codeExtension          The file extension for all uncompiled
379          *                                                      templates
380          * @return      void
381          */
382         public final function setCodeTemplateExtension ($codeExtension) {
383                 // And set it
384                 $this->codeExtension = (string) $codeExtension;
385         }
386
387         /**
388          * Getter for template extension
389          *
390          * @return      $templateExtension      The file extension for all uncompiled
391          *                                                      templates
392          */
393         public final function getRawTemplateExtension () {
394                 // And set it
395                 return $this->templateExtension;
396         }
397
398         /**
399          * Getter for code-template extension
400          *
401          * @return      $codeExtension          The file extension for all code-
402          *                                                      templates
403          */
404         public final function getCodeTemplateExtension () {
405                 // And set it
406                 return $this->codeExtension;
407         }
408
409         /**
410          * Setter for path of compiled templates
411          *
412          * @param       $compileOutputPath      The local base path for all compiled
413          *                                                              templates
414          * @return      void
415          */
416         public final function setCompileOutputPath ($compileOutputPath) {
417                 // And set it
418                 $this->compileOutputPath = (string) $compileOutputPath;
419         }
420
421         /**
422          * Getter for template type
423          *
424          * @return      $templateType   The current template's type
425          */
426         public final function getTemplateType () {
427                 return $this->templateType;
428         }
429
430         /**
431          * Assign (add) a given variable with a value
432          *
433          * @param       $var    The variable we are looking for
434          * @param       $value  The value we want to store in the variable
435          * @return      void
436          * @throws      EmptyVariableException  If the variable name is left empty
437          */
438         public final function assignVariable ($var, $value) {
439                 // Trim spaces of variable name
440                 $var = trim($var);
441
442                 // Empty variable found?
443                 if (empty($var)) {
444                         // Throw an exception
445                         throw new EmptyVariableException(array($this, 'var'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
446                 } // END - if
447
448                 // First search for the variable if it was already added
449                 $idx = $this->isVariableAlreadySet($var);
450
451                 // Was it found?
452                 if ($idx === false) {
453                         // Add it to the stack
454                         //* DEBUG: */ echo "ADD: ".$var."<br />\n";
455                         $this->addVariable($var, $value);
456                 } elseif (!empty($value)) {
457                         // Modify the stack entry
458                         //* DEBUG: */ echo "MOD: ".$var."<br />\n";
459                         $this->modifyVariable($var, $value);
460                 }
461         }
462
463         /**
464          * Removes a given variable
465          *
466          * @param       $var    The variable we are looking for
467          * @return      void
468          */
469         public final function removeVariable ($var) {
470                 // First search for the variable if it was already added
471                 $idx = $this->isVariableAlreadySet($var);
472
473                 // Was it found?
474                 if ($idx !== false) {
475                         // Remove this variable
476                         $this->varStack->offsetUnset($idx);
477                 }
478         }
479
480         /**
481          * Private setter for raw template data
482          *
483          * @param       $rawTemplateData        The raw data from the template
484          * @return      void
485          */
486         protected final function setRawTemplateData ($rawTemplateData) {
487                 // And store it in this class
488                 //* DEBUG: */ echo __METHOD__.':'.$this->getUniqueId().': '.strlen($rawTemplateData).' Bytes set.<br />\n';
489                 //* DEBUG: */ echo $this->currGroup.' variables: '.count($this->varStack[$this->currGroup]).', groups='.count($this->varStack).'<br />\n';
490                 $this->rawTemplateData = (string) $rawTemplateData;
491         }
492
493         /**
494          * Getter for raw template data
495          *
496          * @return      $rawTemplateData        The raw data from the template
497          */
498         public final function getRawTemplateData () {
499                 //* DEBUG: */ echo __METHOD__.':'.$this->getUniqueId().': '.strlen($this->rawTemplateData).' Bytes read.<br />\n';
500                 return $this->rawTemplateData;
501         }
502
503         /**
504          * Private setter for compiled templates
505          *
506          * @return      void
507          */
508         private final function setCompiledData ($compiledData) {
509                 // And store it in this class
510                 //* DEBUG: */ echo __METHOD__.':'.$this->getUniqueId().': '.strlen($compiledData).' Bytes set.<br />\n';
511                 $this->compiledData = (string) $compiledData;
512         }
513
514         /**
515          * Getter for compiled templates
516          *
517          * @return      $compiledData   Compiled template data
518          */
519         public final function getCompiledData () {
520                 //* DEBUG: */ echo __METHOD__.':'.$this->getUniqueId().': '.strlen($this->compiledData).' Bytes read.<br />\n';
521                 return $this->compiledData;
522         }
523
524         /**
525          * Private loader for all template types
526          *
527          * @param       $template       The template we shall load
528          * @return      void
529          * @throws      FileNotFoundException   If the template was not found
530          */
531         protected function loadTemplate ($template, $ext = '') {
532                 // Get extension for the template if empty
533                 if (empty($ext)) {
534                         // None provided, so get the raw one
535                         $ext = $this->getRawTemplateExtension();
536                 } // END - if
537
538                 // Construct the FQFN for the template by honoring the current language
539                 $fqfn = sprintf("%s%s%s%s/%s/%s%s",
540                         $this->getConfigInstance()->readConfig('base_path'),
541                         $this->getTemplateBasePath(),
542                         $this->getGenericBasePath(),
543                         $this->getLanguageInstance()->getLanguageCode(),
544                         $this->getTemplateType(),
545                         (string) $template,
546                         $ext
547                 );
548
549                 // First try this
550                 try {
551                         // Load the raw template data
552                         $this->loadRawTemplateData($fqfn);
553                 } catch (FileNotFoundException $e) {
554                         // If we shall load a code-template we need to switch the file extension
555                         if ($this->getTemplateType() != $this->getConfigInstance()->readConfig('web_template_type')) {
556                                 // Switch over to the code-template extension and try it again
557                                 $ext = $this->getCodeTemplateExtension();
558
559                                 // Try it again...
560                                 $this->loadTemplate($template, $ext);
561                         } else {
562                                 // Throw it again
563                                 throw new FileNotFoundException($fqfn, FrameworkFileInputPointer::EXCEPTION_FILE_NOT_FOUND);
564                         }
565                 }
566
567         }
568
569         /**
570          * A private loader for raw template names
571          *
572          * @param       $fqfn   The full-qualified file name for a template
573          * @return      void
574          */
575         private function loadRawTemplateData ($fqfn) {
576                 // Get a input/output instance from the middleware
577                 $ioInstance = $this->getFileIoInstance();
578
579                 // Some debug code to look on the file which is being loaded
580                 //* DEBUG: */ echo __METHOD__.": FQFN=".$fqfn."<br />\n";
581
582                 // Load the raw template
583                 $rawTemplateData = $ioInstance->loadFileContents($fqfn);
584
585                 // Store the template's contents into this class
586                 $this->setRawTemplateData($rawTemplateData);
587
588                 // Remember the template's FQFN
589                 $this->setLastTemplate($fqfn);
590         }
591
592         /**
593          * Try to assign an extracted template variable as a "content" or 'config'
594          * variable.
595          *
596          * @param       $varName        The variable's name (shall be content orconfig) by
597          *                                              default
598          * @param       $var            The variable we want to assign
599          */
600         private function assignTemplateVariable ($varName, $var) {
601                 // Is it not a config variable?
602                 if ($varName != 'config') {
603                         // Regular template variables
604                         $this->assignVariable($var, '');
605                 } else {
606                         // Configuration variables
607                         $this->assignConfigVariable($var);
608                 }
609         }
610
611         /**
612          * Extract variables from a given raw data stream
613          *
614          * @param       $rawData        The raw template data we shall analyze
615          * @return      void
616          */
617         private function extractVariablesFromRawData ($rawData) {
618                 // Cast to string
619                 $rawData = (string) $rawData;
620
621                 // Search for variables
622                 @preg_match_all('/\$(\w+)(\[(\w+)\])?/', $rawData, $variableMatches);
623
624                 // Did we find some variables?
625                 if ((is_array($variableMatches)) && (count($variableMatches) == 4) && (count($variableMatches[0]) > 0)) {
626                         // Initialize all missing variables
627                         foreach ($variableMatches[3] as $key => $var) {
628                                 // Variable name
629                                 $varName = $variableMatches[1][$key];
630
631                                 // Workarround: Do not assign empty variables
632                                 if (!empty($var)) {
633                                         // Try to assign it, empty strings are being ignored
634                                         $this->assignTemplateVariable($varName, $var);
635                                 } // END - if
636                         } // END - foreach
637                 } // END - if
638         }
639
640         /**
641          * Main analysis of the loaded template
642          *
643          * @param       $templateMatches        Found template place-holders, see below
644          * @return      void
645          *
646          *---------------------------------
647          * Structure of $templateMatches:
648          *---------------------------------
649          * [0] => Array - An array with all full matches
650          * [1] => Array - An array with left part (before the ':') of a match
651          * [2] => Array - An array with right part of a match including ':'
652          * [3] => Array - An array with right part of a match excluding ':'
653          */
654         private function analyzeTemplate (array $templateMatches) {
655                 // Backup raw template data
656                 $backup = $this->getRawTemplateData();
657
658                 // Initialize some arrays
659                 if (is_null($this->loadedRawData)) { $this->loadedRawData = array(); $this->rawTemplates = array(); }
660
661                 // Load all requested templates
662                 foreach ($templateMatches[1] as $template) {
663
664                         // Load and compile only templates which we have not yet loaded
665                         // RECURSIVE PROTECTION! BE CAREFUL HERE!
666                         if ((!isset($this->loadedRawData[$template])) && (!in_array($template, $this->loadedTemplates))) {
667
668                                 // Template not found, but maybe variable assigned?
669                                 //* DEBUG: */ echo __METHOD__.":template={$template}<br />\n";
670                                 if ($this->isVariableAlreadySet($template) !== false) {
671                                         // Use that content here
672                                         $this->loadedRawData[$template] = $this->readVariable($template);
673
674                                         // Recursive protection:
675                                         $this->loadedTemplates[] = $template;
676                                 } elseif (isset($this->varStack['config'][$template])) {
677                                         // Use that content here
678                                         $this->loadedRawData[$template] = $this->varStack['config'][$template];
679
680                                         // Recursive protection:
681                                         $this->loadedTemplates[] = $template;
682                                 } else {
683                                         // Then try to search for code-templates
684                                         try {
685                                                 // Load the code template and remember it's contents
686                                                 $this->loadCodeTemplate($template);
687                                                 $this->loadedRawData[$template] = $this->getRawTemplateData();
688
689                                                 // Remember this template for recursion detection
690                                                 // RECURSIVE PROTECTION!
691                                                 $this->loadedTemplates[] = $template;
692                                         } catch (FileNotFoundException $e) {
693                                                 // Even this is not done... :/
694                                                 $this->rawTemplates[] = $template;
695                                         } catch (FilePointerNotOpenedException $e) {
696                                                 // Even this is not done... :/
697                                                 $this->rawTemplates[] = $template;
698                                         }
699                                 }
700                         } // END - if
701                 } // END - foreach
702
703                 // Restore the raw template data
704                 $this->setRawTemplateData($backup);
705         }
706
707         /**
708          * Compile a given raw template code and remember it for later usage
709          *
710          * @param       $code           The raw template code
711          * @param       $template       The template's name
712          * @return      void
713          */
714         private function compileCode ($code, $template) {
715                 // Is this template already compiled?
716                 if (in_array($template, $this->compiledTemplates)) {
717                         // Abort here...
718                         return;
719                 } // END - if
720
721                 // Remember this template being compiled
722                 $this->compiledTemplates[] = $template;
723
724                 // Compile the loaded code in five steps:
725                 //
726                 // 1. Backup current template data
727                 $backup = $this->getRawTemplateData();
728
729                 // 2. Set the current template's raw data as the new content
730                 $this->setRawTemplateData($code);
731
732                 // 3. Compile the template data
733                 $this->compileTemplate();
734
735                 // 4. Remember it's contents
736                 $this->loadedRawData[$template] = $this->getRawTemplateData();
737
738                 // 5. Restore the previous raw content from backup variable
739                 $this->setRawTemplateData($backup);
740         }
741
742         /**
743          * Insert all given and loaded templates by running through all loaded
744          * codes and searching for their place-holder in the main template
745          *
746          * @param       $templateMatches        See method analyzeTemplate()
747          * @return      void
748          */
749         private function insertAllTemplates (array $templateMatches) {
750                 // Run through all loaded codes
751                 foreach ($this->loadedRawData as $template => $code) {
752
753                         // Search for the template
754                         $foundIndex = array_search($template, $templateMatches[1]);
755
756                         // Lookup the matching template replacement
757                         if (($foundIndex !== false) && (isset($templateMatches[0][$foundIndex]))) {
758
759                                 // Get the current raw template
760                                 $rawData = $this->getRawTemplateData();
761
762                                 // Replace the space holder with the template code
763                                 $rawData = str_replace($templateMatches[0][$foundIndex], $code, $rawData);
764
765                                 // Set the new raw data
766                                 $this->setRawTemplateData($rawData);
767                         } // END - if
768                 } // END - foreach
769         }
770
771         /**
772          * Load all extra raw templates
773          *
774          * @return      void
775          */
776         private function loadExtraRawTemplates () {
777                 // Are there some raw templates we need to load?
778                 if (count($this->rawTemplates) > 0) {
779                         // Try to load all raw templates
780                         foreach ($this->rawTemplates as $key => $template) {
781                                 try {
782                                         // Load the template
783                                         $this->loadWebTemplate($template);
784
785                                         // Remember it's contents
786                                         $this->rawTemplates[$template] = $this->getRawTemplateData();
787
788                                         // Remove it from the loader list
789                                         unset($this->rawTemplates[$key]);
790
791                                         // Remember this template for recursion detection
792                                         // RECURSIVE PROTECTION!
793                                         $this->loadedTemplates[] = $template;
794                                 } catch (FileNotFoundException $e) {
795                                         // This template was never found. We silently ignore it
796                                         unset($this->rawTemplates[$key]);
797                                 } catch (FilePointerNotOpenedException $e) {
798                                         // This template was never found. We silently ignore it
799                                         unset($this->rawTemplates[$key]);
800                                 }
801                         } // END - foreach
802                 } // END - if
803         }
804
805         /**
806          * Assign all found template variables
807          *
808          * @param       $varMatches             An array full of variable/value pairs.
809          * @return      void
810          * @todo        Unfinished work or don't die here.
811          */
812         private function assignAllVariables (array $varMatches) {
813                 // Search for all variables
814                 foreach ($varMatches[1] as $key => $var) {
815
816                         // Detect leading equals
817                         if (substr($varMatches[2][$key], 0, 1) == '=') {
818                                 // Remove and cast it
819                                 $varMatches[2][$key] = (string) substr($varMatches[2][$key], 1);
820                         } // END - if
821
822                         // Do we have some quotes left and right side? Then it is free text
823                         if ((substr($varMatches[2][$key], 0, 1) == "\"") && (substr($varMatches[2][$key], -1, 1) == "\"")) {
824                                 // Free string detected! Which we can assign directly
825                                 $this->assignVariable($var, $varMatches[3][$key]);
826                         } elseif (!empty($varMatches[2][$key])) {
827                                 // @TODO Non-string found so we need some deeper analysis...
828                                 ApplicationEntryPoint::app_die('Deeper analysis not yet implemented!');
829                         }
830
831                 } // for ($varMatches ...
832         }
833         /**
834          * Compiles all loaded raw templates
835          *
836          * @param       $templateMatches        See method analyzeTemplate() for details
837          * @return      void
838          */
839         private function compileRawTemplateData (array $templateMatches) {
840                 // Are some code-templates found which we need to compile?
841                 if (count($this->loadedRawData) > 0) {
842
843                         // Then compile all!
844                         foreach ($this->loadedRawData as $template => $code) {
845
846                                 // Is this template already compiled?
847                                 if (in_array($template, $this->compiledTemplates)) {
848                                         // Then skip it
849                                         continue;
850                                 }
851
852                                 // Search for the template
853                                 $foundIndex = array_search($template, $templateMatches[1]);
854
855                                 // Lookup the matching variable data
856                                 if (($foundIndex !== false) && (isset($templateMatches[3][$foundIndex]))) {
857
858                                         // Split it up with another reg. exp. into variable=value pairs
859                                         preg_match_all($this->regExpVarValue, $templateMatches[3][$foundIndex], $varMatches);
860
861                                         // Assign all variables
862                                         $this->assignAllVariables($varMatches);
863
864                                 } // END - if (isset($templateMatches ...
865
866                                 // Compile the loaded template
867                                 $this->compileCode($code, $template);
868
869                         } // END - foreach ($this->loadedRawData ...
870
871                         // Insert all templates
872                         $this->insertAllTemplates($templateMatches);
873
874                 } // END - if (count($this->loadedRawData) ...
875         }
876
877         /**
878          * Inserts all raw templates into their respective variables
879          *
880          * @return      void
881          */
882         private function insertRawTemplates () {
883                 // Load all templates
884                 foreach ($this->rawTemplates as $template => $content) {
885                         // Set the template as a variable with the content
886                         $this->assignVariable($template, $content);
887                 }
888         }
889
890         /**
891          * Finalizes the compilation of all template variables
892          *
893          * @return      void
894          */
895         private function finalizeVariableCompilation () {
896                 // Get the content
897                 $content = $this->getRawTemplateData();
898                 //* DEBUG: */ echo __METHOD__.': content before='.strlen($content).' ('.md5($content).')<br />\n';
899
900                 // Walk through all variables
901                 foreach ($this->varStack['general'] as $currEntry) {
902                         //* DEBUG: */ echo __METHOD__.': name='.$currEntry['name'].', value=<pre>'.htmlentities($currEntry['value']).'</pre>\n';
903                         // Replace all [$var] or {?$var?} with the content
904                         // @TODO Old behaviour, will become obsolete!
905                         $content = str_replace("\$content[".$currEntry['name'].']', $currEntry['value'], $content);
906
907                         // @TODO Yet another old way
908                         $content = str_replace('['.$currEntry['name'].']', $currEntry['value'], $content);
909
910                         // The new behaviour
911                         $content = str_replace('{?'.$currEntry['name'].'?}', $currEntry['value'], $content);
912                 } // END - for
913
914                 //* DEBUG: */ echo __METHOD__.': content after='.strlen($content).' ('.md5($content).')<br />\n';
915
916                 // Set the content back
917                 $this->setRawTemplateData($content);
918         }
919
920         /**
921          * Load a specified web template into the engine
922          *
923          * @param       $template       The web template we shall load which is located in
924          *                                              'html' by default
925          * @return      void
926          */
927         public function loadWebTemplate ($template) {
928                 // Set template type
929                 $this->setTemplateType($this->getConfigInstance()->readConfig('web_template_type'));
930
931                 // Load the special template
932                 $this->loadTemplate($template);
933         }
934
935         /**
936          * Assign a given congfiguration variable with a value
937          *
938          * @param       $var    The configuration variable we want to assign
939          * @return      void
940          */
941         public function assignConfigVariable ($var) {
942                 // Sweet and simple...
943                 //* DEBUG: */ echo __METHOD__.':var={$var}<br />\n';
944                 $this->varStack['config'][$var] = $this->getConfigInstance()->readConfig($var);
945         }
946
947         /**
948          * Load a specified email template into the engine
949          *
950          * @param       $template       The email template we shall load which is located in
951          *                                              'emails' by default
952          * @return      void
953          */
954         public function loadEmailTemplate ($template) {
955                 // Set template type
956                 $this->setTemplateType($this->getConfigInstance()->readConfig('email_template_type'));
957
958                 // Load the special template
959                 $this->loadTemplate($template);
960         }
961
962         /**
963          * Load a specified code template into the engine
964          *
965          * @param       $template       The code template we shall load which is
966          *                                              located in 'code' by default
967          * @return      void
968          */
969         public function loadCodeTemplate ($template) {
970                 // Set template type
971                 $this->setTemplateType($this->getConfigInstance()->readConfig('code_template_type'));
972
973                 // Load the special template
974                 $this->loadTemplate($template);
975         }
976
977         /**
978          * Compile all variables by inserting their respective values
979          *
980          * @return      void
981          * @todo        Make this code some nicer...
982          */
983         public final function compileVariables () {
984                 // Initialize the $content array
985                 $validVar = $this->getConfigInstance()->readConfig('tpl_valid_var');
986                 $dummy = array();
987
988                 // Iterate through all general variables
989                 foreach ($this->varStack['general'] as $currVariable) {
990                         // Transfer it's name/value combination to the $content array
991                         //* DEBUG: */ echo $currVariable['name'].'=<pre>'.htmlentities($currVariable['value']).'</pre>\n';
992                         $dummy[$currVariable['name']] = $currVariable['value'];
993                 }// END - if
994
995                 // Set the new variable (don't remove the second dollar!)
996                 $$validVar = $dummy;
997
998                 // Prepare all configuration variables
999                 $config = null;
1000                 if (isset($this->varStack['config'])) {
1001                         $config = $this->varStack['config'];
1002                 } // END - if
1003
1004                 // Remove some variables
1005                 unset($idx);
1006                 unset($currVariable);
1007
1008                 // Run the compilation three times to get content from helper classes in
1009                 $cnt = 0;
1010                 while ($cnt < 3) {
1011                         // Finalize the compilation of template variables
1012                         $this->finalizeVariableCompilation();
1013
1014                         // Prepare the eval() command for comiling the template
1015                         $eval = sprintf("\$result = \"%s\";",
1016                                 addslashes($this->getRawTemplateData())
1017                         );
1018
1019                         // This loop does remove the backslashes (\) in PHP parameters
1020                         while (strpos($eval, $this->codeBegin) !== false) {
1021                                 // Get left part before "<?"
1022                                 $evalLeft = substr($eval, 0, strpos($eval, $this->codeBegin));
1023
1024                                 // Get all from right of "<?"
1025                                 $evalRight = substr($eval, (strpos($eval, $this->codeBegin) + 5));
1026
1027                                 // Cut middle part out and remove escapes
1028                                 $evalMiddle = trim(substr($evalRight, 0, strpos($evalRight, $this->codeEnd)));
1029                                 $evalMiddle = stripslashes($evalMiddle);
1030
1031                                 // Remove the middle part from right one
1032                                 $evalRight = substr($evalRight, (strpos($evalRight, $this->codeEnd) + 2));
1033
1034                                 // And put all together
1035                                 $eval = sprintf("%s<%%php %s %%>%s", $evalLeft, $evalMiddle, $evalRight);
1036                         } // END - while
1037
1038                         // Prepare PHP code for eval() command
1039                         $eval = str_replace(
1040                                 "<%php", "\";",
1041                                 str_replace(
1042                                         "%>",
1043                                         "\n\$result .= \"",
1044                                         $eval
1045                                 )
1046                         );
1047
1048                         // Run the constructed command. This will "compile" all variables in
1049                         @eval($eval);
1050
1051                         // Goes something wrong?
1052                         if ((!isset($result)) || (empty($result))) {
1053                                 // Output eval command
1054                                 $this->debugOutput(sprintf("Failed eval() code: <pre>%s</pre>", $this->markupCode($eval, true)), true);
1055
1056                                 // Output backtrace here
1057                                 $this->debugBackTrace();
1058                         } // END - if
1059
1060                         // Set raw template data
1061                         $this->setRawTemplateData($result);
1062                         $cnt++;
1063                 } // END - while
1064
1065                 // Final variable assignment
1066                 $this->finalizeVariableCompilation();
1067
1068                 // Set the new content
1069                 $this->setCompiledData($this->getRawTemplateData());
1070         }
1071
1072         /**
1073          * Compile all required templates into the current loaded one
1074          *
1075          * @return      void
1076          * @throws      UnexpectedTemplateTypeException If the template type is
1077          *                                                                                      not "code"
1078          * @throws      InvalidArrayCountException              If an unexpected array
1079          *                                                                                      count has been found
1080          */
1081         public function compileTemplate () {
1082                 // We will only work with template type "code" from configuration
1083                 if ($this->getTemplateType() != $this->getConfigInstance()->readConfig('code_template_type')) {
1084                         // Abort here
1085                         throw new UnexpectedTemplateTypeException(array($this, $this->getTemplateType(), $this->getConfigInstance()->readConfig('code_template_type')), self::EXCEPTION_TEMPLATE_TYPE_IS_UNEXPECTED);
1086                 } // END - if
1087
1088                 // Get the raw data.
1089                 $rawData = $this->getRawTemplateData();
1090
1091                 // Remove double spaces and trim leading/trailing spaces
1092                 $rawData = trim(str_replace('  ', ' ', $rawData));
1093
1094                 // Search for raw variables
1095                 $this->extractVariablesFromRawData($rawData);
1096
1097                 // Search for code-tags which are {? ?}
1098                 preg_match_all($this->regExpCodeTags, $rawData, $templateMatches);
1099
1100                 // Analyze the matches array
1101                 if ((is_array($templateMatches)) && (count($templateMatches) == 4) && (count($templateMatches[0]) > 0)) {
1102                         // Entries are found:
1103                         //
1104                         // The main analysis
1105                         $this->analyzeTemplate($templateMatches);
1106
1107                         // Compile raw template data
1108                         $this->compileRawTemplateData($templateMatches);
1109
1110                         // Are there some raw templates left for loading?
1111                         $this->loadExtraRawTemplates();
1112
1113                         // Are some raw templates found and loaded?
1114                         if (count($this->rawTemplates) > 0) {
1115
1116                                 // Insert all raw templates
1117                                 $this->insertRawTemplates();
1118
1119                                 // Remove the raw template content as well
1120                                 $this->setRawTemplateData('');
1121
1122                         } // END - if
1123
1124                 } // END - if($templateMatches ...
1125         }
1126
1127         /**
1128          * A old deprecated method
1129          *
1130          * @return      void
1131          * @deprecated
1132          * @see         BaseTemplateEngine::transferToResponse
1133          */
1134         public function output () {
1135                 // Check which type of template we have
1136                 switch ($this->getTemplateType()) {
1137                         case 'html': // Raw HTML templates can be send to the output buffer
1138                                 // Quick-N-Dirty:
1139                                 $this->getWebOutputInstance()->output($this->getCompiledData());
1140                                 break;
1141
1142                         default: // Unknown type found
1143                                 // Construct message
1144                                 $msg = sprintf("[%s-&gt;%s] Unknown/unsupported template type <span class=\"data\">%s</span> detected.",
1145                                         $this->__toString(),
1146                                         __FUNCTION__,
1147                                         $this->getTemplateType()
1148                                 );
1149
1150                                 // Write the problem to the world...
1151                                 $this->debugOutput($msg);
1152                                 break;
1153                 } // END - switch
1154         }
1155
1156         /**
1157          * Loads a given view helper (by name)
1158          *
1159          * @param       $helperName             The helper's name
1160          * @return      void
1161          */
1162         protected function loadViewHelper ($helperName) {
1163                 // Make first character upper case, rest low
1164                 $helperName = $this->convertToClassName($helperName);
1165
1166                 // Is this view helper loaded?
1167                 if (!isset($this->helpers[$helperName])) {
1168                         // Create a class name
1169                         $className = "{$helperName}ViewHelper";
1170
1171                         // Generate new instance
1172                         $this->helpers[$helperName] = ObjectFactory::createObjectByName($className);
1173                 } // END - if
1174
1175                 // Return the requested instance
1176                 return $this->helpers[$helperName];
1177         }
1178
1179         /**
1180          * Assigns the last loaded raw template content with a given variable
1181          *
1182          * @param       $templateName   Name of the template we want to assign
1183          * @param       $variableName   Name of the variable we want to assign
1184          * @return      void
1185          */
1186         public function assignTemplateWithVariable ($templateName, $variableName) {
1187                 // Get the content from last loaded raw template
1188                 $content = $this->getRawTemplateData();
1189
1190                 // Assign the variable
1191                 $this->assignVariable($variableName, $content);
1192
1193                 // Purge raw content
1194                 $this->setRawTemplateData('');
1195         }
1196
1197         /**
1198          * Transfers the content of this template engine to a given response instance
1199          *
1200          * @param       $responseInstance       An instance of a response class
1201          * @return      void
1202          */
1203         public function transferToResponse (Responseable $responseInstance) {
1204                 // Get the content and set it in response class
1205                 $responseInstance->writeToBody($this->getCompiledData());
1206         }
1207
1208         /**
1209          * Assigns all the application data with template variables
1210          *
1211          * @param       $appInstance    A manageable application instance
1212          * @return      void
1213          */
1214         public function assignApplicationData (ManageableApplication $appInstance) {
1215                 // Get long name and assign it
1216                 $this->assignVariable('app_full_name' , $appInstance->getAppName());
1217
1218                 // Get short name and assign it
1219                 $this->assignVariable('app_short_name', $appInstance->getAppShortName());
1220
1221                 // Get version number and assign it
1222                 $this->assignVariable('app_version'   , $appInstance->getAppVersion());
1223
1224                 // Assign extra application-depending data
1225                 $appInstance->assignExtraTemplateData($this);
1226         }
1227
1228         /**
1229          * "Compiles" a variable by replacing {?var?} with it's content
1230          *
1231          * @param       $rawCode        Raw code to compile
1232          * @return      $rawCode        Compile code with inserted variable value
1233          */
1234         public function compileRawCode ($rawCode) {
1235                 // Find the variables
1236                 //* DEBUG: */ echo "rawCode=<pre>".htmlentities($rawCode)."</pre>\n";
1237                 preg_match_all($this->regExpVarValue, $rawCode, $varMatches);
1238
1239                 // Compile all variables
1240                 //* DEBUG: */ echo "<pre>".print_r($varMatches, true)."</pre>";
1241                 foreach ($varMatches[0] as $match) {
1242                         // Add variable tags around it
1243                         $varCode = '{?' . $match . '?}';
1244
1245                         // Is the variable found in code? (safes some calls)
1246                         if (strpos($rawCode, $varCode) !== false) {
1247                                 // Replace the variable with it's value, if found
1248                                 //* DEBUG: */ echo __METHOD__.": match=".$match."<br />\n";
1249                                 $rawCode = str_replace($varCode, $this->readVariable($match), $rawCode);
1250                         } // END - if
1251                 } // END - foreach
1252
1253                 // Return the compiled data
1254                 return $rawCode;
1255         }
1256
1257         /**
1258          * Getter for variable group array
1259          *
1260          * @return      $vargroups      All variable groups
1261          */
1262         public final function getVariableGroups () {
1263                 return $this->varGroups;
1264         }
1265
1266         /**
1267          * Renames a variable in code and in stack
1268          *
1269          * @param       $oldName        Old name of variable
1270          * @param       $newName        New name of variable
1271          * @return      void
1272          */
1273         public function renameVariable ($oldName, $newName) {
1274                 //* DEBUG: */ echo __METHOD__.": oldName={$oldName}, newName={$newName}<br />\n";
1275                 // Get raw template code
1276                 $rawData = $this->getRawTemplateData();
1277
1278                 // Replace it
1279                 $rawData = str_replace($oldName, $newName, $rawData);
1280
1281                 // Set the code back
1282                 $this->setRawTemplateData($rawData);
1283         }
1284
1285         /**
1286          * Renders the given XML content
1287          *
1288          * @param       $content        Valid XML content or if not set the current loaded raw content
1289          * @return      void
1290          * @throws      XmlParserException      If an XML error was found
1291          */
1292         public final function renderXmlContent ($content = null) {
1293                 // Is the content set?
1294                 if (is_null($content)) {
1295                         // Get current content
1296                         $content = $this->getRawTemplateData();
1297                 } // END - if
1298
1299                 // Convert all to UTF8
1300                 if (function_exists('recode')) {
1301                         $content = recode("html..utf8", $content);
1302                 } else {
1303                         // @TODO We need to find a fallback solution here
1304                 } // END - if
1305
1306                 // Get an XML parser
1307                 $xmlParser = xml_parser_create();
1308
1309                 // Force case-folding to on
1310                 xml_parser_set_option($xmlParser, XML_OPTION_CASE_FOLDING, true);
1311
1312                 // Set object
1313                 xml_set_object($xmlParser, $this);
1314
1315                 // Set handler call-backs
1316                 xml_set_element_handler($xmlParser, 'startElement', 'endElement');
1317                 xml_set_character_data_handler($xmlParser, 'characterHandler');
1318
1319                 // Now parse the XML tree
1320                 if (!xml_parse($xmlParser, $content)) {
1321                         // Error found in XML!
1322                         //die('<pre>'.htmlentities($content).'</pre>');
1323                         throw new XmlParserException(array($this, $xmlParser), BaseHelper::EXCEPTION_XML_PARSER_ERROR);
1324                 } // END - if
1325
1326                 // Free the parser
1327                 xml_parser_free($xmlParser);
1328         }
1329 }
1330
1331 // [EOF]
1332 ?>