3 * Initializes the database layer
5 * @author Roland Haeder <webmaster@mxchange.org>
7 * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software
8 * @license GNU GPL 3.0 or any newer version
9 * @link http://www.ship-simu.org
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.
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.
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/>.
28 // Is the type defined?
29 if (!defined('_DB_TYPE')) {
31 ApplicationEntryPoint::app_die("[Main:] Please define a database type first!<br />
32 E.g.:<pre>$GLOBALS['cfg']->defineDatabaseType("local");</pre>
33 This will choose the local-file-based database type (layer)");
36 // Generate FQFN for the database layer
37 $INC = sprintf("%sinc/database/lib-%s%s", PATH, _DB_TYPE, FrameworkConfiguration::getInstance()->readConfig("php_extension"));
39 // Load the database layer include
40 if ((file_exists($INC)) && (is_file($INC)) && (is_readable($INC))) {
45 ApplicationEntryPoint::app_die(sprintf("[Main:] Database layer is missing! (%s) -> R.I.P.",
53 // Prepare database instance
55 $db = DatabaseConnection::createDatabaseConnection(DebugMiddleware::getInstance(), $layer);
56 } catch (NullPointerException $e) {
57 ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: <strong>%s</strong><br />\n",
60 } catch (InvalidDirectoryResourceException $e) {
61 ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: <strong>%s</strong><br />\n",
64 } catch (PathIsEmptyException $e) {
65 ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: <strong>%s</strong><br />\n",
68 } catch (PathIsNoDirectoryException $e) {
69 ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: <strong>%s</strong><br />\n",
72 } catch (PathReadProtectedException $e) {
73 ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: <strong>%s</strong><br />\n",
76 } catch (DirPointerNotOpenedException $e) {
77 ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: <strong>%s</strong><br />\n",
82 // Datenbankobjekt debuggen
83 if (defined('DEBUG_DATABASE_OBJ')) {
84 DebugMiddleware::getInstance()->output(sprintf("The database sub-system does now look like this:<br />