EntityRepository.php 6.28 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php 
/*
 *  $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
19
 * <http://www.doctrine-project.org>.
20 21
 */

22
namespace Doctrine\ORM;
23

24
/**
25 26 27 28 29
 * An EntityRepository serves as a repository for entities with generic as well as
 * business specific methods for retrieving entities.
 * 
 * This class is designed for inheritance and users can subclass this class to
 * write their own repositories.
30 31
 *
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
romanb's avatar
romanb committed
32
 * @link        www.doctrine-project.org
33 34 35 36
 * @since       2.0
 * @version     $Revision$
 * @author      Roman Borschel <roman@code-factory.org>
 */
37
class EntityRepository
38
{
39 40 41
    private $_entityName;
    private $_em;
    private $_class;
42
    
43 44 45 46 47 48 49
    /**
     * Initializes a new <tt>EntityRepository</tt>.
     * 
     * @param EntityManager $em The EntityManager to use.
     * @param ClassMetadata $classMetadata The class descriptor.
     */
    public function __construct($em, \Doctrine\ORM\Mapping\ClassMetadata $class)
50
    {
51
        $this->_entityName = $class->name;
52
        $this->_em = $em;
53
        $this->_class = $class;
54 55 56
    }
    
    /**
57 58
     * Creates a new Doctrine_Query object and adds the component name
     * of this table as the query 'from' part.
59 60 61 62 63 64 65 66 67
     *
     * @param string Optional alias name for component aliasing.
     * @return Doctrine_Query
     */
    protected function _createQuery($alias = '')
    {
        if ( ! empty($alias)) {
            $alias = ' ' . trim($alias);
        }
68
        return $this->_em->createQuery()->from($this->_entityName . $alias);
69 70 71
    }
    
    /**
72
     * Clears the repository, causing all managed entities to become detached.
73 74 75
     */
    public function clear()
    {
76
        $this->_em->clear($this->_class->rootEntityName);
77 78 79
    }
    
    /**
80
     * Finds an entity by its primary key / identifier.
81
     *
82 83 84
     * @param $id The identifier.
     * @param int $hydrationMode The hydration mode to use.
     * @return mixed Array or Object or false if no result.
85 86 87
     */
    public function find($id, $hydrationMode = null)
    {
88
        // Check identity map first
89
        if ($entity = $this->_em->getUnitOfWork()->tryGetById($id, $this->_class->rootEntityName)) {
90 91
            return $entity; // Hit!
        }
92

93 94
        if ( ! is_array($id) || count($id) <= 1) {
            $value = is_array($id) ? array_values($id) : array($id);
95
            $id = array_combine($this->_class->identifier, $value);
96 97
        }

98
        return $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName)->load($id);
99 100 101
    }

    /**
102
     * Finds all entities in the repository.
103
     *
104 105
     * @param int $hydrationMode
     * @return mixed
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
     */
    public function findAll($hydrationMode = null)
    {
        return $this->_createQuery()->execute(array(), $hydrationMode);
    }
    
    /**
     * findBy
     *
     * @param string $column 
     * @param string $value 
     * @param string $hydrationMode 
     * @return void
     */
    protected function findBy($fieldName, $value, $hydrationMode = null)
    {
        return $this->_createQuery()->where($fieldName . ' = ?')->execute(array($value), $hydrationMode);
    }
    
    /**
     * findOneBy
     *
     * @param string $column 
     * @param string $value 
     * @param string $hydrationMode 
     * @return void
     */
    protected function findOneBy($fieldName, $value, $hydrationMode = null)
    {
135 136 137 138
        $results = $this->_createQuery()->where($fieldName . ' = ?')
                ->setMaxResults(1)
                ->execute(array($value), $hydrationMode);
        return $hydrationMode === Query::HYDRATE_ARRAY ? array_shift($results) : $results->getFirst();
139 140 141 142 143 144 145 146
    }
    
    /**
     * Adds support for magic finders.
     * findByColumnName, findByRelationAlias
     * findById, findByContactId, etc.
     *
     * @return void
romanb's avatar
romanb committed
147
     * @throws BadMethodCallException  If the method called is an invalid find* method
148 149 150 151 152 153 154 155 156 157 158 159
     *                                    or no find* method at all and therefore an invalid
     *                                    method call.
     */
    public function __call($method, $arguments)
    {
        if (substr($method, 0, 6) == 'findBy') {
            $by = substr($method, 6, strlen($method));
            $method = 'findBy';
        } else if (substr($method, 0, 9) == 'findOneBy') {
            $by = substr($method, 9, strlen($method));
            $method = 'findOneBy';
        } else {
romanb's avatar
romanb committed
160
            throw new BadMethodCallException("Undefined method '$method'.");
161 162 163 164
        }
        
        if (isset($by)) {
            if ( ! isset($arguments[0])) {
165
                throw DoctrineException::updateMe('You must specify the value to findBy.');
166 167 168 169 170
            }
            
            $fieldName = Doctrine::tableize($by);
            $hydrationMode = isset($arguments[1]) ? $arguments[1]:null;
            
171
            if ($this->_class->hasField($fieldName)) {
172
                return $this->$method($fieldName, $arguments[0], $hydrationMode);
173 174
            } else if ($this->_class->hasRelation($by)) {
                $relation = $this->_class->getRelation($by);
175
                if ($relation['type'] === Doctrine_Relation::MANY) {
176
                    throw DoctrineException::updateMe('Cannot findBy many relationship.');
177 178 179
                }
                return $this->$method($relation['local'], $arguments[0], $hydrationMode);
            } else {
180
                throw DoctrineException::updateMe('Cannot find by: ' . $by . '. Invalid field or relationship alias.');
181 182 183 184
            }
        }
    }
}