2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-19 14:10:13 -07:00
|
|
|
* Datasource connection manager
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-06-19 20:28:40 -04: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 12:38:58 -04:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 17:46:59 +11:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 20:59:49 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2008-05-30 11:40:08 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 20:59:49 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 17:00:11 +11:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Model
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.10.x.1402
|
2009-11-06 17:51:51 +11:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
|
2010-12-04 11:16:42 -04:30
|
|
|
App::uses('DataSource', 'Model/Datasource');
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Manages loaded instances of DataSource objects
|
|
|
|
*
|
2012-07-18 03:55:29 +02:00
|
|
|
* Provides an interface for loading and enumerating connections defined in
|
2011-12-08 07:35:02 -08:00
|
|
|
* app/Config/database.php
|
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Model
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-07-05 23:08:25 -04:00
|
|
|
class ConnectionManager {
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds a loaded instance of the Connections object
|
|
|
|
*
|
2009-03-19 14:10:13 -07:00
|
|
|
* @var DATABASE_CONFIG
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
public static $config = null;
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds instances DataSource objects
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
protected static $_dataSources = array();
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Contains a list of all file and class names used in Connection settings
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
protected static $_connectionsEnum = array();
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2011-05-27 01:30:42 -04:30
|
|
|
* Indicates if the init code for this class has already been executed
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-12-06 22:47:43 -04:30
|
|
|
* @var boolean
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-08-20 00:43:34 -04:00
|
|
|
protected static $_init = false;
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-12-06 22:47:43 -04:30
|
|
|
* Loads connections configuration.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-07-30 18:38:57 -04:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-08-20 00:43:34 -04:00
|
|
|
protected static function _init() {
|
2011-04-17 13:13:02 +02:00
|
|
|
include_once APP . 'Config' . DS . 'database.php';
|
2010-12-06 22:47:43 -04:30
|
|
|
if (class_exists('DATABASE_CONFIG')) {
|
|
|
|
self::$config = new DATABASE_CONFIG();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-12-06 22:47:43 -04:30
|
|
|
self::$_init = true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets a reference to a DataSource object
|
|
|
|
*
|
2011-06-19 20:28:40 -04:00
|
|
|
* @param string $name The name of the DataSource, as defined in app/Config/database.php
|
2011-07-31 22:57:17 -04:00
|
|
|
* @return DataSource Instance
|
2011-10-15 20:06:31 +02:00
|
|
|
* @throws MissingDatasourceException
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
public static function getDataSource($name) {
|
|
|
|
if (empty(self::$_init)) {
|
2011-08-20 00:43:34 -04:00
|
|
|
self::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-06 22:47:43 -04:30
|
|
|
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-24 22:56:02 -04:00
|
|
|
|
2010-12-07 19:59:07 -04:30
|
|
|
if (empty(self::$_connectionsEnum[$name])) {
|
|
|
|
self::_getConnectionObject($name);
|
|
|
|
}
|
|
|
|
|
2011-01-22 01:11:22 -04:30
|
|
|
self::loadDataSource($name);
|
2010-12-06 22:47:43 -04:30
|
|
|
$conn = self::$_connectionsEnum[$name];
|
2009-09-24 23:48:52 -04:00
|
|
|
$class = $conn['classname'];
|
2009-09-24 22:56:02 -04:00
|
|
|
|
2013-03-13 17:52:47 +01:00
|
|
|
if (strpos(App::location($class), 'Datasource') === false) {
|
2013-03-12 21:56:08 -04:00
|
|
|
throw new MissingDatasourceException(array(
|
|
|
|
'class' => $class,
|
|
|
|
'plugin' => null,
|
2013-03-13 17:52:47 +01:00
|
|
|
'message' => 'Datasource is not found in Model/Datasource package.'
|
2013-03-12 21:56:08 -04:00
|
|
|
));
|
|
|
|
}
|
2013-03-13 17:52:47 +01:00
|
|
|
self::$_dataSources[$name] = new $class(self::$config->{$name});
|
|
|
|
self::$_dataSources[$name]->configKeyName = $name;
|
|
|
|
|
2010-12-06 22:47:43 -04:30
|
|
|
return self::$_dataSources[$name];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets the list of available DataSource connections
|
2011-05-27 02:28:38 -04:30
|
|
|
* This will only return the datasources instantiated by this manager
|
|
|
|
* It differs from enumConnectionObjects, since the latter will return all configured connections
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @return array List of available connections
|
|
|
|
*/
|
2010-07-05 23:08:25 -04:00
|
|
|
public static function sourceList() {
|
2010-12-06 22:47:43 -04:30
|
|
|
if (empty(self::$_init)) {
|
2011-08-20 00:43:34 -04:00
|
|
|
self::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
|
|
|
return array_keys(self::$_dataSources);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-21 13:18:00 -05:00
|
|
|
* Gets a DataSource name from an object reference.
|
|
|
|
*
|
2011-07-31 22:57:17 -04:00
|
|
|
* @param DataSource $source DataSource object
|
2009-09-24 23:48:52 -04:00
|
|
|
* @return string Datasource name, or null if source is not present
|
2010-01-21 13:18:00 -05:00
|
|
|
* in the ConnectionManager.
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-01-05 22:15:17 -04:30
|
|
|
public static function getSourceName($source) {
|
2010-12-06 22:47:43 -04:30
|
|
|
if (empty(self::$_init)) {
|
2011-08-20 00:43:34 -04:00
|
|
|
self::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
|
|
|
foreach (self::$_dataSources as $name => $ds) {
|
2011-01-05 22:15:17 -04:30
|
|
|
if ($ds === $source) {
|
2010-01-11 09:48:53 -05:00
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
}
|
2011-05-27 02:13:35 -04:30
|
|
|
return null;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Loads the DataSource class for the given connection name
|
|
|
|
*
|
2012-05-13 01:43:31 +01:00
|
|
|
* @param string|array $connName A string name of the connection, as defined in app/Config/database.php,
|
2009-03-19 14:10:13 -07:00
|
|
|
* or an array containing the filename (without extension) and class name of the object,
|
2011-06-19 20:28:40 -04:00
|
|
|
* to be found in app/Model/Datasource/ or lib/Cake/Model/Datasource/.
|
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-10-15 20:06:31 +02:00
|
|
|
* @throws MissingDatasourceException
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-07-05 23:08:25 -04:00
|
|
|
public static function loadDataSource($connName) {
|
2010-12-06 22:47:43 -04:30
|
|
|
if (empty(self::$_init)) {
|
2011-08-20 00:43:34 -04:00
|
|
|
self::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (is_array($connName)) {
|
|
|
|
$conn = $connName;
|
|
|
|
} else {
|
2010-12-06 22:47:43 -04:30
|
|
|
$conn = self::$_connectionsEnum[$connName];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
if (class_exists($conn['classname'], false)) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
$plugin = $package = null;
|
|
|
|
if (!empty($conn['plugin'])) {
|
2011-01-05 22:15:17 -04:30
|
|
|
$plugin = $conn['plugin'] . '.';
|
2010-12-04 12:24:15 -04:30
|
|
|
}
|
|
|
|
if (!empty($conn['package'])) {
|
|
|
|
$package = '/' . $conn['package'];
|
|
|
|
}
|
2009-09-24 22:56:02 -04:00
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
App::uses($conn['classname'], $plugin . 'Model/Datasource' . $package);
|
|
|
|
if (!class_exists($conn['classname'])) {
|
2011-10-15 20:06:31 +02:00
|
|
|
throw new MissingDatasourceException(array(
|
|
|
|
'class' => $conn['classname'],
|
2011-10-16 13:40:36 +02:00
|
|
|
'plugin' => substr($plugin, 0, -1)
|
2011-10-15 20:06:31 +02:00
|
|
|
));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-09-24 16:23:24 -04:00
|
|
|
return true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-16 15:03:13 -02: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-05 23:08:25 -04:00
|
|
|
public static function enumConnectionObjects() {
|
2010-12-06 22:47:43 -04:30
|
|
|
if (empty(self::$_init)) {
|
2011-08-20 00:43:34 -04:00
|
|
|
self::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2012-03-04 14:18:04 -05:00
|
|
|
return (array)self::$config;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02: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
|
2011-07-31 22:57:17 -04:00
|
|
|
* @return DataSource A reference to the DataSource object, or null if creation failed
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
public static function create($name = '', $config = array()) {
|
|
|
|
if (empty(self::$_init)) {
|
2011-08-20 00:43:34 -04:00
|
|
|
self::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-06 22:47:43 -04:30
|
|
|
if (empty($name) || empty($config) || array_key_exists($name, self::$_connectionsEnum)) {
|
2011-04-16 22:57:05 -04:30
|
|
|
return null;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-12-06 22:47:43 -04:30
|
|
|
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 21:18:37 +02:00
|
|
|
|
2011-04-16 22:57:05 -04:30
|
|
|
/**
|
|
|
|
* Removes a connection configuration at runtime given its name
|
|
|
|
*
|
|
|
|
* @param string $name the connection name as it was created
|
|
|
|
* @return boolean success if connection was removed, false if it does not exist
|
|
|
|
*/
|
|
|
|
public static function drop($name) {
|
|
|
|
if (empty(self::$_init)) {
|
2011-08-20 00:43:34 -04:00
|
|
|
self::_init();
|
2011-04-16 22:57:05 -04:30
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset(self::$config->{$name})) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unset(self::$_connectionsEnum[$name], self::$_dataSources[$name], self::$config->{$name});
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-16 15:03:13 -02:00
|
|
|
/**
|
|
|
|
* Gets a list of class and file names associated with the user-defined DataSource connections
|
|
|
|
*
|
2011-07-30 18:38:57 -04:00
|
|
|
* @param string $name Connection name
|
2010-01-16 15:03:13 -02:00
|
|
|
* @return void
|
2011-07-30 18:38:57 -04:00
|
|
|
* @throws MissingDatasourceConfigException
|
2010-01-16 15:03:13 -02:00
|
|
|
*/
|
2010-12-07 19:59:07 -04:30
|
|
|
protected static function _getConnectionObject($name) {
|
|
|
|
if (!empty(self::$config->{$name})) {
|
|
|
|
self::$_connectionsEnum[$name] = self::_connectionData(self::$config->{$name});
|
2010-01-16 15:03:13 -02:00
|
|
|
} else {
|
2011-01-22 01:11:22 -04:30
|
|
|
throw new MissingDatasourceConfigException(array('config' => $name));
|
2010-01-16 15:03:13 -02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns the file, class name, and parent for the given driver.
|
|
|
|
*
|
2011-07-30 18:38:57 -04:00
|
|
|
* @param array $config Array with connection configuration. Key 'datasource' is required
|
2009-09-25 01:02:41 -04:00
|
|
|
* @return array An indexed array with: filename, classname, plugin and parent
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-08-20 00:43:34 -04:00
|
|
|
protected static function _connectionData($config) {
|
2010-12-04 12:24:15 -04:30
|
|
|
$package = $classname = $plugin = null;
|
2010-02-16 22:35:16 -05:00
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
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 12:24:15 -04:30
|
|
|
return compact('package', 'classname', 'plugin');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-04 14:18:04 -05:00
|
|
|
|
2011-04-17 13:13:02 +02:00
|
|
|
}
|