1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/Hydrate.php

723 lines
21 KiB
PHP
Raw Normal View History

2006-07-22 03:22:15 +04:00
<?php
2006-12-29 17:01:31 +03:00
/*
2006-08-07 00:46:12 +04: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_Access');
2006-08-07 00:46:12 +04:00
/**
* Doctrine_Hydrate is a base class for Doctrine_RawSql and Doctrine_Query.
* Its purpose is to populate object graphs.
*
*
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/
2006-12-29 17:40:47 +03:00
abstract class Doctrine_Hydrate extends Doctrine_Access
{
2006-07-22 03:22:15 +04:00
/**
* @var array $fetchmodes an array containing all fetchmodes
2006-07-22 03:22:15 +04:00
*/
protected $fetchModes = array();
/**
* @var array $tables an array containing all the tables used in the query
2006-07-22 03:22:15 +04:00
*/
protected $tables = array();
/**
2006-12-29 17:01:31 +03:00
* @var array $collections an array containing all collections
* this hydrater has created/will create
2006-07-22 03:22:15 +04:00
*/
protected $collections = array();
/**
* @var array $joins an array containing all table joins
2006-07-22 03:22:15 +04:00
*/
protected $joins = array();
/**
* @var array $params query input parameters
*/
2006-10-01 20:14:26 +04:00
protected $params = array();
2006-07-22 03:22:15 +04:00
/**
* @var Doctrine_Connection $conn Doctrine_Connection object
2006-07-22 03:22:15 +04:00
*/
protected $conn;
2006-07-22 03:22:15 +04:00
/**
* @var Doctrine_View $view Doctrine_View object
2006-07-22 03:22:15 +04:00
*/
protected $view;
/**
* @var boolean $inheritanceApplied
*/
2006-07-22 03:22:15 +04:00
protected $inheritanceApplied = false;
/**
* @var boolean $aggregate
*/
2006-07-22 03:22:15 +04:00
protected $aggregate = false;
/**
* @var array $compAliases
*/
protected $compAliases = array();
2006-07-22 03:22:15 +04:00
/**
* @var array $tableAliases
*/
protected $tableAliases = array();
/**
* @var array $tableIndexes
*/
protected $tableIndexes = array();
2006-12-24 01:45:36 +03:00
2006-10-17 21:21:21 +04:00
protected $pendingAggregates = array();
/**
* @var array $aggregateMap an array containing all aggregate aliases, keys as dql aliases
* and values as sql aliases
*/
2006-10-17 21:21:21 +04:00
protected $aggregateMap = array();
/**
2006-12-29 17:01:31 +03:00
* @var Doctrine_Hydrate_Alias $aliasHandler
*/
protected $aliasHandler;
2006-07-22 03:22:15 +04:00
/**
* @var array $parts SQL query string parts
*/
protected $parts = array(
2006-12-14 16:26:16 +03:00
'select' => array(),
'from' => array(),
'set' => array(),
'join' => array(),
'where' => array(),
'groupby' => array(),
'having' => array(),
'orderby' => array(),
'limit' => false,
'offset' => false,
2006-07-22 03:22:15 +04:00
);
/**
* constructor
*
* @param Doctrine_Connection|null $connection
2006-07-22 03:22:15 +04:00
*/
2006-12-29 17:40:47 +03:00
public function __construct($connection = null)
{
2006-12-29 17:01:31 +03:00
if ( ! ($connection instanceof Doctrine_Connection)) {
$connection = Doctrine_Manager::getInstance()->getCurrentConnection();
2006-12-29 17:01:31 +03:00
}
$this->conn = $connection;
$this->aliasHandler = new Doctrine_Hydrate_Alias();
2006-07-22 03:22:15 +04:00
}
/**
* getComponentAliases
*
* @return array
*/
2006-12-29 17:40:47 +03:00
public function getComponentAliases()
{
return $this->compAliases;
}
/**
* getTableAliases
*
* @return array
*/
2006-12-29 17:40:47 +03:00
public function getTableAliases()
{
return $this->tableAliases;
}
/**
* getTableIndexes
*
* @return array
*/
2006-12-29 17:40:47 +03:00
public function getTableIndexes()
{
return $this->tableIndexes;
}
2006-12-24 01:45:36 +03:00
/**
* getTables
*
* @return array
*/
2006-12-29 17:40:47 +03:00
public function getTables()
{
2006-12-24 01:45:36 +03:00
return $this->tables;
}
/**
* copyAliases
*
* @return void
*/
2006-12-29 17:40:47 +03:00
public function copyAliases(Doctrine_Hydrate $query)
{
$this->compAliases = $query->getComponentAliases();
$this->tableAliases = $query->getTableAliases();
$this->tableIndexes = $query->getTableIndexes();
2006-12-29 17:01:31 +03:00
return $this;
}
2006-12-29 17:01:31 +03:00
2006-12-29 17:40:47 +03:00
public function getPathAlias($path)
{
2006-10-17 21:21:21 +04:00
$s = array_search($path, $this->compAliases);
2006-12-29 17:01:31 +03:00
if ($s === false)
2006-10-17 21:21:21 +04:00
return $path;
2006-12-24 01:45:36 +03:00
2006-10-17 21:21:21 +04:00
return $s;
}
/**
* createSubquery
2006-12-29 17:01:31 +03:00
*
* @return Doctrine_Hydrate
*/
2006-12-29 17:40:47 +03:00
public function createSubquery()
{
$class = get_class($this);
$obj = new $class();
2006-12-29 17:01:31 +03:00
// copy the aliases to the subquery
$obj->copyAliases($this);
return $obj;
}
/**
2006-08-08 01:07:29 +04:00
* getQuery
*
* @return string
*/
abstract public function getQuery();
/**
* limitSubqueryUsed
2006-09-08 01:25:08 +04:00
*
* @return boolean
*/
2006-12-29 17:40:47 +03:00
public function isLimitSubqueryUsed()
{
return false;
}
/**
* remove
*
* @param $name
*/
2006-12-29 17:40:47 +03:00
public function remove($name)
{
2006-12-29 17:01:31 +03:00
if (isset($this->parts[$name])) {
if ($name == "limit" || $name == "offset") {
$this->parts[$name] = false;
} else {
$this->parts[$name] = array();
}
}
return $this;
}
2006-07-22 03:22:15 +04:00
/**
* clear
* resets all the variables
2006-12-29 17:01:31 +03:00
*
2006-07-22 03:22:15 +04:00
* @return void
*/
2006-12-29 17:40:47 +03:00
protected function clear()
{
2006-07-22 03:22:15 +04:00
$this->fetchModes = array();
$this->tables = array();
$this->parts = array(
"select" => array(),
"from" => array(),
"join" => array(),
"where" => array(),
"groupby" => array(),
"having" => array(),
"orderby" => array(),
"limit" => false,
"offset" => false,
);
$this->inheritanceApplied = false;
$this->aggregate = false;
2006-07-22 03:22:15 +04:00
$this->collections = array();
$this->joins = array();
$this->tableIndexes = array();
$this->tableAliases = array();
$this->aliasHandler->clear();
2006-07-22 03:22:15 +04:00
}
/**
2006-09-08 01:25:08 +04:00
* getConnection
*
2006-08-22 03:19:15 +04:00
* @return Doctrine_Connection
2006-07-22 03:22:15 +04:00
*/
2006-12-29 17:40:47 +03:00
public function getConnection()
{
return $this->conn;
2006-07-22 03:22:15 +04:00
}
/**
* setView
* sets a database view this query object uses
* this method should only be called internally by doctrine
*
* @param Doctrine_View $view database view
* @return void
*/
2006-12-29 17:40:47 +03:00
public function setView(Doctrine_View $view)
{
2006-07-22 03:22:15 +04:00
$this->view = $view;
}
/**
* getView
2006-12-24 01:45:36 +03:00
* returns the view associated with this query object (if any)
2006-07-22 03:22:15 +04:00
*
2006-12-24 01:45:36 +03:00
* @return Doctrine_View the view associated with this query object
2006-07-22 03:22:15 +04:00
*/
2006-12-29 17:40:47 +03:00
public function getView()
{
2006-07-22 03:22:15 +04:00
return $this->view;
}
2006-12-29 14:30:36 +03:00
/**
* getParams
2006-12-29 17:40:47 +03:00
*
2006-12-29 14:30:36 +03:00
* @return array
*/
2006-12-29 17:40:47 +03:00
public function getParams()
{
2006-12-29 14:30:36 +03:00
return $this->params;
}
2006-07-22 03:22:15 +04:00
/**
* getTableAlias
*
* @param string $path
* @return string
*/
2006-12-29 17:40:47 +03:00
final public function getTableAlias($path)
{
2006-12-29 17:01:31 +03:00
if (isset($this->compAliases[$path])) {
2006-10-10 22:09:20 +04:00
$path = $this->compAliases[$path];
2006-12-29 17:01:31 +03:00
}
if ( ! isset($this->tableAliases[$path])) {
2006-07-22 03:22:15 +04:00
return false;
2006-12-29 17:01:31 +03:00
}
2006-07-22 03:22:15 +04:00
return $this->tableAliases[$path];
}
/**
* getCollection
*
* @parma string $name component name
* @param integer $index
*/
2006-12-29 17:40:47 +03:00
private function getCollection($name)
{
2006-07-22 03:22:15 +04:00
$table = $this->tables[$name];
2006-12-29 17:01:31 +03:00
if ( ! isset($this->fetchModes[$name])) {
2006-10-17 21:21:21 +04:00
return new Doctrine_Collection($table);
2006-12-29 17:01:31 +03:00
}
switch ($this->fetchModes[$name]) {
case Doctrine::FETCH_BATCH:
$coll = new Doctrine_Collection_Batch($table);
break;
case Doctrine::FETCH_LAZY:
$coll = new Doctrine_Collection_Lazy($table);
break;
case Doctrine::FETCH_OFFSET:
$coll = new Doctrine_Collection_Offset($table);
break;
case Doctrine::FETCH_IMMEDIATE:
$coll = new Doctrine_Collection_Immediate($table);
break;
case Doctrine::FETCH_LAZY_OFFSET:
$coll = new Doctrine_Collection_LazyOffset($table);
break;
default:
throw new Doctrine_Exception("Unknown fetchmode");
2006-12-29 17:01:31 +03:00
};
2006-07-22 03:22:15 +04:00
return $coll;
}
/**
* convertBoolean
* converts boolean to integers
*
* @param mixed $item
* @return void
*/
2006-12-29 17:40:47 +03:00
public static function convertBoolean(&$item)
{
2006-12-29 17:01:31 +03:00
if (is_bool($item)) {
$item = (int) $item;
2006-12-29 17:01:31 +03:00
}
}
2006-12-23 00:10:14 +03:00
/**
* setParams
*
* @param array $params
*/
public function setParams(array $params = array()) {
$this->params = $params;
}
2006-07-22 03:22:15 +04:00
/**
* execute
* executes the dql query and populates all collections
*
* @param string $params
* @return Doctrine_Collection the root collection
*/
public function execute($params = array(), $return = Doctrine::FETCH_RECORD) {
2006-07-22 03:22:15 +04:00
$this->collections = array();
2006-12-29 17:01:31 +03:00
2006-10-01 20:14:26 +04:00
$params = array_merge($this->params, $params);
2006-12-29 17:01:31 +03:00
array_walk($params, array(__CLASS__, 'convertBoolean'));
2006-12-29 17:01:31 +03:00
if ( ! $this->view) {
$query = $this->getQuery($params);
2006-12-29 17:01:31 +03:00
} else {
2006-07-22 03:22:15 +04:00
$query = $this->view->getSelectSql();
2006-12-29 17:01:31 +03:00
}
2006-07-22 03:22:15 +04:00
2006-12-29 17:01:31 +03:00
if ($this->isLimitSubqueryUsed()
&& $this->conn->getDBH()->getAttribute(PDO::ATTR_DRIVER_NAME) !== 'mysql'
) {
$params = array_merge($params, $params);
2006-12-29 17:01:31 +03:00
}
$stmt = $this->conn->execute($query, $params);
2006-09-08 01:25:08 +04:00
if ($this->aggregate) {
return $stmt->fetchAll(Doctrine::FETCH_ASSOC);
}
2006-12-29 17:01:31 +03:00
if (count($this->tables) == 0) {
2006-10-14 20:58:59 +04:00
throw new Doctrine_Query_Exception("No components selected");
2006-12-29 17:01:31 +03:00
}
2006-10-01 19:18:04 +04:00
$keys = array_keys($this->tables);
$root = $keys[0];
2006-10-01 18:57:27 +04:00
2006-10-01 19:18:04 +04:00
$previd = array();
2006-07-22 03:22:15 +04:00
2006-10-01 19:18:04 +04:00
$coll = $this->getCollection($root);
$prev[$root] = $coll;
2006-07-22 03:22:15 +04:00
2006-12-29 17:01:31 +03:00
if ($this->aggregate)
2006-10-01 19:18:04 +04:00
$return = Doctrine::FETCH_ARRAY;
2006-09-08 01:25:08 +04:00
2006-10-01 19:18:04 +04:00
$array = $this->parseData($stmt);
2006-12-29 17:01:31 +03:00
if ($return == Doctrine::FETCH_ARRAY)
2006-10-01 19:18:04 +04:00
return $array;
2006-08-22 23:34:40 +04:00
2006-12-29 17:01:31 +03:00
foreach ($array as $data) {
2006-10-01 19:18:04 +04:00
/**
* remove duplicated data rows and map data into objects
*/
2006-12-29 17:01:31 +03:00
foreach ($data as $key => $row) {
if (empty($row)) {
2006-10-01 19:18:04 +04:00
continue;
2006-12-29 17:01:31 +03:00
}
//$key = array_search($key, $this->shortAliases);
2006-07-22 03:22:15 +04:00
2006-12-29 17:01:31 +03:00
foreach ($this->tables as $k => $t) {
if ( ! strcasecmp($key, $k)) {
2006-10-24 21:24:58 +04:00
$key = $k;
2006-12-29 17:01:31 +03:00
}
2006-10-24 21:24:58 +04:00
}
2006-10-17 21:21:21 +04:00
2006-12-29 17:01:31 +03:00
if ( !isset($this->tables[$key]) ) {
throw new Doctrine_Exception('No table named ' . $key . ' found.');
}
2006-10-01 19:18:04 +04:00
$ids = $this->tables[$key]->getIdentifier();
$name = $key;
2006-07-22 03:22:15 +04:00
2006-12-29 17:01:31 +03:00
if ($this->isIdentifiable($row, $ids)) {
if ($name !== $root) {
2006-12-22 01:06:08 +03:00
$prev = $this->initRelated($prev, $name);
}
// aggregate values have numeric keys
2006-12-29 17:01:31 +03:00
if (isset($row[0])) {
2006-12-22 01:06:08 +03:00
$component = $this->tables[$name]->getComponentName();
2006-12-29 17:01:31 +03:00
2006-12-22 01:06:08 +03:00
// if the collection already has objects, get the last object
// otherwise create a new one where the aggregate values are being mapped
2006-12-29 17:01:31 +03:00
if ($prev[$name]->count() > 0) {
2006-12-22 01:06:08 +03:00
$record = $prev[$name]->getLast();
2006-12-23 00:10:14 +03:00
} else {
2006-12-22 01:06:08 +03:00
$record = new $component();
$prev[$name]->add($record);
}
2006-07-22 03:22:15 +04:00
2006-12-22 01:06:08 +03:00
$path = array_search($name, $this->tableAliases);
$alias = $this->getPathAlias($path);
2006-10-17 21:21:21 +04:00
2006-12-22 01:06:08 +03:00
// map each aggregate value
2006-12-29 17:01:31 +03:00
foreach ($row as $index => $value) {
2006-12-22 01:06:08 +03:00
$agg = false;
2006-10-17 21:21:21 +04:00
2006-12-29 17:01:31 +03:00
if (isset($this->pendingAggregates[$alias][$index])) {
2006-12-22 01:06:08 +03:00
$agg = $this->pendingAggregates[$alias][$index][3];
2006-10-17 21:21:21 +04:00
}
2006-12-22 01:06:08 +03:00
$record->mapValue($agg, $value);
}
2006-12-22 01:06:08 +03:00
}
2006-10-01 19:18:04 +04:00
continue;
2006-12-22 01:06:08 +03:00
2006-10-01 19:18:04 +04:00
}
2006-07-22 03:22:15 +04:00
2006-12-29 17:01:31 +03:00
if ( ! isset($previd[$name])) {
$previd[$name] = array();
}
if ($previd[$name] !== $row) {
2006-12-22 01:06:08 +03:00
// set internal data
$this->tables[$name]->setData($row);
// initialize a new record
$record = $this->tables[$name]->getRecord();
2006-12-22 01:06:08 +03:00
// aggregate values have numeric keys
2006-12-29 17:01:31 +03:00
if (isset($row[0])) {
2006-12-22 01:06:08 +03:00
$path = array_search($name, $this->tableAliases);
$alias = $this->getPathAlias($path);
2006-09-23 21:02:30 +04:00
2006-12-22 01:06:08 +03:00
// map each aggregate value
2006-12-29 17:01:31 +03:00
foreach ($row as $index => $value) {
2006-12-22 01:06:08 +03:00
$agg = false;
2006-07-22 03:22:15 +04:00
2006-12-29 17:01:31 +03:00
if (isset($this->pendingAggregates[$alias][$index])) {
2006-12-22 01:06:08 +03:00
$agg = $this->pendingAggregates[$alias][$index][3];
2006-12-29 17:01:31 +03:00
}
2006-12-22 01:06:08 +03:00
$record->mapValue($agg, $value);
}
}
2006-10-01 18:57:27 +04:00
2006-12-29 17:01:31 +03:00
if ($name == $root) {
2006-10-01 19:18:04 +04:00
// add record into root collection
$coll->add($record);
unset($previd);
2006-07-22 03:22:15 +04:00
2006-10-01 19:18:04 +04:00
} else {
2006-10-17 21:21:21 +04:00
$prev = $this->addRelated($prev, $name, $record);
2006-07-22 03:22:15 +04:00
}
2006-12-29 17:01:31 +03:00
2006-10-01 19:18:04 +04:00
// following statement is needed to ensure that mappings
// are being done properly when the result set doesn't
// contain the rows in 'right order'
2006-12-29 17:01:31 +03:00
if ($prev[$name] !== $record)
2006-10-01 19:18:04 +04:00
$prev[$name] = $record;
2006-07-22 03:22:15 +04:00
}
2006-10-01 19:18:04 +04:00
$previd[$name] = $row;
}
}
return $coll;
2006-07-22 03:22:15 +04:00
}
2006-12-29 17:01:31 +03:00
/**
2006-10-01 18:57:27 +04:00
* initRelation
*
* @param array $prev
* @param string $name
* @return array
*/
2006-12-29 17:40:47 +03:00
public function initRelated(array $prev, $name)
{
2006-10-01 18:57:27 +04:00
$pointer = $this->joins[$name];
$path = array_search($name, $this->tableAliases);
2006-12-22 01:06:08 +03:00
$tmp = explode('.', $path);
2006-10-01 18:57:27 +04:00
$alias = end($tmp);
2006-12-29 17:01:31 +03:00
if ( ! isset($prev[$pointer]) ) {
2006-10-01 18:57:27 +04:00
return $prev;
2006-12-29 17:01:31 +03:00
}
2006-10-13 01:07:15 +04:00
$fk = $this->tables[$pointer]->getRelation($alias);
2006-12-29 17:01:31 +03:00
if ( ! $fk->isOneToOne()) {
if ($prev[$pointer]->getLast() instanceof Doctrine_Record) {
if ( ! $prev[$pointer]->getLast()->hasReference($alias)) {
2006-10-01 18:57:27 +04:00
$prev[$name] = $this->getCollection($name);
$prev[$pointer]->getLast()->initReference($prev[$name],$fk);
2006-12-29 17:01:31 +03:00
} else {
2006-10-18 01:18:57 +04:00
$prev[$name] = $prev[$pointer]->getLast()->get($alias);
2006-12-29 17:01:31 +03:00
}
2006-10-01 18:57:27 +04:00
}
}
return $prev;
}
/**
* addRelated
*
* @param array $prev
* @param string $name
* @return array
*/
2006-12-29 17:40:47 +03:00
public function addRelated(array $prev, $name, Doctrine_Record $record)
{
2006-10-01 18:57:27 +04:00
$pointer = $this->joins[$name];
2006-10-01 18:57:27 +04:00
$path = array_search($name, $this->tableAliases);
$tmp = explode('.', $path);
2006-10-01 18:57:27 +04:00
$alias = end($tmp);
$fk = $this->tables[$pointer]->getRelation($alias);
2006-12-29 17:01:31 +03:00
if ($fk->isOneToOne()) {
2006-10-01 18:57:27 +04:00
$prev[$pointer]->getLast()->set($fk->getAlias(), $record);
$prev[$name] = $record;
} else {
// one-to-many relation or many-to-many relation
2006-12-29 17:01:31 +03:00
if ( ! $prev[$pointer]->getLast()->hasReference($alias)) {
2006-10-01 18:57:27 +04:00
$prev[$name] = $this->getCollection($name);
$prev[$pointer]->getLast()->initReference($prev[$name], $fk);
} else {
// previous entry found from memory
$prev[$name] = $prev[$pointer]->getLast()->get($alias);
}
$prev[$pointer]->getLast()->addReference($record, $fk);
}
return $prev;
}
/**
* isIdentifiable
2006-12-29 17:01:31 +03:00
* returns whether or not a given data row is identifiable (it contains
* all id fields specified in the second argument)
*
* @param array $row
* @param mixed $ids
* @return boolean
*/
2006-12-29 17:40:47 +03:00
public function isIdentifiable(array $row, $ids)
{
2006-12-29 17:01:31 +03:00
if (is_array($ids)) {
foreach ($ids as $id) {
if ($row[$id] == null)
return true;
}
} else {
2006-12-29 17:01:31 +03:00
if ( ! isset($row[$ids])) {
return true;
2006-12-29 17:01:31 +03:00
}
}
return false;
}
2006-07-22 03:22:15 +04:00
/**
* applyInheritance
* applies column aggregation inheritance to DQL / SQL query
2006-07-22 03:22:15 +04:00
*
* @return string
*/
2006-12-29 17:40:47 +03:00
public function applyInheritance()
{
2006-07-22 03:22:15 +04:00
// get the inheritance maps
$array = array();
2006-12-29 17:01:31 +03:00
foreach ($this->tables as $alias => $table) {
2006-07-22 03:22:15 +04:00
$array[$alias][] = $table->getInheritanceMap();
2006-12-29 17:01:31 +03:00
};
2006-07-22 03:22:15 +04:00
// apply inheritance maps
$str = "";
$c = array();
$index = 0;
2006-12-29 17:01:31 +03:00
foreach ($array as $tableAlias => $maps) {
2006-07-22 03:22:15 +04:00
$a = array();
2006-12-29 17:01:31 +03:00
foreach ($maps as $map) {
2006-07-22 03:22:15 +04:00
$b = array();
2006-12-29 17:01:31 +03:00
foreach ($map as $field => $value) {
if ($index > 0) {
2007-01-15 21:48:50 +03:00
$b[] = '(' . $tableAlias . '.' . $field . ' = ' . $value
. ' OR ' . $tableAlias . '.' . $field . ' IS NULL)';
2006-12-29 17:01:31 +03:00
} else {
$b[] = $tableAlias . '.' . $field . ' = ' . $value;
2006-12-29 17:01:31 +03:00
}
2006-07-22 03:22:15 +04:00
}
2006-12-29 17:01:31 +03:00
if ( ! empty($b)) {
$a[] = implode(' AND ', $b);
2006-12-29 17:01:31 +03:00
}
2006-07-22 03:22:15 +04:00
}
2006-12-29 17:01:31 +03:00
if ( ! empty($a)) {
$c[] = implode(' AND ', $a);
2006-12-29 17:01:31 +03:00
}
2006-07-22 03:22:15 +04:00
$index++;
}
$str .= implode(' AND ', $c);
2006-07-22 03:22:15 +04:00
return $str;
}
/**
* parseData
* parses the data returned by statement object
2006-07-22 03:22:15 +04:00
*
* @param mixed $stmt
2006-07-22 03:22:15 +04:00
* @return array
*/
public function parseData($stmt)
2006-12-29 17:40:47 +03:00
{
2006-07-22 03:22:15 +04:00
$array = array();
2006-12-29 17:01:31 +03:00
while ($data = $stmt->fetch(PDO::FETCH_ASSOC)) {
2006-07-22 03:22:15 +04:00
/**
* parse the data into two-dimensional array
*/
2006-12-29 17:01:31 +03:00
foreach ($data as $key => $value) {
2006-12-24 01:45:36 +03:00
$e = explode('__', $key);
2006-07-22 03:22:15 +04:00
2006-12-24 01:45:36 +03:00
$field = strtolower(array_pop($e));
$component = strtolower(implode('__', $e));
2006-09-03 23:20:02 +04:00
2006-08-22 23:34:40 +04:00
$data[$component][$field] = $value;
2006-07-22 03:22:15 +04:00
unset($data[$key]);
2006-12-29 17:01:31 +03:00
};
2006-07-22 03:22:15 +04:00
$array[] = $data;
2006-12-29 17:01:31 +03:00
};
2006-08-22 23:34:40 +04:00
2006-07-22 03:22:15 +04:00
$stmt->closeCursor();
return $array;
}
/**
* returns a Doctrine_Table for given name
*
* @param string $name component name
2006-12-24 01:45:36 +03:00
* @return Doctrine_Table|boolean
2006-07-22 03:22:15 +04:00
*/
2006-12-29 17:40:47 +03:00
public function getTable($name)
{
2006-12-29 17:01:31 +03:00
if (isset($this->tables[$name])) {
2006-12-24 01:45:36 +03:00
return $this->tables[$name];
2006-12-29 17:01:31 +03:00
}
2006-12-24 01:45:36 +03:00
return false;
2006-07-22 03:22:15 +04:00
}
/**
* @return string returns a string representation of this object
*/
2006-12-29 17:40:47 +03:00
public function __toString()
{
return Doctrine_Lib::formatSql($this->getQuery());
}
2006-07-22 03:22:15 +04:00
}