2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-08-21 06:49:02 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
2005-05-21 22:40:51 +00:00
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* Short description for file.
|
2005-12-23 21:57:26 +00:00
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-01-12 02:10:47 +00:00
|
|
|
* Copyright (c) 2005, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-08-21 06:49:02 +00:00
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs.model.dbo
|
|
|
|
* @since CakePHP v 0.10.0.1076
|
2005-08-21 06:49:02 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
2005-05-21 22:40:51 +00:00
|
|
|
|
|
|
|
/**
|
2005-06-23 20:41:10 +00:00
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
*/
|
2006-01-12 02:10:47 +00:00
|
|
|
if(!class_exists('Object'))
|
|
|
|
{
|
|
|
|
uses('object');
|
|
|
|
}
|
2005-08-21 06:49:02 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
*/
|
2006-01-12 02:10:47 +00:00
|
|
|
if (!class_exists('DATABASE_CONFIG'))
|
|
|
|
{
|
|
|
|
config('database');
|
|
|
|
}
|
2005-05-21 22:40:51 +00:00
|
|
|
|
2005-06-05 04:43:07 +00:00
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* DbFactory
|
2005-12-23 21:57:26 +00:00
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
* Creates DBO-descendant objects from a given db connection configuration
|
2005-06-05 04:43:07 +00:00
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs.model.dbo
|
|
|
|
* @since CakePHP v 0.10.0.1076
|
2005-06-23 20:41:10 +00:00
|
|
|
*
|
2005-06-05 04:43:07 +00:00
|
|
|
*/
|
2005-06-23 20:41:10 +00:00
|
|
|
class DboFactory extends Object
|
|
|
|
{
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* A semi-singelton. Returns actual instance, or creates a new one with given config.
|
|
|
|
*
|
|
|
|
* @param string $config Name of key of $dbConfig array to be used.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function getInstance($config = null)
|
|
|
|
{
|
2005-12-23 21:57:26 +00:00
|
|
|
$configName = $config;
|
|
|
|
static $instance = array();
|
|
|
|
if ($configName == null && !empty($instance))
|
|
|
|
{
|
|
|
|
return $instance["default"];
|
|
|
|
}
|
|
|
|
else if ($configName == null && empty($instance))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2005-06-23 20:41:10 +00:00
|
|
|
|
2005-12-23 21:57:26 +00:00
|
|
|
if (!key_exists($configName, $instance))
|
|
|
|
{
|
|
|
|
$configs = get_class_vars('DATABASE_CONFIG');
|
|
|
|
$config = $configs[$configName];
|
2005-05-21 22:40:51 +00:00
|
|
|
|
2005-12-23 21:57:26 +00:00
|
|
|
// special case for AdoDB -- driver name in the form of 'adodb-drivername'
|
|
|
|
if (preg_match('#^adodb[\-_](.*)$#i', $config['driver'], $res))
|
|
|
|
{
|
|
|
|
uses('model'.DS.'dbo'.DS.'dbo_adodb');
|
|
|
|
$config['driver'] = $res[1];
|
|
|
|
$instance[$configName] =& new DBO_AdoDB($config);
|
|
|
|
}
|
|
|
|
// special case for PEAR:DB -- driver name in the form of 'pear-drivername'
|
|
|
|
elseif (preg_match('#^pear[\-_](.*)$#i', $config['driver'], $res))
|
|
|
|
{
|
|
|
|
uses('model'.DS.'dbo'.DS.'dbo_pear');
|
|
|
|
$config['driver'] = $res[1];
|
|
|
|
$instance[$configName] =& new DBO_Pear($config);
|
|
|
|
}
|
|
|
|
// regular, Cake-native db drivers
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$db_driver_class = 'DBO_'.$config['driver'];
|
|
|
|
$db_driver_fn = LIBS.strtolower('model'.DS.'dbo'.DS.$db_driver_class.'.php');
|
|
|
|
if (file_exists($db_driver_fn))
|
|
|
|
{
|
|
|
|
uses(strtolower('model'.DS.'dbo'.DS.$db_driver_class));
|
|
|
|
$instance[$configName] =& new $db_driver_class($config);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $instance[$configName];
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
2005-06-23 20:41:10 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Sets config to use. If there is already a connection, close it first.
|
|
|
|
*
|
|
|
|
* @param string $configName Name of the config array key to use.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function setConfig($config)
|
|
|
|
{
|
2005-12-23 21:57:26 +00:00
|
|
|
$db = DboFactory::getInstance();
|
|
|
|
if ($db->isConnected() === true)
|
|
|
|
{
|
|
|
|
$db->close();
|
|
|
|
}
|
|
|
|
return $this->getInstance($config);
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
2005-05-21 22:40:51 +00:00
|
|
|
}
|
|
|
|
|
2005-05-17 20:55:27 +00:00
|
|
|
?>
|