From 9aeeffe24ec74b636df91ce69522cb038fcdf476 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 5 Dec 2006 18:38:04 +0000 Subject: [PATCH] component connection management --- lib/Doctrine/Manager.php | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Manager.php b/lib/Doctrine/Manager.php index 4c688b1fa..15f63ce80 100644 --- a/lib/Doctrine/Manager.php +++ b/lib/Doctrine/Manager.php @@ -36,6 +36,10 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera * @var array $connections an array containing all the opened connections */ private $connections = array(); + /** + * @var array $bound an array containing all components that have a bound connection + */ + private $bound = array(); /** * @var integer $index the incremented index */ @@ -47,7 +51,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera /** * @var string $root root directory */ - private $root; + private $root; /** * @var Doctrine_Null $null Doctrine_Null object, used for extremely fast null value checking */ @@ -226,8 +230,20 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera * @return boolean */ public function bindComponent($componentName, $connectionName) { - + $this->bound[$componentName] = $connectionName; } + /** + * getConnectionForComponent + * + * @param string $componentName + * @return Doctrine_Connection + */ + public function getConnectionForComponent($componentName = null) { + if(isset($this->bound[$componentName])) + return $this->getConnection($this->bound[$componentName]); + + return $this->getCurrentConnection(); + } /** * closes the connection *