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\Object\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\Localization\ManageableLanguage;
12 use Org\Mxchange\CoreFramework\Loader\ClassLoader;
13 use Org\Mxchange\CoreFramework\Generic\FrameworkException;
14
15 // Import SPL stuff
16 use \Exception;
17
18 /**
19  * The main class with the entry point to the whole application. This class
20  * "emulates" Java's entry point call. Additionally it covers local
21  * variables from outside access to prevent possible attacks on uninitialized
22  * local variables.
23  *
24  * But good little boys and girls would always initialize their variables... ;-)
25  *
26  * @author              Roland Haeder <webmaster@shipsimu.org>
27  * @version             0.0.0
28  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
29  * @license             GNU GPL 3.0 or any newer version
30  * @link                http://www.shipsimu.org
31  *
32  * This program is free software: you can redistribute it and/or modify
33  * it under the terms of the GNU General Public License as published by
34  * the Free Software Foundation, either version 3 of the License, or
35  * (at your option) any later version.
36  *
37  * This program is distributed in the hope that it will be useful,
38  * but WITHOUT ANY WARRANTY; without even the implied warranty of
39  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
40  * GNU General Public License for more details.
41  *
42  * You should have received a copy of the GNU General Public License
43  * along with this program. If not, see <http://www.gnu.org/licenses/>.
44  */
45 final class ApplicationEntryPoint {
46         /**
47          * Framework path
48          */
49         private static $frameworkPath = '';
50
51         /**
52          * The application's emergency exit
53          *
54          * @param       $message                The optional message we shall output on exit
55          * @param       $code                   Error code from exception
56          * @param       $extraData              Extra information from exceptions
57          * @param       $silentMode             Whether silent mode is turned on
58          * @return      void
59          * @todo        This method is old code and needs heavy rewrite and should be moved to ApplicationHelper
60          */
61         public static final function exitApplication (string $message = '', int $code = -1, string $extraData = '', bool $silentMode = false) {
62                 // Is this method already called?
63                 if (isset($GLOBALS['app_die_called'])) {
64                         // Then output the text directly
65                         exit($message);
66                 }
67
68                 // This method shall not be called twice
69                 $GLOBALS['app_die_called'] = true;
70
71                 // Is a message set?
72                 if (empty($message)) {
73                         // No message provided
74                         $message = 'No message provided.';
75                 }
76
77                 // Get config instance
78                 $configInstance = FrameworkBootstrap::getConfigurationInstance();
79
80                 // Do we have debug installation?
81                 if (($configInstance->getConfigEntry('product_install_mode') == 'productive') || ($silentMode === true)) {
82                         // Abort here
83                         exit;
84                 }
85
86                 // Get some instances
87                 $templateClassName = $configInstance->getConfigEntry('html_template_class');
88                 $languageInstance = LanguageSystem::getSelfInstance();
89
90                 // Initialize template instance here to avoid warnings in IDE
91                 $templateInstance = NULL;
92
93                 // Get response instance
94                 $responseInstance = FrameworkBootstrap::getResponseInstance();
95
96                 // Is the template engine loaded?
97                 if ((class_exists($templateClassName)) && ($languageInstance instanceof ManageableLanguage)) {
98                         // Use the template engine for putting out (nicer look) the message
99                         try {
100                                 // Get the template instance from our object factory
101                                 $templateInstance = ObjectFactory::createObjectByName($templateClassName);
102                         } catch (FrameworkException $e) {
103                                 exit(sprintf('[Main:] Could not initialize template engine for reason: <span class="exception_reason">%s</span>',
104                                         $e->getMessage()
105                                 ));
106                         }
107
108                         // Get and prepare backtrace for output
109                         $backtrace = '';
110                         foreach (debug_backtrace() as $key => $trace) {
111                                 // Set missing array elements
112                                 if (!isset($trace['file'])) {
113                                         $trace['file'] = __FILE__;
114                                 }
115                                 if (!isset($trace['line'])) {
116                                         $trace['line'] = __LINE__;
117                                 }
118                                 if (!isset($trace['args'])) {
119                                         $trace['args'] = array();
120                                 }
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                         }
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                         }
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                         die(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                                 // Is it false?
200                                 //* NOISY-DEBUG: */ printf('[%s:%d]: realPath[%s]=%s' . PHP_EOL, __METHOD__, __LINE__, gettype($realPath), $realPath);
201                                 if ($realPath === false) {
202                                         // Then, not found.
203                                         continue;
204                                 }
205
206                                 // Append framework path
207                                 $frameworkPath = sprintf('%s%sframework%s', $realPath, DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR);
208
209                                 // First create full-qualified file name (FQFN) to framework/config-global.php
210                                 $configFile = $frameworkPath . 'config-global.php';
211
212                                 // Is it readable?
213                                 //* NOISY-DEBUG: */ printf('[%s:%d]: configFile=%s' . PHP_EOL, __METHOD__, __LINE__, $configFile);
214                                 if (is_readable($configFile)) {
215                                         // Found one
216                                         self::$frameworkPath = $frameworkPath;
217
218                                         // Abort here
219                                         break;
220                                 }
221                         }
222
223                         // Able to find?
224                         if (!is_dir(self::$frameworkPath)) {
225                                 // Is no directory
226                                 throw new Exception('Cannot find framework.');
227                         }
228                 }
229
230                 // Return it
231                 return self::$frameworkPath;
232         }
233
234         /**
235          * Getter for root path
236          *
237          * @return      $rootPath       Root path
238          */
239         public static function getRootPath () {
240                 // Get __DIR__, really simple and no detection
241                 return __DIR__;
242         }
243
244         /**
245          * The framework's main entry point. This class isolates some local
246          * variables which shall not become visible to outside because of security
247          * concerns. This is done here to "emulate" the well-known entry point in
248          * Java.
249          *
250          * @return      void
251          */
252         public static final function main () {
253                 // Load bootstrap file
254                 require sprintf('%sbootstrap%sbootstrap.inc.php', self::detectFrameworkPath(), DIRECTORY_SEPARATOR);
255
256                 /*
257                  * Initial bootstrap is done, continue with initialization of
258                  * framework.
259                  */
260                 FrameworkBootstrap::initFramework();
261
262                 // Next initialize the detected application
263                 FrameworkBootstrap::prepareApplication();
264
265                 /*
266                  * Last step is to start the application, this will also initialize and
267                  * register the application instance in registry.
268                  */
269                 FrameworkBootstrap::startApplication();
270         }
271 }
272
273 // Log all exceptions (only debug! This option can create large error logs)
274 //define('LOG_EXCEPTIONS', true);
275
276 //xdebug_start_trace();
277
278 // Call above main() method
279 ApplicationEntryPoint::main();