This commit is contained in:
parent
82ba74e2e8
commit
827755afd3
@ -1,632 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* $Id: Collection.php 1207 2007-03-31 19:49:23Z zYne $
|
|
||||||
*
|
|
||||||
* 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');
|
|
||||||
/**
|
|
||||||
* Doctrine_Collection
|
|
||||||
* Collection of Doctrine_Record objects.
|
|
||||||
*
|
|
||||||
* @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: 1207 $
|
|
||||||
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
||||||
*/
|
|
||||||
class Doctrine_Collection2 extends Doctrine_Collection implements Countable, IteratorAggregate, Serializable
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array $data an array containing the records of this collection
|
|
||||||
*/
|
|
||||||
protected $data = array();
|
|
||||||
/**
|
|
||||||
* @var Doctrine_Table $table each collection has only records of specified table
|
|
||||||
*/
|
|
||||||
protected $_table;
|
|
||||||
/**
|
|
||||||
* @var array $_snapshot a snapshot of the fetched data
|
|
||||||
*/
|
|
||||||
protected $_snapshot = array();
|
|
||||||
/**
|
|
||||||
* @var Doctrine_Record $reference collection can belong to a record
|
|
||||||
*/
|
|
||||||
protected $reference;
|
|
||||||
/**
|
|
||||||
* @var string $referenceField the reference field of the collection
|
|
||||||
*/
|
|
||||||
protected $referenceField;
|
|
||||||
/**
|
|
||||||
* @var Doctrine_Relation the record this collection is related to, if any
|
|
||||||
*/
|
|
||||||
protected $relation;
|
|
||||||
/**
|
|
||||||
* @var string $keyColumn the name of the column that is used for collection key mapping
|
|
||||||
*/
|
|
||||||
protected $keyColumn;
|
|
||||||
/**
|
|
||||||
* @var Doctrine_Null $null used for extremely fast null value testing
|
|
||||||
*/
|
|
||||||
protected static $null;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* constructor
|
|
||||||
*
|
|
||||||
* @param Doctrine_Table|string $table
|
|
||||||
*/
|
|
||||||
public function __construct($table)
|
|
||||||
{
|
|
||||||
if ( ! ($table instanceof Doctrine_Table)) {
|
|
||||||
$table = Doctrine_Manager::getInstance()
|
|
||||||
->getTable($table);
|
|
||||||
}
|
|
||||||
$this->_table = $table;
|
|
||||||
|
|
||||||
$name = $table->getAttribute(Doctrine::ATTR_COLL_KEY);
|
|
||||||
if ($name !== null) {
|
|
||||||
$this->keyColumn = $name;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* initNullObject
|
|
||||||
* initializes the null object for this collection
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function initNullObject(Doctrine_Null $null)
|
|
||||||
{
|
|
||||||
self::$null = $null;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getTable
|
|
||||||
* returns the table this collection belongs to
|
|
||||||
*
|
|
||||||
* @return Doctrine_Table
|
|
||||||
*/
|
|
||||||
public function getTable()
|
|
||||||
{
|
|
||||||
return $this->_table;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* this method is automatically called when this Doctrine_Collection is serialized
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function serialize()
|
|
||||||
{
|
|
||||||
$vars = get_object_vars($this);
|
|
||||||
|
|
||||||
unset($vars['reference']);
|
|
||||||
unset($vars['reference_field']);
|
|
||||||
unset($vars['relation']);
|
|
||||||
unset($vars['expandable']);
|
|
||||||
unset($vars['expanded']);
|
|
||||||
unset($vars['generator']);
|
|
||||||
|
|
||||||
$vars['table'] = $vars['table']->getComponentName();
|
|
||||||
|
|
||||||
return serialize($vars);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* unseralize
|
|
||||||
* this method is automatically called everytime a Doctrine_Collection object is unserialized
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function unserialize($serialized)
|
|
||||||
{
|
|
||||||
$manager = Doctrine_Manager::getInstance();
|
|
||||||
$connection = $manager->getCurrentConnection();
|
|
||||||
|
|
||||||
$array = unserialize($serialized);
|
|
||||||
|
|
||||||
foreach ($array as $name => $values) {
|
|
||||||
$this->$name = $values;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->_table = $connection->getTable($this->_table);
|
|
||||||
|
|
||||||
$this->expanded = array();
|
|
||||||
$this->expandable = true;
|
|
||||||
|
|
||||||
$name = $this->_table->getAttribute(Doctrine::ATTR_COLL_KEY);
|
|
||||||
if ($name !== null) {
|
|
||||||
$this->keyColumn = $name;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* setKeyColumn
|
|
||||||
* sets the key column for this collection
|
|
||||||
*
|
|
||||||
* @param string $column
|
|
||||||
* @return Doctrine_Collection
|
|
||||||
*/
|
|
||||||
public function setKeyColumn($column)
|
|
||||||
{
|
|
||||||
$this->keyColumn = $column;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getKeyColumn
|
|
||||||
* returns the name of the key column
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getKeyColumn()
|
|
||||||
{
|
|
||||||
return $this->column;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getData
|
|
||||||
* returns all the records as an array
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getData()
|
|
||||||
{
|
|
||||||
return $this->data;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getFirst
|
|
||||||
* returns the first record in the collection
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getFirst()
|
|
||||||
{
|
|
||||||
return reset($this->data);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getLast
|
|
||||||
* returns the last record in the collection
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getLast()
|
|
||||||
{
|
|
||||||
return end($this->data);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* setReference
|
|
||||||
* sets a reference pointer
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function setReference(Doctrine_Record $record, Doctrine_Relation $relation)
|
|
||||||
{
|
|
||||||
$this->reference = $record;
|
|
||||||
$this->relation = $relation;
|
|
||||||
|
|
||||||
if ($relation instanceof Doctrine_Relation_ForeignKey
|
|
||||||
|| $relation instanceof Doctrine_Relation_LocalKey
|
|
||||||
) {
|
|
||||||
|
|
||||||
$this->referenceField = $relation->getForeign();
|
|
||||||
|
|
||||||
$value = $record->get($relation->getLocal());
|
|
||||||
|
|
||||||
foreach ($this->getNormalIterator() as $record) {
|
|
||||||
if ($value !== null) {
|
|
||||||
$record->set($this->referenceField, $value, false);
|
|
||||||
} else {
|
|
||||||
$record->set($this->referenceField, $this->reference, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} elseif ($relation instanceof Doctrine_Relation_Association) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getReference
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getReference()
|
|
||||||
{
|
|
||||||
return $this->reference;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* remove
|
|
||||||
* removes a specified collection element
|
|
||||||
*
|
|
||||||
* @param mixed $key
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function remove($key)
|
|
||||||
{
|
|
||||||
if ( ! isset($this->data[$key])) {
|
|
||||||
$this->expand($key);
|
|
||||||
|
|
||||||
throw new Doctrine_Collection_Exception('Unknown key ' . $key);
|
|
||||||
}
|
|
||||||
|
|
||||||
$removed = $this->data[$key];
|
|
||||||
|
|
||||||
unset($this->data[$key]);
|
|
||||||
return $removed;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* contains
|
|
||||||
* whether or not this collection contains a specified element
|
|
||||||
*
|
|
||||||
* @param mixed $key the key of the element
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function contains($key)
|
|
||||||
{
|
|
||||||
return isset($this->data[$key]);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* get
|
|
||||||
* returns a record for given key
|
|
||||||
*
|
|
||||||
* There are two special cases:
|
|
||||||
*
|
|
||||||
* 1. if null is given as a key a new record is created and attached
|
|
||||||
* at the end of the collection
|
|
||||||
*
|
|
||||||
* 2. if given key does not exist, then a new record is create and attached
|
|
||||||
* to the given key
|
|
||||||
*
|
|
||||||
* Collection also maps referential information to newly created records
|
|
||||||
*
|
|
||||||
* @param mixed $key the key of the element
|
|
||||||
* @return Doctrine_Record return a specified record
|
|
||||||
*/
|
|
||||||
public function get($key)
|
|
||||||
{
|
|
||||||
if ($key === null || ! isset($this->data[$key])) {
|
|
||||||
$record = $this->_table->create();
|
|
||||||
|
|
||||||
if (isset($this->referenceField)) {
|
|
||||||
$record->set($this->referenceField, $this->reference, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->data[] = $record;
|
|
||||||
|
|
||||||
return $record;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->data[$key];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array an array containing all primary keys
|
|
||||||
*/
|
|
||||||
public function getPrimaryKeys()
|
|
||||||
{
|
|
||||||
$list = array();
|
|
||||||
$name = $this->_table->getIdentifier();
|
|
||||||
|
|
||||||
foreach ($this->data as $record) {
|
|
||||||
if (is_array($record) && isset($record[$name])) {
|
|
||||||
$list[] = $record[$name];
|
|
||||||
} else {
|
|
||||||
$list[] = $record->getIncremented();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $list;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* returns all keys
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getKeys()
|
|
||||||
{
|
|
||||||
return array_keys($this->data);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* count
|
|
||||||
* this class implements interface countable
|
|
||||||
* returns the number of records in this collection
|
|
||||||
*
|
|
||||||
* @return integer
|
|
||||||
*/
|
|
||||||
public function count()
|
|
||||||
{
|
|
||||||
return count($this->data);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* set
|
|
||||||
* @param integer $key
|
|
||||||
* @param Doctrine_Record $record
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function set($key, Doctrine_Record $record)
|
|
||||||
{
|
|
||||||
if (isset($this->referenceField)) {
|
|
||||||
$record->set($this->referenceField, $this->reference, false);
|
|
||||||
}
|
|
||||||
$this->data[$key] = $record;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* adds a record to collection
|
|
||||||
* @param Doctrine_Record $record record to be added
|
|
||||||
* @param string $key optional key for the record
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function add(Doctrine_Record $record, $key = null)
|
|
||||||
{
|
|
||||||
if (isset($this->referenceField)) {
|
|
||||||
$record->set($this->referenceField, $this->reference, false);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* for some weird reason in_array cannot be used here (php bug ?)
|
|
||||||
*
|
|
||||||
* if used it results in fatal error : [ nesting level too deep ]
|
|
||||||
*/
|
|
||||||
foreach ($this->data as $val) {
|
|
||||||
if ($val === $record) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($key)) {
|
|
||||||
if (isset($this->data[$key])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
$this->data[$key] = $record;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($this->keyColumn)) {
|
|
||||||
$value = $record->get($this->keyColumn);
|
|
||||||
if ($value === null) {
|
|
||||||
throw new Doctrine_Collection_Exception("Couldn't create collection index. Record field '".$this->keyColumn."' was null.");
|
|
||||||
}
|
|
||||||
$this->data[$value] = $record;
|
|
||||||
} else {
|
|
||||||
$this->data[] = $record;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* loadRelated
|
|
||||||
*
|
|
||||||
* @param mixed $name
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function loadRelated($name = null)
|
|
||||||
{
|
|
||||||
$list = array();
|
|
||||||
$query = new Doctrine_Query($this->_table->getConnection());
|
|
||||||
|
|
||||||
if ( ! isset($name)) {
|
|
||||||
foreach ($this->data as $record) {
|
|
||||||
$value = $record->getIncremented();
|
|
||||||
if ($value !== null) {
|
|
||||||
$list[] = $value;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
$query->from($this->_table->getComponentName() . '(' . implode(", ",$this->_table->getPrimaryKeys()) . ')');
|
|
||||||
$query->where($this->_table->getComponentName() . '.id IN (' . substr(str_repeat("?, ", count($list)),0,-2) . ')');
|
|
||||||
|
|
||||||
return $query;
|
|
||||||
}
|
|
||||||
|
|
||||||
$rel = $this->_table->getRelation($name);
|
|
||||||
|
|
||||||
if ($rel instanceof Doctrine_Relation_LocalKey || $rel instanceof Doctrine_Relation_ForeignKey) {
|
|
||||||
foreach ($this->data as $record) {
|
|
||||||
$list[] = $record[$rel->getLocal()];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
foreach ($this->data as $record) {
|
|
||||||
$value = $record->getIncremented();
|
|
||||||
if ($value !== null) {
|
|
||||||
$list[] = $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$dql = $rel->getRelationDql(count($list), 'collection');
|
|
||||||
|
|
||||||
$coll = $query->query($dql, $list);
|
|
||||||
|
|
||||||
$this->populateRelated($name, $coll);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* populateRelated
|
|
||||||
*
|
|
||||||
* @param string $name
|
|
||||||
* @param Doctrine_Collection $coll
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function populateRelated($name, Doctrine_Collection $coll)
|
|
||||||
{
|
|
||||||
$rel = $this->_table->getRelation($name);
|
|
||||||
$table = $rel->getTable();
|
|
||||||
$foreign = $rel->getForeign();
|
|
||||||
$local = $rel->getLocal();
|
|
||||||
|
|
||||||
if ($rel instanceof Doctrine_Relation_LocalKey) {
|
|
||||||
foreach ($this->data as $key => $record) {
|
|
||||||
foreach ($coll as $k => $related) {
|
|
||||||
if ($related[$foreign] == $record[$local]) {
|
|
||||||
$this->data[$key]->setRelated($name, $related);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} elseif ($rel instanceof Doctrine_Relation_ForeignKey) {
|
|
||||||
foreach ($this->data as $key => $record) {
|
|
||||||
if ( ! $record->exists()) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$sub = new Doctrine_Collection($table);
|
|
||||||
|
|
||||||
foreach ($coll as $k => $related) {
|
|
||||||
if ($related[$foreign] == $record[$local]) {
|
|
||||||
$sub->add($related);
|
|
||||||
$coll->remove($k);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->data[$key]->setRelated($name, $sub);
|
|
||||||
}
|
|
||||||
} elseif ($rel instanceof Doctrine_Relation_Association) {
|
|
||||||
$identifier = $this->_table->getIdentifier();
|
|
||||||
$asf = $rel->getAssociationFactory();
|
|
||||||
$name = $table->getComponentName();
|
|
||||||
|
|
||||||
foreach ($this->data as $key => $record) {
|
|
||||||
if ( ! $record->exists()) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$sub = new Doctrine_Collection($table);
|
|
||||||
foreach ($coll as $k => $related) {
|
|
||||||
if ($related->get($local) == $record[$identifier]) {
|
|
||||||
$sub->add($related->get($name));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$this->data[$key]->setRelated($name, $sub);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getNormalIterator
|
|
||||||
* returns normal iterator - an iterator that will not expand this collection
|
|
||||||
*
|
|
||||||
* @return Doctrine_Iterator_Normal
|
|
||||||
*/
|
|
||||||
public function getNormalIterator()
|
|
||||||
{
|
|
||||||
return new Doctrine_Collection_Iterator_Normal($this);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* takeSnapshot
|
|
||||||
* takes a snapshot from this collection
|
|
||||||
*
|
|
||||||
* snapshots are used for diff processing, for example
|
|
||||||
* when a fetched collection has three elements, then two of those
|
|
||||||
* are being removed the diff would contain one element
|
|
||||||
*
|
|
||||||
* Doctrine_Collection::save() attaches the diff with the help of last
|
|
||||||
* snapshot.
|
|
||||||
*
|
|
||||||
* @return Doctrine_Collection
|
|
||||||
*/
|
|
||||||
public function takeSnapshot()
|
|
||||||
{
|
|
||||||
$this->_snapshot = $this->data;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getSnapshot
|
|
||||||
* returns the data of the last snapshot
|
|
||||||
*
|
|
||||||
* @return array returns the data in last snapshot
|
|
||||||
*/
|
|
||||||
public function getSnapshot()
|
|
||||||
{
|
|
||||||
return $this->_snapshot;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* processDiff
|
|
||||||
* processes the difference of the last snapshot and the current data
|
|
||||||
*
|
|
||||||
* an example:
|
|
||||||
* Snapshot with the objects 1, 2 and 4
|
|
||||||
* Current data with objects 2, 3 and 5
|
|
||||||
*
|
|
||||||
* The process would:
|
|
||||||
* 1. remove object 4
|
|
||||||
* 2. add objects 3 and 5
|
|
||||||
*
|
|
||||||
* @return Doctrine_Collection
|
|
||||||
*/
|
|
||||||
public function processDiff()
|
|
||||||
{
|
|
||||||
foreach (array_diff($this->snapshot, $this->data) as $record) {
|
|
||||||
$record->delete();
|
|
||||||
}
|
|
||||||
foreach (array_diff($this->data, $this->snapshot) as $record) {
|
|
||||||
$record->save();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* save
|
|
||||||
* saves all records of this collection
|
|
||||||
*
|
|
||||||
* @return Doctrine_Collection
|
|
||||||
*/
|
|
||||||
public function save(Doctrine_Connection $conn = null)
|
|
||||||
{
|
|
||||||
if ($conn == null) {
|
|
||||||
$conn = $this->_table->getConnection();
|
|
||||||
}
|
|
||||||
$conn->beginTransaction();
|
|
||||||
|
|
||||||
foreach ($this as $key => $record) {
|
|
||||||
$record->save($conn);
|
|
||||||
}
|
|
||||||
|
|
||||||
$conn->commit();
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* delete
|
|
||||||
* single shot delete
|
|
||||||
* deletes all records from this collection
|
|
||||||
* and uses only one database query to perform this operation
|
|
||||||
*
|
|
||||||
* @return Doctrine_Collection
|
|
||||||
*/
|
|
||||||
public function delete(Doctrine_Connection $conn = null)
|
|
||||||
{
|
|
||||||
if ($conn == null) {
|
|
||||||
$conn = $this->_table->getConnection();
|
|
||||||
}
|
|
||||||
|
|
||||||
$conn->beginTransaction();
|
|
||||||
|
|
||||||
foreach ($this as $key => $record) {
|
|
||||||
$record->delete($conn);
|
|
||||||
}
|
|
||||||
|
|
||||||
$conn->commit();
|
|
||||||
|
|
||||||
$this->data = array();
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getIterator
|
|
||||||
* @return object ArrayIterator
|
|
||||||
*/
|
|
||||||
public function getIterator()
|
|
||||||
{
|
|
||||||
$data = $this->data;
|
|
||||||
return new ArrayIterator($data);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* returns a string representation of this object
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return Doctrine_Lib::getCollectionAsString($this);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,633 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* $Id: Hydrate.php 1255 2007-04-16 14:43:12Z pookey $
|
|
||||||
*
|
|
||||||
* 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_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: 1255 $
|
|
||||||
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
||||||
*/
|
|
||||||
class Doctrine_Hydrate2
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* QUERY TYPE CONSTANTS
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* constant for SELECT queries
|
|
||||||
*/
|
|
||||||
const SELECT = 0;
|
|
||||||
/**
|
|
||||||
* constant for DELETE queries
|
|
||||||
*/
|
|
||||||
const DELETE = 1;
|
|
||||||
/**
|
|
||||||
* constant for UPDATE queries
|
|
||||||
*/
|
|
||||||
const UPDATE = 2;
|
|
||||||
/**
|
|
||||||
* constant for INSERT queries
|
|
||||||
*/
|
|
||||||
const INSERT = 3;
|
|
||||||
/**
|
|
||||||
* constant for CREATE queries
|
|
||||||
*/
|
|
||||||
const CREATE = 4;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array $params query input parameters
|
|
||||||
*/
|
|
||||||
protected $params = array();
|
|
||||||
/**
|
|
||||||
* @var Doctrine_Connection $conn Doctrine_Connection object
|
|
||||||
*/
|
|
||||||
protected $conn;
|
|
||||||
/**
|
|
||||||
* @var Doctrine_View $view Doctrine_View object
|
|
||||||
*/
|
|
||||||
protected $view;
|
|
||||||
/**
|
|
||||||
* @var array $_aliasMap two dimensional array containing the map for query aliases
|
|
||||||
* Main keys are component aliases
|
|
||||||
*
|
|
||||||
* table table object associated with given alias
|
|
||||||
*
|
|
||||||
* relation the relation object owned by the parent
|
|
||||||
*
|
|
||||||
* parent the alias of the parent
|
|
||||||
*/
|
|
||||||
protected $_aliasMap = array();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array $tableAliases
|
|
||||||
*/
|
|
||||||
protected $tableAliases = array();
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
protected $pendingAggregates = array();
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
protected $subqueryAggregates = array();
|
|
||||||
/**
|
|
||||||
* @var array $aggregateMap an array containing all aggregate aliases, keys as dql aliases
|
|
||||||
* and values as sql aliases
|
|
||||||
*/
|
|
||||||
protected $aggregateMap = array();
|
|
||||||
/**
|
|
||||||
* @var Doctrine_Hydrate_Alias $aliasHandler
|
|
||||||
*/
|
|
||||||
protected $aliasHandler;
|
|
||||||
/**
|
|
||||||
* @var array $parts SQL query string parts
|
|
||||||
*/
|
|
||||||
protected $parts = array(
|
|
||||||
'select' => array(),
|
|
||||||
'from' => array(),
|
|
||||||
'set' => array(),
|
|
||||||
'join' => array(),
|
|
||||||
'where' => array(),
|
|
||||||
'groupby' => array(),
|
|
||||||
'having' => array(),
|
|
||||||
'orderby' => array(),
|
|
||||||
'limit' => false,
|
|
||||||
'offset' => false,
|
|
||||||
);
|
|
||||||
/**
|
|
||||||
* @var integer $type the query type
|
|
||||||
*
|
|
||||||
* @see Doctrine_Query::* constants
|
|
||||||
*/
|
|
||||||
protected $type = self::SELECT;
|
|
||||||
/**
|
|
||||||
* constructor
|
|
||||||
*
|
|
||||||
* @param Doctrine_Connection|null $connection
|
|
||||||
*/
|
|
||||||
public function __construct($connection = null)
|
|
||||||
{
|
|
||||||
if ( ! ($connection instanceof Doctrine_Connection)) {
|
|
||||||
$connection = Doctrine_Manager::getInstance()->getCurrentConnection();
|
|
||||||
}
|
|
||||||
$this->conn = $connection;
|
|
||||||
$this->aliasHandler = new Doctrine_Hydrate_Alias();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getTableAliases
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getTableAliases()
|
|
||||||
{
|
|
||||||
return $this->tableAliases;
|
|
||||||
}
|
|
||||||
public function setTableAliases(array $aliases)
|
|
||||||
{
|
|
||||||
$this->tableAliases = $aliases;
|
|
||||||
}
|
|
||||||
public function getTableAlias($componentAlias)
|
|
||||||
{
|
|
||||||
return $this->aliasHandler->getShortAlias($componentAlias);
|
|
||||||
}
|
|
||||||
public function addQueryPart($name, $part)
|
|
||||||
{
|
|
||||||
if ( ! isset($this->parts[$name])) {
|
|
||||||
throw new Doctrine_Hydrate_Exception('Unknown query part ' . $name);
|
|
||||||
}
|
|
||||||
$this->parts[$name][] = $part;
|
|
||||||
}
|
|
||||||
public function getDeclaration($name)
|
|
||||||
{
|
|
||||||
if ( ! isset($this->_aliasMap[$name])) {
|
|
||||||
throw new Doctrine_Hydrate_Exception('Unknown component alias ' . $name);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->_aliasMap[$name];
|
|
||||||
}
|
|
||||||
public function setQueryPart($name, $part)
|
|
||||||
{
|
|
||||||
if ( ! isset($this->parts[$name])) {
|
|
||||||
throw new Doctrine_Hydrate_Exception('Unknown query part ' . $name);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($name !== 'limit' && $name !== 'offset') {
|
|
||||||
$this->parts[$name] = array($part);
|
|
||||||
} else {
|
|
||||||
$this->parts[$name] = $part;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* copyAliases
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function copyAliases($query)
|
|
||||||
{
|
|
||||||
$this->aliasHandler = $query->aliasHandler;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* createSubquery
|
|
||||||
*
|
|
||||||
* @return Doctrine_Hydrate
|
|
||||||
*/
|
|
||||||
public function createSubquery()
|
|
||||||
{
|
|
||||||
$class = get_class($this);
|
|
||||||
$obj = new $class();
|
|
||||||
|
|
||||||
// copy the aliases to the subquery
|
|
||||||
$obj->copyAliases($this);
|
|
||||||
|
|
||||||
// this prevents the 'id' being selected, re ticket #307
|
|
||||||
$obj->isSubquery(true);
|
|
||||||
|
|
||||||
return $obj;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* limitSubqueryUsed
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function isLimitSubqueryUsed()
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
public function getQueryPart($part)
|
|
||||||
{
|
|
||||||
if ( ! isset($this->parts[$part])) {
|
|
||||||
throw new Doctrine_Hydrate_Exception('Unknown query part ' . $part);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->parts[$part];
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* remove
|
|
||||||
*
|
|
||||||
* @param $name
|
|
||||||
*/
|
|
||||||
public function remove($name)
|
|
||||||
{
|
|
||||||
if (isset($this->parts[$name])) {
|
|
||||||
if ($name == "limit" || $name == "offset") {
|
|
||||||
$this->parts[$name] = false;
|
|
||||||
} else {
|
|
||||||
$this->parts[$name] = array();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* clear
|
|
||||||
* resets all the variables
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
protected function clear()
|
|
||||||
{
|
|
||||||
$this->tables = array();
|
|
||||||
$this->parts = array(
|
|
||||||
'select' => array(),
|
|
||||||
'from' => array(),
|
|
||||||
'set' => array(),
|
|
||||||
'join' => array(),
|
|
||||||
'where' => array(),
|
|
||||||
'groupby' => array(),
|
|
||||||
'having' => array(),
|
|
||||||
'orderby' => array(),
|
|
||||||
'limit' => false,
|
|
||||||
'offset' => false,
|
|
||||||
);
|
|
||||||
$this->inheritanceApplied = false;
|
|
||||||
$this->tableAliases = array();
|
|
||||||
$this->aliasHandler->clear();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getConnection
|
|
||||||
*
|
|
||||||
* @return Doctrine_Connection
|
|
||||||
*/
|
|
||||||
public function getConnection()
|
|
||||||
{
|
|
||||||
return $this->conn;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
public function setView(Doctrine_View $view)
|
|
||||||
{
|
|
||||||
$this->view = $view;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getView
|
|
||||||
* returns the view associated with this query object (if any)
|
|
||||||
*
|
|
||||||
* @return Doctrine_View the view associated with this query object
|
|
||||||
*/
|
|
||||||
public function getView()
|
|
||||||
{
|
|
||||||
return $this->view;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getParams
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getParams()
|
|
||||||
{
|
|
||||||
return $this->params;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* setParams
|
|
||||||
*
|
|
||||||
* @param array $params
|
|
||||||
*/
|
|
||||||
public function setParams(array $params = array()) {
|
|
||||||
$this->params = $params;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* _fetch
|
|
||||||
*
|
|
||||||
* @param array $params prepared statement parameters
|
|
||||||
* @param integer $fetchMode the fetchmode
|
|
||||||
* @see Doctrine::FETCH_* constants
|
|
||||||
*/
|
|
||||||
public function _fetch($params = array(), $fetchMode = Doctrine::FETCH_RECORD)
|
|
||||||
{
|
|
||||||
$params = $this->conn->convertBooleans(array_merge($this->params, $params));
|
|
||||||
|
|
||||||
if ( ! $this->view) {
|
|
||||||
$query = $this->getQuery($params);
|
|
||||||
} else {
|
|
||||||
$query = $this->view->getSelectSql();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isLimitSubqueryUsed() &&
|
|
||||||
$this->conn->getDBH()->getAttribute(Doctrine::ATTR_DRIVER_NAME) !== 'mysql') {
|
|
||||||
|
|
||||||
$params = array_merge($params, $params);
|
|
||||||
}
|
|
||||||
$stmt = $this->conn->execute($query, $params);
|
|
||||||
|
|
||||||
return $this->parseData($stmt);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setAliasMap($map)
|
|
||||||
{
|
|
||||||
$this->_aliasMap = $map;
|
|
||||||
}
|
|
||||||
public function getAliasMap()
|
|
||||||
{
|
|
||||||
return $this->_aliasMap;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* mapAggregateValues
|
|
||||||
* map the aggregate values of given dataset row to a given record
|
|
||||||
*
|
|
||||||
* @param Doctrine_Record $record
|
|
||||||
* @param array $row
|
|
||||||
* @return Doctrine_Record
|
|
||||||
*/
|
|
||||||
public function mapAggregateValues($record, array $row, $alias)
|
|
||||||
{
|
|
||||||
$found = false;
|
|
||||||
// aggregate values have numeric keys
|
|
||||||
if (isset($row[0])) {
|
|
||||||
// map each aggregate value
|
|
||||||
foreach ($row as $index => $value) {
|
|
||||||
$agg = false;
|
|
||||||
|
|
||||||
if (isset($this->pendingAggregates[$alias][$index])) {
|
|
||||||
$agg = $this->pendingAggregates[$alias][$index][3];
|
|
||||||
} elseif (isset($this->subqueryAggregates[$alias][$index])) {
|
|
||||||
$agg = $this->subqueryAggregates[$alias][$index];
|
|
||||||
}
|
|
||||||
$record->mapValue($agg, $value);
|
|
||||||
$found = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $found;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 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)
|
|
||||||
{
|
|
||||||
$array = (array) $this->_fetch($params, $return = Doctrine::FETCH_RECORD);
|
|
||||||
|
|
||||||
if (empty($this->_aliasMap)) {
|
|
||||||
throw new Doctrine_Hydrate_Exception("Couldn't execute query. Component alias map was empty.");
|
|
||||||
}
|
|
||||||
// initialize some variables used within the main loop
|
|
||||||
reset($this->_aliasMap);
|
|
||||||
$rootMap = current($this->_aliasMap);
|
|
||||||
$rootAlias = key($this->_aliasMap);
|
|
||||||
$coll = new Doctrine_Collection2($rootMap['table']);
|
|
||||||
$prev[$rootAlias] = $coll;
|
|
||||||
|
|
||||||
$prevRow = array();
|
|
||||||
/**
|
|
||||||
* iterate over the fetched data
|
|
||||||
* here $data is a two dimensional array
|
|
||||||
*/
|
|
||||||
foreach ($array as $data) {
|
|
||||||
/**
|
|
||||||
* remove duplicated data rows and map data into objects
|
|
||||||
*/
|
|
||||||
foreach ($data as $tableAlias => $row) {
|
|
||||||
// skip empty rows (not mappable)
|
|
||||||
if (empty($row)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$alias = $this->aliasHandler->getComponentAlias($tableAlias);
|
|
||||||
$map = $this->_aliasMap[$alias];
|
|
||||||
|
|
||||||
// initialize previous row array if not set
|
|
||||||
if ( ! isset($prevRow[$tableAlias])) {
|
|
||||||
$prevRow[$tableAlias] = array();
|
|
||||||
}
|
|
||||||
|
|
||||||
// don't map duplicate rows
|
|
||||||
if ($prevRow[$tableAlias] !== $row) {
|
|
||||||
$identifiable = $this->isIdentifiable($row, $map['table']->getIdentifier());
|
|
||||||
|
|
||||||
if ($identifiable) {
|
|
||||||
// set internal data
|
|
||||||
$map['table']->setData($row);
|
|
||||||
}
|
|
||||||
|
|
||||||
// initialize a new record
|
|
||||||
$record = $map['table']->getRecord();
|
|
||||||
|
|
||||||
// map aggregate values (if any)
|
|
||||||
if($this->mapAggregateValues($record, $row, $alias)) {
|
|
||||||
$identifiable = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if ($alias == $rootAlias) {
|
|
||||||
// add record into root collection
|
|
||||||
|
|
||||||
if ($identifiable) {
|
|
||||||
$coll->add($record);
|
|
||||||
unset($prevRow);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
|
|
||||||
$relation = $map['relation'];
|
|
||||||
$parentAlias = $map['parent'];
|
|
||||||
$parentMap = $this->_aliasMap[$parentAlias];
|
|
||||||
$parent = $prev[$parentAlias]->getLast();
|
|
||||||
|
|
||||||
// check the type of the relation
|
|
||||||
if ($relation->isOneToOne()) {
|
|
||||||
if ( ! $identifiable) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$prev[$alias] = $record;
|
|
||||||
} else {
|
|
||||||
// one-to-many relation or many-to-many relation
|
|
||||||
if ( ! $prev[$parentAlias]->getLast()->hasReference($relation->getAlias())) {
|
|
||||||
// initialize a new collection
|
|
||||||
$prev[$alias] = new Doctrine_Collection2($map['table']);
|
|
||||||
$prev[$alias]->setReference($parent, $relation);
|
|
||||||
} else {
|
|
||||||
// previous entry found from memory
|
|
||||||
$prev[$alias] = $prev[$parentAlias]->getLast()->get($relation->getAlias());
|
|
||||||
}
|
|
||||||
// add record to the current collection
|
|
||||||
if ($identifiable) {
|
|
||||||
$prev[$alias]->add($record);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// initialize the relation from parent to the current collection/record
|
|
||||||
$parent->set($relation->getAlias(), $prev[$alias]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// following statement is needed to ensure that mappings
|
|
||||||
// are being done properly when the result set doesn't
|
|
||||||
// contain the rows in 'right order'
|
|
||||||
|
|
||||||
if ($prev[$alias] !== $record) {
|
|
||||||
$prev[$alias] = $record;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$prevRow[$tableAlias] = $row;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $coll;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* isIdentifiable
|
|
||||||
* returns whether or not a given data row is identifiable (it contains
|
|
||||||
* all primary key fields specified in the second argument)
|
|
||||||
*
|
|
||||||
* @param array $row
|
|
||||||
* @param mixed $primaryKeys
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function isIdentifiable(array $row, $primaryKeys)
|
|
||||||
{
|
|
||||||
if (is_array($primaryKeys)) {
|
|
||||||
foreach ($primaryKeys as $id) {
|
|
||||||
if ($row[$id] == null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if ( ! isset($row[$primaryKeys])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* getType
|
|
||||||
*
|
|
||||||
* returns the type of this query object
|
|
||||||
* by default the type is Doctrine_Hydrate::SELECT but if update() or delete()
|
|
||||||
* are being called the type is Doctrine_Hydrate::UPDATE and Doctrine_Hydrate::DELETE,
|
|
||||||
* respectively
|
|
||||||
*
|
|
||||||
* @see Doctrine_Hydrate::SELECT
|
|
||||||
* @see Doctrine_Hydrate::UPDATE
|
|
||||||
* @see Doctrine_Hydrate::DELETE
|
|
||||||
*
|
|
||||||
* @return integer return the query type
|
|
||||||
*/
|
|
||||||
public function getType()
|
|
||||||
{
|
|
||||||
return $this->type;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* applyInheritance
|
|
||||||
* applies column aggregation inheritance to DQL / SQL query
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function applyInheritance()
|
|
||||||
{
|
|
||||||
// get the inheritance maps
|
|
||||||
$array = array();
|
|
||||||
|
|
||||||
foreach ($this->_aliasMap as $componentAlias => $data) {
|
|
||||||
$tableAlias = $this->getTableAlias($componentAlias);
|
|
||||||
$array[$tableAlias][] = $data['table']->inheritanceMap;
|
|
||||||
}
|
|
||||||
|
|
||||||
// apply inheritance maps
|
|
||||||
$str = '';
|
|
||||||
$c = array();
|
|
||||||
|
|
||||||
$index = 0;
|
|
||||||
foreach ($array as $tableAlias => $maps) {
|
|
||||||
$a = array();
|
|
||||||
|
|
||||||
// don't use table aliases if the query isn't a select query
|
|
||||||
if ($this->type !== Doctrine_Query::SELECT) {
|
|
||||||
$tableAlias = '';
|
|
||||||
} else {
|
|
||||||
$tableAlias .= '.';
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($maps as $map) {
|
|
||||||
$b = array();
|
|
||||||
foreach ($map as $field => $value) {
|
|
||||||
if ($index > 0) {
|
|
||||||
$b[] = '(' . $tableAlias . $field . ' = ' . $value
|
|
||||||
. ' OR ' . $tableAlias . $field . ' IS NULL)';
|
|
||||||
} else {
|
|
||||||
$b[] = $tableAlias . $field . ' = ' . $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( ! empty($b)) {
|
|
||||||
$a[] = implode(' AND ', $b);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( ! empty($a)) {
|
|
||||||
$c[] = implode(' AND ', $a);
|
|
||||||
}
|
|
||||||
$index++;
|
|
||||||
}
|
|
||||||
|
|
||||||
$str .= implode(' AND ', $c);
|
|
||||||
|
|
||||||
return $str;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* parseData
|
|
||||||
* parses the data returned by statement object
|
|
||||||
*
|
|
||||||
* @param mixed $stmt
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function parseData($stmt)
|
|
||||||
{
|
|
||||||
$array = array();
|
|
||||||
|
|
||||||
while ($data = $stmt->fetch(PDO::FETCH_ASSOC)) {
|
|
||||||
/**
|
|
||||||
* parse the data into two-dimensional array
|
|
||||||
*/
|
|
||||||
foreach ($data as $key => $value) {
|
|
||||||
$e = explode('__', $key);
|
|
||||||
|
|
||||||
$field = strtolower(array_pop($e));
|
|
||||||
$tableAlias = strtolower(implode('__', $e));
|
|
||||||
|
|
||||||
$data[$tableAlias][$field] = $value;
|
|
||||||
|
|
||||||
unset($data[$key]);
|
|
||||||
}
|
|
||||||
$array[] = $data;
|
|
||||||
}
|
|
||||||
|
|
||||||
$stmt->closeCursor();
|
|
||||||
return $array;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @return string returns a string representation of this object
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return Doctrine_Lib::formatSql($this->getQuery());
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@ -561,6 +561,14 @@ class Doctrine_Collection extends Doctrine_Access implements Countable, Iterator
|
|||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
public function getDeleteDiff()
|
||||||
|
{
|
||||||
|
return array_diff($this->_snapshot, $this->data);
|
||||||
|
}
|
||||||
|
public function getInsertDiff()
|
||||||
|
{
|
||||||
|
return array_diff($this->data, $this->_snapshot);
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* save
|
* save
|
||||||
* saves all records of this collection and processes the
|
* saves all records of this collection and processes the
|
||||||
|
@ -785,8 +785,6 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
|
|||||||
}
|
}
|
||||||
|
|
||||||
$tableObject->getRelations();
|
$tableObject->getRelations();
|
||||||
|
|
||||||
//$this->getTable('RelationTestChild')->getRelation('Children');
|
|
||||||
}
|
}
|
||||||
$next = count($this->tables);
|
$next = count($this->tables);
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,7 @@ Doctrine::autoload('Doctrine_Connection_Module');
|
|||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
||||||
*/
|
*/
|
||||||
class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module implements IteratorAggregate, Countable
|
class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* buildFlushTree
|
* buildFlushTree
|
||||||
@ -163,6 +163,20 @@ class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module implemen
|
|||||||
}
|
}
|
||||||
|
|
||||||
} elseif ($fk instanceof Doctrine_Relation_Association) {
|
} elseif ($fk instanceof Doctrine_Relation_Association) {
|
||||||
|
$assocTable = $fk->getAssociationTable();
|
||||||
|
foreach ($v->getDeleteDiff() as $r) {
|
||||||
|
$query = 'DELETE FROM ' . $assocTable->getTableName()
|
||||||
|
. ' WHERE ' . $fk->getForeign() . ' = ?'
|
||||||
|
. ' AND ' . $fk->getLocal() . ' = ?';
|
||||||
|
$this->query($r->getIncremented(), $record->getIncremented());
|
||||||
|
}
|
||||||
|
foreach ($v->getInsertDiff as $r) {
|
||||||
|
$assocRecord = $assocTable->create();
|
||||||
|
$assocRecord->set($fk->getForeign(), $r);
|
||||||
|
$assocRecord->set($fk->getLocal(), $record);
|
||||||
|
$assocRecord->save($this->conn);
|
||||||
|
}
|
||||||
|
|
||||||
$v->save($this->conn);
|
$v->save($this->conn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -186,8 +200,10 @@ class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module implemen
|
|||||||
public function saveAssociations(Doctrine_Record $record)
|
public function saveAssociations(Doctrine_Record $record)
|
||||||
{
|
{
|
||||||
foreach ($record->getTable()->getRelations() as $rel) {
|
foreach ($record->getTable()->getRelations() as $rel) {
|
||||||
$table = $rel->getTable();
|
$table = $rel->getTable();
|
||||||
$alias = $rel->getAlias();
|
$alias = $rel->getAlias();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
@ -206,7 +222,7 @@ class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module implemen
|
|||||||
$obj = $record->get($fk->getAlias());
|
$obj = $record->get($fk->getAlias());
|
||||||
$obj->delete($this->conn);
|
$obj->delete($this->conn);
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
@ -347,9 +363,4 @@ class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module implemen
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
public function getIterator()
|
|
||||||
{ }
|
|
||||||
|
|
||||||
public function count()
|
|
||||||
{ }
|
|
||||||
}
|
}
|
||||||
|
@ -205,7 +205,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable
|
|||||||
*/
|
*/
|
||||||
public function parseSelect($dql)
|
public function parseSelect($dql)
|
||||||
{
|
{
|
||||||
$refs = Doctrine_Query::bracketExplode($dql, ',');
|
$refs = Doctrine_Tokenizer::bracketExplode($dql, ',');
|
||||||
|
|
||||||
foreach ($refs as $reference) {
|
foreach ($refs as $reference) {
|
||||||
if (strpos($reference, '(') !== false) {
|
if (strpos($reference, '(') !== false) {
|
||||||
@ -237,7 +237,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable
|
|||||||
*/
|
*/
|
||||||
public function parseSubselect($reference)
|
public function parseSubselect($reference)
|
||||||
{
|
{
|
||||||
$e = Doctrine_Query::bracketExplode($reference, ' ');
|
$e = Doctrine_Tokenizer::bracketExplode($reference, ' ');
|
||||||
$alias = $e[1];
|
$alias = $e[1];
|
||||||
|
|
||||||
if (count($e) > 2) {
|
if (count($e) > 2) {
|
||||||
@ -253,7 +253,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable
|
|||||||
}
|
}
|
||||||
public function parseAggregateFunction2($func)
|
public function parseAggregateFunction2($func)
|
||||||
{
|
{
|
||||||
$e = Doctrine_Query::bracketExplode($func, ' ');
|
$e = Doctrine_Tokenizer::bracketExplode($func, ' ');
|
||||||
$func = $e[0];
|
$func = $e[0];
|
||||||
|
|
||||||
$pos = strpos($func, '(');
|
$pos = strpos($func, '(');
|
||||||
|
@ -83,7 +83,7 @@ class Doctrine_Query_Check
|
|||||||
*/
|
*/
|
||||||
public function parseClause($dql)
|
public function parseClause($dql)
|
||||||
{
|
{
|
||||||
$parts = Doctrine_Query::sqlExplode($dql, ' AND ');
|
$parts = Doctrine_Tokenizer::sqlExplode($dql, ' AND ');
|
||||||
|
|
||||||
if (count($parts) > 1) {
|
if (count($parts) > 1) {
|
||||||
$ret = array();
|
$ret = array();
|
||||||
@ -93,7 +93,7 @@ class Doctrine_Query_Check
|
|||||||
|
|
||||||
$r = implode(' AND ', $ret);
|
$r = implode(' AND ', $ret);
|
||||||
} else {
|
} else {
|
||||||
$parts = Doctrine_Query::quoteExplode($dql, ' OR ');
|
$parts = Doctrine_Tokenizer::quoteExplode($dql, ' OR ');
|
||||||
if (count($parts) > 1) {
|
if (count($parts) > 1) {
|
||||||
$ret = array();
|
$ret = array();
|
||||||
foreach ($parts as $part) {
|
foreach ($parts as $part) {
|
||||||
|
@ -42,6 +42,10 @@ class Doctrine_Relation_Association extends Doctrine_Relation
|
|||||||
{
|
{
|
||||||
return $this->definition['assocTable'];
|
return $this->definition['assocTable'];
|
||||||
}
|
}
|
||||||
|
public function getAssociationTable()
|
||||||
|
{
|
||||||
|
return $this->definition['assocTable'];
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* processDiff
|
* processDiff
|
||||||
*
|
*
|
||||||
|
@ -19,12 +19,6 @@
|
|||||||
* <http://www.phpdoctrine.com>.
|
* <http://www.phpdoctrine.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
require_once('../draft/new-core/Record.php');
|
|
||||||
require_once('../draft/new-core/Hydrate.php');
|
|
||||||
require_once('../draft/new-core/Query.php');
|
|
||||||
require_once('../draft/new-core/Collection.php');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Doctrine_Hydrate_TestCase
|
* Doctrine_Hydrate_TestCase
|
||||||
*
|
*
|
||||||
@ -36,8 +30,6 @@ require_once('../draft/new-core/Collection.php');
|
|||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
class Doctrine_Hydrate_TestCase extends Doctrine_UnitTestCase
|
class Doctrine_Hydrate_TestCase extends Doctrine_UnitTestCase
|
||||||
{
|
{
|
||||||
protected $testData1 = array(
|
protected $testData1 = array(
|
||||||
|
@ -31,14 +31,14 @@
|
|||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
*/
|
*/
|
||||||
class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
||||||
/**
|
|
||||||
public function prepareTables() {
|
public function prepareTables() {
|
||||||
$this->tables[] = "enumTest";
|
$this->tables[] = "enumTest";
|
||||||
$this->tables[] = "fieldNameTest";
|
$this->tables[] = "fieldNameTest";
|
||||||
$this->tables[] = "GzipTest";
|
$this->tables[] = "GzipTest";
|
||||||
parent::prepareTables();
|
parent::prepareTables();
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
public function testIssetForPrimaryKey() {
|
public function testIssetForPrimaryKey() {
|
||||||
$this->assertTrue(isset($this->users[0]->id));
|
$this->assertTrue(isset($this->users[0]->id));
|
||||||
$this->assertTrue(isset($this->users[0]['id']));
|
$this->assertTrue(isset($this->users[0]['id']));
|
||||||
@ -50,7 +50,7 @@ class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
|||||||
$this->assertFalse(isset($user['id']));
|
$this->assertFalse(isset($user['id']));
|
||||||
$this->assertFalse($user->contains('id'));
|
$this->assertFalse($user->contains('id'));
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
public function testUnknownColumn() {
|
public function testUnknownColumn() {
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -299,14 +299,6 @@ class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
|||||||
$this->assertEqual($user->name, null);
|
$this->assertEqual($user->name, null);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testDateTimeType() {
|
|
||||||
$date = new DateTest();
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function testSerialize() {
|
public function testSerialize() {
|
||||||
$user = $this->connection->getTable("User")->find(4);
|
$user = $this->connection->getTable("User")->find(4);
|
||||||
$str = serialize($user);
|
$str = serialize($user);
|
||||||
@ -324,9 +316,6 @@ class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
|||||||
$user->call('substr', 'name', 0, 1);
|
$user->call('substr', 'name', 0, 1);
|
||||||
$this->assertEqual($user->name, 'z');
|
$this->assertEqual($user->name, 'z');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function testCompositePK() {
|
public function testCompositePK() {
|
||||||
$record = new EntityReference();
|
$record = new EntityReference();
|
||||||
$this->assertEqual($record->getTable()->getIdentifier(), array("entity1","entity2"));
|
$this->assertEqual($record->getTable()->getIdentifier(), array("entity1","entity2"));
|
||||||
@ -711,8 +700,8 @@ class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
|||||||
$this->assertEqual($new->loginname, 'jackd');
|
$this->assertEqual($new->loginname, 'jackd');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testReferences() {
|
public function testReferences()
|
||||||
|
{
|
||||||
$user = $this->objTable->find(5);
|
$user = $this->objTable->find(5);
|
||||||
|
|
||||||
$pf = $this->connection->getTable("Phonenumber");
|
$pf = $this->connection->getTable("Phonenumber");
|
||||||
@ -946,13 +935,15 @@ class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function testCount() {
|
public function testCount()
|
||||||
|
{
|
||||||
$user = $this->connection->getTable("User")->find(4);
|
$user = $this->connection->getTable("User")->find(4);
|
||||||
|
|
||||||
$this->assertTrue(is_integer($user->count()));
|
$this->assertTrue(is_integer($user->count()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetReference() {
|
public function testGetReference()
|
||||||
|
{
|
||||||
$user = $this->connection->getTable("User")->find(4);
|
$user = $this->connection->getTable("User")->find(4);
|
||||||
|
|
||||||
$this->assertTrue($user->Email instanceof Doctrine_Record);
|
$this->assertTrue($user->Email instanceof Doctrine_Record);
|
||||||
@ -961,10 +952,10 @@ class Doctrine_Record_TestCase extends Doctrine_UnitTestCase {
|
|||||||
|
|
||||||
$this->assertTrue($user->Phonenumber->count() == 1);
|
$this->assertTrue($user->Phonenumber->count() == 1);
|
||||||
}
|
}
|
||||||
public function testGetIterator() {
|
public function testGetIterator()
|
||||||
|
{
|
||||||
$user = $this->connection->getTable("User")->find(4);
|
$user = $this->connection->getTable("User")->find(4);
|
||||||
$this->assertTrue($user->getIterator() instanceof ArrayIterator);
|
$this->assertTrue($user->getIterator() instanceof ArrayIterator);
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
@ -228,10 +228,10 @@ class Doctrine_UnitTestCase extends UnitTestCase {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
if( ! $this->init) $this->init();
|
if ( ! $this->init) {
|
||||||
|
$this->init();
|
||||||
if(isset($this->objTable))
|
}
|
||||||
$this->objTable->clear();
|
$this->objTable->clear();
|
||||||
|
|
||||||
$this->init = true;
|
$this->init = true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user