1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0][DDC-42] Fixed.

This commit is contained in:
romanb 2009-10-13 10:48:46 +00:00
parent f3f522b7f3
commit b9f744893e
8 changed files with 102 additions and 29 deletions

View file

@ -36,15 +36,14 @@ final class DriverManager
* List of supported drivers and their mappings to the driver classes. * List of supported drivers and their mappings to the driver classes.
* *
* @var array * @var array
* @todo REMOVE. Users should directly supply class names instead.
*/ */
private static $_driverMap = array( private static $_driverMap = array(
'pdo_mysql' => 'Doctrine\DBAL\Driver\PDOMySql\Driver', 'pdo_mysql' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
'pdo_sqlite' => 'Doctrine\DBAL\Driver\PDOSqlite\Driver', 'pdo_sqlite' => 'Doctrine\DBAL\Driver\PDOSqlite\Driver',
'pdo_pgsql' => 'Doctrine\DBAL\Driver\PDOPgSql\Driver', 'pdo_pgsql' => 'Doctrine\DBAL\Driver\PDOPgSql\Driver',
'pdo_oci' => 'Doctrine\DBAL\Driver\PDOOracle\Driver', 'pdo_oci' => 'Doctrine\DBAL\Driver\PDOOracle\Driver',
'pdo_mssql' => 'Doctrine\DBAL\Driver\PDOMsSql\Driver', 'pdo_mssql' => 'Doctrine\DBAL\Driver\PDOMsSql\Driver'
'pdo_firebird' => 'Doctrine\DBAL\Driver\PDOFirebird\Driver',
'pdo_informix' => 'Doctrine\DBAL\Driver\PDOInformix\Driver',
); );
/** Private constructor. This class cannot be instantiated. */ /** Private constructor. This class cannot be instantiated. */
@ -66,8 +65,6 @@ final class DriverManager
* pdo_pgsql * pdo_pgsql
* pdo_oracle * pdo_oracle
* pdo_mssql * pdo_mssql
* pdo_firebird
* pdo_informix
* *
* OR 'driverClass' that contains the full class name (with namespace) of the * OR 'driverClass' that contains the full class name (with namespace) of the
* driver class to instantiate. * driver class to instantiate.

View file

@ -1151,9 +1151,10 @@ abstract class AbstractPlatform
/** /**
* Some platforms need the boolean values to be converted. * Some platforms need the boolean values to be converted.
* Default conversion defined here converts to integers. *
* The default conversion in this implementation converts to integers (false => 0, true => 1).
* *
* @param array $item * @param mixed $item
*/ */
public function convertBooleans($item) public function convertBooleans($item)
{ {

View file

@ -0,0 +1,24 @@
<?php
namespace Doctrine\ORM\Query\AST;
class Literal extends Node
{
const STRING = 1;
const BOOLEAN = 2;
const NUMERIC = 3;
public $type;
public $value;
public function __construct($type, $value)
{
$this->type = $type;
$this->value = $value;
}
public function dispatch($walker)
{
return $walker->walkLiteral($this);
}
}

View file

@ -34,7 +34,7 @@ namespace Doctrine\ORM\Query\AST;
*/ */
abstract class Node abstract class Node
{ {
abstract public function dispatch($sqlWalker); abstract public function dispatch($walker);
/** /**
* Dumps the AST Node into a string representation for information purpose only * Dumps the AST Node into a string representation for information purpose only

View file

@ -1875,12 +1875,16 @@ class Parser
{ {
switch ($this->_lexer->lookahead['type']) { switch ($this->_lexer->lookahead['type']) {
case Lexer::T_STRING: case Lexer::T_STRING:
$this->match($this->_lexer->lookahead['value']);
return new AST\Literal(AST\Literal::STRING, $this->_lexer->token['value']);
case Lexer::T_INTEGER: case Lexer::T_INTEGER:
case Lexer::T_FLOAT: case Lexer::T_FLOAT:
$this->match($this->_lexer->lookahead['value']); $this->match($this->_lexer->lookahead['value']);
return new AST\Literal(AST\Literal::NUMERIC, $this->_lexer->token['value']);
return $this->_lexer->token['value']; case Lexer::T_TRUE:
case Lexer::T_FALSE:
$this->match($this->_lexer->lookahead['value']);
return new AST\Literal(AST\Literal::BOOLEAN, $this->_lexer->token['value']);
default: default:
$this->syntaxError('Literal'); $this->syntaxError('Literal');
} }
@ -2040,11 +2044,6 @@ class Parser
case Lexer::T_INPUT_PARAMETER: case Lexer::T_INPUT_PARAMETER:
return $this->InputParameter(); return $this->InputParameter();
case Lexer::T_STRING:
case Lexer::T_INTEGER:
case Lexer::T_FLOAT:
return $this->Literal();
default: default:
$peek = $this->_lexer->glimpse(); $peek = $this->_lexer->glimpse();
@ -2054,10 +2053,9 @@ class Parser
} }
return $this->FunctionDeclaration(); return $this->FunctionDeclaration();
} else {
return $this->Literal();
} }
$this->syntaxError();
break;
} }
} }

View file

@ -1338,13 +1338,20 @@ class SqlWalker implements TreeWalker
if ($inExpr->subselect) { if ($inExpr->subselect) {
$sql .= $this->walkSubselect($inExpr->subselect); $sql .= $this->walkSubselect($inExpr->subselect);
} else { } else {
$sql .= implode(', ', array_map(array($this, 'walkLiteral'), $inExpr->literals)); $sql .= implode(', ', array_map(array($this, 'walkInParameter'), $inExpr->literals));
} }
$sql .= ')'; $sql .= ')';
return $sql; return $sql;
} }
public function walkInParameter($inParam)
{
return $inParam instanceof AST\InputParameter ?
$this->walkInputParameter($inParam) :
$this->walkLiteral($inParam);
}
/** /**
* Walks down a literal that represents an AST node, thereby generating the appropriate SQL. * Walks down a literal that represents an AST node, thereby generating the appropriate SQL.
@ -1354,11 +1361,18 @@ class SqlWalker implements TreeWalker
*/ */
public function walkLiteral($literal) public function walkLiteral($literal)
{ {
if ($literal instanceof AST\InputParameter) { switch ($literal->type) {
return $this->walkInputParameter($literal); case AST\Literal::STRING:
return $this->_conn->quote($literal->value);
case AST\Literal::BOOLEAN:
$bool = strtolower($literal->value) == 'true' ? true : false;
$boolVal = $this->_conn->getDatabasePlatform()->convertBooleans($bool);
return is_string($boolVal) ? $this->_conn->quote($boolVal) : $boolVal;
case AST\Literal::NUMERIC:
return $literal->value;
default:
throw QueryException::invalidLiteral($literal);
} }
return $literal; //TODO: quote() ?
} }
/** /**
@ -1513,11 +1527,7 @@ class SqlWalker implements TreeWalker
$sql = ($factor->isNegativeSigned() ? '-' : ($factor->isPositiveSigned() ? '+' : '')); $sql = ($factor->isNegativeSigned() ? '-' : ($factor->isPositiveSigned() ? '+' : ''));
$primary = $factor->arithmeticPrimary; $primary = $factor->arithmeticPrimary;
if (is_numeric($primary)) { if ($primary instanceof AST\SimpleArithmeticExpression) {
$sql .= $primary;
} else if (is_string($primary)) {
$sql .= $this->_conn->quote($primary);
} else if ($primary instanceof AST\SimpleArithmeticExpression) {
$sql .= '(' . $this->walkSimpleArithmeticExpression($primary) . ')'; $sql .= '(' . $this->walkSimpleArithmeticExpression($primary) . ')';
} else if ($primary instanceof AST\Node) { } else if ($primary instanceof AST\Node) {
$sql .= $primary->dispatch($this); $sql .= $primary->dispatch($this);

View file

@ -346,6 +346,11 @@ class LanguageRecognitionTest extends \Doctrine\Tests\OrmTestCase
$this->assertValidDql('SELECT p FROM Doctrine\Tests\Models\CMS\CmsPhonenumber p WHERE p.user = ?1'); $this->assertValidDql('SELECT p FROM Doctrine\Tests\Models\CMS\CmsPhonenumber p WHERE p.user = ?1');
} }
public function testBooleanLiteralInWhere()
{
$this->assertValidDql('SELECT b FROM Doctrine\Tests\Models\Generic\BooleanModel b WHERE b.booleanField = true');
}
/** /**
* This checks for invalid attempt to hydrate a proxy. It should throw an exception * This checks for invalid attempt to hydrate a proxy. It should throw an exception
* *

View file

@ -416,6 +416,44 @@ class SelectSqlGenerationTest extends \Doctrine\Tests\OrmTestCase
); );
} }
public function testBooleanLiteralInWhereOnSqlite()
{
$oldPlat = $this->_em->getConnection()->getDatabasePlatform();
$this->_em->getConnection()->setDatabasePlatform(new \Doctrine\DBAL\Platforms\SqlitePlatform);
$this->assertSqlGeneration(
"SELECT b FROM Doctrine\Tests\Models\Generic\BooleanModel b WHERE b.booleanField = true",
"SELECT b0_.id AS id0, b0_.booleanField AS booleanField1 FROM boolean_model b0_ WHERE b0_.booleanField = 1"
);
$this->assertSqlGeneration(
"SELECT b FROM Doctrine\Tests\Models\Generic\BooleanModel b WHERE b.booleanField = false",
"SELECT b0_.id AS id0, b0_.booleanField AS booleanField1 FROM boolean_model b0_ WHERE b0_.booleanField = 0"
);
$this->_em->getConnection()->setDatabasePlatform($oldPlat);
}
public function testBooleanLiteralInWhereOnPostgres()
{
$oldPlat = $this->_em->getConnection()->getDatabasePlatform();
$this->_em->getConnection()->setDatabasePlatform(new \Doctrine\DBAL\Platforms\PostgreSqlPlatform);
$this->assertSqlGeneration(
"SELECT b FROM Doctrine\Tests\Models\Generic\BooleanModel b WHERE b.booleanField = true",
"SELECT b0_.id AS id0, b0_.booleanField AS booleanField1 FROM boolean_model b0_ WHERE b0_.booleanField = 'true'"
);
$this->assertSqlGeneration(
"SELECT b FROM Doctrine\Tests\Models\Generic\BooleanModel b WHERE b.booleanField = false",
"SELECT b0_.id AS id0, b0_.booleanField AS booleanField1 FROM boolean_model b0_ WHERE b0_.booleanField = 'false'"
);
$this->_em->getConnection()->setDatabasePlatform($oldPlat);
}
/* Not yet implemented, needs more thought /* Not yet implemented, needs more thought
public function testSingleValuedAssociationFieldInWhere() public function testSingleValuedAssociationFieldInWhere()
{ {