2009-01-19 21:40:12 +03:00
|
|
|
<?php
|
2009-02-17 13:54:18 +03:00
|
|
|
/*
|
|
|
|
* $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.doctrine-project.org>.
|
2009-01-19 21:40:12 +03:00
|
|
|
*/
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Query;
|
|
|
|
|
2009-03-21 22:58:52 +03:00
|
|
|
use Doctrine\ORM\Query\Parser;
|
2009-01-22 22:38:10 +03:00
|
|
|
use Doctrine\ORM\Query\AST;
|
2009-02-18 13:39:51 +03:00
|
|
|
use Doctrine\Common\DoctrineException;
|
2009-01-22 22:38:10 +03:00
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
/**
|
2009-02-05 20:34:44 +03:00
|
|
|
* The SqlWalker walks over an AST that represents a DQL query and constructs
|
|
|
|
* the corresponding SQL. The walking can start at any node, not only at some root
|
|
|
|
* node. Therefore it is possible to only generate SQL parts by simply walking over
|
|
|
|
* certain subtrees of the AST.
|
2009-01-19 21:40:12 +03:00
|
|
|
*
|
|
|
|
* @author robo
|
2009-02-05 20:34:44 +03:00
|
|
|
* @since 2.0
|
2009-01-19 21:40:12 +03:00
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class SqlWalker
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
2009-04-09 22:12:48 +04:00
|
|
|
private $_resultSetMapping;
|
|
|
|
private $_aliasCounter = 0;
|
2009-02-17 13:54:18 +03:00
|
|
|
private $_tableAliasCounter = 0;
|
2009-04-09 22:12:48 +04:00
|
|
|
private $_scalarResultCounter = 0;
|
2009-01-19 21:40:12 +03:00
|
|
|
private $_parserResult;
|
|
|
|
private $_em;
|
2009-04-09 22:12:48 +04:00
|
|
|
private $_query;
|
2009-01-19 21:40:12 +03:00
|
|
|
private $_dqlToSqlAliasMap = array();
|
2009-04-09 22:12:48 +04:00
|
|
|
/** Map of all components/classes that appear in the DQL query. */
|
2009-05-03 14:58:16 +04:00
|
|
|
private $_queryComponents;
|
2009-04-09 22:12:48 +04:00
|
|
|
/** A list of classes that appear in non-scalar SelectExpressions. */
|
|
|
|
private $_selectedClasses = array();
|
2009-05-03 14:58:16 +04:00
|
|
|
/**
|
|
|
|
* The DQL alias of the root class of the currently traversed query.
|
|
|
|
* TODO: May need to be turned into a stack for usage in subqueries
|
|
|
|
*/
|
|
|
|
private $_currentRootAlias;
|
|
|
|
/** Flag that indicates whether to generate SQL table aliases in the SQL. */
|
|
|
|
private $_useSqlTableAliases = true;
|
2009-01-19 21:40:12 +03:00
|
|
|
|
2009-02-05 20:34:44 +03:00
|
|
|
/**
|
2009-04-09 22:12:48 +04:00
|
|
|
* Initializes a new SqlWalker instance with the given Query and ParserResult.
|
|
|
|
*
|
|
|
|
* @param Query $query The parsed Query.
|
|
|
|
* @param ParserResult $parserResult The result of the parsing process.
|
2009-02-05 20:34:44 +03:00
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function __construct($query, $parserResult, array $queryComponents)
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
2009-04-09 22:12:48 +04:00
|
|
|
$this->_resultSetMapping = $parserResult->getResultSetMapping();
|
|
|
|
$this->_query = $query;
|
|
|
|
$this->_em = $query->getEntityManager();
|
2009-01-19 21:40:12 +03:00
|
|
|
$this->_parserResult = $parserResult;
|
2009-04-09 22:12:48 +04:00
|
|
|
$this->_queryComponents = $queryComponents;
|
2009-04-12 23:02:12 +04:00
|
|
|
|
2009-04-03 15:06:58 +04:00
|
|
|
// In a mixed query we start alias counting for scalars with 1 since
|
|
|
|
// index 0 will hold the object.
|
2009-04-12 23:02:12 +04:00
|
|
|
/*if ($parserResult->isMixedQuery()) {
|
2009-04-09 22:12:48 +04:00
|
|
|
$this->_scalarResultCounter = 1;
|
2009-04-12 23:02:12 +04:00
|
|
|
}*/
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
2009-05-03 14:58:16 +04:00
|
|
|
/**
|
|
|
|
* @return Connection
|
|
|
|
*/
|
2009-03-28 20:10:41 +03:00
|
|
|
public function getConnection()
|
|
|
|
{
|
|
|
|
return $this->_em->getConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Walks down a SelectStatement AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
public function walkSelectStatement(AST\SelectStatement $AST)
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
|
|
|
$sql = $this->walkSelectClause($AST->getSelectClause());
|
|
|
|
$sql .= $this->walkFromClause($AST->getFromClause());
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($whereClause = $AST->getWhereClause()) {
|
|
|
|
$sql .= $this->walkWhereClause($whereClause);
|
|
|
|
} else if ($discSql = $this->_generateDiscriminatorColumnConditionSql($this->_currentRootAlias)) {
|
|
|
|
$sql .= ' WHERE ' . $discSql;
|
|
|
|
}
|
2009-05-07 17:54:01 +04:00
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
$sql .= $AST->getGroupByClause() ? $this->walkGroupByClause($AST->getGroupByClause()) : '';
|
2009-03-28 20:10:41 +03:00
|
|
|
$sql .= $AST->getHavingClause() ? $this->walkHavingClause($AST->getHavingClause()) : '';
|
|
|
|
$sql .= $AST->getOrderByClause() ? $this->walkOrderByClause($AST->getOrderByClause()) : '';
|
2009-01-20 20:07:07 +03:00
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a SelectClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-19 21:40:12 +03:00
|
|
|
public function walkSelectClause($selectClause)
|
|
|
|
{
|
2009-04-09 22:12:48 +04:00
|
|
|
$sql = 'SELECT ' . (($selectClause->isDistinct()) ? 'DISTINCT ' : '')
|
2009-03-23 20:39:33 +03:00
|
|
|
. implode(', ', array_map(array($this, 'walkSelectExpression'),
|
2009-01-19 21:40:12 +03:00
|
|
|
$selectClause->getSelectExpressions()));
|
2009-04-09 22:12:48 +04:00
|
|
|
|
|
|
|
foreach ($this->_selectedClasses as $dqlAlias => $class) {
|
|
|
|
if ($this->_queryComponents[$dqlAlias]['relation'] === null) {
|
|
|
|
$this->_resultSetMapping->addEntityResult($class, $dqlAlias);
|
|
|
|
} else {
|
|
|
|
$this->_resultSetMapping->addJoinedEntityResult(
|
|
|
|
$class, $dqlAlias,
|
|
|
|
$this->_queryComponents[$dqlAlias]['parent'],
|
|
|
|
$this->_queryComponents[$dqlAlias]['relation']
|
|
|
|
);
|
|
|
|
}
|
2009-04-12 23:02:12 +04:00
|
|
|
//if ($this->_query->getHydrationMode() == \Doctrine\ORM\Query::HYDRATE_OBJECT) {
|
|
|
|
if ($class->isInheritanceTypeSingleTable() || $class->isInheritanceTypeJoined()) {
|
|
|
|
$tblAlias = $this->getSqlTableAlias($class->getTableName());
|
2009-05-14 14:03:09 +04:00
|
|
|
$discrColumn = $class->discriminatorColumn;
|
2009-04-12 23:02:12 +04:00
|
|
|
$columnAlias = $this->getSqlColumnAlias($discrColumn['name']);
|
|
|
|
$sql .= ", $tblAlias." . $discrColumn['name'] . ' AS ' . $columnAlias;
|
2009-05-14 14:03:09 +04:00
|
|
|
$this->_resultSetMapping->setDiscriminatorColumn($class->name, $dqlAlias, $columnAlias);
|
2009-04-12 23:02:12 +04:00
|
|
|
}
|
|
|
|
//}
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a FromClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-19 21:40:12 +03:00
|
|
|
public function walkFromClause($fromClause)
|
|
|
|
{
|
|
|
|
$sql = ' FROM ';
|
|
|
|
$identificationVarDecls = $fromClause->getIdentificationVariableDeclarations();
|
|
|
|
$firstIdentificationVarDecl = $identificationVarDecls[0];
|
|
|
|
$rangeDecl = $firstIdentificationVarDecl->getRangeVariableDeclaration();
|
2009-04-09 22:12:48 +04:00
|
|
|
$dqlAlias = $rangeDecl->getAliasIdentificationVariable();
|
|
|
|
|
2009-05-03 14:58:16 +04:00
|
|
|
$this->_currentRootAlias = $dqlAlias;
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
$sql .= $rangeDecl->getClassMetadata()->getTableName() . ' '
|
2009-04-09 22:12:48 +04:00
|
|
|
. $this->getSqlTableAlias($rangeDecl->getClassMetadata()->getTableName());
|
2009-01-19 21:40:12 +03:00
|
|
|
|
|
|
|
foreach ($firstIdentificationVarDecl->getJoinVariableDeclarations() as $joinVarDecl) {
|
|
|
|
$sql .= $this->walkJoinVariableDeclaration($joinVarDecl);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a FunctionNode AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-23 20:39:33 +03:00
|
|
|
public function walkFunction($function)
|
|
|
|
{
|
|
|
|
return $function->getSql($this);
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an OrderByClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param OrderByClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
|
|
|
public function walkOrderByClause($orderByClause)
|
|
|
|
{
|
|
|
|
// OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}*
|
|
|
|
return ' ORDER BY '
|
|
|
|
. implode(', ', array_map(array($this, 'walkOrderByItem'),
|
|
|
|
$orderByClause->getOrderByItems()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Walks down an OrderByItem AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param OrderByItem
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
|
|
|
public function walkOrderByItem($orderByItem)
|
|
|
|
{
|
|
|
|
//TODO: support general SingleValuedPathExpression, not just state field
|
|
|
|
$pathExpr = $orderByItem->getStateFieldPathExpression();
|
|
|
|
$parts = $pathExpr->getParts();
|
2009-04-09 22:12:48 +04:00
|
|
|
$qComp = $this->_queryComponents[$parts[0]];
|
2009-03-28 20:10:41 +03:00
|
|
|
$columnName = $qComp['metadata']->getColumnName($parts[1]);
|
2009-04-09 22:12:48 +04:00
|
|
|
$sql = $this->getSqlTableAlias($qComp['metadata']->getTableName()) . '.' . $columnName;
|
2009-03-28 20:10:41 +03:00
|
|
|
$sql .= $orderByItem->isAsc() ? ' ASC' : ' DESC';
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Walks down a HavingClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param HavingClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
|
|
|
public function walkHavingClause($havingClause)
|
|
|
|
{
|
|
|
|
// HavingClause ::= "HAVING" ConditionalExpression
|
|
|
|
return ' HAVING ' . implode(' OR ', array_map(array($this, 'walkConditionalTerm'),
|
|
|
|
$havingClause->getConditionalExpression()->getConditionalTerms()));
|
|
|
|
}
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
/**
|
|
|
|
* Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.
|
|
|
|
*
|
|
|
|
* @param JoinVariableDeclaration $joinVarDecl
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function walkJoinVariableDeclaration($joinVarDecl)
|
|
|
|
{
|
|
|
|
$join = $joinVarDecl->getJoin();
|
|
|
|
$joinType = $join->getJoinType();
|
2009-03-23 20:39:33 +03:00
|
|
|
if ($joinType == AST\Join::JOIN_TYPE_LEFT || $joinType == AST\Join::JOIN_TYPE_LEFTOUTER) {
|
2009-01-19 21:40:12 +03:00
|
|
|
$sql = ' LEFT JOIN ';
|
|
|
|
} else {
|
|
|
|
$sql = ' INNER JOIN ';
|
|
|
|
}
|
|
|
|
|
|
|
|
$joinAssocPathExpr = $join->getJoinAssociationPathExpression();
|
2009-04-09 22:12:48 +04:00
|
|
|
$joinedDqlAlias = $join->getAliasIdentificationVariable();
|
|
|
|
$sourceQComp = $this->_queryComponents[$joinAssocPathExpr->getIdentificationVariable()];
|
|
|
|
$targetQComp = $this->_queryComponents[$joinedDqlAlias];
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
$targetTableName = $targetQComp['metadata']->getTableName();
|
2009-04-09 22:12:48 +04:00
|
|
|
$targetTableAlias = $this->getSqlTableAlias($targetTableName);
|
|
|
|
$sourceTableAlias = $this->getSqlTableAlias($sourceQComp['metadata']->getTableName());
|
2009-01-19 21:40:12 +03:00
|
|
|
|
2009-05-07 17:54:01 +04:00
|
|
|
// Ensure we got the owning side, since it has all mapping info
|
2009-01-19 21:40:12 +03:00
|
|
|
if ( ! $targetQComp['relation']->isOwningSide()) {
|
|
|
|
$assoc = $targetQComp['metadata']->getAssociationMapping($targetQComp['relation']->getMappedByFieldName());
|
|
|
|
} else {
|
|
|
|
$assoc = $targetQComp['relation'];
|
|
|
|
}
|
|
|
|
|
2009-05-07 17:54:01 +04:00
|
|
|
if ($assoc->isOneToOne()/* || $assoc->isOneToMany()*/) {
|
|
|
|
$sql .= $targetTableName . ' ' . $targetTableAlias . ' ON ';
|
2009-01-19 21:40:12 +03:00
|
|
|
$joinColumns = $assoc->getSourceToTargetKeyColumns();
|
|
|
|
$first = true;
|
|
|
|
foreach ($joinColumns as $sourceColumn => $targetColumn) {
|
2009-05-07 17:54:01 +04:00
|
|
|
if ( ! $first) {
|
|
|
|
$sql .= ' AND ';
|
|
|
|
} else {
|
|
|
|
$first = false;
|
|
|
|
}
|
2009-01-19 21:40:12 +03:00
|
|
|
if ($targetQComp['relation']->isOwningSide()) {
|
|
|
|
$sql .= "$sourceTableAlias.$sourceColumn = $targetTableAlias.$targetColumn";
|
|
|
|
} else {
|
|
|
|
$sql .= "$sourceTableAlias.$targetColumn = $targetTableAlias.$sourceColumn";
|
|
|
|
}
|
|
|
|
}
|
2009-05-07 17:54:01 +04:00
|
|
|
} else if ($assoc->isManyToMany()) {
|
|
|
|
// Join relation table
|
|
|
|
$joinTable = $assoc->getJoinTable();
|
|
|
|
$joinTableAlias = $this->getSqlTableAlias($joinTable['name']);
|
|
|
|
$sql .= $joinTable['name'] . ' ' . $joinTableAlias . ' ON ';
|
|
|
|
if ($targetQComp['relation']->isOwningSide()) {
|
|
|
|
$sourceToRelationJoinColumns = $assoc->getSourceToRelationKeyColumns();
|
|
|
|
foreach ($sourceToRelationJoinColumns as $sourceColumn => $relationColumn) {
|
|
|
|
$sql .= "$sourceTableAlias.$sourceColumn = $joinTableAlias.$relationColumn";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$targetToRelationJoinColumns = $assoc->getTargetToRelationKeyColumns();
|
|
|
|
foreach ($targetToRelationJoinColumns as $targetColumn => $relationColumn) {
|
|
|
|
$sql .= "$sourceTableAlias.$targetColumn = $joinTableAlias.$relationColumn";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Join target table
|
|
|
|
if ($joinType == AST\Join::JOIN_TYPE_LEFT || $joinType == AST\Join::JOIN_TYPE_LEFTOUTER) {
|
|
|
|
$sql .= ' LEFT JOIN ';
|
|
|
|
} else {
|
|
|
|
$sql .= ' INNER JOIN ';
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql .= $targetTableName . ' ' . $targetTableAlias . ' ON ';
|
|
|
|
|
|
|
|
if ($targetQComp['relation']->isOwningSide()) {
|
|
|
|
$targetToRelationJoinColumns = $assoc->getTargetToRelationKeyColumns();
|
|
|
|
foreach ($targetToRelationJoinColumns as $targetColumn => $relationColumn) {
|
|
|
|
$sql .= "$targetTableAlias.$targetColumn = $joinTableAlias.$relationColumn";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$sourceToRelationJoinColumns = $assoc->getSourceToRelationKeyColumns();
|
|
|
|
foreach ($sourceToRelationJoinColumns as $sourceColumn => $relationColumn) {
|
|
|
|
$sql .= "$targetTableAlias.$sourceColumn = $joinTableAlias.$relationColumn";
|
|
|
|
}
|
|
|
|
}
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
2009-05-03 14:58:16 +04:00
|
|
|
|
|
|
|
$discrSql = $this->_generateDiscriminatorColumnConditionSql($joinedDqlAlias);
|
|
|
|
if ($discrSql) {
|
|
|
|
$sql .= ' AND ' . $discrSql;
|
|
|
|
}
|
2009-01-19 21:40:12 +03:00
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Walks down a SelectExpression AST node and generates the corresponding SQL.
|
|
|
|
*
|
2009-03-28 20:10:41 +03:00
|
|
|
* @param SelectExpression $selectExpression
|
|
|
|
* @return string The SQL.
|
2009-01-19 21:40:12 +03:00
|
|
|
*/
|
|
|
|
public function walkSelectExpression($selectExpression)
|
|
|
|
{
|
|
|
|
$sql = '';
|
2009-04-03 15:06:58 +04:00
|
|
|
$expr = $selectExpression->getExpression();
|
|
|
|
if ($expr instanceof AST\StateFieldPathExpression) {
|
2009-04-09 22:12:48 +04:00
|
|
|
if ($expr->isSimpleStateFieldPathExpression()) {
|
|
|
|
$parts = $expr->getParts();
|
2009-01-19 21:40:12 +03:00
|
|
|
$numParts = count($parts);
|
|
|
|
$dqlAlias = $parts[0];
|
|
|
|
$fieldName = $parts[$numParts-1];
|
2009-04-09 22:12:48 +04:00
|
|
|
$qComp = $this->_queryComponents[$dqlAlias];
|
2009-01-19 21:40:12 +03:00
|
|
|
$class = $qComp['metadata'];
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
if ( ! isset($this->_selectedClasses[$dqlAlias])) {
|
|
|
|
$this->_selectedClasses[$dqlAlias] = $class;
|
|
|
|
}
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
if ($numParts > 2) {
|
|
|
|
for ($i = 1; $i < $numParts-1; ++$i) {
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
$sqlTableAlias = $this->getSqlTableAlias($class->getTableName());
|
|
|
|
$columnName = $class->getColumnName($fieldName);
|
|
|
|
$columnAlias = $this->getSqlColumnAlias($columnName);
|
|
|
|
$sql .= $sqlTableAlias . '.' . $columnName . ' AS ' . $columnAlias;
|
2009-05-03 14:58:16 +04:00
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
$this->_resultSetMapping->addFieldResult($dqlAlias, $columnAlias, $fieldName);
|
|
|
|
|
|
|
|
} else if ($expr->isSimpleStateFieldAssociationPathExpression()) {
|
2009-03-23 20:39:33 +03:00
|
|
|
throw DoctrineException::updateMe("Not yet implemented.");
|
2009-01-19 21:40:12 +03:00
|
|
|
} else {
|
2009-03-23 20:39:33 +03:00
|
|
|
throw DoctrineException::updateMe("Encountered invalid PathExpression during SQL construction.");
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
2009-04-09 22:12:48 +04:00
|
|
|
} else if ($expr instanceof AST\AggregateExpression) {
|
2009-01-19 21:40:12 +03:00
|
|
|
if ( ! $selectExpression->getFieldIdentificationVariable()) {
|
2009-04-09 22:12:48 +04:00
|
|
|
$resultAlias = $this->_scalarResultCounter++;
|
2009-01-19 21:40:12 +03:00
|
|
|
} else {
|
2009-04-09 22:12:48 +04:00
|
|
|
$resultAlias = $selectExpression->getFieldIdentificationVariable();
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
2009-04-09 22:12:48 +04:00
|
|
|
$columnAlias = 'sclr' . $this->_aliasCounter++;
|
|
|
|
$sql .= $this->walkAggregateExpression($expr) . ' AS ' . $columnAlias;
|
|
|
|
$this->_resultSetMapping->addScalarResult($columnAlias, $resultAlias);
|
|
|
|
} else if ($expr instanceof AST\Subselect) {
|
2009-04-03 15:06:58 +04:00
|
|
|
$sql .= $this->walkSubselect($expr);
|
|
|
|
} else if ($expr instanceof AST\Functions\FunctionNode) {
|
2009-03-28 20:10:41 +03:00
|
|
|
if ( ! $selectExpression->getFieldIdentificationVariable()) {
|
2009-04-09 22:12:48 +04:00
|
|
|
$resultAlias = $this->_scalarResultCounter++;
|
2009-03-28 20:10:41 +03:00
|
|
|
} else {
|
2009-04-09 22:12:48 +04:00
|
|
|
$resultAlias = $selectExpression->getFieldIdentificationVariable();
|
2009-03-28 20:10:41 +03:00
|
|
|
}
|
2009-04-09 22:12:48 +04:00
|
|
|
$columnAlias = 'sclr' . $this->_aliasCounter++;
|
|
|
|
$sql .= $this->walkFunction($expr) . ' AS ' . $columnAlias;
|
|
|
|
$this->_resultSetMapping->addScalarResult($columnAlias, $resultAlias);
|
2009-03-19 15:43:48 +03:00
|
|
|
} else {
|
2009-05-03 14:58:16 +04:00
|
|
|
// $expr is an IdentificationVariable
|
|
|
|
|
2009-04-03 15:06:58 +04:00
|
|
|
$dqlAlias = $expr;
|
2009-04-09 22:12:48 +04:00
|
|
|
$queryComp = $this->_queryComponents[$dqlAlias];
|
2009-01-19 21:40:12 +03:00
|
|
|
$class = $queryComp['metadata'];
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
if ( ! isset($this->_selectedClasses[$dqlAlias])) {
|
|
|
|
$this->_selectedClasses[$dqlAlias] = $class;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sqlTableAlias = $this->getSqlTableAlias($class->getTableName());
|
|
|
|
|
2009-05-03 14:58:16 +04:00
|
|
|
// Gather all fields
|
2009-05-14 14:03:09 +04:00
|
|
|
$fieldMappings = $class->fieldMappings;
|
|
|
|
foreach ($class->subClasses as $subclassName) {
|
2009-04-09 22:12:48 +04:00
|
|
|
$fieldMappings = array_merge(
|
|
|
|
$fieldMappings,
|
2009-05-14 14:03:09 +04:00
|
|
|
$this->_em->getClassMetadata($subclassName)->fieldMappings
|
2009-04-09 22:12:48 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
$beginning = true;
|
2009-04-09 22:12:48 +04:00
|
|
|
foreach ($fieldMappings as $fieldName => $fieldMapping) {
|
2009-01-19 21:40:12 +03:00
|
|
|
if ($beginning) {
|
|
|
|
$beginning = false;
|
|
|
|
} else {
|
|
|
|
$sql .= ', ';
|
|
|
|
}
|
2009-04-09 22:12:48 +04:00
|
|
|
$columnAlias = $this->getSqlColumnAlias($fieldMapping['columnName']);
|
|
|
|
$sql .= $sqlTableAlias . '.' . $fieldMapping['columnName'] . ' AS ' . $columnAlias;
|
|
|
|
$this->_resultSetMapping->addFieldResult($dqlAlias, $columnAlias, $fieldName);
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param QuantifiedExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
|
|
|
public function walkQuantifiedExpression($qExpr)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
if ($qExpr->isAll()) $sql .= ' ALL';
|
|
|
|
else if ($qExpr->isAny()) $sql .= ' ANY';
|
|
|
|
else if ($qExpr->isSome()) $sql .= ' SOME';
|
|
|
|
return $sql .= '(' . $this->walkSubselect($qExpr->getSubselect()) . ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Walks down a Subselect AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param Subselect
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-19 15:43:48 +03:00
|
|
|
public function walkSubselect($subselect)
|
|
|
|
{
|
2009-05-03 14:58:16 +04:00
|
|
|
$useAliasesBefore = $this->_useSqlTableAliases;
|
|
|
|
$this->_useSqlTableAliases = true;
|
2009-03-19 15:43:48 +03:00
|
|
|
$sql = $this->walkSimpleSelectClause($subselect->getSimpleSelectClause());
|
|
|
|
$sql .= $this->walkSubselectFromClause($subselect->getSubselectFromClause());
|
|
|
|
$sql .= $subselect->getWhereClause() ? $this->walkWhereClause($subselect->getWhereClause()) : '';
|
|
|
|
$sql .= $subselect->getGroupByClause() ? $this->walkGroupByClause($subselect->getGroupByClause()) : '';
|
2009-03-28 20:10:41 +03:00
|
|
|
$sql .= $subselect->getHavingClause() ? $this->walkHavingClause($subselect->getHavingClause()) : '';
|
|
|
|
$sql .= $subselect->getOrderByClause() ? $this->walkOrderByClause($subselect->getOrderByClause()) : '';
|
2009-05-03 14:58:16 +04:00
|
|
|
$this->_useSqlTableAliases = $useAliasesBefore;
|
2009-03-19 15:43:48 +03:00
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param SubselectFromClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-19 15:43:48 +03:00
|
|
|
public function walkSubselectFromClause($subselectFromClause)
|
|
|
|
{
|
|
|
|
$sql = ' FROM ';
|
|
|
|
$identificationVarDecls = $subselectFromClause->getSubselectIdentificationVariableDeclarations();
|
|
|
|
$firstIdentificationVarDecl = $identificationVarDecls[0];
|
|
|
|
$rangeDecl = $firstIdentificationVarDecl->getRangeVariableDeclaration();
|
|
|
|
$sql .= $rangeDecl->getClassMetadata()->getTableName() . ' '
|
2009-04-09 22:12:48 +04:00
|
|
|
. $this->getSqlTableAlias($rangeDecl->getClassMetadata()->getTableName());
|
2009-03-19 15:43:48 +03:00
|
|
|
|
|
|
|
foreach ($firstIdentificationVarDecl->getJoinVariableDeclarations() as $joinVarDecl) {
|
|
|
|
$sql .= $this->walkJoinVariableDeclaration($joinVarDecl);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param SimpleSelectClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-19 15:43:48 +03:00
|
|
|
public function walkSimpleSelectClause($simpleSelectClause)
|
|
|
|
{
|
|
|
|
$sql = 'SELECT';
|
|
|
|
if ($simpleSelectClause->isDistinct()) {
|
|
|
|
$sql .= ' DISTINCT';
|
|
|
|
}
|
|
|
|
$sql .= $this->walkSimpleSelectExpression($simpleSelectClause->getSimpleSelectExpression());
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param SimpleSelectExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-19 15:43:48 +03:00
|
|
|
public function walkSimpleSelectExpression($simpleSelectExpression)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
$expr = $simpleSelectExpression->getExpression();
|
2009-03-21 15:49:58 +03:00
|
|
|
if ($expr instanceof AST\StateFieldPathExpression) {
|
2009-03-28 20:10:41 +03:00
|
|
|
$sql .= ' ' . $this->walkPathExpression($expr);
|
2009-03-19 15:43:48 +03:00
|
|
|
//...
|
|
|
|
} else if ($expr instanceof AST\AggregateExpression) {
|
|
|
|
if ( ! $simpleSelectExpression->getFieldIdentificationVariable()) {
|
|
|
|
$alias = $this->_scalarAliasCounter++;
|
|
|
|
} else {
|
|
|
|
$alias = $simpleSelectExpression->getFieldIdentificationVariable();
|
|
|
|
}
|
|
|
|
$sql .= $this->walkAggregateExpression($expr) . ' AS dctrn__' . $alias;
|
|
|
|
} else {
|
|
|
|
// $expr is IdentificationVariable
|
|
|
|
//...
|
|
|
|
}
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param AggregateExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-19 15:43:48 +03:00
|
|
|
public function walkAggregateExpression($aggExpression)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
$parts = $aggExpression->getPathExpression()->getParts();
|
|
|
|
$dqlAlias = $parts[0];
|
|
|
|
$fieldName = $parts[1];
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
$qComp = $this->_queryComponents[$dqlAlias];
|
2009-03-19 15:43:48 +03:00
|
|
|
$columnName = $qComp['metadata']->getColumnName($fieldName);
|
|
|
|
|
|
|
|
$sql .= $aggExpression->getFunctionName() . '(';
|
|
|
|
if ($aggExpression->isDistinct()) $sql .= 'DISTINCT ';
|
2009-04-09 22:12:48 +04:00
|
|
|
$sql .= $this->getSqlTableAlias($qComp['metadata']->getTableName()) . '.' . $columnName;
|
2009-03-19 15:43:48 +03:00
|
|
|
$sql .= ')';
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a GroupByClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param GroupByClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-19 21:40:12 +03:00
|
|
|
public function walkGroupByClause($groupByClause)
|
|
|
|
{
|
|
|
|
return ' GROUP BY '
|
2009-03-28 20:10:41 +03:00
|
|
|
. implode(', ', array_map(array($this, 'walkGroupByItem'),
|
2009-01-19 21:40:12 +03:00
|
|
|
$groupByClause->getGroupByItems()));
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a GroupByItem AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param GroupByItem
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-19 21:40:12 +03:00
|
|
|
public function walkGroupByItem($pathExpr)
|
|
|
|
{
|
|
|
|
//TODO: support general SingleValuedPathExpression, not just state field
|
|
|
|
$parts = $pathExpr->getParts();
|
2009-04-09 22:12:48 +04:00
|
|
|
$qComp = $this->_queryComponents[$parts[0]];
|
2009-01-19 21:40:12 +03:00
|
|
|
$columnName = $qComp['metadata']->getColumnName($parts[1]);
|
2009-04-09 22:12:48 +04:00
|
|
|
return $this->getSqlTableAlias($qComp['metadata']->getTableName()) . '.' . $columnName;
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param UpdateStatement
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
public function walkUpdateStatement(AST\UpdateStatement $AST)
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
2009-05-03 14:58:16 +04:00
|
|
|
$this->_useSqlTableAliases = false; // TODO: Ask platform instead?
|
2009-03-21 22:58:52 +03:00
|
|
|
$sql = $this->walkUpdateClause($AST->getUpdateClause());
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($whereClause = $AST->getWhereClause()) {
|
|
|
|
$sql .= $this->walkWhereClause($whereClause);
|
|
|
|
} else if ($discSql = $this->_generateDiscriminatorColumnConditionSql($this->_currentRootAlias)) {
|
|
|
|
$sql .= ' WHERE ' . $discSql;
|
|
|
|
}
|
2009-03-21 22:58:52 +03:00
|
|
|
return $sql;
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param DeleteStatement
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
public function walkDeleteStatement(AST\DeleteStatement $AST)
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
2009-05-03 14:58:16 +04:00
|
|
|
$this->_useSqlTableAliases = false; // TODO: Ask platform instead?
|
2009-03-21 00:28:19 +03:00
|
|
|
$sql = $this->walkDeleteClause($AST->getDeleteClause());
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($whereClause = $AST->getWhereClause()) {
|
|
|
|
$sql .= $this->walkWhereClause($whereClause);
|
|
|
|
} else if ($discSql = $this->_generateDiscriminatorColumnConditionSql($this->_currentRootAlias)) {
|
|
|
|
$sql .= ' WHERE ' . $discSql;
|
|
|
|
}
|
2009-03-21 00:28:19 +03:00
|
|
|
return $sql;
|
|
|
|
}
|
2009-01-19 21:40:12 +03:00
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a DeleteClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param DeleteClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-21 00:28:19 +03:00
|
|
|
public function walkDeleteClause(AST\DeleteClause $deleteClause)
|
|
|
|
{
|
|
|
|
$sql = 'DELETE FROM ';
|
|
|
|
$class = $this->_em->getClassMetadata($deleteClause->getAbstractSchemaName());
|
|
|
|
$sql .= $class->getTableName();
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($this->_useSqlTableAliases) {
|
2009-04-09 22:12:48 +04:00
|
|
|
$sql .= ' ' . $this->getSqlTableAlias($class->getTableName());
|
2009-03-21 00:28:19 +03:00
|
|
|
}
|
2009-05-03 14:58:16 +04:00
|
|
|
$this->_currentRootAlias = $deleteClause->getAliasIdentificationVariable();
|
|
|
|
|
2009-03-21 00:28:19 +03:00
|
|
|
return $sql;
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an UpdateClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param UpdateClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-21 22:58:52 +03:00
|
|
|
public function walkUpdateClause($updateClause)
|
|
|
|
{
|
|
|
|
$sql = 'UPDATE ';
|
|
|
|
$class = $this->_em->getClassMetadata($updateClause->getAbstractSchemaName());
|
|
|
|
$sql .= $class->getTableName();
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($this->_useSqlTableAliases) {
|
2009-04-09 22:12:48 +04:00
|
|
|
$sql .= ' ' . $this->getSqlTableAlias($class->getTableName());
|
2009-03-21 22:58:52 +03:00
|
|
|
}
|
2009-05-03 14:58:16 +04:00
|
|
|
$this->_currentRootAlias = $updateClause->getAliasIdentificationVariable();
|
|
|
|
|
2009-03-21 22:58:52 +03:00
|
|
|
$sql .= ' SET ' . implode(', ', array_map(array($this, 'walkUpdateItem'),
|
|
|
|
$updateClause->getUpdateItems()));
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an UpdateItem AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param UpdateItem
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-21 22:58:52 +03:00
|
|
|
public function walkUpdateItem($updateItem)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
$dqlAlias = $updateItem->getIdentificationVariable() ?
|
|
|
|
$updateItem->getIdentificationVariable() :
|
|
|
|
$this->_parserResult->getDefaultQueryComponentAlias();
|
2009-04-09 22:12:48 +04:00
|
|
|
$qComp = $this->_queryComponents[$dqlAlias];
|
2009-03-21 22:58:52 +03:00
|
|
|
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($this->_useSqlTableAliases) {
|
|
|
|
$sql .= $this->getSqlTableAlias($qComp['metadata']->getTableName()) . '.';
|
|
|
|
}
|
|
|
|
$sql .= $qComp['metadata']->getColumnName($updateItem->getField()) . ' = ';
|
2009-03-21 22:58:52 +03:00
|
|
|
|
|
|
|
$newValue = $updateItem->getNewValue();
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
if ($newValue instanceof AST\Node) {
|
|
|
|
$sql .= $newValue->dispatch($this);
|
|
|
|
} else if (is_string($newValue)) {
|
|
|
|
if (strcasecmp($newValue, 'NULL') === 0) {
|
|
|
|
$sql .= 'NULL';
|
|
|
|
} else {
|
|
|
|
$sql .= $newValue; //TODO: quote()
|
|
|
|
}
|
|
|
|
}
|
2009-03-21 22:58:52 +03:00
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a WhereClause AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param WhereClause
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkWhereClause($whereClause)
|
|
|
|
{
|
|
|
|
$sql = ' WHERE ';
|
|
|
|
$condExpr = $whereClause->getConditionalExpression();
|
2009-05-03 14:58:16 +04:00
|
|
|
|
2009-03-23 20:39:33 +03:00
|
|
|
$sql .= implode(' OR ', array_map(array($this, 'walkConditionalTerm'),
|
2009-01-21 21:25:05 +03:00
|
|
|
$condExpr->getConditionalTerms()));
|
2009-05-03 14:58:16 +04:00
|
|
|
|
|
|
|
$discrSql = $this->_generateDiscriminatorColumnConditionSql($this->_currentRootAlias);
|
|
|
|
if ($discrSql) {
|
|
|
|
$sql .= ' AND ' . $discrSql;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-05-03 22:07:57 +04:00
|
|
|
/**
|
|
|
|
* Generates a discriminator column SQL condition for the class with the given DQL alias.
|
|
|
|
*
|
|
|
|
* @param string $dqlAlias
|
|
|
|
* @return string
|
|
|
|
*/
|
2009-05-03 14:58:16 +04:00
|
|
|
private function _generateDiscriminatorColumnConditionSql($dqlAlias)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
if ($dqlAlias) {
|
|
|
|
$class = $this->_queryComponents[$dqlAlias]['metadata'];
|
|
|
|
if ($class->isInheritanceTypeSingleTable()) {
|
|
|
|
$conn = $this->_em->getConnection();
|
2009-05-14 14:03:09 +04:00
|
|
|
$values = array($conn->quote($class->discriminatorValue));
|
|
|
|
foreach ($class->subClasses as $subclassName) {
|
|
|
|
$values[] = $conn->quote($this->_em->getClassMetadata($subclassName)->discriminatorValue);
|
2009-05-03 14:58:16 +04:00
|
|
|
}
|
2009-05-14 14:03:09 +04:00
|
|
|
$discrColumn = $class->discriminatorColumn;
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($this->_useSqlTableAliases) {
|
|
|
|
$sql .= $this->getSqlTableAlias($class->getTableName()) . '.';
|
|
|
|
}
|
|
|
|
$sql .= $discrColumn['name'] . ' IN (' . implode(', ', $values) . ')';
|
|
|
|
} else if ($class->isInheritanceTypeJoined()) {
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
}
|
2009-01-20 20:07:07 +03:00
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param ConditionalTerm
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkConditionalTerm($condTerm)
|
|
|
|
{
|
2009-03-23 20:39:33 +03:00
|
|
|
return implode(' AND ', array_map(array($this, 'walkConditionalFactor'),
|
2009-01-21 21:25:05 +03:00
|
|
|
$condTerm->getConditionalFactors()));
|
2009-01-20 20:07:07 +03:00
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param ConditionalFactor
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkConditionalFactor($factor)
|
|
|
|
{
|
|
|
|
$sql = '';
|
2009-03-21 00:28:19 +03:00
|
|
|
if ($factor->isNot()) $sql .= 'NOT ';
|
2009-01-20 20:07:07 +03:00
|
|
|
$primary = $factor->getConditionalPrimary();
|
|
|
|
if ($primary->isSimpleConditionalExpression()) {
|
2009-03-23 20:39:33 +03:00
|
|
|
$sql .= $primary->getSimpleConditionalExpression()->dispatch($this);
|
2009-01-21 21:25:05 +03:00
|
|
|
} else if ($primary->isConditionalExpression()) {
|
2009-03-23 20:39:33 +03:00
|
|
|
$sql .= '(' . implode(' OR ', array_map(array($this, 'walkConditionalTerm'),
|
2009-01-21 21:25:05 +03:00
|
|
|
$primary->getConditionalExpression()->getConditionalTerms())) . ')';
|
2009-01-20 20:07:07 +03:00
|
|
|
}
|
2009-01-21 21:25:05 +03:00
|
|
|
return $sql;
|
|
|
|
}
|
2009-01-20 20:07:07 +03:00
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param ExistsExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-23 20:39:33 +03:00
|
|
|
public function walkExistsExpression($existsExpr)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
if ($existsExpr->isNot()) $sql .= ' NOT';
|
|
|
|
$sql .= ' EXISTS (' . $this->walkSubselect($existsExpr->getSubselect()) . ')';
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param NullComparisonExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-21 15:49:58 +03:00
|
|
|
public function walkNullComparisonExpression($nullCompExpr)
|
|
|
|
{
|
|
|
|
$sql = '';
|
2009-03-23 20:39:33 +03:00
|
|
|
$innerExpr = $nullCompExpr->getExpression();
|
|
|
|
if ($innerExpr instanceof AST\InputParameter) {
|
|
|
|
$sql .= ' ' . ($innerExpr->isNamed() ? ':' . $innerExpr->getName() : '?');
|
2009-03-21 15:49:58 +03:00
|
|
|
} else {
|
2009-03-23 20:39:33 +03:00
|
|
|
$sql .= $this->walkPathExpression($innerExpr);
|
2009-03-21 15:49:58 +03:00
|
|
|
}
|
|
|
|
$sql .= ' IS' . ($nullCompExpr->isNot() ? ' NOT' : '') . ' NULL';
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an InExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param InExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-21 15:49:58 +03:00
|
|
|
public function walkInExpression($inExpr)
|
|
|
|
{
|
|
|
|
$sql = $this->walkPathExpression($inExpr->getPathExpression());
|
|
|
|
if ($inExpr->isNot()) $sql .= ' NOT';
|
|
|
|
$sql .= ' IN (';
|
|
|
|
if ($inExpr->getSubselect()) {
|
|
|
|
$sql .= $this->walkSubselect($inExpr->getSubselect());
|
|
|
|
} else {
|
2009-03-21 22:58:52 +03:00
|
|
|
$sql .= implode(', ', array_map(array($this, 'walkLiteral'), $inExpr->getLiterals()));
|
2009-03-21 15:49:58 +03:00
|
|
|
}
|
|
|
|
$sql .= ')';
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a literal that represents an AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param mixed
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-21 22:58:52 +03:00
|
|
|
public function walkLiteral($literal)
|
|
|
|
{
|
|
|
|
if ($literal instanceof AST\InputParameter) {
|
|
|
|
return ($literal->isNamed() ? ':' . $literal->getName() : '?');
|
|
|
|
} else {
|
2009-03-23 20:39:33 +03:00
|
|
|
return $literal; //TODO: quote() ?
|
2009-03-21 22:58:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param BetweenExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-21 15:49:58 +03:00
|
|
|
public function walkBetweenExpression($betweenExpr)
|
|
|
|
{
|
|
|
|
$sql = $this->walkArithmeticExpression($betweenExpr->getBaseExpression());
|
|
|
|
if ($betweenExpr->getNot()) $sql .= ' NOT';
|
|
|
|
$sql .= ' BETWEEN ' . $this->walkArithmeticExpression($betweenExpr->getLeftBetweenExpression())
|
|
|
|
. ' AND ' . $this->walkArithmeticExpression($betweenExpr->getRightBetweenExpression());
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a LikeExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param LikeExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-21 21:25:05 +03:00
|
|
|
public function walkLikeExpression($likeExpr)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
$stringExpr = $likeExpr->getStringExpression();
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
$sql .= $stringExpr->dispatch($this);
|
|
|
|
|
2009-03-21 15:49:58 +03:00
|
|
|
if ($likeExpr->isNot()) $sql .= ' NOT';
|
|
|
|
$sql .= ' LIKE ';
|
2009-03-23 20:39:33 +03:00
|
|
|
|
2009-03-21 15:49:58 +03:00
|
|
|
if ($likeExpr->getStringPattern() instanceof AST\InputParameter) {
|
|
|
|
$inputParam = $likeExpr->getStringPattern();
|
|
|
|
$sql .= $inputParam->isNamed() ? ':' . $inputParam->getName() : '?';
|
|
|
|
} else {
|
|
|
|
$sql .= $likeExpr->getStringPattern();
|
|
|
|
}
|
|
|
|
if ($likeExpr->getEscapeChar()) {
|
|
|
|
$sql .= ' ESCAPE ' . $likeExpr->getEscapeChar();
|
|
|
|
}
|
2009-01-20 20:07:07 +03:00
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param StateFieldPathExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-23 20:39:33 +03:00
|
|
|
public function walkStateFieldPathExpression($stateFieldPathExpression)
|
|
|
|
{
|
|
|
|
return $this->walkPathExpression($stateFieldPathExpression);
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param ComparisonExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkComparisonExpression($compExpr)
|
|
|
|
{
|
|
|
|
$sql = '';
|
2009-03-23 20:39:33 +03:00
|
|
|
$leftExpr = $compExpr->getLeftExpression();
|
|
|
|
$rightExpr = $compExpr->getRightExpression();
|
|
|
|
|
|
|
|
if ($leftExpr instanceof AST\Node) {
|
|
|
|
$sql .= $leftExpr->dispatch($this);
|
|
|
|
} else {
|
|
|
|
$sql .= $leftExpr; //TODO: quote()
|
|
|
|
}
|
|
|
|
|
2009-01-20 20:07:07 +03:00
|
|
|
$sql .= ' ' . $compExpr->getOperator() . ' ';
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
if ($rightExpr instanceof AST\Node) {
|
|
|
|
$sql .= $rightExpr->dispatch($this);
|
|
|
|
} else {
|
|
|
|
$sql .= $rightExpr; //TODO: quote()
|
|
|
|
}
|
|
|
|
|
2009-01-20 20:07:07 +03:00
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an InputParameter AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param InputParameter
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-23 20:39:33 +03:00
|
|
|
public function walkInputParameter($inputParam)
|
|
|
|
{
|
|
|
|
return $inputParam->isNamed() ? ':' . $inputParam->getName() : '?';
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param ArithmeticExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkArithmeticExpression($arithmeticExpr)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
if ($arithmeticExpr->isSimpleArithmeticExpression()) {
|
|
|
|
foreach ($arithmeticExpr->getSimpleArithmeticExpression()->getArithmeticTerms() as $term) {
|
|
|
|
$sql .= $this->walkArithmeticTerm($term);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$sql .= $this->walkSubselect($arithmeticExpr->getSubselect());
|
|
|
|
}
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param mixed
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkArithmeticTerm($term)
|
|
|
|
{
|
2009-01-21 21:25:05 +03:00
|
|
|
if (is_string($term)) return $term;
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
return implode(' ', array_map(array($this, 'walkArithmeticFactor'),
|
2009-01-21 21:25:05 +03:00
|
|
|
$term->getArithmeticFactors()));
|
2009-01-20 20:07:07 +03:00
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param mixed
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-03-23 20:39:33 +03:00
|
|
|
public function walkStringPrimary($stringPrimary)
|
|
|
|
{
|
|
|
|
if (is_string($stringPrimary)) {
|
|
|
|
return $stringPrimary;
|
|
|
|
} else {
|
|
|
|
return $stringPrimary->dispatch($this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param mixed
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkArithmeticFactor($factor)
|
|
|
|
{
|
2009-01-21 21:25:05 +03:00
|
|
|
if (is_string($factor)) return $factor;
|
2009-03-23 20:39:33 +03:00
|
|
|
|
2009-01-20 20:07:07 +03:00
|
|
|
$sql = '';
|
|
|
|
$primary = $factor->getArithmeticPrimary();
|
2009-01-21 21:25:05 +03:00
|
|
|
if (is_numeric($primary)) {
|
2009-03-23 20:39:33 +03:00
|
|
|
$sql .= $primary; //TODO: quote() ?
|
2009-01-22 22:38:10 +03:00
|
|
|
} else if (is_string($primary)) {
|
|
|
|
//TODO: quote string according to platform
|
|
|
|
$sql .= $primary;
|
|
|
|
} else if ($primary instanceof AST\SimpleArithmeticExpression) {
|
2009-01-21 21:25:05 +03:00
|
|
|
$sql .= '(' . $this->walkSimpleArithmeticExpression($primary) . ')';
|
2009-03-23 20:39:33 +03:00
|
|
|
} else if ($primary instanceof AST\Node) {
|
|
|
|
$sql .= $primary->dispatch($this);
|
2009-01-20 20:07:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param SimpleArithmeticExpression
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-21 21:25:05 +03:00
|
|
|
public function walkSimpleArithmeticExpression($simpleArithmeticExpr)
|
|
|
|
{
|
2009-03-23 20:39:33 +03:00
|
|
|
return implode(' ', array_map(array($this, 'walkArithmeticTerm'),
|
2009-01-21 21:25:05 +03:00
|
|
|
$simpleArithmeticExpr->getArithmeticTerms()));
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:10:41 +03:00
|
|
|
/**
|
|
|
|
* Walks down an PathExpression AST node, thereby generating the appropriate SQL.
|
|
|
|
*
|
|
|
|
* @param mixed
|
|
|
|
* @return string The SQL.
|
|
|
|
*/
|
2009-01-20 20:07:07 +03:00
|
|
|
public function walkPathExpression($pathExpr)
|
|
|
|
{
|
|
|
|
$sql = '';
|
|
|
|
if ($pathExpr->isSimpleStateFieldPathExpression()) {
|
|
|
|
$parts = $pathExpr->getParts();
|
|
|
|
$numParts = count($parts);
|
|
|
|
$dqlAlias = $parts[0];
|
|
|
|
$fieldName = $parts[$numParts-1];
|
2009-04-09 22:12:48 +04:00
|
|
|
$qComp = $this->_queryComponents[$dqlAlias];
|
2009-01-20 20:07:07 +03:00
|
|
|
$class = $qComp['metadata'];
|
|
|
|
|
|
|
|
if ($numParts > 2) {
|
|
|
|
for ($i = 1; $i < $numParts-1; ++$i) {
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-03 14:58:16 +04:00
|
|
|
if ($this->_useSqlTableAliases) {
|
|
|
|
$sql .= $this->getSqlTableAlias($class->getTableName()) . '.';
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql .= $class->getColumnName($fieldName);
|
2009-01-20 20:07:07 +03:00
|
|
|
} else if ($pathExpr->isSimpleStateFieldAssociationPathExpression()) {
|
2009-03-23 20:39:33 +03:00
|
|
|
throw DoctrineException::updateMe("Not yet implemented.");
|
2009-01-20 20:07:07 +03:00
|
|
|
} else {
|
2009-03-23 20:39:33 +03:00
|
|
|
throw DoctrineException::updateMe("Encountered invalid PathExpression during SQL construction.");
|
2009-01-20 20:07:07 +03:00
|
|
|
}
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
/**
|
2009-02-17 13:54:18 +03:00
|
|
|
* Generates a unique, short SQL table alias.
|
2009-01-19 21:40:12 +03:00
|
|
|
*
|
2009-04-09 22:12:48 +04:00
|
|
|
* @param string $dqlAlias The DQL alias.
|
2009-02-17 13:54:18 +03:00
|
|
|
* @return string Generated table alias.
|
2009-01-19 21:40:12 +03:00
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function getSqlTableAlias($tableName)
|
|
|
|
{
|
|
|
|
if ( ! isset($this->_dqlToSqlAliasMap[$tableName])) {
|
|
|
|
$this->_dqlToSqlAliasMap[$tableName] = strtolower(substr($tableName, 0, 1)) . $this->_tableAliasCounter++ . '_';
|
|
|
|
}
|
|
|
|
return $this->_dqlToSqlAliasMap[$tableName];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSqlColumnAlias($columnName)
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
2009-04-09 22:12:48 +04:00
|
|
|
return $columnName . $this->_aliasCounter++;
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
2009-02-20 08:46:20 +03:00
|
|
|
}
|