Continued:
[core.git] / index.php
1 <?php
2 // Own namespace (watch out: core)
3 namespace Org\Mxchange\CoreFramework\EntryPoint;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
7 use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
8 use Org\Mxchange\CoreFramework\Filesystem\FileNotFoundException;
9 use Org\Mxchange\CoreFramework\Helper\Application\ApplicationHelper;
10 use Org\Mxchange\CoreFramework\Localization\LanguageSystem;
11 use Org\Mxchange\CoreFramework\Loader\ClassLoader;
12 use Org\Mxchange\CoreFramework\Generic\FrameworkException;
13
14 // Import SPL stuff
15 use \Exception;
16
17 /**
18  * The main class with the entry point to the whole application. This class
19  * "emulates" Java's entry point call. Additionally it covers local
20  * variables from outside access to prevent possible attacks on uninitialized
21  * local variables.
22  *
23  * But good little boys and girls would always initialize their variables... ;-)
24  *
25  * @author              Roland Haeder <webmaster@shipsimu.org>
26  * @version             0.0.0
27  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
28  * @license             GNU GPL 3.0 or any newer version
29  * @link                http://www.shipsimu.org
30  *
31  * This program is free software: you can redistribute it and/or modify
32  * it under the terms of the GNU General Public License as published by
33  * the Free Software Foundation, either version 3 of the License, or
34  * (at your option) any later version.
35  *
36  * This program is distributed in the hope that it will be useful,
37  * but WITHOUT ANY WARRANTY; without even the implied warranty of
38  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
39  * GNU General Public License for more details.
40  *
41  * You should have received a copy of the GNU General Public License
42  * along with this program. If not, see <http://www.gnu.org/licenses/>.
43  */
44 final class ApplicationEntryPoint {
45         /**
46          * Framework path
47          */
48         private static $frameworkPath = '';
49
50         /**
51          * The application's emergency exit
52          *
53          * @param       $message                The optional message we shall output on exit
54          * @param       $code                   Error code from exception
55          * @param       $extraData              Extra information from exceptions
56          * @param       $silentMode             Whether silent mode is turned on
57          * @return      void
58          * @todo        This method is old code and needs heavy rewrite and should be moved to ApplicationHelper
59          */
60         public static final function exitApplication ($message = '', $code = false, $extraData = '', $silentMode = false) {
61                 // Is this method already called?
62                 if (isset($GLOBALS['app_die_called'])) {
63                         // Then output the text directly
64                         exit($message);
65                 } // END - if
66
67                 // This method shall not be called twice
68                 $GLOBALS['app_die_called'] = true;
69
70                 // Is a message set?
71                 if (empty($message)) {
72                         // No message provided
73                         $message = 'No message provided.';
74                 } // END - if
75
76                 // Get config instance
77                 $configInstance = FrameworkBootstrap::getConfigurationInstance();
78
79                 // Do we have debug installation?
80                 if (($configInstance->getConfigEntry('product_install_mode') == 'productive') || ($silentMode === true)) {
81                         // Abort here
82                         exit();
83                 } // END - if
84
85                 // Get some instances
86                 $tpl = $configInstance->getConfigEntry('html_template_class');
87                 $languageInstance = LanguageSystem::getSelfInstance();
88
89                 // Initialize template instance here to avoid warnings in IDE
90                 $templateInstance = NULL;
91
92                 // Get response instance
93                 $responseInstance = FrameworkBootstrap::getResponseInstance();
94
95                 // Is the template engine loaded?
96                 if ((class_exists($tpl)) && (is_object($languageInstance))) {
97                         // Use the template engine for putting out (nicer look) the message
98                         try {
99                                 // Get the template instance from our object factory
100                                 $templateInstance = ObjectFactory::createObjectByName($tpl);
101                         } catch (FrameworkException $e) {
102                                 exit(sprintf('[Main:] Could not initialize template engine for reason: <span class="exception_reason">%s</span>',
103                                         $e->getMessage()
104                                 ));
105                         }
106
107                         // Get and prepare backtrace for output
108                         $backtraceArray = debug_backtrace();
109                         $backtrace = '';
110                         foreach ($backtraceArray as $key => $trace) {
111                                 // Set missing array elements
112                                 if (!isset($trace['file'])) {
113                                         $trace['file'] = __FILE__;
114                                 } // END - if
115                                 if (!isset($trace['line'])) {
116                                         $trace['line'] = __LINE__;
117                                 } // END - if
118                                 if (!isset($trace['args'])) {
119                                         $trace['args'] = array();
120                                 } // END - if
121
122                                 // Add the traceback path to the final output
123                                 $backtrace .= sprintf('<span class="backtrace_file">%s</span>:%d, <span class="backtrace_function">%s(%d)</span><br />' . PHP_EOL,
124                                         basename($trace['file']),
125                                         $trace['line'],
126                                         $trace['function'],
127                                         count($trace['args'])
128                                 );
129                         } // END - foreach
130
131                         // Init application instance
132                         $applicationInstance = NULL;
133
134                         // Is the class there?
135                         if (class_exists('Org\Mxchange\CoreFramework\Helper\Application\ApplicationHelper')) {
136                                 // Get application instance
137                                 $applicationInstance = ApplicationHelper::getSelfInstance();
138
139                                 // Assign application data
140                                 $templateInstance->assignApplicationData();
141                         } // END - if
142
143                         // We only try this
144                         try {
145                                 // Assign variables
146                                 $templateInstance->assignVariable('message', $message);
147                                 $templateInstance->assignVariable('code', $code);
148                                 $templateInstance->assignVariable('extra', $extraData);
149                                 $templateInstance->assignVariable('backtrace', $backtrace);
150                                 $templateInstance->assignVariable('total_includes', ClassLoader::getSelfInstance()->getTotal());
151                                 $templateInstance->assignVariable('total_objects', ObjectFactory::getTotal());
152                                 $templateInstance->assignVariable('title', $languageInstance->getMessage('emergency_exit_title'));
153
154                                 // Load the template
155                                 $templateInstance->loadCodeTemplate('emergency_exit');
156
157                                 // Compile the template
158                                 $templateInstance->compileTemplate();
159
160                                 // Compile all variables
161                                 $templateInstance->compileVariables();
162
163                                 // Transfer data to response
164                                 $templateInstance->transferToResponse($responseInstance);
165
166                                 // Flush the response
167                                 $responseInstance->flushBuffer();
168                         } catch (FileNotFoundException $e) {
169                                 // Even the template 'emergency_exit' wasn't found so output both message
170                                 exit($message . ', exception: ' . $e->getMessage());
171                         }
172
173                         // Good bye...
174                         exit();
175                 } else {
176                         // Output message and die
177                         exit(sprintf('[Main:] Emergency exit reached: <span class="emergency_span">%s</span>',
178                                 $message
179                         ));
180                 }
181         }
182
183         /**
184          * Determines the correct absolute path for the framework. A set of common
185          * paths is being tested (first most common for applications, second when
186          * core tests are being executed and third/forth if the framework has been
187          * cloned there).
188          *
189          * @return      $frameworkPath  Path for framework
190          */
191         public static final function detectFrameworkPath () {
192                 // Is it not set?
193                 if (empty(self::$frameworkPath)) {
194                         // Auto-detect core path (first application-common)
195                         foreach (array('core', __DIR__, '/usr/local/share/php/core', '/usr/share/php/core') as $possiblePath) {
196                                 // Create full path for testing
197                                 $realPath = realpath($possiblePath);
198
199                                 // Debug message
200                                 //* NOISY-DEBUG: */ printf('[%s:%d]: realPath[%s]=%s' . PHP_EOL, __METHOD__, __LINE__, gettype($realPath), $realPath);
201
202                                 // Is it false?
203                                 if ($realPath === false) {
204                                         // Then, not found.
205                                         continue;
206                                 } // END - if
207
208                                 // Append framework path
209                                 $frameworkPath = sprintf('%s%sframework%s', $realPath, DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR);
210
211                                 // First create full-qualified file name (FQFN) to framework/config-global.php
212                                 $configFile = $frameworkPath . 'config-global.php';
213
214                                 // Debug message
215                                 //* NOISY-DEBUG: */ printf('[%s:%d]: configFile=%s' . PHP_EOL, __METHOD__, __LINE__, $configFile);
216
217                                 // Is it readable?
218                                 if (is_readable($configFile)) {
219                                         // Found one
220                                         self::$frameworkPath = $frameworkPath;
221
222                                         // Abort here
223                                         break;
224                                 } // END - if
225                         } // END - foreach
226
227                         // Able to find?
228                         if (!is_dir(self::$frameworkPath)) {
229                                 // Is no directory
230                                 throw new Exception('Cannot find framework.');
231                         } // END - if
232                 } // END - if
233
234                 // Return it
235                 return self::$frameworkPath;
236         }
237
238         /**
239          * Getter for root path
240          *
241          * @return      $rootPath       Root path
242          */
243         public static function getRootPath () {
244                 // Get __DIR__, really simple and no detection
245                 return __DIR__;
246         }
247
248         /**
249          * The framework's main entry point. This class isolates some local
250          * variables which shall not become visible to outside because of security
251          * concerns. This is done here to "emulate" the well-known entry point in
252          * Java.
253          *
254          * @return      void
255          */
256         public static final function main () {
257                 // Load bootstrap file
258                 require sprintf('%sbootstrap%sbootstrap.inc.php', self::detectFrameworkPath(), DIRECTORY_SEPARATOR);
259
260                 /*
261                  * Initial bootstrap is done, continue with initialization of
262                  * framework.
263                  */
264                 FrameworkBootstrap::initFramework();
265
266                 // Next initialize the detected application
267                 FrameworkBootstrap::prepareApplication();
268
269                 /*
270                  * Last step is to start the application, this will also initialize and
271                  * register the application instance in registry.
272                  */
273                 FrameworkBootstrap::startApplication();
274         }
275 }
276
277 // Log all exceptions (only debug! This option can create large error logs)
278 //define('LOG_EXCEPTIONS', true);
279
280 //xdebug_start_trace();
281
282 // Call above main() method
283 ApplicationEntryPoint::main();