EntityRepository.php 5.69 KB
Newer Older
1
<?php
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  $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
 * An EntityRepository serves as a repository for entities with generic as well as
 * business specific methods for retrieving entities.
27
 *
28
 * 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
 * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
32 33 34 35 36 37 38
 * @link    www.doctrine-project.org
 * @since   2.0
 * @version $Revision$
 * @author  Benjamin Eberlei <kontakt@beberlei.de>
 * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
 * @author  Jonathan Wage <jonwage@gmail.com>
 * @author  Roman Borschel <roman@code-factory.org>
39
 */
40
class EntityRepository
41
{
42 43 44
    /**
     * @var string
     */
45
    protected $_entityName;
46 47 48 49

    /**
     * @var EntityManager
     */
50
    protected $_em;
51 52 53 54

    /**
     * @var Doctrine\ORM\Mapping\ClassMetadata
     */
55
    protected $_class;
56

57 58
    /**
     * Initializes a new <tt>EntityRepository</tt>.
59
     *
60 61 62
     * @param EntityManager $em The EntityManager to use.
     * @param ClassMetadata $classMetadata The class descriptor.
     */
63
    public function __construct($em, Mapping\ClassMetadata $class)
64
    {
65
        $this->_entityName = $class->name;
66
        $this->_em = $em;
67
        $this->_class = $class;
68
    }
69

70 71 72
    /**
     * Create a new QueryBuilder instance that is prepopulated for this entity name
     *
73
     * @param string $alias
74 75 76 77 78 79
     * @return QueryBuilder $qb
     */
    public function createQueryBuilder($alias)
    {
        return $this->_em->createQueryBuilder()
            ->select($alias)
80
            ->from($this->_entityName, $alias);
81
    }
82

83
    /**
84
     * Clears the repository, causing all managed entities to become detached.
85 86 87
     */
    public function clear()
    {
88
        $this->_em->clear($this->_class->rootEntityName);
89
    }
90

91
    /**
92
     * Finds an entity by its primary key / identifier.
93
     *
94 95
     * @param $id The identifier.
     * @param int $hydrationMode The hydration mode to use.
96
     * @return object The entity.
97
     */
98
    public function find($id)
99
    {
100
        // Check identity map first
101
        if ($entity = $this->_em->getUnitOfWork()->tryGetById($id, $this->_class->rootEntityName)) {
102 103
            return $entity; // Hit!
        }
104

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

111
        return $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName)->load($id);
112 113 114
    }

    /**
115
     * Finds all entities in the repository.
116
     *
117
     * @param int $hydrationMode
118
     * @return array The entities.
119
     */
120
    public function findAll()
121
    {
122
        return $this->findBy(array());
123
    }
124

125
    /**
126
     * Finds entities by a set of criteria.
127
     *
128 129
     * @param string $column
     * @param string $value
130
     * @return array
131
     */
132
    public function findBy(array $criteria)
133
    {
134
        return $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName)->loadAll($criteria);
135
    }
136

137
    /**
138
     * Finds a single entity by a set of criteria.
139
     *
140
     * @param string $column
141 142
     * @param string $value
     * @return object
143
     */
144
    public function findOneBy(array $criteria)
145
    {
146
        return $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName)->load($criteria);
147
    }
148

149 150 151
    /**
     * Adds support for magic finders.
     *
152
     * @return array|object The found entity/entities.
romanb's avatar
romanb committed
153
     * @throws BadMethodCallException  If the method called is an invalid find* method
154 155
     *                                 or no find* method at all and therefore an invalid
     *                                 method call.
156 157 158 159 160 161 162 163 164 165
     */
    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 {
166 167 168 169
            throw new \BadMethodCallException(
                "Undefined method '$method'. The method name must start with ".
                "either findBy or findOneBy!"
            );
170
        }
171

172
        if ( ! isset($arguments[0])) {
173
            throw ORMException::findByRequiresParameter($method.$by);
174 175 176 177 178 179 180
        }

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

        if ($this->_class->hasField($fieldName)) {
            return $this->$method(array($fieldName => $arguments[0]));
        } else {
181
            throw ORMException::invalidFindByCall($this->_entityName, $fieldName, $method.$by);
182 183 184
        }
    }
}