Used more DatabaseWrapperFactory as one instance of each is fine.
[core.git] / inc / database.php
1 <?php
2 /**
3  * Initializes the database layer
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.shipsimu.org
10  * @deprecated
11  * @todo                Minimize these includes
12  *
13  * This program is free software: you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation, either version 3 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program. If not, see <http://www.gnu.org/licenses/>.
25  */
26
27 // Initialize database layer
28 $databaseInstance = NULL;
29
30 // Generate FQFN for the database layer
31 $fqfn = FrameworkConfiguration::getSelfInstance()->getConfigEntry('base_path') . 'inc/database/lib-' . FrameworkConfiguration::getSelfInstance()->getConfigEntry('db_type') . '.php';
32
33 // Load the database layer include
34 if (BaseFrameworkSystem::isReadableFile($fqfn)) {
35         // Load the layer
36         require($fqfn);
37 } else {
38         // Layer is missing!
39         ApplicationEntryPoint::app_exit(sprintf('[Main:] Database layer is missing! (%s) -&gt; R.I.P.',
40                 FrameworkConfiguration::getSelfInstance()->getConfigEntry('db_type')
41         ));
42 }
43
44 // Clean it up
45 unset($fqfn);
46
47 // Prepare database instance
48 $connectionInstance = DatabaseConnection::createDatabaseConnection(DebugMiddleware::getSelfInstance(), $databaseInstance);
49
50 // Is the app variable there and valid?
51 // @TODO Rewrite this
52 if (is_object($app)) $app->setDatabaseInstance($connectionInstance);
53
54 // [EOF]
55 ?>