012e46734ad2532a679aa58fed365fe54c13c0dc
[core.git] / inc / classes / main / template / class_BaseTemplateEngine.php
1 <?php
2 /**
3  * A generic template engine
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.shipsimu.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          * A regular expression to find template comments like <!-- Comment here //-->
111          */
112         private $regExpComments = '/<!--[\w\W]*?(\/\/){0,1}-->/';
113
114         /**
115          * Loaded helpers
116          */
117         private $helpers = array();
118
119         /**
120          * Current variable group
121          */
122         private $currGroup = 'general';
123
124         /**
125          * All template groups except "general"
126          */
127         private $variableGroups = array();
128
129         /**
130          * Code begin
131          */
132         private $codeBegin = '<?php';
133
134         /**
135          * Code end
136          */
137         private $codeEnd = '?>';
138
139         /**
140          * Language support is enabled by default
141          */
142         private $languageSupport = TRUE;
143
144         /**
145          * XML compacting is disabled by default
146          */
147         private $xmlCompacting = FALSE;
148
149         // Exception codes for the template engine
150         const EXCEPTION_TEMPLATE_TYPE_IS_UNEXPECTED   = 0x110;
151         const EXCEPTION_TEMPLATE_CONTAINS_INVALID_VAR = 0x111;
152         const EXCEPTION_INVALID_VIEW_HELPER           = 0x112;
153         const EXCEPTION_VARIABLE_IS_MISSING           = 0x113;
154
155         /**
156          * Protected constructor
157          *
158          * @param       $className      Name of the class
159          * @return      void
160          */
161         protected function __construct ($className) {
162                 // Call parent constructor
163                 parent::__construct($className);
164
165                 // Init file I/O instance
166                 $ioInstance = ObjectFactory::createObjectByConfiguredName('file_io_class');
167
168                 // Set it
169                 $this->setFileIoInstance($ioInstance);
170         }
171
172         /**
173          * Search for a variable in the stack
174          *
175          * @param       $variableName   The variable we are looking for
176          * @param       $variableGroup  Optional variable group to look in
177          * @return      $index                  FALSE means not found, >=0 means found on a specific index
178          */
179         private function getVariableIndex ($variableName, $variableGroup = NULL) {
180                 // Replace all dashes to underscores to match variables with configuration entries
181                 $variableName = trim(self::convertDashesToUnderscores($variableName));
182
183                 // First everything is not found
184                 $found = FALSE;
185
186                 // If the stack is NULL, use the current group
187                 if (is_null($variableGroup)) {
188                         // Use current group
189                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.' currGroup=' . $this->currGroup . ' set as stack!');
190                         $variableGroup = $this->currGroup;
191                 } // END - if
192
193                 // Is the group there?
194                 if ($this->isVarStackSet($variableGroup)) {
195                         // Now search for it
196                         foreach ($this->getVarStack($variableGroup) as $index => $currEntry) {
197                                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.':currGroup=' . $variableGroup . ',idx=' . $index . ',currEntry=' . $currEntry['name'] . ',variableName=' . $variableName);
198                                 // Is the entry found?
199                                 if ($currEntry['name'] == $variableName) {
200                                         // Found!
201                                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.':FOUND!');
202                                         $found = $index;
203                                         break;
204                                 } // END - if
205                         } // END - foreach
206                 } // END - if
207
208                 // Return the current position
209                 return $found;
210         }
211
212         /**
213          * Checks whether the given variable group is set
214          *
215          * @param       $variableGroup  Variable group to check
216          * @return      $isSet                  Whether the given variable group is set
217          */
218         protected final function isVarStackSet ($variableGroup) {
219                 // Check it
220                 $isSet = isset($this->varStack[$variableGroup]);
221
222                 // Return result
223                 return $isSet;
224         }
225
226         /**
227          * Getter for given variable group
228          *
229          * @param       $variableGroup  Variable group to check
230          * @return      $varStack               Found variable group
231          */
232         public final function getVarStack ($variableGroup) {
233                 return $this->varStack[$variableGroup];
234         }
235
236         /**
237          * Setter for given variable group
238          *
239          * @param       $variableGroup  Variable group to check
240          * @param       $varStack               Variable stack to check
241          * @return      void
242          */
243         protected final function setVarStack ($variableGroup, array $varStack) {
244                 $this->varStack[$variableGroup]  = $varStack;
245         }
246
247         /**
248          * Return a content of a variable or null if not found
249          *
250          * @param       $variableName   The variable we are looking for
251          * @param       $variableGroup  Optional variable group to look in
252          * @return      $content                Content of the variable or null if not found
253          */
254         protected function readVariable ($variableName, $variableGroup = NULL) {
255                 // Replace all dashes to underscores to match variables with configuration entries
256                 $variableName = trim(self::convertDashesToUnderscores($variableName));
257
258                 // First everything is not found
259                 $content = NULL;
260
261                 // If the stack is NULL, use the current group
262                 if (is_null($variableGroup)) {
263                         // Use current group
264                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.' currGroup=' . $this->currGroup . ' set as stack!');
265                         $variableGroup = $this->currGroup;
266                 } // END - if
267
268                 // Get variable index
269                 $found = $this->getVariableIndex($variableName, $variableGroup);
270
271                 // Is the variable found?
272                 if ($found !== FALSE) {
273                         // Read it
274                         $content = $this->getVariableValue($variableGroup, $found);
275                 } // END - if
276
277                 // Return the current position
278                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.': variableGroup=' . $variableGroup . ',variableName=' . $variableName . ', content[' . gettype($content) . ']=' . $content);
279                 return $content;
280         }
281
282         /**
283          * Add a variable to the stack
284          *
285          * @param       $variableName   Name of variable to add
286          * @param       $value                  Value we want to store in the variable
287          * @return      void
288          */
289         private function addVariable ($variableName, $value) {
290                 // Set general variable group
291                 $this->setVariableGroup('general');
292
293                 // Add it to the stack
294                 $this->addGroupVariable($variableName, $value);
295         }
296
297         /**
298          * Returns all variables of current group or empty array
299          *
300          * @return      $result         Whether array of found variables or empty array
301          */
302         private function readCurrentGroup () {
303                 // Default is not found
304                 $result = array();
305
306                 // Is the group there?
307                 if ($this->isVarStackSet($this->currGroup)) {
308                         // Then use it
309                         $result = $this->getVarStack($this->currGroup);
310                 } // END - if
311
312                 // Return result
313                 return $result;
314         }
315
316         /**
317          * Settter for variable group
318          *
319          * @param       $groupName      Name of variable group
320          * @param       $add            Whether add this group
321          * @return      void
322          */
323         public function setVariableGroup ($groupName, $add = TRUE) {
324                 // Set group name
325                 //* DEBIG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.': currGroup=' . $groupName);
326                 $this->currGroup = $groupName;
327
328                 // Skip group 'general'
329                 if (($groupName != 'general') && ($add === TRUE)) {
330                         $this->variableGroups[$groupName] = 'OK';
331                 } // END - if
332         }
333
334
335         /**
336          * Adds a variable to current group
337          *
338          * @param       $variableName   Variable to set
339          * @param       $value                  Value to store in variable
340          * @return      void
341          */
342         public function addGroupVariable ($variableName, $value) {
343                 // Replace all dashes to underscores to match variables with configuration entries
344                 $variableName = trim(self::convertDashesToUnderscores($variableName));
345
346                 // Debug message
347                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.': group=' . $this->currGroup . ', variableName=' . $variableName . ', value=' . $value);
348
349                 // Get current variables in group
350                 $currVars = $this->readCurrentGroup();
351
352                 // Append our variable
353                 array_push($currVars, $this->generateVariableArray($variableName, $value));
354
355                 // Add it to the stack
356                 $this->setVarStack($this->currGroup, $currVars);
357         }
358
359         /**
360          * Getter for variable value, throws a NoVariableException if the variable is not found
361          *
362          * @param       $variableGroup  Variable group to use
363          * @param       $index          Index in variable array
364          * @return      $value          Value to set
365          */
366         private function getVariableValue ($variableGroup, $index) {
367                 // Return it
368                 return $this->varStack[$variableGroup][$index]['value'];
369         }
370
371         /**
372          * Modify an entry on the stack
373          *
374          * @param       $variableName   The variable we are looking for
375          * @param       $value                  The value we want to store in the variable
376          * @return      void
377          * @throws      NoVariableException     If the given variable is not found
378          */
379         private function modifyVariable ($variableName, $value) {
380                 // Replace all dashes to underscores to match variables with configuration entries
381                 $variableName = trim(self::convertDashesToUnderscores($variableName));
382
383                 // Get index for variable
384                 $index = $this->getVariableIndex($variableName);
385
386                 // Is the variable set?
387                 if ($index === FALSE) {
388                         // Unset variables cannot be modified
389                         throw new NoVariableException(array($this, $variableName, $value), self::EXCEPTION_VARIABLE_IS_MISSING);
390                 } // END - if
391
392                 // Then modify it
393                 $this->setVariableValue($this->currGroup, $index, $value);
394         }
395
396         /**
397          * Sets a variable value for given variable group and index
398          *
399          * @param       $variableGroup  Variable group to use
400          * @param       $index          Index in variable array
401          * @param       $value          Value to set
402          * @return      void
403          */
404         private function setVariableValue ($variableGroup, $index, $value) {
405                 $this->varStack[$variableGroup][$index]['value'] = $value;
406         }
407
408         /**
409          * Sets a variable within given group. This method does detect if the
410          * variable is already set. If so, the variable got modified, otherwise
411          * added.
412          *
413          * @param       $variableGroup          Variable group to use
414          * @param       $variableName   Variable to set
415          * @param       $value                  Value to set
416          * @return      void
417          */
418         protected function setVariable ($variableGroup, $variableName, $value) {
419                 // Replace all dashes to underscores to match variables with configuration entries
420                 $variableName = trim(self::convertDashesToUnderscores($variableName));
421
422                 // Get index for variable
423                 $index = $this->getVariableIndex($variableName);
424
425                 // Is the variable set?
426                 if ($index === FALSE) {
427                         // Is the stack there?
428                         if (!isset($this->varStack[$variableGroup])) {
429                                 // Then initialize it here
430                                 $this->varStack[$variableGroup] = array();
431                         } // END - if
432
433                         // Not found, add it
434                         array_push($this->varStack[$variableGroup], $this->generateVariableArray($variableName, $value));
435                 } else {
436                         // Then modify it
437                         $this->setVariableValue($this->currGroup, $index, $value);
438                 }
439         }
440
441         /**
442          * "Generates" (better returns) an array for all variables for given
443          * variable/value pay.
444          *
445          * @param       $variableName   Variable to set
446          * @param       $value                  Value to set
447          * @return      $varData                Variable data array
448          */
449         private function generateVariableArray ($variableName, $value) {
450                 // Replace all dashes to underscores to match variables with configuration entries
451                 $variableName = trim(self::convertDashesToUnderscores($variableName));
452
453                 // Generate the temporary array
454                 $varData = array(
455                         'name'  => $variableName,
456                         'value' => $value
457                 );
458
459                 // And return it
460                 return $varData;
461         }
462
463         /**
464          * Setter for template type. Only 'html', 'emails' and 'compiled' should
465          * be sent here
466          *
467          * @param       $templateType   The current template's type
468          * @return      void
469          */
470         protected final function setTemplateType ($templateType) {
471                 $this->templateType = (string) $templateType;
472         }
473
474         /**
475          * Getter for template type
476          *
477          * @return      $templateType   The current template's type
478          */
479         public final function getTemplateType () {
480                 return $this->templateType;
481         }
482
483         /**
484          * Setter for the last loaded template's FQFN
485          *
486          * @param       $template       The last loaded template
487          * @return      void
488          */
489         private final function setLastTemplate ($template) {
490                 $this->lastTemplate = (string) $template;
491         }
492
493         /**
494          * Getter for the last loaded template's FQFN
495          *
496          * @return      $template       The last loaded template
497          */
498         private final function getLastTemplate () {
499                 return $this->lastTemplate;
500         }
501
502         /**
503          * Setter for base path
504          *
505          * @param               $templateBasePath               The relative base path for all templates
506          * @return      void
507          */
508         protected final function setTemplateBasePath ($templateBasePath) {
509                 // And set it
510                 $this->templateBasePath = (string) $templateBasePath;
511         }
512
513         /**
514          * Getter for base path
515          *
516          * @return      $templateBasePath               The relative base path for all templates
517          */
518         public final function getTemplateBasePath () {
519                 // And set it
520                 return $this->templateBasePath;
521         }
522
523         /**
524          * Getter for generic base path
525          *
526          * @return      $templateBasePath               The relative base path for all templates
527          */
528         public final function getGenericBasePath () {
529                 // And set it
530                 return $this->genericBasePath;
531         }
532
533         /**
534          * Setter for template extension
535          *
536          * @param               $templateExtension      The file extension for all uncompiled
537          *                                                      templates
538          * @return      void
539          */
540         protected final function setRawTemplateExtension ($templateExtension) {
541                 // And set it
542                 $this->templateExtension = (string) $templateExtension;
543         }
544
545         /**
546          * Setter for code template extension
547          *
548          * @param               $codeExtension          The file extension for all uncompiled
549          *                                                      templates
550          * @return      void
551          */
552         protected final function setCodeTemplateExtension ($codeExtension) {
553                 // And set it
554                 $this->codeExtension = (string) $codeExtension;
555         }
556
557         /**
558          * Getter for template extension
559          *
560          * @return      $templateExtension      The file extension for all uncompiled
561          *                                                      templates
562          */
563         public final function getRawTemplateExtension () {
564                 // And set it
565                 return $this->templateExtension;
566         }
567
568         /**
569          * Getter for code-template extension
570          *
571          * @return      $codeExtension          The file extension for all code-
572          *                                                      templates
573          */
574         public final function getCodeTemplateExtension () {
575                 // And set it
576                 return $this->codeExtension;
577         }
578
579         /**
580          * Setter for path of compiled templates
581          *
582          * @param       $compileOutputPath      The local base path for all compiled
583          *                                                              templates
584          * @return      void
585          */
586         protected final function setCompileOutputPath ($compileOutputPath) {
587                 // And set it
588                 $this->compileOutputPath = (string) $compileOutputPath;
589         }
590
591         /**
592          * Unsets the given offset in the variable group
593          *
594          * @param       $index                  Index to unset
595          * @param       $variableGroup  Variable group (default: currGroup)
596          * @return      void
597          */
598         protected final function unsetVariableStackOffset ($index, $variableGroup = NULL) {
599                 // Is the variable group not set?
600                 if (is_null($variableGroup)) {
601                         // Then set it to current
602                         $variableGroup = $this->currGroup;
603                 } // END - if
604
605                 // Is the entry there?
606                 if (!isset($this->varStack[$variableGroup][$index])) {
607                         // Abort here, we need fixing!
608                         $this->debugInstance();
609                 } // END - if
610
611                 // Remove it
612                 unset($this->varStack[$variableGroup][$index]);
613         }
614
615         /**
616          * Private setter for raw template data
617          *
618          * @param       $rawTemplateData        The raw data from the template
619          * @return      void
620          */
621         protected final function setRawTemplateData ($rawTemplateData) {
622                 // And store it in this class
623                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.': ' . strlen($rawTemplateData) . ' Bytes set.');
624                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(__METHOD__.': ' . $this->currGroup . ' variables: ' . count($this->getVarStack($this->currGroup)) . ', groups=' . count($this->varStack));
625                 $this->rawTemplateData = (string) $rawTemplateData;
626         }
627
628         /**
629          * Getter for raw template data
630          *
631          * @return      $rawTemplateData        The raw data from the template
632          */
633         public final function getRawTemplateData () {
634                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: ' . strlen($this->rawTemplateData) . ' Bytes read.');
635                 return $this->rawTemplateData;
636         }
637
638         /**
639          * Private setter for compiled templates
640          *
641          * @return      void
642          */
643         private final function setCompiledData ($compiledData) {
644                 // And store it in this class
645                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: ' . strlen($compiledData) . ' Bytes set.');
646                 $this->compiledData = (string) $compiledData;
647         }
648
649         /**
650          * Getter for compiled templates, must be public for e.g. Mailer classes.
651          *
652          * @return      $compiledData   Compiled template data
653          */
654         public final function getCompiledData () {
655                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: ' . strlen($this->compiledData) . ' Bytes read.');
656                 return $this->compiledData;
657         }
658
659         /**
660          * Private loader for all template types
661          *
662          * @param       $template       The template we shall load
663          * @param       $extOther       An other extension to use
664          * @return      void
665          * @throws      FileNotFoundException   If the template was not found
666          */
667         protected function loadTemplate ($template, $extOther = '') {
668                 // Get extension for the template if empty
669                 if (empty($extOther)) {
670                         // None provided, so get the raw one
671                         $ext = $this->getRawTemplateExtension();
672                 } else {
673                         // Then use it!
674                         $ext = (string) $extOther;
675                 }
676
677                 // Is language support enabled?
678                 if ($this->isLanguageSupportEnabled()) {
679                         // Construct the FQFN for the template by honoring the current language
680                         $fqfn = sprintf('%s%s%s%s/%s/%s%s',
681                                 $this->getConfigInstance()->getConfigEntry('base_path'),
682                                 $this->getTemplateBasePath(),
683                                 $this->getGenericBasePath(),
684                                 $this->getLanguageInstance()->getLanguageCode(),
685                                 $this->getTemplateType(),
686                                 (string) $template,
687                                 $ext
688                         );
689                 } else {
690                         // Construct the FQFN for the template without language
691                         $fqfn = sprintf('%s%s%s%s/%s%s',
692                                 $this->getConfigInstance()->getConfigEntry('base_path'),
693                                 $this->getTemplateBasePath(),
694                                 $this->getGenericBasePath(),
695                                 $this->getTemplateType(),
696                                 (string) $template,
697                                 $ext
698                         );
699                 }
700
701                 // First try this
702                 try {
703                         // Load the raw template data
704                         $this->loadRawTemplateData($fqfn);
705                 } catch (FileNotFoundException $e) {
706                         // If we shall load a code-template we need to switch the file extension
707                         if (($this->getTemplateType() != $this->getConfigInstance()->getConfigEntry('html_template_type')) && (empty($extOther))) {
708                                 // Switch over to the code-template extension and try it again
709                                 $ext = $this->getCodeTemplateExtension();
710
711                                 // Try it again...
712                                 $this->loadTemplate($template, $ext);
713                         } else {
714                                 // Throw it again
715                                 throw new FileNotFoundException($fqfn, self::EXCEPTION_FILE_NOT_FOUND);
716                         }
717                 }
718
719         }
720
721         /**
722          * A private loader for raw template names
723          *
724          * @param       $fqfn   The full-qualified file name for a template
725          * @return      void
726          */
727         private function loadRawTemplateData ($fqfn) {
728                 // Some debug code to look on the file which is being loaded
729                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: FQFN=' . $fqfn);
730
731                 // Load the raw template
732                 $rawTemplateData = $this->getFileIoInstance()->loadFileContents($fqfn);
733
734                 // Store the template's contents into this class
735                 $this->setRawTemplateData($rawTemplateData);
736
737                 // Remember the template's FQFN
738                 $this->setLastTemplate($fqfn);
739         }
740
741         /**
742          * Try to assign an extracted template variable as a "content" or 'config'
743          * variable.
744          *
745          * @param       $variableName           The variable's name (shall be content or config)
746          *                                                      by default
747          * @param       $variableName   The variable we want to assign
748          * @return      void
749          */
750         private function assignTemplateVariable ($variableName, $var) {
751                 // Replace all dashes to underscores to match variables with configuration entries
752                 $variableName = trim(self::convertDashesToUnderscores($variableName));
753
754                 // Debug message
755                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: variableName=' . $variableName . ',variableName=' . $variableName);
756
757                 // Is it not a config variable?
758                 if ($variableName != 'config') {
759                         // Regular template variables
760                         $this->assignVariable($variableName, '');
761                 } else {
762                         // Configuration variables
763                         $this->assignConfigVariable($var);
764                 }
765         }
766
767         /**
768          * Extract variables from a given raw data stream
769          *
770          * @param       $rawData        The raw template data we shall analyze
771          * @return      void
772          */
773         private function extractVariablesFromRawData ($rawData) {
774                 // Cast to string
775                 $rawData = (string) $rawData;
776
777                 // Search for variables
778                 preg_match_all('/\$(\w+)(\[(\w+)\])?/', $rawData, $variableMatches);
779
780                 // Debug message
781                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:rawData(' . strlen($rawData) . ')=' . $rawData . ',variableMatches=' . print_r($variableMatches, TRUE));
782
783                 // Did we find some variables?
784                 if ((is_array($variableMatches)) && (count($variableMatches) == 4) && (count($variableMatches[0]) > 0)) {
785                         // Initialize all missing variables
786                         foreach ($variableMatches[3] as $key => $var) {
787                                 // Variable name
788                                 $variableName = $variableMatches[1][$key];
789
790                                 // Workarround: Do not assign empty variables
791                                 if (!empty($var)) {
792                                         // Try to assign it, empty strings are being ignored
793                                         $this->assignTemplateVariable($variableName, $var);
794                                 } // END - if
795                         } // END - foreach
796                 } // END - if
797         }
798
799         /**
800          * Main analysis of the loaded template
801          *
802          * @param       $templateMatches        Found template place-holders, see below
803          * @return      void
804          *
805          *---------------------------------
806          * Structure of $templateMatches:
807          *---------------------------------
808          * [0] => Array - An array with all full matches
809          * [1] => Array - An array with left part (before the ':') of a match
810          * [2] => Array - An array with right part of a match including ':'
811          * [3] => Array - An array with right part of a match excluding ':'
812          */
813         private function analyzeTemplate (array $templateMatches) {
814                 // Backup raw template data
815                 $backup = $this->getRawTemplateData();
816
817                 // Initialize some arrays
818                 if (is_null($this->loadedRawData)) {
819                         // Initialize both
820                         $this->loadedRawData = array();
821                         $this->rawTemplates = array();
822                 } // END - if
823
824                 // Load all requested templates
825                 foreach ($templateMatches[1] as $template) {
826                         // Load and compile only templates which we have not yet loaded
827                         // RECURSIVE PROTECTION! BE CAREFUL HERE!
828                         if ((!isset($this->loadedRawData[$template])) && (!in_array($template, $this->loadedTemplates))) {
829                                 // Debug message
830                                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:template=' . $template);
831
832                                 // Template not found, but maybe variable assigned?
833                                 if ($this->getVariableIndex($template) !== FALSE) {
834                                         // Use that content here
835                                         $this->loadedRawData[$template] = $this->readVariable($template);
836
837                                         // Recursive protection:
838                                         array_push($this->loadedTemplates, $template);
839                                 } else {
840                                         // Then try to search for code-templates
841                                         try {
842                                                 // Load the code template and remember it's contents
843                                                 $this->loadCodeTemplate($template);
844                                                 $this->loadedRawData[$template] = $this->getRawTemplateData();
845
846                                                 // Remember this template for recursion detection
847                                                 // RECURSIVE PROTECTION!
848                                                 array_push($this->loadedTemplates, $template);
849                                         } catch (FileNotFoundException $e) {
850                                                 // Even this is not done... :/
851                                                 array_push($this->rawTemplates, $template);
852                                         }
853                                 }
854                         } // END - if
855                 } // END - foreach
856
857                 // Restore the raw template data
858                 $this->setRawTemplateData($backup);
859         }
860
861         /**
862          * Compile a given raw template code and remember it for later usage
863          *
864          * @param       $code           The raw template code
865          * @param       $template       The template's name
866          * @return      void
867          */
868         private function compileCode ($code, $template) {
869                 // Is this template already compiled?
870                 if (in_array($template, $this->compiledTemplates)) {
871                         // Abort here...
872                         return;
873                 } // END - if
874
875                 // Remember this template being compiled
876                 array_push($this->compiledTemplates, $template);
877
878                 // Compile the loaded code in five steps:
879                 //
880                 // 1. Backup current template data
881                 $backup = $this->getRawTemplateData();
882
883                 // 2. Set the current template's raw data as the new content
884                 $this->setRawTemplateData($code);
885
886                 // 3. Compile the template data
887                 $this->compileTemplate();
888
889                 // 4. Remember it's contents
890                 $this->loadedRawData[$template] = $this->getRawTemplateData();
891
892                 // 5. Restore the previous raw content from backup variable
893                 $this->setRawTemplateData($backup);
894         }
895
896         /**
897          * Insert all given and loaded templates by running through all loaded
898          * codes and searching for their place-holder in the main template
899          *
900          * @param       $templateMatches        See method analyzeTemplate()
901          * @return      void
902          */
903         private function insertAllTemplates (array $templateMatches) {
904                 // Run through all loaded codes
905                 foreach ($this->loadedRawData as $template => $code) {
906
907                         // Search for the template
908                         $foundIndex = array_search($template, $templateMatches[1]);
909
910                         // Lookup the matching template replacement
911                         if (($foundIndex !== FALSE) && (isset($templateMatches[0][$foundIndex]))) {
912
913                                 // Get the current raw template
914                                 $rawData = $this->getRawTemplateData();
915
916                                 // Replace the space holder with the template code
917                                 $rawData = str_replace($templateMatches[0][$foundIndex], $code, $rawData);
918
919                                 // Set the new raw data
920                                 $this->setRawTemplateData($rawData);
921                         } // END - if
922                 } // END - foreach
923         }
924
925         /**
926          * Load all extra raw templates
927          *
928          * @return      void
929          */
930         private function loadExtraRawTemplates () {
931                 // Are there some raw templates we need to load?
932                 if (count($this->rawTemplates) > 0) {
933                         // Try to load all raw templates
934                         foreach ($this->rawTemplates as $key => $template) {
935                                 try {
936                                         // Load the template
937                                         $this->loadHtmlTemplate($template);
938
939                                         // Remember it's contents
940                                         $this->rawTemplates[$template] = $this->getRawTemplateData();
941
942                                         // Remove it from the loader list
943                                         unset($this->rawTemplates[$key]);
944
945                                         // Remember this template for recursion detection
946                                         // RECURSIVE PROTECTION!
947                                         array_push($this->loadedTemplates, $template);
948                                 } catch (FileNotFoundException $e) {
949                                         // This template was never found. We silently ignore it
950                                         unset($this->rawTemplates[$key]);
951                                 }
952                         } // END - foreach
953                 } // END - if
954         }
955
956         /**
957          * Assign all found template variables
958          *
959          * @param       $varMatches             An array full of variable/value pairs.
960          * @return      void
961          * @todo        Unfinished work or don't die here.
962          */
963         private function assignAllVariables (array $varMatches) {
964                 // Debug message
965                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:varMatches()=' . count($varMatches));
966
967                 // Search for all variables
968                 foreach ($varMatches[1] as $key => $var) {
969                         // Replace all dashes to underscores to match variables with configuration entries
970                         $var = trim(self::convertDashesToUnderscores($var));
971
972                         // Debug message
973                         self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:key=' . $key . ',var=' . $var);
974
975                         // Detect leading equals
976                         if (substr($varMatches[2][$key], 0, 1) == '=') {
977                                 // Remove and cast it
978                                 $varMatches[2][$key] = (string) substr($varMatches[2][$key], 1);
979                         } // END - if
980
981                         // Do we have some quotes left and right side? Then it is free text
982                         if ((substr($varMatches[2][$key], 0, 1) == '"') && (substr($varMatches[2][$key], -1, 1) == '"')) {
983                                 // Free string detected! Which we can assign directly
984                                 $this->assignVariable($var, $varMatches[3][$key]);
985                         } elseif (!empty($varMatches[2][$key])) {
986                                 // @TODO Non-string found so we need some deeper analysis...
987                                 ApplicationEntryPoint::app_exit('Deeper analysis not yet implemented!');
988                         }
989                 } // END - foreach
990         }
991
992         /**
993          * Compiles all loaded raw templates
994          *
995          * @param       $templateMatches        See method analyzeTemplate() for details
996          * @return      void
997          */
998         private function compileRawTemplateData (array $templateMatches) {
999                 // Debug message
1000                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:loadedRawData()= ' .count($this->loadedRawData));
1001
1002                 // Are some code-templates found which we need to compile?
1003                 if (count($this->loadedRawData) > 0) {
1004                         // Then compile all!
1005                         foreach ($this->loadedRawData as $template => $code) {
1006                                 // Debug message
1007                                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:template=' . $template . ',code(' . strlen($code) . ')=' . $code);
1008
1009                                 // Is this template already compiled?
1010                                 if (in_array($template, $this->compiledTemplates)) {
1011                                         // Then skip it
1012                                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: Template ' . $template . ' already compiled. SKIPPED!');
1013                                         continue;
1014                                 } // END - if
1015
1016                                 // Search for the template
1017                                 $foundIndex = array_search($template, $templateMatches[1]);
1018
1019                                 // Lookup the matching variable data
1020                                 if (($foundIndex !== FALSE) && (isset($templateMatches[3][$foundIndex]))) {
1021                                         // Split it up with another reg. exp. into variable=value pairs
1022                                         preg_match_all($this->regExpVarValue, $templateMatches[3][$foundIndex], $varMatches);
1023                                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:varMatches=' . print_r($varMatches, TRUE));
1024
1025                                         // Assign all variables
1026                                         $this->assignAllVariables($varMatches);
1027                                 } // END - if (isset($templateMatches ...
1028
1029                                 // Compile the loaded template
1030                                 $this->compileCode($code, $template);
1031                         } // END - foreach ($this->loadedRawData ...
1032
1033                         // Insert all templates
1034                         $this->insertAllTemplates($templateMatches);
1035                 } // END - if (count($this->loadedRawData) ...
1036         }
1037
1038         /**
1039          * Inserts all raw templates into their respective variables
1040          *
1041          * @return      void
1042          */
1043         private function insertRawTemplates () {
1044                 // Load all templates
1045                 foreach ($this->rawTemplates as $template => $content) {
1046                         // Set the template as a variable with the content
1047                         $this->assignVariable($template, $content);
1048                 }
1049         }
1050
1051         /**
1052          * Finalizes the compilation of all template variables
1053          *
1054          * @return      void
1055          */
1056         private function finalizeVariableCompilation () {
1057                 // Get the content
1058                 $content = $this->getRawTemplateData();
1059                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: content before=' . strlen($content) . ' (' . md5($content) . ')');
1060
1061                 // Do we have the stack?
1062                 if (!$this->isVarStackSet('general')) {
1063                         // Abort here silently
1064                         // @TODO This silent abort should be logged, maybe.
1065                         return;
1066                 } // END - if
1067
1068                 // Walk through all variables
1069                 foreach ($this->getVarStack('general') as $currEntry) {
1070                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: name=' . $currEntry['name'] . ', value=<pre>' . htmlentities($currEntry['value']) . '</pre>');
1071                         // Replace all [$var] or {?$var?} with the content
1072                         // @TODO Old behaviour, will become obsolete!
1073                         $content = str_replace('$content[' . $currEntry['name'] . ']', $currEntry['value'], $content);
1074
1075                         // @TODO Yet another old way
1076                         $content = str_replace('[' . $currEntry['name'] . ']', $currEntry['value'], $content);
1077
1078                         // The new behaviour
1079                         $content = str_replace('{?' . $currEntry['name'] . '?}', $currEntry['value'], $content);
1080                 } // END - for
1081
1082                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: content after=' . strlen($content) . ' (' . md5($content) . ')');
1083
1084                 // Set the content back
1085                 $this->setRawTemplateData($content);
1086         }
1087
1088         /**
1089          * Load a specified HTML template into the engine
1090          *
1091          * @param       $template       The web template we shall load which is located in
1092          *                                              'html' by default
1093          * @return      void
1094          */
1095         public function loadHtmlTemplate ($template) {
1096                 // Set template type
1097                 $this->setTemplateType($this->getConfigInstance()->getConfigEntry('html_template_type'));
1098
1099                 // Load the special template
1100                 $this->loadTemplate($template);
1101         }
1102
1103         /**
1104          * Assign (add) a given variable with a value
1105          *
1106          * @param       $variableName   The variable we are looking for
1107          * @param       $value                  The value we want to store in the variable
1108          * @return      void
1109          * @throws      EmptyVariableException  If the variable name is left empty
1110          */
1111         public final function assignVariable ($variableName, $value) {
1112                 // Replace all dashes to underscores to match variables with configuration entries
1113                 $variableName = trim(self::convertDashesToUnderscores($variableName));
1114
1115                 // Empty variable found?
1116                 if (empty($variableName)) {
1117                         // Throw an exception
1118                         throw new EmptyVariableException(array($this, 'variableName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
1119                 } // END - if
1120
1121                 // First search for the variable if it was already added
1122                 $index = $this->getVariableIndex($variableName);
1123
1124                 // Was it found?
1125                 if ($index === FALSE) {
1126                         // Add it to the stack
1127                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:ADD: ' . $variableName . '[' . gettype($value) . ']=' . $value);
1128                         $this->addVariable($variableName, $value);
1129                 } elseif (!empty($value)) {
1130                         // Modify the stack entry
1131                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:MOD: ' . $variableName . '[' . gettype($value) . ']=' . $value);
1132                         $this->modifyVariable($variableName, $value);
1133                 }
1134         }
1135
1136         /**
1137          * Removes a given variable
1138          *
1139          * @param       $variableName   The variable we are looking for
1140          * @param       $variableGroup  Name of variable group (default: 'general')
1141          * @return      void
1142          */
1143         public final function removeVariable ($variableName, $variableGroup = 'general') {
1144                 // First search for the variable if it was already added
1145                 $index = $this->getVariableIndex($variableName, $variableGroup);
1146
1147                 // Was it found?
1148                 if ($index !== FALSE) {
1149                         // Remove this variable
1150                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:UNSET: variableGroup=' . $variableGroup . ',variableName=' . $variableName . ',index=' . $index);
1151                         $this->unsetVariableStackOffset($index, $variableGroup);
1152                 } // END - if
1153         }
1154
1155         /**
1156          * Assigns the last loaded raw template content with a given variable
1157          *
1158          * @param       $templateName   Name of the template we want to assign
1159          * @param       $variableName   Name of the variable we want to assign
1160          * @return      void
1161          */
1162         public function assignTemplateWithVariable ($templateName, $variableName) {
1163                 // Get the content from last loaded raw template
1164                 $content = $this->getRawTemplateData();
1165
1166                 // Assign the variable
1167                 $this->assignVariable($variableName, $content);
1168
1169                 // Purge raw content
1170                 $this->setRawTemplateData('');
1171         }
1172
1173         /**
1174          * Assign a given congfiguration variable with a value
1175          *
1176          * @param       $variableName   The configuration variable we want to assign
1177          * @return      void
1178          */
1179         public function assignConfigVariable ($variableName) {
1180                 // Replace all dashes to underscores to match variables with configuration entries
1181                 $variableName = trim(self::convertDashesToUnderscores($variableName));
1182
1183                 // Sweet and simple...
1184                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: variableName=' . $variableName . ',getConfigEntry()=' . $this->getConfigInstance()->getConfigEntry($variableName));
1185                 $this->assignVariable($variableName, $this->getConfigInstance()->getConfigEntry($variableName));
1186         }
1187
1188         /**
1189          * Assigns a lot variables into the stack of currently loaded template.
1190          * This method should only be used in very rare circumstances, e.g. when
1191          * you have to copy a whole set of variables into the template engine.
1192          * Before you use this method, please make sure you have considered all
1193          * other possiblities.
1194          *
1195          * @param       $variables      An array with variables to be assigned
1196          * @return      void
1197          */
1198         public function assignMultipleVariables (array $variables) {
1199                 // "Inject" all
1200                 foreach ($variables as $name => $value) {
1201                         // Set variable with name for 'config' group
1202                         $this->assignVariable($name, $value);
1203                 } // END - foreach
1204         }
1205
1206         /**
1207          * Assigns all the application data with template variables
1208          *
1209          * @param       $applicationInstance    A manageable application instance
1210          * @return      void
1211          */
1212         public function assignApplicationData (ManageableApplication $applicationInstance) {
1213                 // Get long name and assign it
1214                 $this->assignVariable('app_full_name' , $applicationInstance->getAppName());
1215
1216                 // Get short name and assign it
1217                 $this->assignVariable('app_short_name', $applicationInstance->getAppShortName());
1218
1219                 // Get version number and assign it
1220                 $this->assignVariable('app_version'   , $applicationInstance->getAppVersion());
1221
1222                 // Assign extra application-depending data
1223                 $applicationInstance->assignExtraTemplateData($this);
1224         }
1225
1226         /**
1227          * Load a specified code template into the engine
1228          *
1229          * @param       $template       The code template we shall load which is
1230          *                                              located in 'code' by default
1231          * @return      void
1232          */
1233         public function loadCodeTemplate ($template) {
1234                 // Set template type
1235                 $this->setTemplateType($this->getConfigInstance()->getConfigEntry('code_template_type'));
1236
1237                 // Load the special template
1238                 $this->loadTemplate($template);
1239         }
1240
1241         /**
1242          * Load a specified email template into the engine
1243          *
1244          * @param       $template       The email template we shall load which is
1245          *                                              located in 'emails' by default
1246          * @return      void
1247          */
1248         public function loadEmailTemplate ($template) {
1249                 // Set template type
1250                 $this->setTemplateType($this->getConfigInstance()->getConfigEntry('email_template_type'));
1251
1252                 // Load the special template
1253                 $this->loadTemplate($template);
1254         }
1255
1256         /**
1257          * Compiles configuration place-holders in all variables. This 'walks'
1258          * through the variable group 'general'. It interprets all values from that
1259          * variables as configuration entries after compiling them.
1260          *
1261          * @return      void
1262          */
1263         public final function compileConfigInVariables () {
1264                 // Do we have the stack?
1265                 if (!$this->isVarStackSet('general')) {
1266                         // Abort here silently
1267                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: Aborted, variable stack general not found!');
1268                         return;
1269                 } // END - if
1270
1271                 // Iterate through all general variables
1272                 foreach ($this->getVarStack('general') as $index => $currVariable) {
1273                         // Compile the value
1274                         $value = $this->compileRawCode($this->readVariable($currVariable['name']), TRUE);
1275
1276                         // Debug message
1277                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: name=' . $currVariable['name'] . ',value=' . $value);
1278
1279                         // Remove it from stack
1280                         $this->removeVariable($currVariable['name'], 'general');
1281                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: value='. $value . ',name=' . $currVariable['name'] . ',index=' . $index);
1282
1283                         // Is it a configuration key?
1284                         if ($this->getConfigInstance()->isConfigurationEntrySet($value)) {
1285                                 // The value itself is a configuration entry
1286                                 $this->assignConfigVariable($value);
1287                         } else {
1288                                 // Re-assign the value directly
1289                                 $this->assignVariable($currVariable['name'], $value);
1290                         }
1291                 } // END - foreach
1292         }
1293
1294         /**
1295          * Compile all variables by inserting their respective values
1296          *
1297          * @return      void
1298          * @todo        Make this code some nicer...
1299          */
1300         public final function compileVariables () {
1301                 // Initialize the $content array
1302                 $validVar = $this->getConfigInstance()->getConfigEntry('tpl_valid_var');
1303                 $dummy = array();
1304
1305                 // Iterate through all general variables
1306                 foreach ($this->getVarStack('general') as $currVariable) {
1307                         // Transfer it's name/value combination to the $content array
1308                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:' . $currVariable['name'] . '=<pre>' . htmlentities($currVariable['value']).'</pre>');
1309                         $dummy[$currVariable['name']] = $currVariable['value'];
1310                 }// END - if
1311
1312                 // Set the new variable (don't remove the second dollar!)
1313                 $$validVar = $dummy;
1314
1315                 // Remove some variables
1316                 unset($index);
1317                 unset($currVariable);
1318
1319                 // Run the compilation three times to get content from helper classes in
1320                 $cnt = 0;
1321                 while ($cnt < 3) {
1322                         // Finalize the compilation of template variables
1323                         $this->finalizeVariableCompilation();
1324
1325                         // Prepare the eval() command for comiling the template
1326                         $eval = sprintf('$result = "%s";',
1327                                 addslashes($this->getRawTemplateData())
1328                         );
1329
1330                         // This loop does remove the backslashes (\) in PHP parameters
1331                         while (strpos($eval, $this->codeBegin) !== FALSE) {
1332                                 // Get left part before "<?"
1333                                 $evalLeft = substr($eval, 0, strpos($eval, $this->codeBegin));
1334
1335                                 // Get all from right of "<?"
1336                                 $evalRight = substr($eval, (strpos($eval, $this->codeBegin) + 5));
1337
1338                                 // Cut middle part out and remove escapes
1339                                 $evalMiddle = trim(substr($evalRight, 0, strpos($evalRight, $this->codeEnd)));
1340                                 $evalMiddle = stripslashes($evalMiddle);
1341
1342                                 // Remove the middle part from right one
1343                                 $evalRight = substr($evalRight, (strpos($evalRight, $this->codeEnd) + 2));
1344
1345                                 // And put all together
1346                                 $eval = sprintf('%s<%%php %s %%>%s', $evalLeft, $evalMiddle, $evalRight);
1347                         } // END - while
1348
1349                         // Prepare PHP code for eval() command
1350                         $eval = str_replace(
1351                                 '<%php', '";',
1352                                 str_replace(
1353                                         '%>',
1354                                         "\n\$result .= \"",
1355                                         $eval
1356                                 )
1357                         );
1358
1359                         // Run the constructed command. This will "compile" all variables in
1360                         eval($eval);
1361
1362                         // Goes something wrong?
1363                         if ((!isset($result)) || (empty($result))) {
1364                                 // Output eval command
1365                                 self::createDebugInstance(__CLASS__)->debugOutput(sprintf('Failed eval() code: <pre>%s</pre>', $this->markupCode($eval, TRUE)), TRUE);
1366
1367                                 // Output backtrace here
1368                                 $this->debugBackTrace();
1369                         } // END - if
1370
1371                         // Set raw template data
1372                         $this->setRawTemplateData($result);
1373                         $cnt++;
1374                 } // END - while
1375
1376                 // Final variable assignment
1377                 $this->finalizeVariableCompilation();
1378
1379                 // Set the new content
1380                 $this->setCompiledData($this->getRawTemplateData());
1381         }
1382
1383         /**
1384          * Compile all required templates into the current loaded one
1385          *
1386          * @return      void
1387          * @throws      UnexpectedTemplateTypeException If the template type is
1388          *                                                                                      not "code"
1389          * @throws      InvalidArrayCountException              If an unexpected array
1390          *                                                                                      count has been found
1391          */
1392         public function compileTemplate () {
1393                 // Get code type to make things shorter
1394                 $codeType = $this->getConfigInstance()->getConfigEntry('code_template_type');
1395
1396                 // We will only work with template type "code" from configuration
1397                 if (substr($this->getTemplateType(), 0, strlen($codeType)) != $codeType) {
1398                         // Abort here
1399                         throw new UnexpectedTemplateTypeException(array($this, $this->getTemplateType(), $this->getConfigInstance()->getConfigEntry('code_template_type')), self::EXCEPTION_TEMPLATE_TYPE_IS_UNEXPECTED);
1400                 } // END - if
1401
1402                 // Get the raw data.
1403                 $rawData = $this->getRawTemplateData();
1404
1405                 // Remove double spaces and trim leading/trailing spaces
1406                 $rawData = trim(str_replace('  ', ' ', $rawData));
1407
1408                 // Search for raw variables
1409                 $this->extractVariablesFromRawData($rawData);
1410
1411                 // Search for code-tags which are {? ?}
1412                 preg_match_all($this->regExpCodeTags, $rawData, $templateMatches);
1413
1414                 // Debug message
1415                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:templateMatches=' . print_r($templateMatches , TRUE));
1416
1417                 // Analyze the matches array
1418                 if ((is_array($templateMatches)) && (count($templateMatches) == 4) && (count($templateMatches[0]) > 0)) {
1419                         // Entries are found:
1420                         //
1421                         // The main analysis
1422                         $this->analyzeTemplate($templateMatches);
1423
1424                         // Compile raw template data
1425                         $this->compileRawTemplateData($templateMatches);
1426
1427                         // Are there some raw templates left for loading?
1428                         $this->loadExtraRawTemplates();
1429
1430                         // Are some raw templates found and loaded?
1431                         if (count($this->rawTemplates) > 0) {
1432                                 // Insert all raw templates
1433                                 $this->insertRawTemplates();
1434
1435                                 // Remove the raw template content as well
1436                                 $this->setRawTemplateData('');
1437                         } // END - if
1438                 } // END - if($templateMatches ...
1439         }
1440
1441         /**
1442          * Loads a given view helper (by name)
1443          *
1444          * @param       $helperName             The helper's name
1445          * @return      void
1446          */
1447         protected function loadViewHelper ($helperName) {
1448                 // Is this view helper loaded?
1449                 if (!isset($this->helpers[$helperName])) {
1450                         // Create a class name
1451                         $className = self::convertToClassName($helperName) . 'ViewHelper';
1452
1453                         // Generate new instance
1454                         $this->helpers[$helperName] = ObjectFactory::createObjectByName($className);
1455                 } // END - if
1456
1457                 // Return the requested instance
1458                 return $this->helpers[$helperName];
1459         }
1460
1461         /**
1462          * Transfers the content of this template engine to a given response instance
1463          *
1464          * @param       $responseInstance       An instance of a response class
1465          * @return      void
1466          */
1467         public function transferToResponse (Responseable $responseInstance) {
1468                 // Get the content and set it in response class
1469                 $responseInstance->writeToBody($this->getCompiledData());
1470         }
1471
1472         /**
1473          * "Compiles" a variable by replacing {?var?} with it's content
1474          *
1475          * @param       $rawCode                        Raw code to compile
1476          * @param       $setMatchAsCode         Sets $match if readVariable() returns empty result
1477          * @return      $rawCode        Compile code with inserted variable value
1478          */
1479         public function compileRawCode ($rawCode, $setMatchAsCode=FALSE) {
1480                 // Find the variables
1481                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:rawCode=<pre>' . htmlentities($rawCode) . '</pre>');
1482                 preg_match_all($this->regExpVarValue, $rawCode, $varMatches);
1483
1484                 // Compile all variables
1485                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:<pre>' . print_r($varMatches, TRUE) . '</pre>');
1486                 foreach ($varMatches[0] as $match) {
1487                         // Add variable tags around it
1488                         $varCode = '{?' . $match . '?}';
1489
1490                         // Debug message
1491                         //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:varCode=' . $varCode);
1492
1493                         // Is the variable found in code? (safes some calls)
1494                         if (strpos($rawCode, $varCode) !== FALSE) {
1495                                 // Debug message
1496                                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: match=' . $match . ',rawCode[' . gettype($rawCode) . ']=' . $rawCode);
1497
1498                                 // Use $match as new value or $value from read variable?
1499                                 if ($setMatchAsCode === TRUE) {
1500                                         // Insert match
1501                                         $rawCode = str_replace($varCode, $match, $rawCode);
1502                                 } else {
1503                                         // Read the variable
1504                                         $value = $this->readVariable($match);
1505
1506                                         // Insert value
1507                                         $rawCode = str_replace($varCode, $value, $rawCode);
1508                                 }
1509                         } // END - if
1510                 } // END - foreach
1511
1512                 // Return the compiled data
1513                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']:rawCode=<pre>' . htmlentities($rawCode) . '</pre>');
1514                 return $rawCode;
1515         }
1516
1517         /**
1518          * Getter for variable group array
1519          *
1520          * @return      $variableGroups All variable groups
1521          */
1522         public final function getVariableGroups () {
1523                 return $this->variableGroups;
1524         }
1525
1526         /**
1527          * Renames a variable in code and in stack
1528          *
1529          * @param       $oldName        Old name of variable
1530          * @param       $newName        New name of variable
1531          * @return      void
1532          */
1533         public function renameVariable ($oldName, $newName) {
1534                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-TEMPLATE[' . __METHOD__ . ':' . __LINE__ . ']: oldName=' . $oldName . ', newName=' . $newName);
1535                 // Get raw template code
1536                 $rawData = $this->getRawTemplateData();
1537
1538                 // Replace it
1539                 $rawData = str_replace($oldName, $newName, $rawData);
1540
1541                 // Set the code back
1542                 $this->setRawTemplateData($rawData);
1543         }
1544
1545         /**
1546          * Renders the given XML content
1547          *
1548          * @param       $content        Valid XML content or if not set the current loaded raw content
1549          * @return      void
1550          * @throws      XmlParserException      If an XML error was found
1551          */
1552         public function renderXmlContent ($content = NULL) {
1553                 // Is the content set?
1554                 if (is_null($content)) {
1555                         // Get current content
1556                         $content = $this->getRawTemplateData();
1557                 } // END - if
1558
1559                 // Get a XmlParser instance
1560                 $parserInstance = ObjectFactory::createObjectByConfiguredName('xml_parser_class', array($this));
1561
1562                 // Check if XML compacting is enabled
1563                 if ($this->isXmlCompactingEnabled()) {
1564                         // Yes, so get a decorator class for transparent compacting
1565                         $parserInstance = ObjectFactory::createObjectByConfiguredName('deco_compacting_xml_parser_class', array($parserInstance));
1566                 } // END - if
1567
1568                 // Parse the XML document
1569                 $parserInstance->parseXmlContent($content);
1570         }
1571
1572         /**
1573          * Enables or disables language support
1574          *
1575          * @param       $languageSupport        New language support setting
1576          * @return      void
1577          */
1578         public final function enableLanguageSupport ($languageSupport = TRUE) {
1579                 $this->languageSupport = (bool) $languageSupport;
1580         }
1581
1582         /**
1583          * Checks whether language support is enabled
1584          *
1585          * @return      $languageSupport        Whether language support is enabled or disabled
1586          */
1587         public final function isLanguageSupportEnabled () {
1588                 return $this->languageSupport;
1589         }
1590
1591         /**
1592          * Enables or disables XML compacting
1593          *
1594          * @param       $xmlCompacting  New XML compacting setting
1595          * @return      void
1596          */
1597         public final function enableXmlCompacting ($xmlCompacting = TRUE) {
1598                 $this->xmlCompacting = (bool) $xmlCompacting;
1599         }
1600
1601         /**
1602          * Checks whether XML compacting is enabled
1603          *
1604          * @return      $xmlCompacting  Whether XML compacting is enabled or disabled
1605          */
1606         public final function isXmlCompactingEnabled () {
1607                 return $this->xmlCompacting;
1608         }
1609
1610         /**
1611          * Removes all commentd, tabs and new-line characters to compact the content
1612          *
1613          * @param       $uncompactedContent             The uncompacted content
1614          * @return      $compactedContent               The compacted content
1615          */
1616         public function compactContent ($uncompactedContent) {
1617                 // First, remove all tab/new-line/revert characters
1618                 $compactedContent = str_replace(chr(9), '', str_replace(chr(10), '', str_replace(chr(13), '', $uncompactedContent)));
1619
1620                 // Then regex all comments like <!-- //--> away
1621                 preg_match_all($this->regExpComments, $compactedContent, $matches);
1622
1623                 // Do we have entries?
1624                 if (isset($matches[0][0])) {
1625                         // Remove all
1626                         foreach ($matches[0] as $match) {
1627                                 // Remove the match
1628                                 $compactedContent = str_replace($match, '', $compactedContent);
1629                         } // END - foreach
1630                 } // END - if
1631
1632                 // Set the content again
1633                 $this->setRawTemplateData($compactedContent);
1634
1635                 // Return compacted content
1636                 return $compactedContent;
1637         }
1638 }
1639
1640 // [EOF]
1641 ?>