2007-04-13 22:03:44 +04:00
|
|
|
<?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>.
|
|
|
|
*/
|
2007-05-19 22:06:42 +04:00
|
|
|
Doctrine::autoload('Doctrine_Query_Abstract');
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* Doctrine_Query
|
|
|
|
*
|
|
|
|
* @package Doctrine
|
2007-10-04 01:43:22 +04:00
|
|
|
* @subpackage Query
|
2007-04-13 22:03:44 +04:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
*/
|
2007-05-19 22:06:42 +04:00
|
|
|
class Doctrine_Query extends Doctrine_Query_Abstract implements Countable
|
2007-05-16 23:20:55 +04:00
|
|
|
{
|
2007-06-19 14:43:19 +04:00
|
|
|
const STATE_CLEAN = 1;
|
|
|
|
|
|
|
|
const STATE_DIRTY = 2;
|
|
|
|
|
|
|
|
const STATE_DIRECT = 3;
|
|
|
|
|
|
|
|
const STATE_LOCKED = 4;
|
|
|
|
|
2007-10-30 22:10:18 +03:00
|
|
|
protected static $_keywords = array('ALL',
|
|
|
|
'AND',
|
|
|
|
'ANY',
|
|
|
|
'AS',
|
|
|
|
'ASC',
|
|
|
|
'AVG',
|
|
|
|
'BETWEEN',
|
|
|
|
'BIT_LENGTH',
|
|
|
|
'BY',
|
|
|
|
'CHARACTER_LENGTH',
|
|
|
|
'CHAR_LENGTH',
|
2007-10-30 22:19:53 +03:00
|
|
|
'CURRENT_DATE',
|
2007-10-30 22:10:18 +03:00
|
|
|
'CURRENT_TIME',
|
|
|
|
'CURRENT_TIMESTAMP',
|
|
|
|
'DELETE',
|
|
|
|
'DESC',
|
|
|
|
'DISTINCT',
|
|
|
|
'EMPTY',
|
|
|
|
'EXISTS',
|
|
|
|
'FALSE',
|
|
|
|
'FETCH',
|
|
|
|
'FROM',
|
|
|
|
'GROUP',
|
|
|
|
'HAVING',
|
|
|
|
'IN',
|
|
|
|
'INDEXBY',
|
|
|
|
'INNER',
|
|
|
|
'IS',
|
|
|
|
'JOIN',
|
|
|
|
'LEFT',
|
|
|
|
'LIKE',
|
|
|
|
'LOWER',
|
|
|
|
'MEMBER',
|
|
|
|
'MOD',
|
|
|
|
'NEW',
|
|
|
|
'NOT',
|
|
|
|
'NULL',
|
|
|
|
'OBJECT',
|
|
|
|
'OF',
|
|
|
|
'OR',
|
|
|
|
'ORDER',
|
|
|
|
'OUTER',
|
|
|
|
'POSITION',
|
|
|
|
'SELECT',
|
|
|
|
'SOME',
|
|
|
|
'TRIM',
|
|
|
|
'TRUE',
|
|
|
|
'UNKNOWN',
|
|
|
|
'UPDATE',
|
|
|
|
'WHERE');
|
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
|
2007-05-19 22:29:29 +04:00
|
|
|
protected $subqueryAliases = array();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* @param boolean $needsSubquery
|
|
|
|
*/
|
2007-05-19 22:29:29 +04:00
|
|
|
protected $needsSubquery = false;
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* @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-09-24 22:44:37 +04:00
|
|
|
|
2007-05-24 18:19:44 +04:00
|
|
|
protected $isLimitSubqueryUsed = false;
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-26 23:50:40 +04:00
|
|
|
/**
|
2007-09-13 01:42:42 +04:00
|
|
|
* @var array $_neededTables an array containing the needed table aliases
|
2007-05-26 23:50:40 +04:00
|
|
|
*/
|
|
|
|
protected $_neededTables = array();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
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-10-29 20:54:40 +03:00
|
|
|
protected $_pendingSubqueries = array();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
/**
|
2007-10-29 20:54:40 +03:00
|
|
|
* @var array $_pendingFields an array of pending fields (fields waiting to be parsed)
|
2007-09-13 01:42:42 +04:00
|
|
|
*/
|
2007-10-29 20:54:40 +03:00
|
|
|
protected $_pendingFields = array();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-19 22:29:29 +04:00
|
|
|
/**
|
2007-05-26 23:50:40 +04:00
|
|
|
* @var array $_parsers an array of parser objects, each DQL query part has its own parser
|
2007-05-16 23:20:55 +04:00
|
|
|
*/
|
2007-05-19 22:29:29 +04:00
|
|
|
protected $_parsers = array();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
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();
|
2007-05-27 15:38:16 +04:00
|
|
|
|
2007-05-19 22:29:29 +04:00
|
|
|
/**
|
|
|
|
* @var array $_dqlParts an array containing all DQL query parts
|
|
|
|
*/
|
|
|
|
protected $_dqlParts = array(
|
2007-09-13 01:42:42 +04:00
|
|
|
'from' => array(),
|
2007-05-19 22:29:29 +04:00
|
|
|
'select' => array(),
|
|
|
|
'forUpdate' => false,
|
|
|
|
'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
|
|
|
);
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-06-11 23:27:16 +04:00
|
|
|
/**
|
|
|
|
* @var array $_pendingJoinConditions an array containing pending joins
|
|
|
|
*/
|
|
|
|
protected $_pendingJoinConditions = array();
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-27 22:42:47 +04:00
|
|
|
protected $_expressionMap = array();
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
protected $_state = Doctrine_Query::STATE_CLEAN;
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* create
|
|
|
|
* returns a new Doctrine_Query object
|
|
|
|
*
|
2007-05-24 20:13:50 +04:00
|
|
|
* @param Doctrine_Connection $conn optional connection parameter
|
2007-04-13 22:03:44 +04:00
|
|
|
* @return Doctrine_Query
|
|
|
|
*/
|
2007-05-24 20:13:50 +04:00
|
|
|
public static function create($conn = null)
|
2007-04-13 22:03:44 +04:00
|
|
|
{
|
2007-05-24 20:13:50 +04:00
|
|
|
return new Doctrine_Query($conn);
|
|
|
|
}
|
2007-10-29 17:30:06 +03:00
|
|
|
|
2007-09-24 22:44:37 +04:00
|
|
|
public function reset()
|
2007-06-19 02:30:15 +04:00
|
|
|
{
|
|
|
|
$this->_pendingJoinConditions = array();
|
2007-10-29 20:54:40 +03:00
|
|
|
$this->_pendingSubqueries = array();
|
|
|
|
$this->_pendingFields = array();
|
2007-06-19 02:30:15 +04:00
|
|
|
$this->_neededTables = array();
|
2007-06-27 22:42:47 +04:00
|
|
|
$this->_expressionMap = array();
|
2007-06-19 02:30:15 +04:00
|
|
|
$this->subqueryAliases = array();
|
|
|
|
$this->needsSubquery = false;
|
|
|
|
$this->isLimitSubqueryUsed = false;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-24 20:13:50 +04:00
|
|
|
/**
|
|
|
|
* 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-04-13 22:03:44 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-06-11 23:27:16 +04:00
|
|
|
/**
|
|
|
|
* addPendingJoinCondition
|
|
|
|
*
|
|
|
|
* @param string $componentAlias component alias
|
|
|
|
* @param string $joinCondition dql join condition
|
|
|
|
* @return Doctrine_Query this object
|
|
|
|
*/
|
|
|
|
public function addPendingJoinCondition($componentAlias, $joinCondition)
|
|
|
|
{
|
|
|
|
$this->_pendingJoins[$componentAlias] = $joinCondition;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-09-24 22:44:37 +04:00
|
|
|
/**
|
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)
|
|
|
|
{
|
2007-06-19 02:30:15 +04:00
|
|
|
$array = (isset($table) || isset($column)) ? array($table, $column) : array();
|
2007-05-18 03:13:58 +04:00
|
|
|
|
2007-06-19 02:30:15 +04:00
|
|
|
if ($key === '?') {
|
|
|
|
$this->_enumParams[] = $array;
|
2007-05-18 03:13:58 +04:00
|
|
|
} else {
|
|
|
|
$this->_enumParams[$key] = $array;
|
|
|
|
}
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-18 03:13:58 +04:00
|
|
|
/**
|
|
|
|
* getEnumParams
|
|
|
|
* get all enumerated parameters
|
|
|
|
*
|
|
|
|
* @return array all enumerated parameters
|
|
|
|
*/
|
|
|
|
public function getEnumParams()
|
|
|
|
{
|
|
|
|
return $this->_enumParams;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-24 18:19:44 +04:00
|
|
|
/**
|
|
|
|
* limitSubqueryUsed
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isLimitSubqueryUsed()
|
|
|
|
{
|
|
|
|
return $this->isLimitSubqueryUsed;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-18 03:13:58 +04:00
|
|
|
/**
|
|
|
|
* convertEnums
|
|
|
|
* convert enum parameters to their integer equivalents
|
|
|
|
*
|
|
|
|
* @return array converted parameter array
|
|
|
|
*/
|
2007-09-24 22:44:37 +04:00
|
|
|
public function convertEnums($params)
|
2007-05-18 03:13:58 +04:00
|
|
|
{
|
|
|
|
foreach ($this->_enumParams as $key => $values) {
|
|
|
|
if (isset($params[$key])) {
|
|
|
|
if ( ! empty($values)) {
|
|
|
|
$params[$key] = $values[0]->enumIndex($values[1], $params[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $params;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* getAggregateAlias
|
2007-09-24 22:44:37 +04:00
|
|
|
*
|
2007-05-26 23:50:40 +04:00
|
|
|
* @param string $dqlAlias the dql alias of an aggregate value
|
2007-04-13 22:03:44 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getAggregateAlias($dqlAlias)
|
|
|
|
{
|
2007-06-01 14:17:50 +04:00
|
|
|
if (isset($this->aggregateMap[$dqlAlias])) {
|
2007-06-27 22:42:47 +04:00
|
|
|
// mark the expression as used
|
|
|
|
$this->_expressionMap[$dqlAlias][1] = true;
|
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
return $this->aggregateMap[$dqlAlias];
|
|
|
|
}
|
2007-06-01 14:17:50 +04:00
|
|
|
if ( ! empty($this->pendingAggregates)) {
|
|
|
|
$this->processPendingAggregates();
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
return $this->getAggregateAlias($dqlAlias);
|
|
|
|
}
|
|
|
|
throw new Doctrine_Query_Exception('Unknown aggregate alias ' . $dqlAlias);
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
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-04-13 22:03:44 +04:00
|
|
|
{
|
2007-05-16 23:20:55 +04:00
|
|
|
if ( ! isset($this->_parsers[$name])) {
|
|
|
|
$class = 'Doctrine_Query_' . ucwords(strtolower($name));
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
Doctrine::autoload($class);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
if ( ! class_exists($class)) {
|
|
|
|
throw new Doctrine_Query_Exception('Unknown parser ' . $name);
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$this->_parsers[$name] = new $class($this);
|
|
|
|
}
|
2007-07-31 23:33:58 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
return $this->_parsers[$name];
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-19 22:06:42 +04:00
|
|
|
/**
|
|
|
|
* parseQueryPart
|
2007-05-19 22:29:29 +04:00
|
|
|
* parses given DQL query part
|
2007-05-19 22:06:42 +04:00
|
|
|
*
|
|
|
|
* @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-06-19 14:43:19 +04:00
|
|
|
{
|
|
|
|
if ($this->_state === self::STATE_LOCKED) {
|
|
|
|
throw new Doctrine_Query_Exception('This query object is locked. No query parts can be manipulated.');
|
|
|
|
}
|
|
|
|
|
2007-06-19 02:30:15 +04:00
|
|
|
// sanity check
|
|
|
|
if ($queryPart === '' || $queryPart === null) {
|
2007-05-24 23:47:28 +04:00
|
|
|
throw new Doctrine_Query_Exception('Empty ' . $queryPartName . ' part given.');
|
2007-06-19 02:30:15 +04:00
|
|
|
}
|
2007-05-24 23:47:28 +04:00
|
|
|
|
2007-05-26 23:50:40 +04:00
|
|
|
// add query part to the dql part array
|
2007-06-19 02:30:15 +04:00
|
|
|
if ($append) {
|
|
|
|
$this->_dqlParts[$queryPartName][] = $queryPart;
|
|
|
|
} else {
|
2007-05-24 20:13:50 +04:00
|
|
|
$this->_dqlParts[$queryPartName] = array($queryPart);
|
2007-06-19 02:30:15 +04:00
|
|
|
}
|
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
if ($this->_state === self::STATE_DIRECT) {
|
|
|
|
$parser = $this->getParser($queryPartName);
|
|
|
|
|
|
|
|
$sql = $parser->parse($queryPart);
|
|
|
|
|
|
|
|
if (isset($sql)) {
|
|
|
|
if ($append) {
|
|
|
|
$this->addQueryPart($queryPartName, $sql);
|
|
|
|
} else {
|
|
|
|
$this->setQueryPart($queryPartName, $sql);
|
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
}
|
2007-06-19 14:43:19 +04:00
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-26 00:08:16 +04:00
|
|
|
$this->_state = Doctrine_Query::STATE_DIRTY;
|
|
|
|
|
2007-05-24 20:13:50 +04:00
|
|
|
return $this;
|
2007-05-19 22:06:42 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-07-09 00:18:50 +04:00
|
|
|
/**
|
|
|
|
* getDqlPart
|
|
|
|
* returns the given DQL query part
|
|
|
|
*
|
|
|
|
* @param string $queryPart the name of the query part
|
|
|
|
* @return string the DQL query part
|
|
|
|
*/
|
|
|
|
public function getDqlPart($queryPart)
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
if ( ! isset($this->_dqlParts[$queryPart])) {
|
|
|
|
throw new Doctrine_Query_Exception('Unknown query part ' . $queryPart);
|
|
|
|
}
|
2007-07-09 00:18:50 +04:00
|
|
|
|
|
|
|
return $this->_dqlParts[$queryPart];
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
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()
|
|
|
|
{
|
2007-06-19 02:30:15 +04:00
|
|
|
$q = '';
|
|
|
|
$q .= ( ! empty($this->_dqlParts['select']))? 'SELECT ' . implode(', ', $this->_dqlParts['select']) : '';
|
2007-05-24 20:13:50 +04:00
|
|
|
$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-09-24 22:44:37 +04:00
|
|
|
|
2007-05-19 22:29:29 +04:00
|
|
|
return $q;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
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'];
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
if (isset($this->_pendingFields[$componentAlias])) {
|
|
|
|
$fields = $this->_pendingFields[$componentAlias];
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
// check for wildcards
|
2007-04-14 20:28:09 +04:00
|
|
|
if (in_array('*', $fields)) {
|
2007-04-13 22:03:44 +04:00
|
|
|
$fields = $table->getColumnNames();
|
|
|
|
} else {
|
2007-09-13 01:42:42 +04:00
|
|
|
// only auto-add the primary key fields if this query object is not
|
2007-04-13 22:03:44 +04:00
|
|
|
// a subquery of another query object
|
|
|
|
if ( ! $this->isSubquery) {
|
2007-09-21 00:21:08 +04:00
|
|
|
$fields = array_unique(array_merge((array) $table->getIdentifier(), $fields));
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
}
|
2007-09-13 01:42:42 +04:00
|
|
|
$sql = array();
|
|
|
|
foreach ($fields as $name) {
|
|
|
|
$name = $table->getColumnName($name);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
$sql[] = $this->_conn->quoteIdentifier($tableAlias . '.' . $name)
|
|
|
|
. ' AS '
|
|
|
|
. $this->_conn->quoteIdentifier($tableAlias . '__' . $name);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_neededTables[] = $tableAlias;
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
return implode(', ', $sql);
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-09-13 01:42:42 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
/**
|
|
|
|
* parseSelectField
|
|
|
|
*
|
|
|
|
* @throws Doctrine_Query_Exception if unknown component alias has been given
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function parseSelectField($field)
|
|
|
|
{
|
|
|
|
$terms = explode('.', $field);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
|
|
|
if (isset($terms[1])) {
|
2007-09-13 01:42:42 +04:00
|
|
|
$componentAlias = $terms[0];
|
|
|
|
$field = $terms[1];
|
|
|
|
} else {
|
|
|
|
reset($this->_aliasMap);
|
|
|
|
$componentAlias = key($this->_aliasMap);
|
|
|
|
$fields = $terms[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
$tableAlias = $this->getTableAlias($componentAlias);
|
|
|
|
$table = $this->_aliasMap[$componentAlias]['table'];
|
|
|
|
|
|
|
|
|
|
|
|
// check for wildcards
|
|
|
|
if ($field === '*') {
|
|
|
|
$sql = array();
|
|
|
|
|
|
|
|
foreach ($table->getColumnNames() as $field) {
|
|
|
|
$sql[] = $this->parseSelectField($componentAlias . '.' . $field);
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode(', ', $sql);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$name = $table->getColumnName($field);
|
|
|
|
|
|
|
|
$this->_neededTables[] = $tableAlias;
|
|
|
|
|
|
|
|
return $this->_conn->quoteIdentifier($tableAlias . '.' . $name)
|
|
|
|
. ' AS '
|
|
|
|
. $this->_conn->quoteIdentifier($tableAlias . '__' . $name);
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
/**
|
|
|
|
* getExpressionOwner
|
|
|
|
* returns the component alias for owner of given expression
|
|
|
|
*
|
|
|
|
* @param string $expr expression from which to get to owner from
|
|
|
|
* @return string the component alias
|
|
|
|
*/
|
|
|
|
public function getExpressionOwner($expr)
|
|
|
|
{
|
2007-09-24 22:44:37 +04:00
|
|
|
if (strtoupper(substr(trim($expr, '( '), 0, 6)) !== 'SELECT') {
|
2007-09-13 01:42:42 +04:00
|
|
|
preg_match_all("/[a-z0-9_]+\.[a-z0-9_]+[\.[a-z0-9]+]*/i", $expr, $matches);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
$match = current($matches);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
if (isset($match[0])) {
|
|
|
|
$terms = explode('.', $match[0]);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
return $terms[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $this->getRootAlias();
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* parseSelect
|
|
|
|
* parses the query select part and
|
|
|
|
* adds selected fields to pendingFields array
|
|
|
|
*
|
|
|
|
* @param string $dql
|
|
|
|
*/
|
|
|
|
public function parseSelect($dql)
|
|
|
|
{
|
2007-09-13 01:42:42 +04:00
|
|
|
$refs = Doctrine_Tokenizer::sqlExplode($dql, ',');
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-09 00:17:17 +04:00
|
|
|
$pos = strpos(trim($refs[0]), ' ');
|
|
|
|
$first = substr($refs[0], 0, $pos);
|
2007-09-13 01:42:42 +04:00
|
|
|
|
|
|
|
// check for DISTINCT keyword
|
2007-06-09 00:17:17 +04:00
|
|
|
if ($first === 'DISTINCT') {
|
|
|
|
$this->parts['distinct'] = true;
|
2007-09-13 01:42:42 +04:00
|
|
|
|
2007-06-09 00:17:17 +04:00
|
|
|
$refs[0] = substr($refs[0], ++$pos);
|
|
|
|
}
|
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
$parsedComponents = array();
|
|
|
|
|
2007-04-14 20:28:09 +04:00
|
|
|
foreach ($refs as $reference) {
|
2007-06-01 14:17:50 +04:00
|
|
|
$reference = trim($reference);
|
2007-09-13 01:42:42 +04:00
|
|
|
|
|
|
|
if (empty($reference)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$terms = Doctrine_Tokenizer::sqlExplode($reference, ' ');
|
|
|
|
|
|
|
|
$pos = strpos($terms[0], '(');
|
|
|
|
|
|
|
|
if (count($terms) > 1 || $pos !== false) {
|
|
|
|
$expression = array_shift($terms);
|
|
|
|
$alias = array_pop($terms);
|
|
|
|
|
|
|
|
if ( ! $alias) {
|
|
|
|
$alias = substr($expression, 0, $pos);
|
2007-04-14 20:28:09 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
$componentAlias = $this->getExpressionOwner($expression);
|
|
|
|
$expression = $this->parseClause($expression);
|
|
|
|
|
|
|
|
$tableAlias = $this->getTableAlias($componentAlias);
|
|
|
|
|
|
|
|
$index = count($this->aggregateMap);
|
|
|
|
|
|
|
|
$sqlAlias = $this->_conn->quoteIdentifier($tableAlias . '__' . $index);
|
|
|
|
|
|
|
|
$this->parts['select'][] = $expression . ' AS ' . $sqlAlias;
|
|
|
|
|
|
|
|
$this->aggregateMap[$alias] = $sqlAlias;
|
|
|
|
$this->_expressionMap[$alias][0] = $expression;
|
|
|
|
|
|
|
|
$this->_aliasMap[$componentAlias]['agg'][$index] = $alias;
|
2007-06-09 00:17:17 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
$this->_neededTables[] = $tableAlias;
|
|
|
|
} else {
|
|
|
|
$e = explode('.', $terms[0]);
|
|
|
|
|
|
|
|
if (isset($e[1])) {
|
|
|
|
$componentAlias = $e[0];
|
|
|
|
$field = $e[1];
|
2007-04-13 22:03:44 +04:00
|
|
|
} else {
|
2007-09-13 01:42:42 +04:00
|
|
|
reset($this->_aliasMap);
|
|
|
|
$componentAlias = key($this->_aliasMap);
|
|
|
|
$field = $e[0];
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-04-14 20:28:09 +04:00
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
$this->_pendingFields[$componentAlias][] = $field;
|
2007-04-14 20:28:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-08-08 00:41:33 +04:00
|
|
|
/**
|
|
|
|
* parseClause
|
|
|
|
* parses given DQL clause
|
|
|
|
*
|
2007-08-09 21:25:07 +04:00
|
|
|
* this method handles five tasks:
|
|
|
|
*
|
2007-08-08 00:41:33 +04:00
|
|
|
* 1. Converts all DQL functions to their native SQL equivalents
|
|
|
|
* 2. Converts all component references to their table alias equivalents
|
2007-08-09 21:25:07 +04:00
|
|
|
* 3. Converts all column aliases to actual column names
|
|
|
|
* 4. Quotes all identifiers
|
|
|
|
* 5. Parses nested clauses and subqueries recursively
|
2007-08-08 00:41:33 +04:00
|
|
|
*
|
|
|
|
* @return string SQL string
|
|
|
|
*/
|
|
|
|
public function parseClause($clause)
|
|
|
|
{
|
2007-10-30 22:10:18 +03:00
|
|
|
$clause = trim($clause);
|
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
if (is_numeric($clause)) {
|
|
|
|
return $clause;
|
|
|
|
}
|
|
|
|
|
2007-08-08 00:41:33 +04:00
|
|
|
$terms = Doctrine_Tokenizer::clauseExplode($clause, array(' ', '+', '-', '*', '/'));
|
|
|
|
|
|
|
|
$str = '';
|
|
|
|
foreach ($terms as $term) {
|
|
|
|
$pos = strpos($term[0], '(');
|
2007-10-30 22:10:18 +03:00
|
|
|
|
2007-08-08 00:41:33 +04:00
|
|
|
if ($pos !== false) {
|
|
|
|
$name = substr($term[0], 0, $pos);
|
|
|
|
if ($name !== '') {
|
|
|
|
$argStr = substr($term[0], ($pos + 1), -1);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-08-08 00:41:33 +04:00
|
|
|
$args = array();
|
|
|
|
// parse args
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-08-08 00:41:33 +04:00
|
|
|
foreach (Doctrine_Tokenizer::sqlExplode($argStr, ',') as $expr) {
|
|
|
|
$args[] = $this->parseClause($expr);
|
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-08-08 00:41:33 +04:00
|
|
|
// convert DQL function to its RDBMS specific equivalent
|
|
|
|
try {
|
|
|
|
$expr = call_user_func_array(array($this->_conn->expression, $name), $args);
|
|
|
|
} catch(Doctrine_Expression_Exception $e) {
|
2007-09-13 01:42:42 +04:00
|
|
|
throw new Doctrine_Query_Exception('Unknown function ' . $expr . '.');
|
2007-08-08 00:41:33 +04:00
|
|
|
}
|
|
|
|
$term[0] = $expr;
|
|
|
|
} else {
|
2007-08-09 21:25:07 +04:00
|
|
|
$trimmed = trim(Doctrine_Tokenizer::bracketTrim($term[0]));
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-08-09 21:25:07 +04:00
|
|
|
// check for possible subqueries
|
|
|
|
if (substr($trimmed, 0, 4) == 'FROM' || substr($trimmed, 0, 6) == 'SELECT') {
|
|
|
|
// parse subquery
|
|
|
|
$trimmed = $this->createSubquery()->parseQuery($trimmed)->getQuery();
|
|
|
|
} else {
|
|
|
|
// parse normal clause
|
|
|
|
$trimmed = $this->parseClause($trimmed);
|
|
|
|
}
|
|
|
|
|
|
|
|
$term[0] = '(' . $trimmed . ')';
|
2007-08-08 00:41:33 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (substr($term[0], 0, 1) !== "'" && substr($term[0], -1) !== "'") {
|
2007-10-30 22:10:18 +03:00
|
|
|
|
2007-08-08 00:41:33 +04:00
|
|
|
if (strpos($term[0], '.') !== false) {
|
|
|
|
if ( ! is_numeric($term[0])) {
|
|
|
|
$e = explode('.', $term[0]);
|
|
|
|
|
|
|
|
$field = array_pop($e);
|
2007-08-09 21:25:07 +04:00
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
if ($this->getType() === Doctrine_Query::SELECT) {
|
|
|
|
$componentAlias = implode('.', $e);
|
|
|
|
|
|
|
|
if (empty($componentAlias)) {
|
|
|
|
$componentAlias = $this->getRootAlias();
|
|
|
|
}
|
|
|
|
|
2007-10-30 22:19:53 +03:00
|
|
|
$this->load($componentAlias);
|
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
// check the existence of the component alias
|
|
|
|
if ( ! isset($this->_aliasMap[$componentAlias])) {
|
|
|
|
throw new Doctrine_Query_Exception('Unknown component alias ' . $componentAlias);
|
|
|
|
}
|
2007-10-30 22:10:18 +03:00
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
$table = $this->_aliasMap[$componentAlias]['table'];
|
|
|
|
|
|
|
|
// get the actual field name from alias
|
|
|
|
$field = $table->getColumnName($field);
|
|
|
|
|
|
|
|
// check column existence
|
|
|
|
if ( ! $table->hasColumn($field)) {
|
|
|
|
throw new Doctrine_Query_Exception('Unknown column ' . $field);
|
|
|
|
}
|
|
|
|
|
|
|
|
$tableAlias = $this->getTableAlias($componentAlias);
|
2007-10-30 22:10:18 +03:00
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
// build sql expression
|
|
|
|
$term[0] = $this->_conn->quoteIdentifier($tableAlias)
|
|
|
|
. '.'
|
|
|
|
. $this->_conn->quoteIdentifier($field);
|
|
|
|
} else {
|
|
|
|
// build sql expression
|
|
|
|
$term[0] = $this->_conn->quoteIdentifier($field);
|
2007-08-08 00:41:33 +04:00
|
|
|
}
|
|
|
|
}
|
2007-10-30 22:10:18 +03:00
|
|
|
} else {
|
|
|
|
|
|
|
|
if ( ! empty($term[0]) &&
|
|
|
|
! in_array(strtoupper($term[0]), self::$_keywords) &&
|
|
|
|
! is_numeric($term[0])) {
|
|
|
|
|
|
|
|
$componentAlias = $this->getRootAlias();
|
|
|
|
|
|
|
|
$found = false;
|
|
|
|
|
|
|
|
if ($componentAlias !== false &&
|
|
|
|
$componentAlias !== null) {
|
|
|
|
$table = $this->_aliasMap[$componentAlias]['table'];
|
|
|
|
|
|
|
|
// check column existence
|
|
|
|
if ($table->hasColumn($term[0])) {
|
|
|
|
$found = true;
|
|
|
|
|
|
|
|
// get the actual field name from alias
|
|
|
|
$term[0] = $table->getColumnName($term[0]);
|
|
|
|
|
|
|
|
$tableAlias = $this->getTableAlias($componentAlias);
|
|
|
|
|
|
|
|
if ($this->getType() === Doctrine_Query::SELECT) {
|
|
|
|
// build sql expression
|
|
|
|
$term[0] = $this->_conn->quoteIdentifier($tableAlias)
|
|
|
|
. '.'
|
|
|
|
. $this->_conn->quoteIdentifier($term[0]);
|
|
|
|
} else {
|
|
|
|
// build sql expression
|
|
|
|
$term[0] = $this->_conn->quoteIdentifier($term[0]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$found = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! $found) {
|
|
|
|
$term[0] = $this->getAggregateAlias($term[0]);
|
|
|
|
}
|
|
|
|
}
|
2007-08-08 00:41:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$str .= $term[0] . $term[1];
|
|
|
|
}
|
|
|
|
return $str;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-26 23:50:40 +04:00
|
|
|
/**
|
|
|
|
* parseAggregateFunction
|
|
|
|
* parses an aggregate function and returns the parsed form
|
|
|
|
*
|
|
|
|
* @see Doctrine_Expression
|
2007-06-01 14:17:50 +04:00
|
|
|
* @param string $expr DQL aggregate function
|
2007-05-26 23:50:40 +04:00
|
|
|
* @throws Doctrine_Query_Exception if unknown aggregate function given
|
|
|
|
* @return array parsed form of given function
|
|
|
|
*/
|
2007-06-01 14:17:50 +04:00
|
|
|
public function parseAggregateFunction($expr, $nestedCall = false)
|
2007-04-13 22:03:44 +04:00
|
|
|
{
|
2007-06-01 14:17:50 +04:00
|
|
|
$e = Doctrine_Tokenizer::bracketExplode($expr, ' ');
|
2007-04-13 22:03:44 +04:00
|
|
|
$func = $e[0];
|
|
|
|
|
|
|
|
$pos = strpos($func, '(');
|
2007-06-01 14:17:50 +04:00
|
|
|
if ($pos === false) {
|
|
|
|
return $expr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the name of the function
|
|
|
|
$name = substr($func, 0, $pos);
|
|
|
|
$argStr = substr($func, ($pos + 1), -1);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$args = array();
|
|
|
|
// parse args
|
|
|
|
foreach (Doctrine_Tokenizer::bracketExplode($argStr, ',') as $expr) {
|
|
|
|
$args[] = $this->parseAggregateFunction($expr, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert DQL function to its RDBMS specific equivalent
|
2007-04-16 21:59:45 +04:00
|
|
|
try {
|
2007-06-01 14:17:50 +04:00
|
|
|
$expr = call_user_func_array(array($this->_conn->expression, $name), $args);
|
2007-04-16 21:59:45 +04:00
|
|
|
} catch(Doctrine_Expression_Exception $e) {
|
|
|
|
throw new Doctrine_Query_Exception('Unknown function ' . $func . '.');
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-06-01 14:17:50 +04:00
|
|
|
|
|
|
|
if ( ! $nestedCall) {
|
|
|
|
// try to find all component references
|
|
|
|
preg_match_all("/[a-z0-9_]+\.[a-z0-9_]+[\.[a-z0-9]+]*/i", $argStr, $m);
|
|
|
|
|
|
|
|
if (isset($e[1])) {
|
|
|
|
if (strtoupper($e[1]) === 'AS') {
|
|
|
|
if ( ! isset($e[2])) {
|
|
|
|
throw new Doctrine_Query_Exception('Missing aggregate function alias.');
|
|
|
|
}
|
|
|
|
$alias = $e[2];
|
|
|
|
} else {
|
|
|
|
$alias = $e[1];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$alias = substr($expr, 0, strpos($expr, '('));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->pendingAggregates[] = array($expr, $m[0], $alias);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $expr;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-26 23:50:40 +04:00
|
|
|
/**
|
|
|
|
* processPendingSubqueries
|
|
|
|
* processes pending subqueries
|
|
|
|
*
|
|
|
|
* subqueries can only be processed when the query is fully constructed
|
|
|
|
* since some subqueries may be correlated
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2007-07-09 00:18:50 +04:00
|
|
|
public function processPendingSubqueries()
|
2007-04-14 20:28:09 +04:00
|
|
|
{
|
2007-10-29 20:54:40 +03:00
|
|
|
foreach ($this->_pendingSubqueries as $value) {
|
2007-04-14 20:28:09 +04:00
|
|
|
list($dql, $alias) = $value;
|
|
|
|
|
2007-07-14 01:51:03 +04:00
|
|
|
$subquery = $this->createSubquery();
|
|
|
|
|
|
|
|
$sql = $subquery->parseQuery($dql, false)->getQuery();
|
2007-04-14 20:28:09 +04:00
|
|
|
|
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-07-07 00:55:15 +04:00
|
|
|
$this->parts['select'][] = '(' . $sql . ') AS ' . $this->_conn->quoteIdentifier($sqlAlias);
|
2007-05-19 21:49:16 +04:00
|
|
|
|
2007-04-14 20:28:09 +04:00
|
|
|
$this->aggregateMap[$alias] = $sqlAlias;
|
2007-05-26 23:50:40 +04:00
|
|
|
$this->_aliasMap[$componentAlias]['agg'][] = $alias;
|
2007-04-14 20:28:09 +04:00
|
|
|
}
|
2007-10-29 20:54:40 +03:00
|
|
|
$this->_pendingSubqueries = array();
|
2007-04-14 20:28:09 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-09-24 22:44:37 +04:00
|
|
|
/**
|
2007-05-26 23:50:40 +04:00
|
|
|
* processPendingAggregates
|
|
|
|
* processes pending aggregate values for given component alias
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2007-06-01 14:17:50 +04:00
|
|
|
public function processPendingAggregates()
|
2007-04-13 22:03:44 +04:00
|
|
|
{
|
2007-06-19 02:30:15 +04:00
|
|
|
// iterate trhough all aggregates
|
2007-06-01 14:17:50 +04:00
|
|
|
foreach ($this->pendingAggregates as $aggregate) {
|
|
|
|
list ($expression, $components, $alias) = $aggregate;
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$tableAliases = array();
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
// iterate through the component references within the aggregate function
|
|
|
|
if ( ! empty ($components)) {
|
|
|
|
foreach ($components as $component) {
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-07-09 16:36:21 +04:00
|
|
|
if (is_numeric($component)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$e = explode('.', $component);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$field = array_pop($e);
|
|
|
|
$componentAlias = implode('.', $e);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
// check the existence of the component alias
|
|
|
|
if ( ! isset($this->_aliasMap[$componentAlias])) {
|
|
|
|
throw new Doctrine_Query_Exception('Unknown component alias ' . $componentAlias);
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$table = $this->_aliasMap[$componentAlias]['table'];
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$field = $table->getColumnName($field);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
// check column existence
|
|
|
|
if ( ! $table->hasColumn($field)) {
|
|
|
|
throw new Doctrine_Query_Exception('Unknown column ' . $field);
|
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$tableAlias = $this->getTableAlias($componentAlias);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$tableAliases[$tableAlias] = true;
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
// build sql expression
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-07-07 00:55:15 +04:00
|
|
|
$identifier = $this->_conn->quoteIdentifier($tableAlias . '.' . $field);
|
|
|
|
$expression = str_replace($component, $identifier, $expression);
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
}
|
2007-06-01 14:17:50 +04:00
|
|
|
|
|
|
|
if (count($tableAliases) !== 1) {
|
|
|
|
$componentAlias = reset($this->tableAliases);
|
|
|
|
$tableAlias = key($this->tableAliases);
|
|
|
|
}
|
|
|
|
|
2007-05-26 23:50:40 +04:00
|
|
|
$index = count($this->aggregateMap);
|
2007-07-07 00:55:15 +04:00
|
|
|
$sqlAlias = $this->_conn->quoteIdentifier($tableAlias . '__' . $index);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
$this->parts['select'][] = $expression . ' AS ' . $sqlAlias;
|
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
$this->aggregateMap[$alias] = $sqlAlias;
|
2007-06-27 22:42:47 +04:00
|
|
|
$this->_expressionMap[$alias][0] = $expression;
|
2007-06-01 14:17:50 +04:00
|
|
|
|
2007-05-26 23:50:40 +04:00
|
|
|
$this->_aliasMap[$componentAlias]['agg'][$index] = $alias;
|
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
$this->_neededTables[] = $tableAlias;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-06-01 14:17:50 +04:00
|
|
|
// reset the state
|
|
|
|
$this->pendingAggregates = array();
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
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-04-13 22:03:44 +04:00
|
|
|
*
|
2007-05-16 23:20:55 +04:00
|
|
|
* @return string the base of the generated sql query
|
2007-04-13 22:03:44 +04:00
|
|
|
*/
|
2007-05-16 23:20:55 +04:00
|
|
|
public function getQueryBase()
|
2007-04-13 22:03:44 +04:00
|
|
|
{
|
2007-05-16 23:20:55 +04:00
|
|
|
switch ($this->type) {
|
|
|
|
case self::DELETE:
|
|
|
|
$q = 'DELETE FROM ';
|
2007-04-13 22:03:44 +04:00
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case self::UPDATE:
|
|
|
|
$q = 'UPDATE ';
|
2007-04-13 22:03:44 +04:00
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case self::SELECT:
|
2007-05-22 19:57:17 +04:00
|
|
|
$distinct = ($this->parts['distinct']) ? 'DISTINCT ' : '';
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$q = 'SELECT ' . $distinct . implode(', ', $this->parts['select']) . ' FROM ';
|
|
|
|
break;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-05-16 23:20:55 +04:00
|
|
|
return $q;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
2007-05-16 23:20:55 +04:00
|
|
|
* buildFromPart
|
2007-05-26 23:50:40 +04:00
|
|
|
* builds the from part of the query and returns it
|
2007-04-13 22:03:44 +04:00
|
|
|
*
|
2007-05-26 23:50:40 +04:00
|
|
|
* @return string the query sql from part
|
2007-04-13 22:03:44 +04:00
|
|
|
*/
|
2007-05-16 23:20:55 +04:00
|
|
|
public function buildFromPart()
|
2007-04-13 22:03:44 +04:00
|
|
|
{
|
2007-06-19 02:30:15 +04:00
|
|
|
$q = '';
|
2007-05-16 23:20:55 +04:00
|
|
|
foreach ($this->parts['from'] as $k => $part) {
|
|
|
|
if ($k === 0) {
|
|
|
|
$q .= $part;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// preserve LEFT JOINs only if needed
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
if (substr($part, 0, 9) === 'LEFT JOIN') {
|
|
|
|
$e = explode(' ', $part);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$aliases = array_merge($this->subqueryAliases,
|
2007-09-13 01:42:42 +04:00
|
|
|
array_keys($this->_neededTables));
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
if ( ! in_array($e[3], $aliases) &&
|
2007-05-16 23:20:55 +04:00
|
|
|
! in_array($e[2], $aliases) &&
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
! empty($this->_pendingFields)) {
|
2007-05-16 23:20:55 +04:00
|
|
|
continue;
|
2007-04-20 14:11:49 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-11 23:27:16 +04:00
|
|
|
if (isset($this->_pendingJoinConditions[$k])) {
|
2007-05-16 23:20:55 +04:00
|
|
|
$parser = new Doctrine_Query_JoinCondition($this);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
if (strpos($part, ' ON ') !== false) {
|
|
|
|
$part .= ' AND ';
|
|
|
|
} else {
|
|
|
|
$part .= ' ON ';
|
|
|
|
}
|
|
|
|
$part .= $parser->parse($this->_pendingJoinConditions[$k]);
|
2007-06-11 23:27:16 +04:00
|
|
|
|
|
|
|
unset($this->_pendingJoinConditions[$k]);
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$q .= ' ' . $part;
|
2007-06-19 02:30:15 +04:00
|
|
|
|
2007-06-11 23:27:16 +04:00
|
|
|
$this->parts['from'][$k] = $part;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
return $q;
|
2007-06-19 14:43:19 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
/**
|
|
|
|
* preQuery
|
|
|
|
*
|
|
|
|
* Empty template method to provide Query subclasses with the possibility
|
|
|
|
* to hook into the query building procedure, doing any custom / specialized
|
|
|
|
* query building procedures that are neccessary.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function preQuery()
|
|
|
|
{
|
|
|
|
|
2007-06-19 22:53:46 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-06-19 22:53:46 +04:00
|
|
|
/**
|
|
|
|
* postQuery
|
|
|
|
*
|
|
|
|
* Empty template method to provide Query subclasses with the possibility
|
|
|
|
* to hook into the query building procedure, doing any custom / specialized
|
|
|
|
* post query procedures (for example logging) that are neccessary.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function postQuery()
|
|
|
|
{
|
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
/**
|
|
|
|
* processQueryPart
|
|
|
|
* parses given query part
|
|
|
|
*
|
|
|
|
* @param string $queryPartName the name of the query part
|
|
|
|
* @param array $queryParts an array containing the query part data
|
|
|
|
* @return Doctrine_Query this object
|
|
|
|
*/
|
|
|
|
public function processQueryPart($queryPartName, $queryParts)
|
|
|
|
{
|
|
|
|
$this->removeQueryPart($queryPartName);
|
|
|
|
|
|
|
|
if (is_array($queryParts) && ! empty($queryParts)) {
|
|
|
|
|
|
|
|
foreach ($queryParts as $queryPart) {
|
|
|
|
$parser = $this->getParser($queryPartName);
|
|
|
|
|
|
|
|
$sql = $parser->parse($queryPart);
|
|
|
|
|
|
|
|
if (isset($sql)) {
|
|
|
|
if ($queryPartName == 'limit' ||
|
|
|
|
$queryPartName == 'offset') {
|
|
|
|
|
|
|
|
$this->setQueryPart($queryPartName, $sql);
|
|
|
|
} else {
|
|
|
|
$this->addQueryPart($queryPartName, $sql);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* 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-06-28 02:29:57 +04:00
|
|
|
if ($this->_state !== self::STATE_DIRTY) {
|
|
|
|
return $this->_sql;
|
|
|
|
}
|
2007-06-26 00:08:16 +04:00
|
|
|
|
2007-06-28 02:29:57 +04:00
|
|
|
$parts = $this->_dqlParts;
|
2007-06-19 02:30:15 +04:00
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
// reset the state
|
2007-07-14 01:51:03 +04:00
|
|
|
if ( ! $this->isSubquery()) {
|
|
|
|
$this->_aliasMap = array();
|
|
|
|
$this->pendingAggregates = array();
|
|
|
|
$this->aggregateMap = array();
|
|
|
|
}
|
2007-06-19 14:43:19 +04:00
|
|
|
$this->reset();
|
2007-05-27 22:52:33 +04:00
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
// parse the DQL parts
|
2007-06-19 02:30:15 +04:00
|
|
|
foreach ($this->_dqlParts as $queryPartName => $queryParts) {
|
2007-09-13 01:42:42 +04:00
|
|
|
$this->processQueryPart($queryPartName, $queryParts);
|
2007-05-24 20:13:50 +04:00
|
|
|
}
|
2007-06-26 00:08:16 +04:00
|
|
|
$params = $this->convertEnums($params);
|
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
$this->_state = self::STATE_DIRECT;
|
|
|
|
|
|
|
|
// invoke the preQuery hook
|
|
|
|
$this->preQuery();
|
|
|
|
$this->_state = self::STATE_CLEAN;
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-19 14:43:19 +04:00
|
|
|
$this->_dqlParts = $parts;
|
2007-06-19 02:30:15 +04:00
|
|
|
|
2007-06-01 14:17:50 +04:00
|
|
|
if (empty($this->parts['from'])) {
|
2007-04-13 22:03:44 +04:00
|
|
|
return false;
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +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-04-13 22:03:44 +04:00
|
|
|
|
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;
|
2007-04-13 22:03:44 +04:00
|
|
|
$needsSubQuery = true;
|
|
|
|
}
|
|
|
|
|
2007-09-13 01:42:42 +04:00
|
|
|
$sql = array();
|
|
|
|
foreach ($this->_aliasMap as $alias => $map) {
|
|
|
|
$fieldSql = $this->processPendingFields($alias);
|
|
|
|
if ( ! empty($fieldSql)) {
|
|
|
|
$sql[] = $fieldSql;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( ! empty($sql)) {
|
|
|
|
array_unshift($this->parts['select'], implode(', ', $sql));
|
|
|
|
}
|
2007-09-13 02:03:25 +04:00
|
|
|
|
2007-10-29 20:54:40 +03:00
|
|
|
$this->_pendingFields = array();
|
2007-04-14 20:28:09 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
// build the basic query
|
2007-05-16 23:20:55 +04:00
|
|
|
$q = $this->getQueryBase();
|
|
|
|
$q .= $this->buildFromPart();
|
|
|
|
|
|
|
|
if ( ! empty($this->parts['set'])) {
|
2007-04-13 22:03:44 +04:00
|
|
|
$q .= ' SET ' . implode(', ', $this->parts['set']);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-17 21:01:35 +04:00
|
|
|
$string = $this->applyInheritance();
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-17 21:01:35 +04:00
|
|
|
// apply inheritance to WHERE part
|
2007-05-16 23:20:55 +04:00
|
|
|
if ( ! empty($string)) {
|
2007-09-13 02:03:25 +04:00
|
|
|
if (substr($string, 0, 1) === '(' && substr($string, -1) === ')') {
|
2007-09-24 22:44:37 +04:00
|
|
|
$this->parts['where'][] = $string;
|
2007-09-13 02:03:25 +04:00
|
|
|
} else {
|
|
|
|
$this->parts['where'][] = '(' . $string . ')';
|
|
|
|
}
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
$modifyLimit = true;
|
2007-06-19 02:30:15 +04:00
|
|
|
if ( ! empty($this->parts['limit']) || ! empty($this->parts['offset'])) {
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
if ($needsSubQuery) {
|
2007-04-13 22:03:44 +04:00
|
|
|
$subquery = $this->getLimitSubquery();
|
|
|
|
|
|
|
|
|
2007-05-24 21:46:32 +04:00
|
|
|
switch (strtolower($this->_conn->getName())) {
|
2007-04-13 22:03:44 +04:00
|
|
|
case 'mysql':
|
|
|
|
// mysql doesn't support LIMIT in subqueries
|
2007-06-17 21:01:35 +04:00
|
|
|
$list = $this->_conn->execute($subquery, $params)->fetchAll(Doctrine::FETCH_COLUMN);
|
2007-07-09 15:23:44 +04:00
|
|
|
$subquery = implode(', ', array_map(array($this->_conn, 'quote'), $list));
|
2007-05-16 23:20:55 +04:00
|
|
|
break;
|
2007-04-13 22:03:44 +04:00
|
|
|
case 'pgsql':
|
|
|
|
// pgsql needs special nested LIMIT subquery
|
2007-07-09 15:23:44 +04:00
|
|
|
$subquery = 'SELECT doctrine_subquery_alias.' . $table->getIdentifier(). ' FROM (' . $subquery . ') AS doctrine_subquery_alias';
|
2007-05-16 23:20:55 +04:00
|
|
|
break;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
|
2007-05-24 22:00:35 +04:00
|
|
|
$field = $this->getTableAlias($rootAlias) . '.' . $table->getIdentifier();
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
// only append the subquery if it actually contains something
|
2007-07-09 15:23:44 +04:00
|
|
|
if ($subquery !== '') {
|
|
|
|
array_unshift($this->parts['where'], $this->_conn->quoteIdentifier($field) . ' IN (' . $subquery . ')');
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +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-04-13 22:03:44 +04:00
|
|
|
|
2007-09-24 22:44:37 +04:00
|
|
|
if ($modifyLimit) {
|
2007-06-25 01:04:54 +04:00
|
|
|
|
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
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
// return to the previous state
|
2007-05-16 23:20:55 +04:00
|
|
|
if ( ! empty($string)) {
|
2007-04-13 22:03:44 +04:00
|
|
|
array_pop($this->parts['where']);
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
|
|
|
if ($needsSubQuery) {
|
2007-04-13 22:03:44 +04:00
|
|
|
array_shift($this->parts['where']);
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-06-26 00:08:16 +04:00
|
|
|
$this->_sql = $q;
|
2007-05-24 20:13:50 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
return $q;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
2007-05-16 23:20:55 +04:00
|
|
|
* getLimitSubquery
|
2007-04-13 22:03:44 +04:00
|
|
|
* 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);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
// get short alias
|
2007-05-24 22:00:35 +04:00
|
|
|
$alias = $this->getTableAlias($componentAlias);
|
2007-04-13 22:03:44 +04:00
|
|
|
$primaryKey = $alias . '.' . $table->getIdentifier();
|
|
|
|
|
|
|
|
// initialize the base of the subquery
|
2007-07-07 00:55:15 +04:00
|
|
|
$subquery = 'SELECT DISTINCT ' . $this->_conn->quoteIdentifier($primaryKey);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-27 21:41:02 +04:00
|
|
|
$driverName = $this->_conn->getAttribute(Doctrine::ATTR_DRIVER_NAME);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
|
2007-06-28 02:40:17 +04:00
|
|
|
// pgsql needs the order by fields to be preserved in select clause
|
|
|
|
if ($driverName == 'pgsql') {
|
|
|
|
foreach ($this->parts['orderby'] as $part) {
|
|
|
|
$part = trim($part);
|
|
|
|
$e = Doctrine_Tokenizer::bracketExplode($part, ' ');
|
|
|
|
$part = trim($e[0]);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-28 02:40:17 +04:00
|
|
|
if (strpos($part, '.') === false) {
|
|
|
|
continue;
|
2007-06-27 21:41:02 +04:00
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-28 02:40:17 +04:00
|
|
|
// don't add functions
|
|
|
|
if (strpos($part, '(') !== false) {
|
|
|
|
continue;
|
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-28 02:40:17 +04:00
|
|
|
// don't add primarykey column (its already in the select clause)
|
|
|
|
if ($part !== $primaryKey) {
|
2007-06-27 21:41:02 +04:00
|
|
|
$subquery .= ', ' . $part;
|
2007-04-26 21:42:03 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
}
|
2007-06-28 02:40:17 +04:00
|
|
|
|
2007-06-27 22:42:47 +04:00
|
|
|
if ($driverName == 'mysql' || $driverName == 'pgsql') {
|
|
|
|
foreach ($this->_expressionMap as $dqlAlias => $expr) {
|
|
|
|
if (isset($expr[1])) {
|
|
|
|
$subquery .= ', ' . $expr[0] . ' AS ' . $this->aggregateMap[$dqlAlias];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-27 21:41:02 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$subquery .= ' FROM';
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-31 22:30:47 +04:00
|
|
|
|
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-09-24 22:44:37 +04:00
|
|
|
|
2007-05-31 22:30:47 +04:00
|
|
|
if (empty($this->parts['orderby']) && empty($this->parts['where'])) {
|
2007-06-01 14:17:50 +04:00
|
|
|
continue;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
}
|
2007-05-16 23:20:55 +04:00
|
|
|
|
|
|
|
$subquery .= ' ' . $part;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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']) : '';
|
2007-06-18 00:22:39 +04:00
|
|
|
|
|
|
|
$subquery .= ( ! empty($this->parts['orderby']))? ' ORDER BY ' . implode(', ', $this->parts['orderby']) : '';
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
// 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-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$parts = Doctrine_Tokenizer::quoteExplode($subquery, ' ', "'", "'");
|
2007-07-07 00:55:15 +04:00
|
|
|
|
2007-06-27 21:41:02 +04:00
|
|
|
foreach ($parts as $k => $part) {
|
2007-07-07 00:55:15 +04:00
|
|
|
if (strpos($part, ' ') !== false) {
|
2007-04-13 22:03:44 +04:00
|
|
|
continue;
|
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-07-07 00:55:15 +04:00
|
|
|
$part = trim($part, "\"'`");
|
2007-06-28 02:40:17 +04:00
|
|
|
|
2007-06-27 21:41:02 +04:00
|
|
|
if ($this->hasTableAlias($part)) {
|
2007-07-07 00:55:15 +04:00
|
|
|
$parts[$k] = $this->_conn->quoteIdentifier($this->generateNewTableAlias($part));
|
2007-06-28 02:29:57 +04:00
|
|
|
continue;
|
|
|
|
}
|
2007-06-28 02:40:17 +04:00
|
|
|
|
|
|
|
if (strpos($part, '.') === false) {
|
2007-06-28 02:29:57 +04:00
|
|
|
continue;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-06-28 02:29:57 +04:00
|
|
|
preg_match_all("/[a-zA-Z0-9_]+\.[a-z0-9_]+/i", $part, $m);
|
|
|
|
|
|
|
|
foreach ($m[0] as $match) {
|
|
|
|
$e = explode('.', $match);
|
|
|
|
$e[0] = $this->generateNewTableAlias($e[0]);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-06-28 02:29:57 +04:00
|
|
|
$parts[$k] = str_replace($match, implode('.', $e), $parts[$k]);
|
|
|
|
}
|
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-28 02:29:57 +04:00
|
|
|
if ($driverName == 'mysql' || $driverName == 'pgsql') {
|
|
|
|
foreach ($parts as $k => $part) {
|
|
|
|
if (strpos($part, "'") !== false) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (strpos($part, '__') == false) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
preg_match_all("/[a-zA-Z0-9_]+\_\_[a-z0-9_]+/i", $part, $m);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-28 02:29:57 +04:00
|
|
|
foreach ($m[0] as $match) {
|
|
|
|
$e = explode('__', $match);
|
|
|
|
$e[0] = $this->generateNewTableAlias($e[0]);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-06-28 02:29:57 +04:00
|
|
|
$parts[$k] = str_replace($match, implode('__', $e), $parts[$k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
$subquery = implode(' ', $parts);
|
|
|
|
return $subquery;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
2007-05-16 23:20:55 +04:00
|
|
|
* tokenizeQuery
|
2007-04-13 22:03:44 +04:00
|
|
|
* 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-04-13 22:03:44 +04:00
|
|
|
{
|
2007-05-16 23:20:55 +04:00
|
|
|
$e = Doctrine_Tokenizer::sqlExplode($query, ' ');
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-08-11 22:22:13 +04:00
|
|
|
foreach ($e as $k=>$part) {
|
2007-04-13 22:03:44 +04:00
|
|
|
$part = trim($part);
|
2007-08-11 22:22:13 +04:00
|
|
|
switch (strtolower($part)) {
|
2007-04-13 22:03:44 +04:00
|
|
|
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);
|
2007-08-11 22:22:13 +04:00
|
|
|
if (isset($e[$i]) && strtolower($e[$i]) === 'by') {
|
2007-04-13 22:03:44 +04:00
|
|
|
$p = $part;
|
|
|
|
$parts[$part] = array();
|
2007-08-11 22:22:13 +04:00
|
|
|
} else {
|
2007-04-13 22:03:44 +04:00
|
|
|
$parts[$p][] = $part;
|
2007-08-11 22:22:13 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
break;
|
2007-08-11 22:22:13 +04:00
|
|
|
case 'by':
|
2007-04-13 22:03:44 +04:00
|
|
|
continue;
|
|
|
|
default:
|
2007-09-21 00:21:08 +04:00
|
|
|
if ( ! isset($p)) {
|
2007-04-13 22:03:44 +04:00
|
|
|
throw new Doctrine_Query_Exception("Couldn't parse query.");
|
2007-09-21 00:21:08 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
$parts[$p][] = $part;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $parts;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
/**
|
|
|
|
* 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) {
|
2007-04-13 22:03:44 +04:00
|
|
|
$this->clear();
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-04-13 22:03:44 +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);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
foreach($parts as $k => $part) {
|
|
|
|
$part = implode(' ', $part);
|
2007-05-24 23:47:28 +04:00
|
|
|
$k = strtolower($k);
|
|
|
|
switch ($k) {
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'create':
|
2007-04-13 22:03:44 +04:00
|
|
|
$this->type = self::CREATE;
|
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'insert':
|
2007-04-13 22:03:44 +04:00
|
|
|
$this->type = self::INSERT;
|
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'delete':
|
2007-04-13 22:03:44 +04:00
|
|
|
$this->type = self::DELETE;
|
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'select':
|
2007-04-13 22:03:44 +04:00
|
|
|
$this->type = self::SELECT;
|
2007-05-24 23:47:28 +04:00
|
|
|
$this->parseQueryPart($k, $part);
|
2007-04-13 22:03:44 +04:00
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'update':
|
2007-04-13 22:03:44 +04:00
|
|
|
$this->type = self::UPDATE;
|
2007-06-19 02:30:15 +04:00
|
|
|
$k = 'from';
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'from':
|
2007-05-24 23:47:28 +04:00
|
|
|
$this->parseQueryPart($k, $part);
|
2007-04-13 22:03:44 +04:00
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'set':
|
2007-05-24 23:47:28 +04:00
|
|
|
$this->parseQueryPart($k, $part, true);
|
2007-04-13 22:03:44 +04:00
|
|
|
break;
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'group':
|
|
|
|
case 'order':
|
2007-04-13 22:03:44 +04:00
|
|
|
$k .= 'by';
|
2007-05-16 23:20:55 +04:00
|
|
|
case 'where':
|
|
|
|
case 'having':
|
|
|
|
case 'limit':
|
|
|
|
case 'offset':
|
2007-05-24 23:47:28 +04:00
|
|
|
$this->parseQueryPart($k, $part);
|
2007-04-13 22:03:44 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2007-07-31 23:33:58 +04:00
|
|
|
|
2007-10-30 22:19:53 +03:00
|
|
|
public function load($path, $loadFields = true)
|
2007-04-13 22:03:44 +04:00
|
|
|
{
|
2007-10-30 22:19:53 +03:00
|
|
|
if (isset($this->_aliasMap[$path])) {
|
|
|
|
return $this->_aliasMap[$path];
|
|
|
|
}
|
2007-09-03 18:57:18 +04:00
|
|
|
$e = Doctrine_Tokenizer::quoteExplode($path, ' INDEXBY ');
|
2007-09-02 02:22:54 +04:00
|
|
|
|
|
|
|
$mapWith = null;
|
|
|
|
if (count($e) > 1) {
|
|
|
|
$mapWith = trim($e[1]);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-09-02 02:22:54 +04:00
|
|
|
$path = $e[0];
|
|
|
|
}
|
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
// parse custom join conditions
|
|
|
|
$e = explode(' ON ', $path);
|
2007-07-31 23:33:58 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
$joinCondition = '';
|
2007-05-16 23:20:55 +04:00
|
|
|
|
|
|
|
if (count($e) > 1) {
|
2007-06-11 23:27:16 +04:00
|
|
|
$joinCondition = $e[1];
|
2007-07-31 23:33:58 +04:00
|
|
|
$overrideJoin = true;
|
2007-04-13 22:03:44 +04:00
|
|
|
$path = $e[0];
|
2007-07-31 23:33:58 +04:00
|
|
|
} else {
|
|
|
|
$e = explode(' WITH ', $path);
|
|
|
|
|
|
|
|
if (count($e) > 1) {
|
|
|
|
$joinCondition = $e[1];
|
|
|
|
$path = $e[0];
|
|
|
|
}
|
|
|
|
$overrideJoin = false;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
|
2007-07-05 21:25:53 +04:00
|
|
|
$tmp = explode(' ', $path);
|
|
|
|
$componentAlias = $originalAlias = (count($tmp) > 1) ? end($tmp) : null;
|
2007-04-13 22:03:44 +04:00
|
|
|
|
|
|
|
$e = preg_split("/[.:]/", $tmp[0], -1);
|
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$fullPath = $tmp[0];
|
|
|
|
$prevPath = '';
|
|
|
|
$fullLength = strlen($fullPath);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
if (isset($this->_aliasMap[$e[0]])) {
|
|
|
|
$table = $this->_aliasMap[$e[0]]['table'];
|
2007-07-05 21:25:53 +04:00
|
|
|
$componentAlias = $e[0];
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$prevPath = $parent = array_shift($e);
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
foreach ($e as $key => $name) {
|
|
|
|
// get length of the previous path
|
|
|
|
$length = strlen($prevPath);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
// build the current component path
|
|
|
|
$prevPath = ($prevPath) ? $prevPath . '.' . $name : $name;
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$delimeter = substr($fullPath, $length, 1);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
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-09-24 22:44:37 +04:00
|
|
|
|
2007-05-24 18:19:44 +04:00
|
|
|
// if the current alias already exists, skip it
|
|
|
|
if (isset($this->_aliasMap[$componentAlias])) {
|
|
|
|
continue;
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
if ( ! isset($table)) {
|
|
|
|
// process the root of the path
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$table = $this->loadRoot($name, $componentAlias);
|
|
|
|
} else {
|
|
|
|
$join = ($delimeter == ':') ? 'INNER JOIN ' : 'LEFT JOIN ';
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$relation = $table->getRelation($name);
|
2007-08-09 21:31:31 +04:00
|
|
|
$localTable = $table;
|
|
|
|
|
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,
|
2007-09-02 02:22:54 +04:00
|
|
|
'relation' => $relation,
|
|
|
|
'map' => null);
|
2007-05-16 23:20:55 +04:00
|
|
|
if ( ! $relation->isOneToOne()) {
|
|
|
|
$this->needsSubquery = true;
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-24 22:00:35 +04:00
|
|
|
$localAlias = $this->getTableAlias($parent, $table->getTableName());
|
|
|
|
$foreignAlias = $this->getTableAlias($componentAlias, $relation->getTable()->getTableName());
|
2007-09-24 22:44:37 +04:00
|
|
|
$localSql = $this->_conn->quoteIdentifier($table->getTableName())
|
|
|
|
. ' '
|
2007-07-07 00:55:15 +04:00
|
|
|
. $this->_conn->quoteIdentifier($localAlias);
|
|
|
|
|
2007-09-24 22:44:37 +04:00
|
|
|
$foreignSql = $this->_conn->quoteIdentifier($relation->getTable()->getTableName())
|
|
|
|
. ' '
|
2007-07-07 00:55:15 +04:00
|
|
|
. $this->_conn->quoteIdentifier($foreignAlias);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$map = $relation->getTable()->inheritanceMap;
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
if ( ! $loadFields || ! empty($map) || $joinCondition) {
|
|
|
|
$this->subqueryAliases[] = $foreignAlias;
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
if ($relation instanceof Doctrine_Relation_Association) {
|
2007-08-09 21:25:07 +04:00
|
|
|
$asf = $relation->getAssociationTable();
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$assocTableName = $asf->getTableName();
|
2007-09-13 02:03:25 +04:00
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
if ( ! $loadFields || ! empty($map) || $joinCondition) {
|
2007-05-16 23:20:55 +04:00
|
|
|
$this->subqueryAliases[] = $assocTableName;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$assocPath = $prevPath . '.' . $asf->getComponentName();
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-09-13 02:03:25 +04:00
|
|
|
$this->_aliasMap[$assocPath] = array('parent' => $prevPath, 'relation' => $relation, 'table' => $asf);
|
|
|
|
|
2007-05-24 22:00:35 +04:00
|
|
|
$assocAlias = $this->getTableAlias($assocPath, $asf->getTableName());
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
$queryPart = $join . $assocTableName . ' ' . $assocAlias;
|
|
|
|
|
|
|
|
$queryPart .= ' ON ' . $localAlias
|
|
|
|
. '.'
|
2007-08-09 21:31:31 +04:00
|
|
|
. $localTable->getIdentifier()
|
2007-07-31 23:33:58 +04:00
|
|
|
. ' = '
|
|
|
|
. $assocAlias . '.' . $relation->getLocal();
|
2007-06-11 23:27:16 +04:00
|
|
|
|
|
|
|
if ($relation->isEqual()) {
|
2007-07-31 23:33:58 +04:00
|
|
|
// equal nest relation needs additional condition
|
|
|
|
$queryPart .= ' OR ' . $localAlias
|
|
|
|
. '.'
|
2007-08-09 21:25:07 +04:00
|
|
|
. $table->getColumnName($table->getIdentifier())
|
2007-07-31 23:33:58 +04:00
|
|
|
. ' = '
|
2007-06-11 23:27:16 +04:00
|
|
|
. $assocAlias . '.' . $relation->getForeign();
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$this->parts['from'][] = $queryPart;
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
$queryPart = $join . $foreignSql;
|
2007-06-11 23:27:16 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
if ( ! $overrideJoin) {
|
|
|
|
$queryPart .= ' ON ';
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
if ($relation->isEqual()) {
|
|
|
|
$queryPart .= '(';
|
2007-09-24 22:44:37 +04:00
|
|
|
}
|
2007-07-31 23:33:58 +04:00
|
|
|
|
|
|
|
$queryPart .= $this->_conn->quoteIdentifier($foreignAlias . '.' . $relation->getTable()->getIdentifier())
|
|
|
|
. ' = '
|
|
|
|
. $this->_conn->quoteIdentifier($assocAlias . '.' . $relation->getForeign());
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
if ($relation->isEqual()) {
|
|
|
|
$queryPart .= ' OR '
|
2007-08-09 21:25:07 +04:00
|
|
|
. $this->_conn->quoteIdentifier($foreignAlias . '.' . $table->getColumnName($table->getIdentifier()))
|
2007-07-31 23:33:58 +04:00
|
|
|
. ' = '
|
|
|
|
. $this->_conn->quoteIdentifier($assocAlias . '.' . $relation->getLocal())
|
|
|
|
. ') AND '
|
|
|
|
. $this->_conn->quoteIdentifier($foreignAlias . '.' . $table->getIdentifier())
|
|
|
|
. ' != '
|
|
|
|
. $this->_conn->quoteIdentifier($localAlias . '.' . $table->getIdentifier());
|
|
|
|
}
|
|
|
|
}
|
2007-05-16 23:20:55 +04:00
|
|
|
} else {
|
2007-07-14 01:51:03 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
$queryPart = $join . $foreignSql;
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-07-31 23:33:58 +04:00
|
|
|
if ( ! $overrideJoin) {
|
|
|
|
$queryPart .= ' ON '
|
|
|
|
. $this->_conn->quoteIdentifier($localAlias . '.' . $relation->getLocal())
|
|
|
|
. ' = '
|
|
|
|
. $this->_conn->quoteIdentifier($foreignAlias . '.' . $relation->getForeign());
|
|
|
|
}
|
2007-07-07 00:55:15 +04:00
|
|
|
|
2007-06-11 23:27:16 +04:00
|
|
|
}
|
|
|
|
$this->parts['from'][$componentAlias] = $queryPart;
|
|
|
|
if ( ! empty($joinCondition)) {
|
|
|
|
$this->_pendingJoinConditions[$componentAlias] = $joinCondition;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
|
|
|
if ($loadFields) {
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$restoreState = false;
|
|
|
|
// load fields if necessary
|
2007-09-13 01:42:42 +04:00
|
|
|
if ($loadFields && empty($this->_dqlParts['select'])) {
|
2007-10-29 20:54:40 +03:00
|
|
|
$this->_pendingFields[$componentAlias] = array('*');
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-05-16 23:20:55 +04:00
|
|
|
$parent = $prevPath;
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
2007-10-06 01:18:40 +04:00
|
|
|
|
|
|
|
$table = $this->_aliasMap[$componentAlias]['table'];
|
|
|
|
|
|
|
|
$indexBy = null;
|
|
|
|
|
2007-09-02 02:22:54 +04:00
|
|
|
if (isset($mapWith)) {
|
|
|
|
$e = explode('.', $mapWith);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-10-06 01:18:40 +04:00
|
|
|
if (isset($e[1])) {
|
|
|
|
$indexBy = $e[1];
|
2007-09-02 02:22:54 +04:00
|
|
|
}
|
2007-10-06 01:18:40 +04:00
|
|
|
} elseif ($table->getBoundQueryPart('indexBy') !== null) {
|
|
|
|
$indexBy = $table->getBoundQueryPart('indexBy');
|
|
|
|
}
|
2007-07-05 21:25:53 +04:00
|
|
|
|
2007-10-06 01:18:40 +04:00
|
|
|
if ($indexBy !== null) {
|
|
|
|
if ( ! $table->hasColumn($indexBy)) {
|
|
|
|
throw new Doctrine_Query_Exception("Couldn't use key mapping. Column " . $indexBy . " does not exist.");
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_aliasMap[$componentAlias]['map'] = $table->getColumnName($indexBy);
|
2007-09-02 02:22:54 +04:00
|
|
|
}
|
2007-07-05 21:25:53 +04:00
|
|
|
return $this->_aliasMap[$componentAlias];
|
2007-07-09 15:23:44 +04:00
|
|
|
}
|
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
/**
|
|
|
|
* loadRoot
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param string $componentAlias
|
|
|
|
*/
|
|
|
|
public function loadRoot($name, $componentAlias)
|
|
|
|
{
|
2007-06-19 02:30:15 +04:00
|
|
|
// 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-04-13 22:03:44 +04:00
|
|
|
|
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) {
|
2007-07-07 00:55:15 +04:00
|
|
|
$queryPart .= ' ' . $this->_conn->quoteIdentifier($tableAlias);
|
2007-04-13 22:03:44 +04:00
|
|
|
}
|
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
$this->parts['from'][] = $queryPart;
|
|
|
|
$this->tableAliases[$tableAlias] = $componentAlias;
|
2007-09-02 02:22:54 +04:00
|
|
|
$this->_aliasMap[$componentAlias] = array('table' => $table, 'map' => null);
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-04-13 22:03:44 +04:00
|
|
|
return $table;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-06-19 02:30:15 +04:00
|
|
|
/**
|
2007-09-24 22:44:37 +04:00
|
|
|
* count
|
|
|
|
* fetches the count of the query
|
|
|
|
*
|
|
|
|
* This method executes the main query without all the
|
2007-05-16 23:20:55 +04:00
|
|
|
* selected fields, ORDER BY part, LIMIT part and OFFSET part.
|
2007-04-13 22:03:44 +04:00
|
|
|
*
|
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
|
2007-06-19 02:30:15 +04:00
|
|
|
* @return integer the count of this query
|
2007-04-13 22:03:44 +04:00
|
|
|
*/
|
2007-09-24 22:44:37 +04:00
|
|
|
public function count($params = array())
|
|
|
|
{
|
|
|
|
$this->getQuery();
|
|
|
|
|
|
|
|
// initialize temporary variables
|
|
|
|
$where = $this->parts['where'];
|
|
|
|
$having = $this->parts['having'];
|
|
|
|
$groupby = $this->parts['groupby'];
|
|
|
|
$map = reset($this->_aliasMap);
|
|
|
|
$componentAlias = key($this->_aliasMap);
|
|
|
|
$table = $map['table'];
|
|
|
|
|
|
|
|
// build the query base
|
|
|
|
$q = 'SELECT COUNT(DISTINCT ' . $this->getTableAlias($componentAlias)
|
|
|
|
. '.' . implode(',', (array) $table->getIdentifier())
|
|
|
|
. ') AS num_results';
|
|
|
|
|
|
|
|
foreach ($this->parts['select'] as $field) {
|
|
|
|
if (strpos($field, '(') !== false) {
|
|
|
|
$q .= ', ' . $field;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$q .= ' FROM ' . $this->buildFromPart();
|
|
|
|
|
|
|
|
// append column aggregation inheritance (if needed)
|
|
|
|
$string = $this->applyInheritance();
|
|
|
|
|
|
|
|
if ( ! empty($string)) {
|
|
|
|
$where[] = $string;
|
|
|
|
}
|
|
|
|
// append conditions
|
|
|
|
$q .= ( ! empty($where)) ? ' WHERE ' . implode(' AND ', $where) : '';
|
|
|
|
$q .= ( ! empty($groupby)) ? ' GROUP BY ' . implode(', ', $groupby) : '';
|
|
|
|
$q .= ( ! empty($having)) ? ' HAVING ' . implode(' AND ', $having): '';
|
|
|
|
|
|
|
|
if ( ! is_array($params)) {
|
|
|
|
$params = array($params);
|
|
|
|
}
|
|
|
|
// append parameters
|
|
|
|
$params = array_merge($this->_params['where'], $this->_params['having'], $params);
|
|
|
|
|
|
|
|
$results = $this->getConnection()->fetchAll($q, $params);
|
|
|
|
|
|
|
|
if (count($results) > 1) {
|
|
|
|
$count = 0;
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$count += $result['num_results'];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$count = isset($results[0]) ? $results[0]['num_results']:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int) $count;
|
|
|
|
}
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
/**
|
|
|
|
* query
|
|
|
|
* query the database with DQL (Doctrine Query Language)
|
|
|
|
*
|
2007-09-01 23:44:38 +04:00
|
|
|
* @param string $query DQL query
|
|
|
|
* @param array $params prepared statement parameters
|
|
|
|
* @param int $hydrationMode Doctrine::FETCH_ARRAY or Doctrine::FETCH_RECORD
|
2007-05-16 23:20:55 +04:00
|
|
|
* @see Doctrine::FETCH_* constants
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2007-09-01 23:44:38 +04:00
|
|
|
public function query($query, $params = array(), $hydrationMode = null)
|
2007-05-16 23:20:55 +04:00
|
|
|
{
|
|
|
|
$this->parseQuery($query);
|
2007-04-13 22:03:44 +04:00
|
|
|
|
2007-09-01 23:44:38 +04:00
|
|
|
return $this->execute($params, $hydrationMode);
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies a Doctrine_Query object.
|
|
|
|
*
|
|
|
|
* @param Doctrine_Query Doctrine query instance.
|
|
|
|
* If ommited the instance itself will be used as source.
|
|
|
|
* @return Doctrine_Query Copy of the Doctrine_Query instance.
|
|
|
|
*/
|
2007-08-14 20:37:48 +04:00
|
|
|
public function copy(Doctrine_Query $query = null)
|
|
|
|
{
|
2007-08-30 01:36:36 +04:00
|
|
|
if ( ! $query) {
|
|
|
|
$query = $this;
|
2007-08-14 20:37:48 +04:00
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-08-14 20:37:48 +04:00
|
|
|
$new = new Doctrine_Query();
|
|
|
|
$new->_dqlParts = $query->_dqlParts;
|
2007-09-24 22:44:37 +04:00
|
|
|
$new->_params = $query->_params;
|
2007-08-14 22:28:35 +04:00
|
|
|
$new->_hydrationMode = $query->_hydrationMode;
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-08-14 20:37:48 +04:00
|
|
|
return $new;
|
|
|
|
}
|
2007-09-24 22:44:37 +04:00
|
|
|
|
2007-08-29 22:40:58 +04:00
|
|
|
/**
|
|
|
|
* Frees the resources used by the query object. It especially breaks a
|
|
|
|
* cyclic reference between the query object and it's parsers. This enables
|
|
|
|
* PHP's current GC to reclaim the memory.
|
|
|
|
* This method can therefore be used to reduce memory usage when creating a lot
|
|
|
|
* of query objects during a request.
|
2007-08-30 01:36:36 +04:00
|
|
|
*
|
|
|
|
* @return Doctrine_Query this object
|
2007-08-29 22:40:58 +04:00
|
|
|
*/
|
2007-09-24 22:44:37 +04:00
|
|
|
public function free()
|
2007-08-30 01:36:36 +04:00
|
|
|
{
|
2007-08-29 22:40:58 +04:00
|
|
|
$this->reset();
|
|
|
|
$this->_parsers = array();
|
|
|
|
$this->_dqlParts = array();
|
|
|
|
$this->_enumParams = array();
|
|
|
|
}
|
2007-10-06 01:18:40 +04:00
|
|
|
}
|