1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Query.php

1157 lines
40 KiB
PHP
Raw Normal View History

<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine::autoload('Doctrine_Query_Abstract');
/**
* Doctrine_Query
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/
class Doctrine_Query extends Doctrine_Query_Abstract implements Countable
2007-05-16 23:20:55 +04:00
{
2007-05-19 22:29:29 +04:00
protected $subqueryAliases = array();
/**
* @param boolean $needsSubquery
*/
2007-05-19 22:29:29 +04:00
protected $needsSubquery = false;
2007-05-16 23:20:55 +04:00
2007-05-19 22:29:29 +04:00
protected $_status = array('needsSubquery' => true);
/**
* @param boolean $isSubquery whether or not this query object is a subquery of another
* query object
*/
2007-05-18 03:13:58 +04:00
protected $isSubquery;
2007-05-24 18:19:44 +04:00
protected $isLimitSubqueryUsed = false;
2007-05-18 03:13:58 +04:00
protected $neededTables = array();
/**
* @var array $pendingFields
*/
2007-05-18 03:13:58 +04:00
protected $pendingFields = array();
2007-04-14 20:28:09 +04:00
/**
* @var array $pendingSubqueries SELECT part subqueries, these are called pending subqueries since
* they cannot be parsed directly (some queries might be correlated)
*/
2007-05-18 03:13:58 +04:00
protected $pendingSubqueries = array();
2007-05-19 22:29:29 +04:00
/**
2007-05-16 23:20:55 +04:00
* @var array $_parsers an array of parser objects
*/
2007-05-19 22:29:29 +04:00
protected $_parsers = array();
2007-05-18 03:13:58 +04:00
/**
* @var array $_enumParams an array containing the keys of the parameters that should be enumerated
*/
protected $_enumParams = array();
/**
* @var array $_options an array of options
*/
protected $_options = array(
2007-05-24 20:53:51 +04:00
'fetchMode' => Doctrine::FETCH_RECORD,
'parserCache' => false,
'resultSetCache' => false,
);
2007-05-19 22:29:29 +04:00
/**
* @var array $_dqlParts an array containing all DQL query parts
*/
protected $_dqlParts = array(
'select' => array(),
'distinct' => false,
'forUpdate' => false,
'from' => array(),
'set' => array(),
'join' => array(),
'where' => array(),
'groupby' => array(),
'having' => array(),
'orderby' => array(),
2007-05-24 20:13:50 +04:00
'limit' => array(),
'offset' => array(),
2007-05-19 22:29:29 +04:00
);
/**
* create
* returns a new Doctrine_Query object
*
2007-05-24 20:13:50 +04:00
* @param Doctrine_Connection $conn optional connection parameter
* @return Doctrine_Query
*/
2007-05-24 20:13:50 +04:00
public static function create($conn = null)
{
2007-05-24 20:13:50 +04:00
return new Doctrine_Query($conn);
}
/**
* setOption
*
* @param string $name option name
* @param string $value option value
* @return Doctrine_Query this object
*/
public function setOption($name, $value)
{
if ( ! isset($this->_options[$name])) {
throw new Doctrine_Query_Exception('Unknown option ' . $name);
}
$this->_options[$name] = $value;
}
2007-05-18 03:13:58 +04:00
/**
* addEnumParam
* sets input parameter as an enumerated parameter
*
* @param string $key the key of the input parameter
* @return Doctrine_Query
*/
public function addEnumParam($key, $table = null, $column = null)
{
$array = (isset($table) || isset($column)) ? array($table, $column) : array();
if ($key === '?') {
$this->_enumParams[] = $array;
} else {
$this->_enumParams[$key] = $array;
}
}
/**
* getEnumParams
* get all enumerated parameters
*
* @return array all enumerated parameters
*/
public function getEnumParams()
{
return $this->_enumParams;
}
2007-05-24 18:19:44 +04:00
/**
* limitSubqueryUsed
*
* @return boolean
*/
public function isLimitSubqueryUsed()
{
return $this->isLimitSubqueryUsed;
}
2007-05-18 03:13:58 +04:00
/**
* convertEnums
* convert enum parameters to their integer equivalents
*
* @return array converted parameter array
*/
public function convertEnums($params)
{
foreach ($this->_enumParams as $key => $values) {
if (isset($params[$key])) {
if ( ! empty($values)) {
$params[$key] = $values[0]->enumIndex($values[1], $params[$key]);
}
}
}
return $params;
}
/**
* isSubquery
* if $bool parameter is set this method sets the value of
* Doctrine_Query::$isSubquery. If this value is set to true
* the query object will not load the primary key fields of the selected
* components.
*
* If null is given as the first parameter this method retrieves the current
* value of Doctrine_Query::$isSubquery.
*
* @param boolean $bool whether or not this query acts as a subquery
* @return Doctrine_Query|bool
*/
public function isSubquery($bool = null)
{
if ($bool === null) {
return $this->isSubquery;
}
$this->isSubquery = (bool) $bool;
return $this;
}
/**
* getAggregateAlias
*
* @return string
*/
public function getAggregateAlias($dqlAlias)
{
if(isset($this->aggregateMap[$dqlAlias])) {
return $this->aggregateMap[$dqlAlias];
}
return null;
}
2007-05-16 23:20:55 +04:00
/**
* getParser
* parser lazy-loader
*
* @throws Doctrine_Query_Exception if unknown parser name given
* @return Doctrine_Query_Part
*/
public function getParser($name)
{
2007-05-16 23:20:55 +04:00
if ( ! isset($this->_parsers[$name])) {
$class = 'Doctrine_Query_' . ucwords(strtolower($name));
2007-05-16 23:20:55 +04:00
Doctrine::autoload($class);
if ( ! class_exists($class)) {
throw new Doctrine_Query_Exception('Unknown parser ' . $name);
}
2007-05-16 23:20:55 +04:00
$this->_parsers[$name] = new $class($this);
}
return $this->_parsers[$name];
}
/**
* parseQueryPart
2007-05-19 22:29:29 +04:00
* parses given DQL query part
*
* @param string $queryPartName the name of the query part
* @param string $queryPart query part to be parsed
* @param boolean $append whether or not to append the query part to its stack
* if false is given, this method will overwrite
* the given query part stack with $queryPart
* @return Doctrine_Query this object
*/
public function parseQueryPart($queryPartName, $queryPart, $append = false)
{
2007-05-19 22:29:29 +04:00
if ($append) {
$this->_dqlParts[$queryPartName][] = $queryPart;
} else {
2007-05-24 20:13:50 +04:00
$this->_dqlParts[$queryPartName] = array($queryPart);
}
2007-05-24 21:13:59 +04:00
if ( ! $this->_options['resultSetCache'] && ! $this->_options['parserCache']) {
2007-05-24 20:13:50 +04:00
$this->getParser($queryPartName)->parse($queryPart);
2007-05-19 22:29:29 +04:00
}
2007-05-24 20:13:50 +04:00
return $this;
}
2007-05-19 22:29:29 +04:00
/**
* getDql
* returns the DQL query associated with this object
*
* the query is built from $_dqlParts
*
* @return string the DQL query
*/
public function getDql()
{
$q = '';
2007-05-24 20:13:50 +04:00
$q .= ( ! empty($this->_dqlParts['select']))? 'SELECT ' . implode(', ', $this->_dqlParts['select']) : '';
$q .= ( ! empty($this->_dqlParts['from']))? ' FROM ' . implode(' ', $this->_dqlParts['from']) : '';
$q .= ( ! empty($this->_dqlParts['where']))? ' WHERE ' . implode(' AND ', $this->_dqlParts['where']) : '';
$q .= ( ! empty($this->_dqlParts['groupby']))? ' GROUP BY ' . implode(', ', $this->_dqlParts['groupby']) : '';
$q .= ( ! empty($this->_dqlParts['having']))? ' HAVING ' . implode(' AND ', $this->_dqlParts['having']) : '';
$q .= ( ! empty($this->_dqlParts['orderby']))? ' ORDER BY ' . implode(', ', $this->_dqlParts['orderby']) : '';
$q .= ( ! empty($this->_dqlParts['limit']))? ' LIMIT ' . implode(' ', $this->_dqlParts['limit']) : '';
$q .= ( ! empty($this->_dqlParts['offset']))? ' OFFSET ' . implode(' ', $this->_dqlParts['offset']) : '';
2007-05-19 22:29:29 +04:00
return $q;
}
2007-05-16 23:20:55 +04:00
/**
* processPendingFields
* the fields in SELECT clause cannot be parsed until the components
* in FROM clause are parsed, hence this method is called everytime a
* specific component is being parsed.
*
* @throws Doctrine_Query_Exception if unknown component alias has been given
* @param string $componentAlias the alias of the component
* @return void
*/
public function processPendingFields($componentAlias)
{
$tableAlias = $this->getTableAlias($componentAlias);
$table = $this->_aliasMap[$componentAlias]['table'];
if (isset($this->pendingFields[$componentAlias])) {
$fields = $this->pendingFields[$componentAlias];
2007-05-16 23:20:55 +04:00
// check for wildcards
2007-04-14 20:28:09 +04:00
if (in_array('*', $fields)) {
$fields = $table->getColumnNames();
} else {
// only auto-add the primary key fields if this query object is not
// a subquery of another query object
if ( ! $this->isSubquery) {
$fields = array_unique(array_merge($table->getPrimaryKeys(), $fields));
}
}
}
foreach ($fields as $name) {
$name = $table->getColumnName($name);
2007-04-14 20:28:09 +04:00
$this->parts['select'][] = $tableAlias . '.' .$name . ' AS ' . $tableAlias . '__' . $name;
}
$this->neededTables[] = $tableAlias;
}
/**
* parseSelect
* parses the query select part and
* adds selected fields to pendingFields array
*
* @param string $dql
*/
public function parseSelect($dql)
{
2007-05-17 01:28:33 +04:00
$refs = Doctrine_Tokenizer::bracketExplode($dql, ',');
2007-04-14 20:28:09 +04:00
foreach ($refs as $reference) {
if (strpos($reference, '(') !== false) {
if (substr($reference, 0, 1) === '(') {
// subselect found in SELECT part
$this->parseSubselect($reference);
} else {
$this->parseAggregateFunction2($reference);
}
} else {
$e = explode('.', $reference);
if (count($e) > 2) {
$this->pendingFields[] = $reference;
} else {
$this->pendingFields[$e[0]][] = $e[1];
}
}
}
}
2007-04-14 20:28:09 +04:00
/**
* parseSubselect
*
* parses the subquery found in DQL SELECT part and adds the
* parsed form into $pendingSubqueries stack
*
* @param string $reference
* @return void
*/
public function parseSubselect($reference)
{
2007-05-17 01:28:33 +04:00
$e = Doctrine_Tokenizer::bracketExplode($reference, ' ');
2007-04-14 20:28:09 +04:00
$alias = $e[1];
if (count($e) > 2) {
if (strtoupper($e[1]) !== 'AS') {
throw new Doctrine_Query_Exception('Syntax error near: ' . $reference);
}
$alias = $e[2];
}
$subquery = substr($e[0], 1, -1);
$this->pendingSubqueries[] = array($subquery, $alias);
}
public function parseAggregateFunction2($func)
{
2007-05-17 01:28:33 +04:00
$e = Doctrine_Tokenizer::bracketExplode($func, ' ');
$func = $e[0];
$pos = strpos($func, '(');
$name = substr($func, 0, $pos);
2007-04-16 21:59:45 +04:00
try {
$argStr = substr($func, ($pos + 1), -1);
$args = explode(',', $argStr);
2007-04-16 21:59:45 +04:00
2007-05-24 21:46:32 +04:00
$func = call_user_func_array(array($this->_conn->expression, $name), $args);
2007-04-16 21:59:45 +04:00
if(substr($func, 0, 1) !== '(') {
$pos = strpos($func, '(');
$name = substr($func, 0, $pos);
} else {
$name = $func;
}
2007-04-16 21:59:45 +04:00
$e2 = explode(' ', $args[0]);
2007-04-16 21:59:45 +04:00
$distinct = '';
2007-05-16 23:20:55 +04:00
if (count($e2) > 1) {
if (strtoupper($e2[0]) == 'DISTINCT') {
$distinct = 'DISTINCT ';
2007-05-16 23:20:55 +04:00
}
2007-04-16 21:59:45 +04:00
$args[0] = $e2[1];
}
2007-04-16 21:59:45 +04:00
$parts = explode('.', $args[0]);
$owner = $parts[0];
$alias = (isset($e[1])) ? $e[1] : $name;
2007-04-16 21:59:45 +04:00
$e3 = explode('.', $alias);
2007-04-16 21:59:45 +04:00
2007-05-16 23:20:55 +04:00
if (count($e3) > 1) {
$alias = $e3[1];
$owner = $e3[0];
}
2007-04-16 21:59:45 +04:00
// a function without parameters eg. RANDOM()
if ($owner === '') {
$owner = 0;
}
2007-04-16 21:59:45 +04:00
$this->pendingAggregates[$owner][] = array($name, $args, $distinct, $alias);
2007-04-16 21:59:45 +04:00
} catch(Doctrine_Expression_Exception $e) {
throw new Doctrine_Query_Exception('Unknown function ' . $func . '.');
}
}
2007-04-14 20:28:09 +04:00
public function processPendingSubqueries()
{
foreach ($this->pendingSubqueries as $value) {
list($dql, $alias) = $value;
$sql = $this->createSubquery()->parseQuery($dql, false)->getQuery();
2007-05-16 23:20:55 +04:00
reset($this->_aliasMap);
$componentAlias = key($this->_aliasMap);
$tableAlias = $this->getTableAlias($componentAlias);
2007-04-14 20:28:09 +04:00
$sqlAlias = $tableAlias . '__' . count($this->aggregateMap);
2007-05-19 21:49:16 +04:00
2007-04-14 20:28:09 +04:00
$this->parts['select'][] = '(' . $sql . ') AS ' . $sqlAlias;
2007-05-19 21:49:16 +04:00
2007-04-14 20:28:09 +04:00
$this->aggregateMap[$alias] = $sqlAlias;
$this->_aliasMap[$componentAlias]['subAgg'][] = $alias;
2007-04-14 20:28:09 +04:00
}
2007-05-19 21:49:16 +04:00
$this->pendingSubqueries = array();
2007-04-14 20:28:09 +04:00
}
public function processPendingAggregates($componentAlias)
{
2007-05-16 23:20:55 +04:00
$tableAlias = $this->getTableAlias($componentAlias);
$map = reset($this->_aliasMap);
$root = $map['table'];
$table = $this->_aliasMap[$componentAlias]['table'];
$aggregates = array();
if(isset($this->pendingAggregates[$componentAlias])) {
$aggregates = $this->pendingAggregates[$componentAlias];
}
if ($root === $table) {
if (isset($this->pendingAggregates[0])) {
$aggregates += $this->pendingAggregates[0];
}
}
foreach($aggregates as $parts) {
list($name, $args, $distinct, $alias) = $parts;
$arglist = array();
foreach($args as $arg) {
$e = explode('.', $arg);
2007-04-22 15:06:19 +04:00
if (is_numeric($arg)) {
$arglist[] = $arg;
} elseif (count($e) > 1) {
2007-05-16 23:20:55 +04:00
$map = $this->_aliasMap[$e[0]];
$table = $map['table'];
$e[1] = $table->getColumnName($e[1]);
2007-05-16 23:20:55 +04:00
if ( ! $table->hasColumn($e[1])) {
throw new Doctrine_Query_Exception('Unknown column ' . $e[1]);
}
$arglist[] = $tableAlias . '.' . $e[1];
} else {
$arglist[] = $e[0];
}
}
$sqlAlias = $tableAlias . '__' . count($this->aggregateMap);
2007-05-16 23:20:55 +04:00
if (substr($name, 0, 1) !== '(') {
$this->parts['select'][] = $name . '(' . $distinct . implode(', ', $arglist) . ') AS ' . $sqlAlias;
} else {
$this->parts['select'][] = $name . ' AS ' . $sqlAlias;
}
$this->aggregateMap[$alias] = $sqlAlias;
$this->neededTables[] = $tableAlias;
}
}
/**
2007-05-16 23:20:55 +04:00
* getQueryBase
* returns the base of the generated sql query
* On mysql driver special strategy has to be used for DELETE statements
*
2007-05-16 23:20:55 +04:00
* @return string the base of the generated sql query
*/
2007-05-16 23:20:55 +04:00
public function getQueryBase()
{
2007-05-16 23:20:55 +04:00
switch ($this->type) {
case self::DELETE:
$q = 'DELETE FROM ';
break;
2007-05-16 23:20:55 +04:00
case self::UPDATE:
$q = 'UPDATE ';
break;
2007-05-16 23:20:55 +04:00
case self::SELECT:
$distinct = ($this->parts['distinct']) ? 'DISTINCT ' : '';
2007-05-16 23:20:55 +04:00
$q = 'SELECT ' . $distinct . implode(', ', $this->parts['select']) . ' FROM ';
break;
}
2007-05-16 23:20:55 +04:00
return $q;
}
/**
2007-05-16 23:20:55 +04:00
* buildFromPart
*
2007-05-16 23:20:55 +04:00
* @return string
*/
2007-05-16 23:20:55 +04:00
public function buildFromPart()
{
2007-05-16 23:20:55 +04:00
$q = '';
foreach ($this->parts['from'] as $k => $part) {
if ($k === 0) {
$q .= $part;
continue;
}
// preserve LEFT JOINs only if needed
2007-05-16 23:20:55 +04:00
if (substr($part, 0, 9) === 'LEFT JOIN') {
$e = explode(' ', $part);
2007-05-16 23:20:55 +04:00
$aliases = array_merge($this->subqueryAliases,
array_keys($this->neededTables));
2007-05-16 23:20:55 +04:00
if( ! in_array($e[3], $aliases) &&
! in_array($e[2], $aliases) &&
2007-05-16 23:20:55 +04:00
! empty($this->pendingFields)) {
continue;
}
2007-05-16 23:20:55 +04:00
}
2007-05-16 23:20:55 +04:00
$e = explode(' ON ', $part);
// we can always be sure that the first join condition exists
$e2 = explode(' AND ', $e[1]);
2007-05-16 23:20:55 +04:00
$part = $e[0] . ' ON ' . array_shift($e2);
2007-05-16 23:20:55 +04:00
if ( ! empty($e2)) {
$parser = new Doctrine_Query_JoinCondition($this);
$part .= ' AND ' . $parser->_parse(implode(' AND ', $e2));
}
2007-05-16 23:20:55 +04:00
$q .= ' ' . $part;
}
return $q;
}
/**
* builds the sql query from the given parameters and applies things such as
* column aggregation inheritance and limit subqueries if needed
*
* @param array $params an array of prepared statement params (needed only in mysql driver
* when limit subquery algorithm is used)
* @return string the built sql query
*/
public function getQuery($params = array())
{
2007-05-24 20:13:50 +04:00
// check if parser cache is on
2007-05-24 20:53:51 +04:00
if ($this->_options['parserCache'] !== false) {
2007-05-24 20:13:50 +04:00
$dql = $this->getDql();
// calculate hash for dql query
$hash = strlen($dql) . md5($dql);
// check if cache has sql equivalent for given hash
2007-05-24 20:53:51 +04:00
$sql = $this->_options['parserCache']->fetch($hash, true);
2007-05-24 20:13:50 +04:00
if ($sql !== null) {
return $sql;
}
// cache miss, build sql query from dql parts
foreach ($this->_dqlParts as $queryPartName => $queryParts) {
if (is_array($queryParts)) {
foreach ($queryParts as $queryPart) {
$this->getParser($queryPartName)->parse($queryPart);
}
}
}
}
2007-05-16 23:20:55 +04:00
if (empty($this->parts['select']) || empty($this->parts['from'])) {
return false;
2007-05-16 23:20:55 +04:00
}
$needsSubQuery = false;
$subquery = '';
2007-05-16 23:20:55 +04:00
$map = reset($this->_aliasMap);
$table = $map['table'];
$rootAlias = key($this->_aliasMap);
2007-05-16 23:20:55 +04:00
if ( ! empty($this->parts['limit']) && $this->needsSubquery && $table->getAttribute(Doctrine::ATTR_QUERY_LIMIT) == Doctrine::LIMIT_RECORDS) {
2007-05-24 18:19:44 +04:00
$this->isLimitSubqueryUsed = true;
$needsSubQuery = true;
}
2007-04-14 20:28:09 +04:00
// process all pending SELECT part subqueries
$this->processPendingSubqueries();
// build the basic query
2007-05-16 23:20:55 +04:00
$q = $this->getQueryBase();
$q .= $this->buildFromPart();
if ( ! empty($this->parts['set'])) {
$q .= ' SET ' . implode(', ', $this->parts['set']);
}
$string = $this->applyInheritance();
2007-05-16 23:20:55 +04:00
if ( ! empty($string)) {
$this->parts['where'][] = '(' . $string . ')';
}
$modifyLimit = true;
2007-05-16 23:20:55 +04:00
if ( ! empty($this->parts["limit"]) || ! empty($this->parts["offset"])) {
2007-05-16 23:20:55 +04:00
if ($needsSubQuery) {
$subquery = $this->getLimitSubquery();
2007-05-24 21:46:32 +04:00
switch (strtolower($this->_conn->getName())) {
case 'mysql':
// mysql doesn't support LIMIT in subqueries
2007-05-24 21:46:32 +04:00
$list = $this->_conn->execute($subquery, $params)->fetchAll(PDO::FETCH_COLUMN);
$subquery = implode(', ', $list);
2007-05-16 23:20:55 +04:00
break;
case 'pgsql':
// pgsql needs special nested LIMIT subquery
$subquery = 'SELECT doctrine_subquery_alias.' . $table->getIdentifier(). ' FROM (' . $subquery . ') AS doctrine_subquery_alias';
2007-05-16 23:20:55 +04:00
break;
}
2007-05-24 22:00:35 +04:00
$field = $this->getTableAlias($rootAlias) . '.' . $table->getIdentifier();
// only append the subquery if it actually contains something
2007-05-16 23:20:55 +04:00
if ($subquery !== '') {
array_unshift($this->parts['where'], $field. ' IN (' . $subquery . ')');
2007-05-16 23:20:55 +04:00
}
$modifyLimit = false;
}
}
2007-05-16 23:20:55 +04:00
$q .= ( ! empty($this->parts['where']))? ' WHERE ' . implode(' AND ', $this->parts['where']) : '';
$q .= ( ! empty($this->parts['groupby']))? ' GROUP BY ' . implode(', ', $this->parts['groupby']) : '';
$q .= ( ! empty($this->parts['having']))? ' HAVING ' . implode(' AND ', $this->parts['having']): '';
$q .= ( ! empty($this->parts['orderby']))? ' ORDER BY ' . implode(', ', $this->parts['orderby']) : '';
2007-05-16 23:20:55 +04:00
if ($modifyLimit) {
2007-05-24 21:46:32 +04:00
$q = $this->_conn->modifyLimitQuery($q, $this->parts['limit'], $this->parts['offset']);
2007-05-16 23:20:55 +04:00
}
// return to the previous state
2007-05-16 23:20:55 +04:00
if ( ! empty($string)) {
array_pop($this->parts['where']);
2007-05-16 23:20:55 +04:00
}
if ($needsSubQuery) {
array_shift($this->parts['where']);
2007-05-16 23:20:55 +04:00
}
2007-05-24 20:13:50 +04:00
// append sql query into cache
2007-05-24 21:13:59 +04:00
if ($this->_options['parserCache'] !== false) {
2007-05-24 20:53:51 +04:00
$this->_options['parserCache']->save($hash, $q);
2007-05-24 20:13:50 +04:00
}
return $q;
}
/**
2007-05-16 23:20:55 +04:00
* getLimitSubquery
* this is method is used by the record limit algorithm
*
* when fetching one-to-many, many-to-many associated data with LIMIT clause
* an additional subquery is needed for limiting the number of returned records instead
* of limiting the number of sql result set rows
*
* @return string the limit subquery
*/
public function getLimitSubquery()
{
2007-05-16 23:20:55 +04:00
$map = reset($this->_aliasMap);
$table = $map['table'];
$componentAlias = key($this->_aliasMap);
// get short alias
2007-05-24 22:00:35 +04:00
$alias = $this->getTableAlias($componentAlias);
$primaryKey = $alias . '.' . $table->getIdentifier();
// initialize the base of the subquery
$subquery = 'SELECT DISTINCT ' . $primaryKey;
2007-05-24 21:46:32 +04:00
if ($this->_conn->getDBH()->getAttribute(PDO::ATTR_DRIVER_NAME) == 'pgsql') {
// pgsql needs the order by fields to be preserved in select clause
2007-04-26 21:42:03 +04:00
foreach ($this->parts['orderby'] as $part) {
$e = explode(' ', $part);
// don't add primarykey column (its already in the select clause)
2007-04-26 21:42:03 +04:00
if ($e[0] !== $primaryKey) {
$subquery .= ', ' . $e[0];
2007-04-26 21:42:03 +04:00
}
}
}
2007-05-16 23:20:55 +04:00
$subquery .= ' FROM';
2007-05-16 23:20:55 +04:00
foreach ($this->parts['from'] as $part) {
// preserve LEFT JOINs only if needed
2007-05-24 21:40:54 +04:00
if (substr($part, 0, 9) === 'LEFT JOIN') {
2007-05-16 23:20:55 +04:00
$e = explode(' ', $part);
2007-05-16 23:20:55 +04:00
if ( ! in_array($e[3], $this->subqueryAliases) &&
! in_array($e[2], $this->subqueryAliases)) {
continue;
}
}
2007-05-16 23:20:55 +04:00
$subquery .= ' ' . $part;
}
// all conditions must be preserved in subquery
$subquery .= ( ! empty($this->parts['where']))? ' WHERE ' . implode(' AND ', $this->parts['where']) : '';
$subquery .= ( ! empty($this->parts['groupby']))? ' GROUP BY ' . implode(', ', $this->parts['groupby']) : '';
$subquery .= ( ! empty($this->parts['having']))? ' HAVING ' . implode(' AND ', $this->parts['having']) : '';
$subquery .= ( ! empty($this->parts['orderby']))? ' ORDER BY ' . implode(', ', $this->parts['orderby']) : '';
// add driver specific limit clause
2007-05-24 21:46:32 +04:00
$subquery = $this->_conn->modifyLimitQuery($subquery, $this->parts['limit'], $this->parts['offset']);
2007-05-16 23:20:55 +04:00
$parts = Doctrine_Tokenizer::quoteExplode($subquery, ' ', "'", "'");
foreach($parts as $k => $part) {
if(strpos($part, "'") !== false) {
continue;
}
2007-05-24 21:40:54 +04:00
if($this->hasAlias($part)) {
$parts[$k] = $this->generateNewAlias($part);
}
if(strpos($part, '.') !== false) {
$e = explode('.', $part);
$trimmed = ltrim($e[0], '( ');
$pos = strpos($e[0], $trimmed);
2007-05-24 21:40:54 +04:00
$e[0] = substr($e[0], 0, $pos) . $this->generateNewAlias($trimmed);
$parts[$k] = implode('.', $e);
}
}
$subquery = implode(' ', $parts);
return $subquery;
}
/**
2007-05-16 23:20:55 +04:00
* tokenizeQuery
* splits the given dql query into an array where keys
* represent different query part names and values are
* arrays splitted using sqlExplode method
*
* example:
*
* parameter:
* $query = "SELECT u.* FROM User u WHERE u.name LIKE ?"
* returns:
* array('select' => array('u.*'),
* 'from' => array('User', 'u'),
* 'where' => array('u.name', 'LIKE', '?'))
*
* @param string $query DQL query
* @throws Doctrine_Query_Exception if some generic parsing error occurs
* @return array an array containing the query string parts
*/
2007-05-16 23:20:55 +04:00
public function tokenizeQuery($query)
{
2007-05-16 23:20:55 +04:00
$e = Doctrine_Tokenizer::sqlExplode($query, ' ');
foreach($e as $k=>$part) {
$part = trim($part);
switch(strtolower($part)) {
case 'delete':
case 'update':
case 'select':
case 'set':
case 'from':
case 'where':
case 'limit':
case 'offset':
case 'having':
$p = $part;
$parts[$part] = array();
break;
case 'order':
case 'group':
$i = ($k + 1);
if(isset($e[$i]) && strtolower($e[$i]) === "by") {
$p = $part;
$parts[$part] = array();
} else
$parts[$p][] = $part;
break;
case "by":
continue;
default:
if( ! isset($p))
throw new Doctrine_Query_Exception("Couldn't parse query.");
$parts[$p][] = $part;
}
}
return $parts;
}
/**
* DQL PARSER
* parses a DQL query
* first splits the query in parts and then uses individual
* parsers for each part
*
* @param string $query DQL query
* @param boolean $clear whether or not to clear the aliases
* @throws Doctrine_Query_Exception if some generic parsing error occurs
* @return Doctrine_Query
*/
public function parseQuery($query, $clear = true)
{
2007-05-16 23:20:55 +04:00
if ($clear) {
$this->clear();
2007-05-16 23:20:55 +04:00
}
$query = trim($query);
$query = str_replace("\n", ' ', $query);
$query = str_replace("\r", ' ', $query);
2007-05-16 23:20:55 +04:00
$parts = $this->tokenizeQuery($query);
foreach($parts as $k => $part) {
$part = implode(' ', $part);
2007-05-16 23:20:55 +04:00
switch(strtolower($k)) {
case 'create':
$this->type = self::CREATE;
break;
2007-05-16 23:20:55 +04:00
case 'insert':
$this->type = self::INSERT;
break;
2007-05-16 23:20:55 +04:00
case 'delete':
$this->type = self::DELETE;
break;
2007-05-16 23:20:55 +04:00
case 'select':
$this->type = self::SELECT;
$this->parseSelect($part);
break;
2007-05-16 23:20:55 +04:00
case 'update':
$this->type = self::UPDATE;
$k = 'FROM';
2007-05-16 23:20:55 +04:00
case 'from':
$class = 'Doctrine_Query_' . ucwords(strtolower($k));
$parser = new $class($this);
$parser->parse($part);
break;
2007-05-16 23:20:55 +04:00
case 'set':
$class = 'Doctrine_Query_' . ucwords(strtolower($k));
$parser = new $class($this);
2007-05-16 23:20:55 +04:00
$parser->parse($part);
break;
2007-05-16 23:20:55 +04:00
case 'group':
case 'order':
$k .= 'by';
2007-05-16 23:20:55 +04:00
case 'where':
case 'having':
$class = 'Doctrine_Query_' . ucwords(strtolower($k));
$parser = new $class($this);
$name = strtolower($k);
2007-05-16 23:20:55 +04:00
$parser->parse($part);
break;
2007-05-16 23:20:55 +04:00
case 'limit':
$this->parts['limit'] = trim($part);
break;
2007-05-16 23:20:55 +04:00
case 'offset':
$this->parts['offset'] = trim($part);
break;
}
}
return $this;
}
2007-05-16 23:20:55 +04:00
public function load($path, $loadFields = true)
{
// parse custom join conditions
$e = explode(' ON ', $path);
$joinCondition = '';
2007-05-16 23:20:55 +04:00
if (count($e) > 1) {
$joinCondition = ' AND ' . $e[1];
$path = $e[0];
}
2007-05-16 23:20:55 +04:00
$tmp = explode(' ', $path);
$originalAlias = (count($tmp) > 1) ? end($tmp) : null;
$e = preg_split("/[.:]/", $tmp[0], -1);
2007-05-16 23:20:55 +04:00
$fullPath = $tmp[0];
$prevPath = '';
$fullLength = strlen($fullPath);
2007-05-16 23:20:55 +04:00
if (isset($this->_aliasMap[$e[0]])) {
$table = $this->_aliasMap[$e[0]]['table'];
2007-05-16 23:20:55 +04:00
$prevPath = $parent = array_shift($e);
}
2007-05-16 23:20:55 +04:00
foreach ($e as $key => $name) {
// get length of the previous path
$length = strlen($prevPath);
2007-05-16 23:20:55 +04:00
// build the current component path
$prevPath = ($prevPath) ? $prevPath . '.' . $name : $name;
2007-05-16 23:20:55 +04:00
$delimeter = substr($fullPath, $length, 1);
2007-05-16 23:20:55 +04:00
// if an alias is not given use the current path as an alias identifier
if (strlen($prevPath) === $fullLength && isset($originalAlias)) {
$componentAlias = $originalAlias;
} else {
$componentAlias = $prevPath;
}
2007-05-24 18:19:44 +04:00
// if the current alias already exists, skip it
if (isset($this->_aliasMap[$componentAlias])) {
continue;
}
2007-05-16 23:20:55 +04:00
if ( ! isset($table)) {
// process the root of the path
2007-05-16 23:20:55 +04:00
$table = $this->loadRoot($name, $componentAlias);
} else {
$join = ($delimeter == ':') ? 'INNER JOIN ' : 'LEFT JOIN ';
2007-05-16 23:20:55 +04:00
$relation = $table->getRelation($name);
2007-05-24 18:36:10 +04:00
$table = $relation->getTable();
$this->_aliasMap[$componentAlias] = array('table' => $table,
2007-05-16 23:20:55 +04:00
'parent' => $parent,
'relation' => $relation);
if ( ! $relation->isOneToOne()) {
$this->needsSubquery = true;
}
2007-05-24 22:00:35 +04:00
$localAlias = $this->getTableAlias($parent, $table->getTableName());
$foreignAlias = $this->getTableAlias($componentAlias, $relation->getTable()->getTableName());
2007-05-24 21:46:32 +04:00
$localSql = $this->_conn->quoteIdentifier($table->getTableName()) . ' ' . $localAlias;
$foreignSql = $this->_conn->quoteIdentifier($relation->getTable()->getTableName()) . ' ' . $foreignAlias;
2007-05-16 23:20:55 +04:00
$map = $relation->getTable()->inheritanceMap;
if ( ! $loadFields || ! empty($map) || $joinCondition) {
$this->subqueryAliases[] = $foreignAlias;
}
2007-05-16 23:20:55 +04:00
if ($relation instanceof Doctrine_Relation_Association) {
$asf = $relation->getAssociationFactory();
$assocTableName = $asf->getTableName();
if( ! $loadFields || ! empty($map) || $joinCondition) {
$this->subqueryAliases[] = $assocTableName;
}
2007-05-16 23:20:55 +04:00
$assocPath = $prevPath . '.' . $asf->getComponentName();
2007-05-24 22:00:35 +04:00
$assocAlias = $this->getTableAlias($assocPath, $asf->getTableName());
2007-05-16 23:20:55 +04:00
$queryPart = $join . $assocTableName . ' ' . $assocAlias . ' ON ' . $localAlias . '.'
. $table->getIdentifier() . ' = '
. $assocAlias . '.' . $relation->getLocal();
2007-05-16 23:20:55 +04:00
if ($relation instanceof Doctrine_Relation_Association_Self) {
$queryPart .= ' OR ' . $localAlias . '.' . $table->getIdentifier() . ' = '
. $assocAlias . '.' . $relation->getForeign();
}
2007-05-16 23:20:55 +04:00
$this->parts['from'][] = $queryPart;
2007-05-16 23:20:55 +04:00
$queryPart = $join . $foreignSql . ' ON ' . $foreignAlias . '.'
. $relation->getTable()->getIdentifier() . ' = '
. $assocAlias . '.' . $relation->getForeign()
. $joinCondition;
2007-05-16 23:20:55 +04:00
if ($relation instanceof Doctrine_Relation_Association_Self) {
$queryPart .= ' OR ' . $foreignAlias . '.' . $table->getIdentifier() . ' = '
. $assocAlias . '.' . $relation->getLocal();
}
2007-05-16 23:20:55 +04:00
} else {
2007-05-16 23:20:55 +04:00
$queryPart = $join . $foreignSql
. ' ON ' . $localAlias . '.'
. $relation->getLocal() . ' = ' . $foreignAlias . '.' . $relation->getForeign()
. $joinCondition;
}
2007-05-16 23:20:55 +04:00
$this->parts['from'][] = $queryPart;
}
if ($loadFields) {
$restoreState = false;
// load fields if necessary
if ($loadFields && empty($this->pendingFields)
&& empty($this->pendingAggregates)
&& empty($this->pendingSubqueries)) {
2007-05-16 23:20:55 +04:00
$this->pendingFields[$componentAlias] = array('*');
2007-05-16 23:20:55 +04:00
$restoreState = true;
}
2007-05-16 23:20:55 +04:00
if(isset($this->pendingFields[$componentAlias])) {
$this->processPendingFields($componentAlias);
}
2007-05-16 23:20:55 +04:00
if(isset($this->pendingAggregates[$componentAlias]) || isset($this->pendingAggregates[0])) {
$this->processPendingAggregates($componentAlias);
}
2007-05-16 23:20:55 +04:00
if ($restoreState) {
$this->pendingFields = array();
$this->pendingAggregates = array();
}
}
2007-05-16 23:20:55 +04:00
$parent = $prevPath;
}
2007-05-16 23:20:55 +04:00
return end($this->_aliasMap);
}
/**
* loadRoot
*
* @param string $name
* @param string $componentAlias
*/
public function loadRoot($name, $componentAlias)
{
// get the connection for the component
2007-05-24 21:46:32 +04:00
$this->_conn = Doctrine_Manager::getInstance()
2007-05-16 23:20:55 +04:00
->getConnectionForComponent($name);
2007-05-24 21:46:32 +04:00
$table = $this->_conn->getTable($name);
2007-05-16 23:20:55 +04:00
$tableName = $table->getTableName();
2007-05-16 23:20:55 +04:00
// get the short alias for this table
2007-05-24 22:00:35 +04:00
$tableAlias = $this->getTableAlias($componentAlias, $tableName);
2007-05-16 23:20:55 +04:00
// quote table name
2007-05-24 21:46:32 +04:00
$queryPart = $this->_conn->quoteIdentifier($tableName);
2007-05-16 23:20:55 +04:00
if ($this->type === self::SELECT) {
$queryPart .= ' ' . $tableAlias;
}
2007-05-16 23:20:55 +04:00
$this->parts['from'][] = $queryPart;
$this->tableAliases[$tableAlias] = $componentAlias;
$this->_aliasMap[$componentAlias] = array('table' => $table);
return $table;
}
2007-05-16 23:20:55 +04:00
/**
* count
* fetches the count of the query
*
* This method executes the main query without all the
* selected fields, ORDER BY part, LIMIT part and OFFSET part.
*
2007-05-16 23:20:55 +04:00
* Example:
* Main query:
* SELECT u.*, p.phonenumber FROM User u
* LEFT JOIN u.Phonenumber p
* WHERE p.phonenumber = '123 123' LIMIT 10
*
2007-05-24 20:13:50 +04:00
* The modified DQL query:
2007-05-16 23:20:55 +04:00
* SELECT COUNT(DISTINCT u.id) FROM User u
* LEFT JOIN u.Phonenumber p
* WHERE p.phonenumber = '123 123'
*
* @param array $params an array of prepared statement parameters
* @return integer the count of this query
*/
2007-05-16 23:20:55 +04:00
public function count($params = array())
{
2007-05-16 23:20:55 +04:00
// initialize temporary variables
$where = $this->parts['where'];
$having = $this->parts['having'];
$map = reset($this->_aliasMap);
$componentAlias = key($this->_aliasMap);
$table = $map['table'];
// build the query base
2007-05-24 22:00:35 +04:00
$q = 'SELECT COUNT(DISTINCT ' . $this->getTableAlias($table->getTableName())
2007-05-16 23:20:55 +04:00
. '.' . $table->getIdentifier()
. ') FROM ' . $this->buildFromPart();
2007-05-16 23:20:55 +04:00
// append column aggregation inheritance (if needed)
$string = $this->applyInheritance();
2007-05-16 23:20:55 +04:00
if ( ! empty($string)) {
$where[] = $string;
}
// append conditions
$q .= ( ! empty($where)) ? ' WHERE ' . implode(' AND ', $where) : '';
$q .= ( ! empty($having)) ? ' HAVING ' . implode(' AND ', $having): '';
2007-05-16 23:20:55 +04:00
if ( ! is_array($params)) {
$params = array($params);
}
// append parameters
2007-05-24 21:49:15 +04:00
$params = array_merge($this->_params, $params);
2007-05-16 23:20:55 +04:00
return (int) $this->getConnection()->fetchOne($q, $params);
}
2007-05-16 23:20:55 +04:00
/**
* query
* query the database with DQL (Doctrine Query Language)
*
* @param string $query DQL query
* @param array $params prepared statement parameters
* @see Doctrine::FETCH_* constants
* @return mixed
*/
public function query($query, $params = array())
{
$this->parseQuery($query);
2007-05-16 23:20:55 +04:00
return $this->execute($params);
}
}