1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/lib/Doctrine/Query/Where.php

176 lines
6.6 KiB
PHP
Raw Normal View History

2006-06-30 03:04:39 +04:00
<?php
2007-01-02 22:33:22 +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.phpdoctrine.com>.
*/
Doctrine::autoload('Doctrine_Query_Condition');
/**
* Doctrine_Query_Where
*
* @package Doctrine
* @subpackage Query
2007-01-02 22:33:22 +03: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>
*/
2006-12-29 17:40:47 +03:00
class Doctrine_Query_Where extends Doctrine_Query_Condition
{
2007-08-12 01:53:02 +04:00
public function load($where)
2006-12-29 17:40:47 +03:00
{
2007-08-12 01:53:02 +04:00
$where = Doctrine_Tokenizer::bracketTrim(trim($where));
2007-07-07 00:55:15 +04:00
$conn = $this->query->getConnection();
2007-08-12 01:53:02 +04:00
$terms = Doctrine_Tokenizer::sqlExplode($where);
2007-08-12 01:53:02 +04:00
if (count($terms) > 1) {
if (substr($where, 0, 6) == 'EXISTS') {
return $this->parseExists($where, true);
2006-12-29 17:01:31 +03:00
} elseif (substr($where, 0, 10) == 'NOT EXISTS') {
return $this->parseExists($where, false);
2006-12-29 17:01:31 +03:00
}
}
2007-08-12 01:53:02 +04:00
if (count($terms) < 3) {
$terms = Doctrine_Tokenizer::sqlExplode($where, array('=', '<', '<>', '>', '!='));
2006-10-08 23:10:21 +04:00
}
2007-05-16 23:20:55 +04:00
2007-08-12 01:53:02 +04:00
if (count($terms) > 1) {
$first = array_shift($terms);
$value = array_pop($terms);
$operator = trim(substr($where, strlen($first), -strlen($value)));
$table = null;
$field = null;
if (strpos($first, "'") === false && strpos($first, '(') === false) {
// normal field reference found
$a = explode('.', $first);
$field = array_pop($a);
$reference = implode('.', $a);
2007-08-14 01:23:56 +04:00
if (empty($reference)) {
$map = $this->query->getRootDeclaration();
$alias = $this->query->getTableAlias($this->query->getRootAlias());
2007-09-21 00:21:08 +04:00
$table = $map['table'];
2007-08-14 01:23:56 +04:00
} else {
$map = $this->query->load($reference, false);
$alias = $this->query->getTableAlias($reference);
$table = $map['table'];
}
2007-08-14 01:14:53 +04:00
if ($this->query->getType() === Doctrine_Query::SELECT) {
$first = $conn->quoteIdentifier($alias)
. '.'
. $conn->quoteIdentifier($table->getColumnName($field));
} else {
$first = $conn->quoteIdentifier($table->getColumnName($field));
}
2007-08-12 01:53:02 +04:00
} else {
$first = $this->query->parseClause($first);
}
$sql = $first . ' ' . $operator . ' ' . $this->parseValue($value, $table, $field);
return $sql;
} else {
2007-05-16 23:20:55 +04:00
2007-08-12 01:53:02 +04:00
}
}
2007-07-07 00:55:15 +04:00
2007-08-12 01:53:02 +04:00
public function parseValue($value, Doctrine_Table $table = null, $field = null)
{
if (substr($value, 0, 1) == '(') {
// trim brackets
$trimmed = Doctrine_Tokenizer::bracketTrim($value);
2006-10-27 00:53:59 +04:00
2007-08-12 01:53:02 +04:00
if (substr($trimmed, 0, 4) == 'FROM' ||
substr($trimmed, 0, 6) == 'SELECT') {
2007-01-27 13:28:25 +03:00
2007-08-12 01:53:02 +04:00
// subquery found
$q = new Doctrine_Query();
$value = '(' . $q->isSubquery(true)->parseQuery($trimmed)->getQuery() . ')';
} elseif (substr($trimmed, 0, 4) == 'SQL:') {
$value = '(' . substr($trimmed, 4) . ')';
} else {
// simple in expression found
$e = Doctrine_Tokenizer::sqlExplode($trimmed, ',');
$value = array();
$index = false;
foreach ($e as $part) {
if (isset($table) && isset($field)) {
$index = $table->enumIndex($field, trim($part, "'"));
2007-05-18 03:13:58 +04:00
}
2007-08-12 01:53:02 +04:00
if ($index !== false) {
$value[] = $index;
2006-12-29 17:01:31 +03:00
} else {
2007-08-12 01:53:02 +04:00
$value[] = $this->parseLiteralValue($part);
2006-12-29 17:01:31 +03:00
}
}
2007-09-21 00:21:08 +04:00
2007-08-12 01:53:02 +04:00
$value = '(' . implode(', ', $value) . ')';
}
} elseif (substr($value, 0, 1) == ':' || $value === '?') {
2007-08-12 01:53:02 +04:00
// placeholder found
if (isset($table) && isset($field) && $table->getTypeOf($field) == 'enum') {
$this->query->addEnumParam($value, $table, $field);
} else {
$this->query->addEnumParam($value, null, null);
}
} else {
2007-08-14 01:14:53 +04:00
$enumIndex = false;
if (isset($table) && isset($field)) {
// check if value is enumerated value
$enumIndex = $table->enumIndex($field, trim($value, "'"));
}
2006-09-15 01:10:02 +04:00
2007-08-12 01:53:02 +04:00
if ($enumIndex !== false) {
$value = $enumIndex;
} else {
$value = $this->parseLiteralValue($value);
}
2006-10-08 23:10:21 +04:00
}
2007-08-12 01:53:02 +04:00
return $value;
2006-06-30 03:04:39 +04:00
}
2006-10-27 01:32:52 +04:00
/**
* parses an EXISTS expression
*
* @param string $where query where part to be parsed
* @param boolean $negation whether or not to use the NOT keyword
* @return string
*/
2006-12-29 17:40:47 +03:00
public function parseExists($where, $negation)
{
$operator = ($negation) ? 'EXISTS' : 'NOT EXISTS';
$pos = strpos($where, '(');
2006-12-29 17:01:31 +03:00
2007-05-16 23:20:55 +04:00
if ($pos == false) {
2007-08-12 01:53:02 +04:00
throw new Doctrine_Query_Exception('Unknown expression, expected a subquery with () -marks');
2007-05-16 23:20:55 +04:00
}
2007-05-16 23:20:55 +04:00
$sub = Doctrine_Tokenizer::bracketTrim(substr($where, $pos));
2007-04-14 20:28:09 +04:00
return $operator . ' (' . $this->query->createSubquery()->parseQuery($sub, false)->getQuery() . ')';
}
}