diff --git a/lib/Doctrine/Manager.php b/lib/Doctrine/Manager.php index 00bf5c278..976183e1b 100644 --- a/lib/Doctrine/Manager.php +++ b/lib/Doctrine/Manager.php @@ -141,10 +141,23 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera public function getQueryRegistry() { if ( ! isset($this->_queryRegistry)) { - $this->_queryRegistry = new Doctrine_Query_Registry; + $this->_queryRegistry = new Doctrine_Query_Registry; } return $this->_queryRegistry; } + + /** + * setQueryRegistry + * sets the query registry + * + * @return Doctrine_Manager this object + */ + public function getQueryRegistry(Doctrine_Query_Registry $registry) + { + $this->_queryRegistry = $registry; + + return $this; + } /** * connection diff --git a/lib/Doctrine/Query/Registry.php b/lib/Doctrine/Query/Registry.php new file mode 100644 index 000000000..3afce6c28 --- /dev/null +++ b/lib/Doctrine/Query/Registry.php @@ -0,0 +1,70 @@ +. + */ + +/** + * Doctrine_Query_Registry + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Query_Registry +{ + protected $_queries = array(); + + public function add($key, $query) + { + if (strpos($key, '/') === false) { + $this->_queries[$key] = $query; + } else { + // namespace found + + $e = explode('/', $key); + + $this->_queries[$e[0]][$e[1]] = $query; + } + } + + public function get($key, $namespace = null) + { + if (isset($namespace)) { + if ( ! isset($this->_queries[$namespace][$key])) { + throw new Doctrine_Query_Registry_Exception('A query with the name ' . $namespace . '/' . $key . ' does not exist.'); + } + $query = $this->_queries[$namespace][$key]; + } else { + if ( ! isset($this->_queries[$key])) { + throw new Doctrine_Query_Registry_Exception('A query with the name ' . $key . ' does not exist.'); + } + $query = $this->_queries[$key]; + } + + if ( ! ($query instanceof Doctrine_Query)) { + $query = Doctrine_Query::create()->parseQuery($query); + } + + return $query; + } +} diff --git a/lib/Doctrine/Query/Registry/Exception.php b/lib/Doctrine/Query/Registry/Exception.php new file mode 100644 index 000000000..a43367c6b --- /dev/null +++ b/lib/Doctrine/Query/Registry/Exception.php @@ -0,0 +1,34 @@ +. + */ +Doctrine::autoload('Doctrine_Query_Exception'); +/** + * Doctrine_Query_Exception + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Query_Registry_Exception extends Doctrine_Query_Exception +{ } diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 9806c8b97..3cc1b146c 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -1401,9 +1401,10 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count */ public function fetch($queryKey, $params = array()) { - return $this->_manager->getQueryRegistry() - ->get($queryKey) - ->execute($params); + return Doctrine_Manager::getInstance() + ->getQueryRegistry() + ->get($queryKey, $this->_table->getComponentName()) + ->execute($params); } /**