EntityRepository.php 5.47 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
 * 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
29
 * write their own repositories with business-specific methods to locate entities.
30
 *
31 32 33 34
 * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @link www.doctrine-project.org
 * @since 2.0
 * @author Roman Borschel <roman@code-factory.org>
35
 * @author Jonathan H. Wage <jonwage@gmail.com>
36
 */
37
class EntityRepository
38
{
39 40 41
    /**
     * @var string
     */
42
    protected $_entityName;
43 44 45 46

    /**
     * @var EntityManager
     */
47
    protected $_em;
48 49 50 51

    /**
     * @var Doctrine\ORM\Mapping\ClassMetadata
     */
52
    protected $_class;
53
    
54 55 56 57 58 59 60
    /**
     * 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)
61
    {
62
        $this->_entityName = $class->name;
63
        $this->_em = $em;
64
        $this->_class = $class;
65 66
    }
    
67 68 69 70 71 72 73 74 75 76
    /**
     * Create a new QueryBuilder instance that is prepopulated for this entity name
     *
     * @param string $alias 
     * @return QueryBuilder $qb
     */
    public function createQueryBuilder($alias)
    {
        return $this->_em->createQueryBuilder()
            ->select($alias)
77
            ->from($this->_entityName, $alias);
78 79
    }
    
80
    /**
81
     * Clears the repository, causing all managed entities to become detached.
82 83 84
     */
    public function clear()
    {
85
        $this->_em->clear($this->_class->rootEntityName);
86 87 88
    }
    
    /**
89
     * Finds an entity by its primary key / identifier.
90
     *
91 92
     * @param $id The identifier.
     * @param int $hydrationMode The hydration mode to use.
93
     * @return object The entity.
94
     */
95
    public function find($id)
96
    {
97
        // Check identity map first
98
        if ($entity = $this->_em->getUnitOfWork()->tryGetById($id, $this->_class->rootEntityName)) {
99 100
            return $entity; // Hit!
        }
101

102
        if ( ! is_array($id) || count($id) <= 1) {
103
            //FIXME: Not correct. Relies on specific order.
104
            $value = is_array($id) ? array_values($id) : array($id);
105
            $id = array_combine($this->_class->identifier, $value);
106 107
        }

108
        return $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName)->load($id);
109 110 111
    }

    /**
112
     * Finds all entities in the repository.
113
     *
114
     * @param int $hydrationMode
115
     * @return array The entities.
116
     */
117
    public function findAll()
118
    {
119
        return $this->findBy(array());
120 121 122
    }
    
    /**
123
     * Finds entities by a set of criteria.
124 125 126
     *
     * @param string $column 
     * @param string $value 
127
     * @return array
128
     */
129
    public function findBy(array $criteria)
130
    {
131
        return $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName)->loadAll($criteria);
132 133 134
    }
    
    /**
135
     * Finds a single entity by a set of criteria.
136 137
     *
     * @param string $column 
138 139
     * @param string $value
     * @return object
140
     */
141
    public function findOneBy(array $criteria)
142
    {
143
        return $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName)->load($criteria);
144 145 146 147 148
    }
    
    /**
     * Adds support for magic finders.
     *
149
     * @return array|object The found entity/entities.
romanb's avatar
romanb committed
150
     * @throws BadMethodCallException  If the method called is an invalid find* method
151 152
     *                                 or no find* method at all and therefore an invalid
     *                                 method call.
153 154 155 156 157 158 159 160 161 162
     */
    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 {
163
            throw new \BadMethodCallException("Undefined method '$method'.");
164 165
        }
        
166
        if ( ! isset($arguments[0])) {
167
            throw DoctrineException::findByNameRequired();
168 169 170 171 172 173 174
        }

        $fieldName = lcfirst(\Doctrine\Common\Util\Inflector::classify($by));

        if ($this->_class->hasField($fieldName)) {
            return $this->$method(array($fieldName => $arguments[0]));
        } else {
175
            throw \Doctrine\Common\DoctrineException::invalidFindBy($by);
176 177 178
        }
    }
}