2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-19 21:10:13 +00:00
|
|
|
* Datasource connection manager
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-03-19 21:10:13 +00:00
|
|
|
* Provides an interface for loading and enumerating connections defined in app/config/database.php
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.libs.model
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.10.x.1402
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
|
2010-12-04 15:46:42 +00:00
|
|
|
App::uses('DataSource', 'Model/Datasource');
|
2010-12-27 05:19:59 +00:00
|
|
|
config('database');
|
2010-12-04 15:46:42 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Manages loaded instances of DataSource objects
|
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.libs.model
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-07-06 03:08:25 +00:00
|
|
|
class ConnectionManager {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds a loaded instance of the Connections object
|
|
|
|
*
|
2009-03-19 21:10:13 +00:00
|
|
|
* @var DATABASE_CONFIG
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
public static $config = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds instances DataSource objects
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access protected
|
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
protected static $_dataSources = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Contains a list of all file and class names used in Connection settings
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access protected
|
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
protected static $_connectionsEnum = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-12-07 03:17:43 +00:00
|
|
|
* Indicates if the init code for this class has alredy been executed
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-12-07 03:17:43 +00:00
|
|
|
* @var boolean
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
private static $_init = false;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-12-07 03:17:43 +00:00
|
|
|
* Loads connections configuration.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
private static function init() {
|
|
|
|
include_once CONFIGS . 'database.php';
|
|
|
|
if (class_exists('DATABASE_CONFIG')) {
|
|
|
|
self::$config = new DATABASE_CONFIG();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-12-07 03:17:43 +00:00
|
|
|
register_shutdown_function('ConnectionManager::shutdown');
|
|
|
|
self::$_init = true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets a reference to a DataSource object
|
|
|
|
*
|
2009-03-19 21:10:13 +00:00
|
|
|
* @param string $name The name of the DataSource, as defined in app/config/database.php
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return object Instance
|
2011-01-13 01:08:34 +00:00
|
|
|
* @throws MissingDatasourceConfigException
|
|
|
|
* @throws MissingDatasourceFileException
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
public static function getDataSource($name) {
|
|
|
|
if (empty(self::$_init)) {
|
|
|
|
self::init();
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-07 03:17:43 +00:00
|
|
|
if (!empty(self::$_dataSources[$name])) {
|
|
|
|
$return = self::$_dataSources[$name];
|
2008-08-07 15:36:26 +00:00
|
|
|
return $return;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-09-25 02:56:02 +00:00
|
|
|
|
2010-12-08 00:29:07 +00:00
|
|
|
if (empty(self::$_connectionsEnum[$name])) {
|
|
|
|
self::_getConnectionObject($name);
|
|
|
|
}
|
|
|
|
|
2011-01-22 05:41:22 +00:00
|
|
|
self::loadDataSource($name);
|
2010-12-07 03:17:43 +00:00
|
|
|
$conn = self::$_connectionsEnum[$name];
|
2009-09-25 03:48:52 +00:00
|
|
|
$class = $conn['classname'];
|
2009-09-25 02:56:02 +00:00
|
|
|
|
2010-12-07 03:17:43 +00:00
|
|
|
self::$_dataSources[$name] = new $class(self::$config->{$name});
|
|
|
|
self::$_dataSources[$name]->configKeyName = $name;
|
2009-09-25 02:56:02 +00:00
|
|
|
|
2010-12-07 03:17:43 +00:00
|
|
|
return self::$_dataSources[$name];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets the list of available DataSource connections
|
|
|
|
*
|
|
|
|
* @return array List of available connections
|
|
|
|
*/
|
2010-07-06 03:08:25 +00:00
|
|
|
public static function sourceList() {
|
2010-12-07 03:17:43 +00:00
|
|
|
if (empty(self::$_init)) {
|
|
|
|
self::init();
|
|
|
|
}
|
|
|
|
return array_keys(self::$_dataSources);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-21 18:18:00 +00:00
|
|
|
* Gets a DataSource name from an object reference.
|
|
|
|
*
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param object $source DataSource object
|
2009-09-25 03:48:52 +00:00
|
|
|
* @return string Datasource name, or null if source is not present
|
2010-01-21 18:18:00 +00:00
|
|
|
* in the ConnectionManager.
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-01-06 02:45:17 +00:00
|
|
|
public static function getSourceName($source) {
|
2010-12-07 03:17:43 +00:00
|
|
|
if (empty(self::$_init)) {
|
|
|
|
self::init();
|
|
|
|
}
|
|
|
|
foreach (self::$_dataSources as $name => $ds) {
|
2011-01-06 02:45:17 +00:00
|
|
|
if ($ds === $source) {
|
2010-01-11 14:48:53 +00:00
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '';
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Loads the DataSource class for the given connection name
|
|
|
|
*
|
2009-03-19 21:10:13 +00:00
|
|
|
* @param mixed $connName A string name of the connection, as defined in app/config/database.php,
|
|
|
|
* or an array containing the filename (without extension) and class name of the object,
|
|
|
|
* to be found in app/models/datasources/ or cake/libs/model/datasources/.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return boolean True on success, null on failure or false if the class is already loaded
|
2011-01-13 01:08:34 +00:00
|
|
|
* @throws MissingDatasourceFileException
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-07-06 03:08:25 +00:00
|
|
|
public static function loadDataSource($connName) {
|
2010-12-07 03:17:43 +00:00
|
|
|
if (empty(self::$_init)) {
|
|
|
|
self::init();
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (is_array($connName)) {
|
|
|
|
$conn = $connName;
|
|
|
|
} else {
|
2010-12-07 03:17:43 +00:00
|
|
|
$conn = self::$_connectionsEnum[$connName];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
2010-12-04 16:54:15 +00:00
|
|
|
if (class_exists($conn['classname'], false)) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-04 16:54:15 +00:00
|
|
|
$plugin = $package = null;
|
|
|
|
if (!empty($conn['plugin'])) {
|
2011-01-06 02:45:17 +00:00
|
|
|
$plugin = $conn['plugin'] . '.';
|
2010-12-04 16:54:15 +00:00
|
|
|
}
|
|
|
|
if (!empty($conn['package'])) {
|
|
|
|
$package = '/' . $conn['package'];
|
|
|
|
}
|
2009-09-25 02:56:02 +00:00
|
|
|
|
2010-12-04 16:54:15 +00:00
|
|
|
App::uses($conn['classname'], $plugin . 'Model/Datasource' . $package);
|
|
|
|
if (!class_exists($conn['classname'])) {
|
2011-01-22 05:41:22 +00:00
|
|
|
throw new MissingDatasourceFileException(array('class' => $conn['classname'], 'plugin' => $plugin));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-09-24 20:23:24 +00:00
|
|
|
return true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-16 17:03:13 +00:00
|
|
|
* Return a list of connections
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @return array An associative array of elements where the key is the connection name
|
|
|
|
* (as defined in Connections), and the value is an array with keys 'filename' and 'classname'.
|
|
|
|
*/
|
2010-07-06 03:08:25 +00:00
|
|
|
public static function enumConnectionObjects() {
|
2010-12-07 03:17:43 +00:00
|
|
|
if (empty(self::$_init)) {
|
|
|
|
self::init();
|
|
|
|
}
|
2011-01-06 02:45:17 +00:00
|
|
|
return (array) self::$config;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Dynamically creates a DataSource object at runtime, with the given name and settings
|
|
|
|
*
|
|
|
|
* @param string $name The DataSource name
|
|
|
|
* @param array $config The DataSource configuration settings
|
|
|
|
* @return object A reference to the DataSource object, or null if creation failed
|
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
public static function create($name = '', $config = array()) {
|
|
|
|
if (empty(self::$_init)) {
|
|
|
|
self::init();
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-07 03:17:43 +00:00
|
|
|
if (empty($name) || empty($config) || array_key_exists($name, self::$_connectionsEnum)) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$null = null;
|
|
|
|
return $null;
|
|
|
|
}
|
2010-12-07 03:17:43 +00:00
|
|
|
self::$config->{$name} = $config;
|
|
|
|
self::$_connectionsEnum[$name] = self::_connectionData($config);
|
|
|
|
$return = self::getDataSource($name);
|
2008-08-07 15:36:26 +00:00
|
|
|
return $return;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-01-16 17:03:13 +00:00
|
|
|
/**
|
|
|
|
* Gets a list of class and file names associated with the user-defined DataSource connections
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-12-08 00:29:07 +00:00
|
|
|
protected static function _getConnectionObject($name) {
|
|
|
|
if (!empty(self::$config->{$name})) {
|
|
|
|
self::$_connectionsEnum[$name] = self::_connectionData(self::$config->{$name});
|
2010-01-16 17:03:13 +00:00
|
|
|
} else {
|
2011-01-22 05:41:22 +00:00
|
|
|
throw new MissingDatasourceConfigException(array('config' => $name));
|
2010-01-16 17:03:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns the file, class name, and parent for the given driver.
|
|
|
|
*
|
2009-09-25 05:02:41 +00:00
|
|
|
* @return array An indexed array with: filename, classname, plugin and parent
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
private static function _connectionData($config) {
|
2010-12-04 16:54:15 +00:00
|
|
|
$package = $classname = $plugin = null;
|
2010-02-17 03:35:16 +00:00
|
|
|
|
2010-12-04 16:54:15 +00:00
|
|
|
list($plugin, $classname) = pluginSplit($config['datasource']);
|
|
|
|
if (strpos($classname, '/') !== false) {
|
|
|
|
$package = dirname($classname);
|
|
|
|
$classname = basename($classname);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-12-04 16:54:15 +00:00
|
|
|
return compact('package', 'classname', 'plugin');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Destructor.
|
|
|
|
*
|
|
|
|
*/
|
2010-12-07 03:17:43 +00:00
|
|
|
public static function shutdown() {
|
2010-09-06 05:10:45 +00:00
|
|
|
if (Configure::read('Session.defaults') == 'database' && function_exists('session_write_close')) {
|
2008-05-30 11:40:08 +00:00
|
|
|
session_write_close();
|
|
|
|
}
|
|
|
|
}
|
2010-08-28 04:08:35 +00:00
|
|
|
}
|