2007-09-21 22:01:08 +04:00
|
|
|
<?php
|
2007-09-23 02:02:58 +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_Resource_Collection
|
|
|
|
*
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
2007-09-24 08:58:57 +04:00
|
|
|
* @author Jonathan H. Wage <jwage@mac.com>
|
2007-09-23 02:02:58 +04:00
|
|
|
* @package Doctrine
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @version $Revision$
|
|
|
|
* @category Object Relational Mapping
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
*/
|
2007-09-24 22:22:52 +04:00
|
|
|
class Doctrine_Resource_Collection extends Doctrine_Resource_Access implements Countable, IteratorAggregate
|
2007-09-21 22:01:08 +04:00
|
|
|
{
|
2007-09-24 08:58:57 +04:00
|
|
|
protected $_data = array();
|
|
|
|
protected $_config = array();
|
|
|
|
protected $_model = null;
|
2007-09-26 01:39:38 +04:00
|
|
|
protected $_parent = null;
|
2007-09-21 22:01:08 +04:00
|
|
|
|
2007-09-24 08:58:57 +04:00
|
|
|
public function __construct($model)
|
2007-09-21 22:19:19 +04:00
|
|
|
{
|
2007-09-24 08:58:57 +04:00
|
|
|
$this->_model = $model;
|
|
|
|
}
|
|
|
|
|
2007-09-26 01:39:38 +04:00
|
|
|
public function setParent($parent)
|
|
|
|
{
|
|
|
|
$this->_parent = $parent;
|
|
|
|
}
|
|
|
|
|
2007-09-24 08:58:57 +04:00
|
|
|
public function getConfig($key = null)
|
|
|
|
{
|
|
|
|
return Doctrine_Resource_Client::getInstance()->getConfig($key);
|
2007-09-21 22:19:19 +04:00
|
|
|
}
|
|
|
|
|
2007-09-21 22:01:08 +04:00
|
|
|
public function count()
|
|
|
|
{
|
2007-09-24 08:58:57 +04:00
|
|
|
return count($this->_data);
|
2007-09-21 22:01:08 +04:00
|
|
|
}
|
|
|
|
|
2007-09-26 01:39:38 +04:00
|
|
|
public function get($key)
|
2007-09-22 05:32:48 +04:00
|
|
|
{
|
2007-09-26 01:39:38 +04:00
|
|
|
if (!$key || !isset($this->_data[$key])) {
|
|
|
|
return $this->add();
|
|
|
|
} else {
|
|
|
|
return $this->_data[$key];
|
2007-09-22 05:32:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-26 01:39:38 +04:00
|
|
|
public function set($key, $value)
|
2007-09-22 05:32:48 +04:00
|
|
|
{
|
2007-09-26 01:39:38 +04:00
|
|
|
if (!$key || !isset($this->_data[$key])) {
|
|
|
|
$this->_data[$key] = $value;
|
|
|
|
} else {
|
|
|
|
$val = $this->add();
|
|
|
|
|
|
|
|
$val->_data[$key] = $value;
|
|
|
|
}
|
2007-09-24 08:58:57 +04:00
|
|
|
}
|
|
|
|
|
2007-09-25 01:32:02 +04:00
|
|
|
public function add($value = null)
|
2007-09-24 08:58:57 +04:00
|
|
|
{
|
2007-09-25 01:32:02 +04:00
|
|
|
if (!$value) {
|
2007-09-25 18:09:05 +04:00
|
|
|
$model = $this->_model;
|
|
|
|
|
2007-09-26 01:39:38 +04:00
|
|
|
$value = new $model(false);
|
|
|
|
$table = $value->getTable();
|
|
|
|
$relation = $table->getRelationByClassName(get_class($this->_parent));
|
|
|
|
$alias = $relation['alias'];
|
|
|
|
|
|
|
|
if ($relation['type'] === Doctrine_Relation::ONE) {
|
|
|
|
$value->set($alias, $this->_parent);
|
|
|
|
} else {
|
|
|
|
$collection = new Doctrine_Resource_Collection($relation['class']);
|
|
|
|
$collection[] = $this->_parent;
|
|
|
|
|
|
|
|
$value->set($alias, $collection);
|
|
|
|
}
|
2007-09-25 01:32:02 +04:00
|
|
|
}
|
|
|
|
|
2007-09-24 08:58:57 +04:00
|
|
|
$this->_data[] = $value;
|
2007-09-25 01:32:02 +04:00
|
|
|
|
|
|
|
return $value;
|
2007-09-22 05:32:48 +04:00
|
|
|
}
|
|
|
|
|
2007-09-21 22:01:08 +04:00
|
|
|
public function getIterator()
|
|
|
|
{
|
2007-09-24 08:58:57 +04:00
|
|
|
return new ArrayIterator($this->_data);
|
2007-09-21 22:01:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFirst()
|
|
|
|
{
|
2007-09-24 08:58:57 +04:00
|
|
|
return isset($this->_data[0]) ? $this->_data[0]:null;
|
2007-09-21 22:01:08 +04:00
|
|
|
}
|
|
|
|
|
2007-09-26 01:39:38 +04:00
|
|
|
public function toArray($deep = false)
|
2007-09-21 22:01:08 +04:00
|
|
|
{
|
|
|
|
$array = array();
|
2007-09-22 05:32:48 +04:00
|
|
|
|
2007-09-24 08:58:57 +04:00
|
|
|
foreach ($this->_data as $key => $record) {
|
2007-09-25 01:32:02 +04:00
|
|
|
if ($record->exists() || $record->hasChanges()) {
|
2007-09-26 01:39:38 +04:00
|
|
|
$array[$this->_model . '_' .$key] = $record->toArray($deep);
|
2007-09-24 22:22:52 +04:00
|
|
|
}
|
2007-09-21 22:01:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $array;
|
|
|
|
}
|
2007-09-21 22:34:10 +04:00
|
|
|
|
|
|
|
public function save()
|
|
|
|
{
|
2007-09-24 08:58:57 +04:00
|
|
|
foreach ($this as $record) {
|
2007-09-21 22:34:10 +04:00
|
|
|
$record->save();
|
|
|
|
}
|
|
|
|
}
|
2007-09-25 01:46:05 +04:00
|
|
|
|
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
foreach ($this as $record) {
|
|
|
|
$record->delete();
|
|
|
|
}
|
|
|
|
}
|
2007-09-23 02:02:58 +04:00
|
|
|
}
|