EntityRepository.php 5.27 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
    protected $_entityName;
    protected $_em;
    protected $_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 59 60 61 62 63 64 65 66 67 68
    /**
     * 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)
            ->from($this->_entityName);
    }
    
69
    /**
70
     * Clears the repository, causing all managed entities to become detached.
71 72 73
     */
    public function clear()
    {
74
        $this->_em->clear($this->_class->rootEntityName);
75 76 77
    }
    
    /**
78
     * Finds an entity by its primary key / identifier.
79
     *
80 81
     * @param $id The identifier.
     * @param int $hydrationMode The hydration mode to use.
82
     * @return object The entity.
83
     */
84
    public function find($id)
85
    {
86
        // Check identity map first
87
        if ($entity = $this->_em->getUnitOfWork()->tryGetById($id, $this->_class->rootEntityName)) {
88 89
            return $entity; // Hit!
        }
90

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

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

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

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

        if ($this->_class->hasField($fieldName)) {
            return $this->$method(array($fieldName => $arguments[0]));
        } else {
163
            throw \Doctrine\Common\DoctrineException::invalidFindBy($by);
164 165 166
        }
    }
}