]> git.mxchange.org Git - shipsimu.git/blob - application/selector/class_ApplicationSelector.php
Login area extended and misc things changed:
[shipsimu.git] / application / selector / class_ApplicationSelector.php
1 <?php
2 /**
3  * The application selector class.
4  *
5  * Please remember that this include file is being loaded *before* the class
6  * loader is loading classes from "exceptions", "interfaces" and "main"!
7  *
8  * @author              Roland Haeder <webmaster@ship-simu.org>
9  * @version             0.0.0
10  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, this is free software
11  * @license             GNU GPL 3.0 or any newer version
12  * @link                http://www.ship-simu.org
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program. If not, see <http://www.gnu.org/licenses/>.
26  */
27 class ApplicationSelector extends BaseFrameworkSystem {
28         /**
29          * An ArrayObject for all found applications
30          */
31         private $foundApps = null;
32
33         /**
34          * An array object for all loaded application templates (selector_app-name.tpl)
35          */
36         private $loadedTemplates = null;
37
38         /**
39          * The application selector's own template engine handler
40          */
41         private $selectorTplEngine = null;
42
43         /**
44          * A list of items we shall ignore while reading from directories
45          */
46         private $dirIgnoreList = array(
47                 ".",
48                 "..",
49                 ".htaccess",
50                 ".svn"
51         );
52
53         /**
54          * The protected constructor. No direct instances can be created from this.
55          *
56          * @return      void
57          */
58         protected function __construct() {
59                 // Call parent constructor
60                 parent::__construct(__CLASS__);
61
62                 // Set description
63                 $this->setObjectDescription("Applikationswechsler");
64
65                 // Create unique ID number
66                 $this->generateUniqueId();
67
68                 // Remove system array and thousand seperator
69                 $this->removeSystemArray();
70                 $this->removeNumberFormaters();
71
72                 // Initialize the array lists
73                 $this->initializeAppsList();
74                 $this->initializeTemplatesList();
75         }
76
77         /**
78          * Create a prepared instance of ApplicationSelector
79          *
80          * @param       $langInstance           The language sub-system: LanguageSystem
81          * @param       $fileIOInstance         The file I/O instance
82          * @return      $selInstance            An instance of ApplicationSelector
83          */
84         public final static function createApplicationSelector (ManageableLanguage $langInstance, FileIoHandler $fileIOInstance) {
85                 // Get a new instance
86                 $selInstance = new ApplicationSelector();
87
88                 // Get all applications
89                 $selInstance->readApplicationDirectory();
90
91                 // Set language and file I/O instances
92                 $selInstance->setLanguageInstance($langInstance);
93                 $selInstance->setFileIoInstance($fileIOInstance);
94
95                 // Return the prepared instance
96                 return $selInstance;
97         }
98
99         /**
100          * Initialize the application list
101          *
102          * @return      void
103          */
104         private function initializeAppsList () {
105                 $this->foundApps = new FrameworkArrayObject("FakedFoundApplications");
106         }
107
108         /**
109          * Initialize the loaded templates list
110          *
111          * @return      void
112          */
113         private function initializeTemplatesList () {
114                 $this->loadedTemplates = new FrameworkArrayObject("FakedLoadedTemplates");
115         }
116
117         /**
118          * Load the init.php script of an application and append the application
119          * instance to $foundApps
120          *
121          * @param       $initScript     The FQFN of init.php
122          * @param       $appName                The application's Uni* name
123          * @return      void
124          */
125         private function loadInitScript ($initScript, $appName) {
126                 // Is it a file and readable?
127                 if ((is_file($initScript)) && (is_readable($initScript))) {
128                         // Then include it
129                         include ($initScript);
130
131                         // Add the current instance to the list
132                         $this->foundApps->append($app);
133
134                 } // END - if ((is_file(...
135         }
136
137         /**
138          * Setter for the selector's template engine instance
139          *
140          * @param       $templateInstance       An instance of TemplateEngine
141          * @return      void
142          */
143         private final function setSelectorTemplateEngine (CompileableTemplate $templateInstance) {
144                 $this->selectorTplEngine = $templateInstance;
145         }
146
147         /**
148          * Getter for the selector's template engine instance
149          *
150          * @return      $selectTplEngine        The selector's template engine
151          */
152         private final function getSelectorTemplateEngine () {
153                 return $this->selectorTplEngine;
154         }
155
156         /**
157          * Getter for the $loadedTemplates array object
158          *
159          * @return      $loadedTemplates        An array object holding all loaded
160          *                                                      application templates
161          */
162         private final function getLoadedTemplates () {
163                 return $this->loadedTemplates;
164         }
165
166         /**
167          * Method for compatiblity with prepareTemplateInstance()
168          *
169          * @return      $shortName      This selector's short name
170          */
171         public function getAppShortName() {
172                 $shortName = $this->getConfigInstance()->readConfig('selector_path');
173                 return $shortName;
174         }
175
176         /**
177          * Add a directory/file to the ignore list
178          *
179          * @param               $ignoreItem     The file/directory we shall ignore
180          * @return      void
181          */
182         public function addDirIgnoreList ($ignoreItem) {
183                 // Cast and add it
184                 $ignoreItem = (string) $ignoreItem;
185                 $this->dirIgnoreList[] = $ignoreItem;
186         }
187
188         /**
189          * Read the base path for all applications (application/) and create a
190          * list of all found applications
191          *
192          * @return      void
193          */
194         public function readApplicationDirectory () {
195                 // Generate the base path for all applications
196                 $appBasePath = sprintf("%s%s/",
197                         PATH,
198                         $this->getConfigInstance()->readConfig('application_path')
199                 );
200
201                 // Add the selector path to the ignore list
202                 $this->addDirIgnoreList($this->getConfigInstance()->readConfig('selector_path'));
203
204                 // Get a directory pointer for the application path
205                 $dirInstance = FrameworkDirectoryPointer::createFrameworkDirectoryPointer($appBasePath);
206
207                 // Backup and remove the 'app' from global name space
208                 /*$appBackup = $app;
209                 unset($app);*/
210
211                 // Read all directories&files except some parts
212                 while ($appName = $dirInstance->readDirectoryExcept($this->dirIgnoreList)) {
213                         // Generate FQFN for the application name (or better directory name)
214                         $fqfn = sprintf("%s%s", $appBasePath, $appName);
215
216                         // Is this a readable directory? (files will be ignored silently)
217                         if ((is_dir($fqfn)) && (is_readable($fqfn))) {
218                                 // Then get the init.php script for analyzing
219                                 $initScript = sprintf("%s/init%s", $fqfn, $this->getConfigInstance()->readConfig('php_extension'));
220
221                                 // Load the application's init.php script and append the
222                                 // application to the ArrayObject
223                                 $this->loadInitScript($initScript, $appName);
224
225                         } // END - if ((is_dir(...
226
227                 } // END - while
228
229                 // Close directory pointer
230                 $dirInstance->closeDirectory();
231
232                 // Restore old 'app' from backup
233                 //$app = $appBackup;
234         }
235
236         /**
237          * Load all templates for found applications in previous scan
238          *
239          * @return      void
240          */
241         public function loadApplicationTemplates () {
242                 // Iterate through all applications
243                 for ($idx = $this->foundApps->getIterator(); $idx->valid(); $idx->next()) {
244                         // Get current application
245                         $appInstance = $idx->current();
246
247                         // Prepare the template engine for the current template
248                         $templateInstance = $this->prepareTemplateInstance($appInstance);
249
250                         // Try to load the web template
251                         $templateInstance->loadWebTemplate(sprintf("%s_%s",
252                                 $this->getConfigInstance()->readConfig('tpl_selector_prefix'),
253                                 strtolower($appInstance->getAppShortName())
254                         ));
255
256                         // Remember this template and the application for later usage
257                         $this->loadedTemplates->append(array(
258                                 'template_class'   => $templateInstance,
259                                 'app_instance' => $appInstance
260                         ));
261                 }
262
263                 // Re-initialize the application list to avoid double loading
264                 $this->initializeAppsList();
265         }
266
267         /**
268          * Removes $dirIgnoreList from the object to save some memory
269          *
270          * @return      void
271          */
272         public final function removeDirIgnoreList () {
273                 unset($this->dirIgnoreList);
274         }
275
276         /**
277          * Loads the selector's own main template. This step is not linking the
278          * application's templates into the main one.
279          *
280          * @return      void
281          */
282         public function loadSelectorTemplate () {
283                 // Prepare the template engine
284                 $templateInstance = $this->prepareTemplateInstance($this);
285
286                 // Load the selector's template
287                 $templateInstance->loadCodeTemplate($this->getConfigInstance()->readConfig('selector_main_tpl'));
288
289                 // Now store it in the class
290                 $this->setSelectorTemplateEngine($templateInstance);
291         }
292
293         /**
294          * Inserts all loaded application templates into the selector's template
295          *
296          * @return      void
297          * @throws      NullPointerException            If $curr is null
298          * @throws      NoArrayException                        If $curr is not an array
299          * @throws      InvalidArrayCountException      If $curr contains an
300          *                                                                              unexpected count of elements
301          * @throws      MissingArrayElementsException   If $curr is missing expected
302          *                                                                                      array elements
303          */
304         public function insertApplicationTemplates () {
305                 // First prepare the instance
306                 $templateInstance = $this->prepareTemplateInstance($this);
307
308                 // Load template which shall later hold all application templates
309                 $templateInstance->loadCodeTemplate($this->getConfigInstance()->readConfig('selector_apps_tpl'));
310
311                 // Add all loaded application templates together
312                 $dummy = "";
313                 for ($idx = $this->getLoadedTemplates()->getIterator(); $idx->valid(); $idx->next()) {
314                         // Get current item from array object
315                         $curr = $idx->current();
316
317                         // Do some sanity checks on the loaded item
318                         if (is_null($curr)) {
319                                 // $curr is null
320                                 throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
321                         } elseif (!is_array($curr)) {
322                                 // Not an array
323                                 throw new NoArrayException($curr, self::EXCEPTION_IS_NO_ARRAY);
324                         } elseif (count($curr) != 2) {
325                                 // Not expected count of entries
326                                 throw new InvalidArrayCountException(array($this, "curr", count($curr), 2), self::EXCEPTION_ARRAY_HAS_INVALID_COUNT);
327                         } elseif (!isset($curr['template_class']) || (!isset($curr['app_instance']))) {
328                                 // Expected entries missing
329                                 throw new MissingArrayElementsException(array($this, "curr", array("template_class", "app_instance")), self::EXCEPTION_ARRAY_ELEMENTS_MISSING);
330                         }
331                         die("<pre>".print_r($curr, true)."</pre>");
332
333                 } // END - for
334         }
335 }
336
337 // [EOF]
338 ?>