. */ Doctrine::autoload('Doctrine_Access'); /** * A Doctrine_Collection represents a collection of record objects. * A collection object is strongly typed in the sense that it can only contain * records of a specific type or one it's subtypes. * * @package Doctrine * @subpackage Collection * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ class Doctrine_Collection extends Doctrine_Access implements Countable, IteratorAggregate, Serializable { /** * An array containing the records of this collection. * * @var array */ protected $data = array(); /** * The mapper object used to map the records of this collection to the database. * * @var Doctrine_Mapper */ protected $_mapper; /** * A snapshot of the fetched data. * * @var array */ protected $_snapshot = array(); /** * This record this collection is attached to, if any. * * @var Doctrine_Record */ protected $reference; /** * The reference field of the collection. * * @var string $referenceField */ protected $referenceField; /** * The relation this collection is related to, if any. * * @var Doctrine_Relation */ protected $relation; /** * The name of the column that is used for collection key mapping. * * @var string */ protected $keyColumn; /** * Helper variable. Used for fast null value testing. * * @var Doctrine_Null */ protected static $null; /** * Constructor. * Creates a new collection that will hold instances of the type that is * specified through the mapper. That means if the mapper is a mapper for * the entity "User", then the resulting collection will be a collection of * user objects. * * @param Doctrine_Mapper|string $mapper The mapper used by the collection. * @param string $keyColumn The field name that will be used as the key * in the collection. */ public function __construct($mapper, $keyColumn = null) { if (is_string($mapper)) { $mapper = Doctrine_Manager::getInstance()->getMapper($mapper); } $this->_mapper = $mapper; if ($keyColumn === null) { $keyColumn = $mapper->getBoundQueryPart('indexBy'); } if ($keyColumn === null) { $keyColumn = $mapper->getAttribute(Doctrine::ATTR_COLL_KEY); } if ($keyColumn !== null) { $this->keyColumn = $keyColumn; } } /** * initNullObject * Initializes the null object for this collection. * * @return void */ public static function initNullObject(Doctrine_Null $null) { self::$null = $null; } /** * getTable * Returns the table of the mapper of the collection. * * @return Doctrine_Table */ public function getTable() { return $this->_mapper->getTable(); } /** * getMapper * Returns the mapper of this collection. * * @return Doctrine_Mapper */ public function getMapper() { return $this->_mapper; } /** * setData * * @param array $data * @return Doctrine_Collection */ public function setData(array $data) { $this->data = $data; } /** * Serializes the collection. * This method is automatically called when this Doctrine_Collection is serialized. * * Part of the implementation of the Serializable interface. * * @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); } /** * Reconstitutes the collection object from it's serialized form. * This method is automatically called everytime a Doctrine_Collection object is unserialized. * * Part of the implementation of the Serializable interface. * * @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->_mapper = $connection->getMapper($this->_mapper); $keyColumn = isset($array['keyColumn']) ? $array['keyColumn'] : null; if ($keyColumn === null) { $keyColumn = $this->_mapper->getBoundQueryPart('indexBy'); } if ($keyColumn !== null) { $this->keyColumn = $keyColumn; } } /** * 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); } /** * returns the last record in the collection * * @return mixed */ public function end() { return end($this->data); } /** * returns the current key * * @return mixed */ public function key() { return key($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->getForeignFieldName(); $value = $record->get($relation->getLocalFieldName()); foreach ($this->data as $record) { if ($value !== null) { $record->set($this->referenceField, $value, false); } else { $record->set($this->referenceField, $this->reference, false); } } } else if ($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) { $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]); } /** * */ public function search(Doctrine_Record $record) { return array_search($record, $this->data, true); } /** * 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 ( ! isset($this->data[$key])) { $record = $this->_mapper->create(); if (isset($this->referenceField)) { $value = $this->reference->get($this->relation->getLocalFieldName()); if ($value !== null) { $record->set($this->referenceField, $value, false); } else { $record->set($this->referenceField, $this->reference, false); } } if ($key === null) { $this->data[] = $record; } else { $this->data[$key] = $record; } if (isset($this->keyColumn)) { $record->set($this->keyColumn, $key); } return $record; } return $this->data[$key]; } /** * Returns the primary keys of all records in the collection. * * @return array An array containing all primary keys. */ public function getPrimaryKeys() { $list = array(); $name = $this->_mapper->getTable()->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); } /** * Returns the number of records in this collection. * * Implementation of the Countable interface. * * @return integer The number of records in the collection. */ 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)) { $value = $this->reference->get($this->relation->getLocalFieldName()); if ($value !== null) { $record->set($this->referenceField, $value, false); } else { $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->_mapper->getConnection()); if ( ! isset($name)) { foreach ($this->data as $record) { $value = $record->getIncremented(); if ($value !== null) { $list[] = $value; } } $query->from($this->_mapper->getComponentName() . '(' . implode(", ",$this->_mapper->getTable()->getPrimaryKeys()) . ')'); $query->where($this->_mapper->getComponentName() . '.id IN (' . substr(str_repeat("?, ", count($list)),0,-2) . ')'); return $query; } $rel = $this->_mapper->getTable()->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->_mapper->getTable()->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); } } } } else if ($rel instanceof Doctrine_Relation_ForeignKey) { foreach ($this->data as $key => $record) { if ( ! $record->exists()) { continue; } $sub = new Doctrine_Collection($rel->getForeignComponentName()); foreach ($coll as $k => $related) { if ($related[$foreign] == $record[$local]) { $sub->add($related); $coll->remove($k); } } $this->data[$key]->setRelated($name, $sub); } } else if ($rel instanceof Doctrine_Relation_Association) { $identifier = $this->_mapper->getTable()->getIdentifier(); $asf = $rel->getAssociationFactory(); $name = $table->getComponentName(); foreach ($this->data as $key => $record) { if ( ! $record->exists()) { continue; } $sub = new Doctrine_Collection($rel->getForeignComponentName()); 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 remove objects 1 and 4 * * @return Doctrine_Collection */ public function processDiff() { foreach (array_udiff($this->_snapshot, $this->data, array($this, "_compareRecords")) as $record) { $record->delete(); } return $this; } /** * toArray * Mimics the result of a $query->execute(array(), Doctrine::FETCH_ARRAY); * * @param boolean $deep */ public function toArray($deep = false, $prefixKey = false) { $data = array(); foreach ($this as $key => $record) { $key = $prefixKey ? get_class($record) . '_' .$key:$key; $data[$key] = $record->toArray($deep, $prefixKey); } return $data; } /** * fromArray * * Populate a Doctrine_Collection from an array of data * * @param string $array * @return void */ public function fromArray($array, $deep = true) { $data = array(); foreach ($array as $rowKey => $row) { $this[$rowKey]->fromArray($row, $deep); } } /** * synchronizeWithArray * synchronizes a Doctrine_Collection with data from an array * * it expects an array representation of a Doctrine_Collection similar to the return * value of the toArray() method. It will create Dectrine_Records that don't exist * on the collection, update the ones that do and remove the ones missing in the $array * * @param array $array representation of a Doctrine_Collection */ public function synchronizeWithArray(array $array) { foreach ($this as $key => $record) { if (isset($array[$key])) { $record->synchronizeWithArray($array[$key]); unset($array[$key]); } else { // remove records that don't exist in the array $this->remove($key); } } // create new records for each new row in the array foreach ($array as $rowKey => $row) { $this[$rowKey]->fromArray($row); } } /** * exportTo * * Export a Doctrine_Collection to one of the supported Doctrine_Parser formats * * @param string $type * @param string $deep * @return void */ public function exportTo($type, $deep = false) { if ($type == 'array') { return $this->toArray($deep); } else { return Doctrine_Parser::dump($this->toArray($deep, true), $type); } } /** * importFrom * * Import data to a Doctrine_Collection from one of the supported Doctrine_Parser formats * * @param string $type * @param string $data * @return void */ public function importFrom($type, $data) { if ($type == 'array') { return $this->fromArray($data); } else { return $this->fromArray(Doctrine_Parser::load($data, $type)); } } /** * getDeleteDiff * * @return void */ public function getDeleteDiff() { return array_udiff($this->_snapshot, $this->data, array($this, "_compareRecords")); } /** * getInsertDiff * * @return void */ public function getInsertDiff() { return array_udiff($this->data, $this->_snapshot, array($this, "_compareRecords")); } /** * _compareRecords * Compares two records. To be used on _snapshot diffs using array_udiff. */ protected function _compareRecords($a, $b) { if ($a->getOid() == $b->getOid()) { return 0; } return ($a->getOid() > $b->getOid()) ? 1 : -1; } /** * save * Saves all records of this collection and processes the * difference of the last snapshot and the current data. * * @param Doctrine_Connection $conn optional connection parameter * @return Doctrine_Collection */ public function save(Doctrine_Connection $conn = null) { if ($conn == null) { $conn = $this->_mapper->getConnection(); } try { $conn->beginInternalTransaction(); $conn->transaction->addCollection($this); $this->processDiff(); foreach ($this->getData() as $key => $record) { $record->save($conn); } $conn->commit(); } catch (Exception $e) { $conn->rollback(); throw $e; } 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->_mapper->getConnection(); } try { $conn->beginInternalTransaction(); $conn->transaction->addCollection($this); foreach ($this as $key => $record) { $record->delete($conn); } $conn->commit(); } catch (Exception $e) { $conn->rollback(); throw $e; } $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); } /** * returns the relation object * @return object Doctrine_Relation */ public function getRelation() { return $this->relation; } }