]> git.mxchange.org Git - hub.git/blob - application/hub/main/template/class_BaseXmlTemplateEngine.php
Renamed again a bunch of methods to generic 'readXmlData' name
[hub.git] / application / hub / main / template / class_BaseXmlTemplateEngine.php
1 <?php
2 /**
3  * A generic XML template engine class
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  * @todo                This template engine does not make use of setTemplateType()
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/>.
24  */
25 class BaseXmlTemplateEngine extends BaseTemplateEngine {
26         /**
27          * Main nodes in the XML tree
28          */
29         protected $mainNodes = array();
30
31         /**
32          * Sub nodes in the XML tree
33          */
34         protected $subNodes = array();
35
36         /**
37          * Current main node
38          */
39         protected $curr = array();
40
41         /**
42          * XML template type
43          */
44         private $xmlTemplateType = 'xml';
45
46         /**
47          * Type prefix
48          */
49         private $typePrefix = 'xml';
50
51         /**
52          * Content from dependency
53          */
54         protected $dependencyContent = array();
55
56         /**
57          * Protected constructor
58          *
59          * @param       $className      Name of the class
60          * @return      void
61          */
62         protected function __construct ($className) {
63                 // Call parent constructor
64                 parent::__construct($className);
65         }
66
67         /**
68          * Does a generic initialization of the template engine
69          *
70          * @param       $typePrefix                             Type prefix
71          * @param       $xmlTemplateType                Type of XML template
72          * @return      $templateInstance               An instance of TemplateEngine
73          * @throws      BasePathIsEmptyException                If the provided $templateBasePath is empty
74          * @throws      InvalidBasePathStringException  If $templateBasePath is no string
75          * @throws      BasePathIsNoDirectoryException  If $templateBasePath is no
76          *                                                                                      directory or not found
77          * @throws      BasePathReadProtectedException  If $templateBasePath is
78          *                                                                                      read-protected
79          */
80         protected function initXmlTemplateEngine ($typePrefix, $xmlTemplateType) {
81                 // Get template instance
82                 $applicationInstance = Registry::getRegistry()->getInstance('app');
83
84                 // Determine base path
85                 $templateBasePath = $this->getConfigInstance()->getConfigEntry('application_base_path') . $applicationInstance->getRequestInstance()->getRequestElement('app') . '/';
86
87                 // Is the base path valid?
88                 if (empty($templateBasePath)) {
89                         // Base path is empty
90                         throw new BasePathIsEmptyException($this, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
91                 } elseif (!is_string($templateBasePath)) {
92                         // Is not a string
93                         throw new InvalidBasePathStringException(array($this, $templateBasePath), self::EXCEPTION_INVALID_STRING);
94                 } elseif (!is_dir($templateBasePath)) {
95                         // Is not a path
96                         throw new BasePathIsNoDirectoryException(array($this, $templateBasePath), self::EXCEPTION_INVALID_PATH_NAME);
97                 } elseif (!is_readable($templateBasePath)) {
98                         // Is not readable
99                         throw new BasePathReadProtectedException(array($this, $templateBasePath), self::EXCEPTION_READ_PROTECED_PATH);
100                 }
101
102                 // Set the base path
103                 $this->setTemplateBasePath($templateBasePath);
104
105                 // Set template extensions
106                 $this->setRawTemplateExtension($this->getConfigInstance()->getConfigEntry('raw_template_extension'));
107                 $this->setCodeTemplateExtension($this->getConfigInstance()->getConfigEntry($typePrefix . '_message_template_extension'));
108
109                 // Absolute output path for compiled templates
110                 $this->setCompileOutputPath($this->getConfigInstance()->getConfigEntry('base_path') . $this->getConfigInstance()->getConfigEntry('compile_output_path'));
111
112                 // Init a variable stacker
113                 $stackerInstance = ObjectFactory::createObjectByConfiguredName($typePrefix . '_' . $xmlTemplateType . '_stacker_class');
114
115                 // Init stacker
116                 $stackerInstance->initStacker($xmlTemplateType);
117
118                 // Set it
119                 $this->setStackerInstance($stackerInstance);
120
121                 // Set XML template type and prefix
122                 $this->xmlTemplateType = $xmlTemplateType;
123                 $this->typePrefix      = $typePrefix;
124
125                 // Set it in main nodes
126                 array_push($this->mainNodes, str_replace('_', '-', $xmlTemplateType));
127         }
128
129         /**
130          * Load a specified XML template into the engine
131          *
132          * @param       $template       The XML template we shall load
133          * @return      void
134          */
135         public function loadXmlTemplate ($template) {
136                 // Set template type
137                 $this->setTemplateType($this->getConfigInstance()->getConfigEntry($this->xmlTemplateType . '_template_type'));
138
139                 // Load the special template
140                 $this->loadTemplate($template);
141         }
142
143         /**
144          * Getter for current main node
145          *
146          * @return      $currMainNode   Current main node
147          */
148         public final function getCurrMainNode () {
149                 return $this->curr['main_node'];
150         }
151
152         /**
153          * Setter for current main node
154          *
155          * @param       $element                Element name to set as current main node
156          * @return      $currMainNode   Current main node
157          */
158         private final function setCurrMainNode ($element) {
159                 $this->curr['main_node'] = (string) $element;
160         }
161
162         /**
163          * Getter for main node array
164          *
165          * @return      $mainNodes      Array with valid main node names
166          */
167         public final function getMainNodes () {
168                 return $this->mainNodes;
169         }
170
171         /**
172          * Getter for sub node array
173          *
174          * @return      $subNodes       Array with valid sub node names
175          */
176         public final function getSubNodes () {
177                 return $this->subNodes;
178         }
179
180         /**
181          * Read XML variables by calling readVariable() with 'general' as
182          * variable stack.
183          *
184          * @param       $key    Key to read from
185          * @return      $value  Value from variable
186          */
187         public function readXmlData ($key) {
188                 // Read the variable
189                 $value = parent::readVariable($key, 'general');
190
191                 // Return value
192                 return $value;
193         }
194
195         /**
196          * Handles the template dependency for given node
197          *
198          * @param       $node                                   The node we should load a dependency template
199          * @param       $templateDependency             A template to load to satisfy dependencies
200          * @return      void
201          */
202         protected function handleTemplateDependency ($node, $templateDependency) {
203                 // Is the template dependency set?
204                 if ((!empty($templateDependency)) && (!isset($this->dependencyContent[$node]))) {
205                         // Get a temporay template instance
206                         $templateInstance = XmlTemplateEngineFactory::createXmlTemplateEngineInstance($this->typePrefix . '__' . $this->xmlTemplateType . '_template_class');
207
208                         // Create method name
209                         $methodName = 'load' . $this->convertToClassName($this->xmlTemplateType) . 'Template';
210
211                         // Then load it
212                         call_user_func(array($templateInstance, $methodName), $templateDependency);
213
214                         // Parse the XML content
215                         $templateInstance->renderXmlContent();
216
217                         // Save the parsed raw content in our dependency array
218                         $this->dependencyContent[$node] = $templateInstance->getRawTemplateData();
219                 } // END - if
220         }
221
222         /**
223          * Handles the start element of an XML resource
224          *
225          * @param       $resource               XML parser resource (currently ignored)
226          * @param       $element                The element we shall handle
227          * @param       $attributes             All attributes
228          * @return      void
229          * @throws      InvalidXmlNodeException         If an unknown/invalid XML node name was found
230          */
231         public final function startElement ($resource, $element, array $attributes) {
232                 // Initial method name which will never be called...
233                 $methodName = 'init' . $this->convertToClassName($this->xmlTemplateType);
234
235                 // Make the element name lower-case
236                 $element = strtolower($element);
237
238                 // Is the element a main node?
239                 //* DEBUG: */ echo "START: &gt;".$element."&lt;<br />\n";
240                 if (in_array($element, $this->getMainNodes())) {
241                         // Okay, main node found!
242                         $methodName = 'start' . $this->convertToClassName($element);
243
244                         // Set it
245                         $this->setCurrMainNode($element);
246                 } elseif (in_array($element, $this->getSubNodes())) {
247                         // Sub node found
248                         $methodName = 'start' . $this->convertToClassName($element);
249                 } else {
250                         // Invalid node name found
251                         throw new InvalidXmlNodeException(array($this, $element, $attributes), XmlParser::EXCEPTION_XML_NODE_UNKNOWN);
252                 }
253
254                 // Call method
255                 call_user_func_array(array($this, $methodName), $attributes);
256         }
257
258         /**
259          * Ends the main or sub node by sending out the gathered data
260          *
261          * @param       $resource       An XML resource pointer (currently ignored)
262          * @param       $nodeName       Name of the node we want to finish
263          * @return      void
264          * @throws      XmlNodeMismatchException        If current main node mismatches the closing one
265          */
266         public final function endElement ($resource, $nodeName) {
267                 // Make all lower-case
268                 $nodeName = strtolower($nodeName);
269
270                 // Does this match with current main node?
271                 //* DEBUG: */ echo "END: &gt;".$nodeName."&lt;<br />\n";
272                 if (($nodeName != $this->getCurrMainNode()) && (in_array($nodeName, $this->getMainNodes()))) {
273                         // Did not match!
274                         throw new XmlNodeMismatchException (array($this, $nodeName, $this->getCurrMainNode()), XmlParser::EXCEPTION_XML_NODE_MISMATCH);
275                 } // END - if
276
277                 // Construct method name
278                 $methodName = 'finish' . $this->convertToClassName($nodeName);
279
280                 // Call the corresponding method
281                 //* DEBUG: */ echo "call: ".$methodName."<br />\n";
282                 call_user_func_array(array($this, $methodName), array());
283         }
284 }
285
286 // [EOF]
287 ?>