Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php
Строк: 335
<?php
/*
 * 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 MIT license. For more information, see
 * <http://www.doctrine-project.org>.
 */

namespace DoctrineORM;

use 
DoctrineORMQueryResultSetMappingBuilder;

use 
DoctrineDBALLockMode;
use 
DoctrineCommonPersistenceObjectRepository;

use 
DoctrineCommonCollectionsSelectable;
use 
DoctrineCommonCollectionsCriteria;
use 
DoctrineCommonCollectionsArrayCollection;

/**
 * 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 with business-specific methods to locate entities.
 *
 * @since   2.0
 * @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>
 */
class EntityRepository implements ObjectRepositorySelectable
{
    
/**
     * @var string
     */
    
protected $_entityName;

    
/**
     * @var EntityManager
     */
    
protected $_em;

    
/**
     * @var DoctrineORMMappingClassMetadata
     */
    
protected $_class;

    
/**
     * Initializes a new <tt>EntityRepository</tt>.
     *
     * @param EntityManager         $em    The EntityManager to use.
     * @param MappingClassMetadata $class The class descriptor.
     */
    
public function __construct($emMappingClassMetadata $class)
    {
        
$this->_entityName $class->name;
        
$this->_em         $em;
        
$this->_class      $class;
    }

    
/**
     * Creates a new QueryBuilder instance that is prepopulated for this entity name.
     *
     * @param string $alias
     *
     * @return QueryBuilder
     */
    
public function createQueryBuilder($alias)
    {
        return 
$this->_em->createQueryBuilder()
            ->
select($alias)
            ->
from($this->_entityName$alias);
    }

    
/**
     * Creates a new result set mapping builder for this entity.
     *
     * The column naming strategy is "INCREMENT".
     *
     * @param string $alias
     *
     * @return ResultSetMappingBuilder
     */
    
public function createResultSetMappingBuilder($alias)
    {
        
$rsm = new ResultSetMappingBuilder($this->_emResultSetMappingBuilder::COLUMN_RENAMING_INCREMENT);
        
$rsm->addRootEntityFromClassMetadata($this->_entityName$alias);

        return 
$rsm;
    }

    
/**
     * Creates a new Query instance based on a predefined metadata named query.
     *
     * @param string $queryName
     *
     * @return Query
     */
    
public function createNamedQuery($queryName)
    {
        return 
$this->_em->createQuery($this->_class->getNamedQuery($queryName));
    }

    
/**
     * Creates a native SQL query.
     *
     * @param string $queryName
     *
     * @return NativeQuery
     */
    
public function createNativeNamedQuery($queryName)
    {
        
$queryMapping   $this->_class->getNamedNativeQuery($queryName);
        
$rsm            = new QueryResultSetMappingBuilder($this->_em);
        
$rsm->addNamedNativeQueryMapping($this->_class$queryMapping);

        return 
$this->_em->createNativeQuery($queryMapping['query'], $rsm);
    }

    
/**
     * Clears the repository, causing all managed entities to become detached.
     *
     * @return void
     */
    
public function clear()
    {
        
$this->_em->clear($this->_class->rootEntityName);
    }

    
/**
     * Finds an entity by its primary key / identifier.
     *
     * @param mixed    $id          The identifier.
     * @param int      $lockMode    The lock mode.
     * @param int|null $lockVersion The lock version.
     *
     * @return object|null The entity instance or NULL if the entity can not be found.
     */
    
public function find($id$lockMode LockMode::NONE$lockVersion null)
    {
        return 
$this->_em->find($this->_entityName$id$lockMode$lockVersion);
    }

    
/**
     * Finds all entities in the repository.
     *
     * @return array The entities.
     */
    
public function findAll()
    {
        return 
$this->findBy(array());
    }

    
/**
     * Finds entities by a set of criteria.
     *
     * @param array      $criteria
     * @param array|null $orderBy
     * @param int|null   $limit
     * @param int|null   $offset
     *
     * @return array The objects.
     */
    
public function findBy(array $criteria, array $orderBy null$limit null$offset null)
    {
        
$persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);

        return 
$persister->loadAll($criteria$orderBy$limit$offset);
    }

    
/**
     * Finds a single entity by a set of criteria.
     *
     * @param array $criteria
     * @param array|null $orderBy
     *
     * @return object|null The entity instance or NULL if the entity can not be found.
     */
    
public function findOneBy(array $criteria, array $orderBy null)
    {
        
$persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);

        return 
$persister->load($criterianullnull, array(), 01$orderBy);
    }

    
/**
     * Adds support for magic finders.
     *
     * @param string $method
     * @param array  $arguments
     *
     * @return array|object The found entity/entities.
     *
     * @throws ORMException
     * @throws BadMethodCallException If the method called is an invalid find* method
     *                                 or no find* method at all and therefore an invalid
     *                                 method call.
     */
    
public function __call($method$arguments)
    {
        switch (
true) {
            case (
=== strpos($method'findBy')):
                
$by substr($method6);
                
$method 'findBy';
                break;

            case (
=== strpos($method'findOneBy')):
                
$by substr($method9);
                
$method 'findOneBy';
                break;

            default:
                throw new 
BadMethodCallException(
                    
"Undefined method '$method'. The method name must start with ".
                    
"either findBy or findOneBy!"
                
);
        }

        if (empty(
$arguments)) {
            throw 
ORMException::findByRequiresParameter($method $by);
        }

        
$fieldName lcfirst(DoctrineCommonUtilInflector::classify($by));

        if (
$this->_class->hasField($fieldName) || $this->_class->hasAssociation($fieldName)) {
            switch (
count($arguments)) {
                case 
1:
                    return 
$this->$method(array($fieldName => $arguments[0]));

                case 
2:
                    return 
$this->$method(array($fieldName => $arguments[0]), $arguments[1]);

                case 
3:
                    return 
$this->$method(array($fieldName => $arguments[0]), $arguments[1], $arguments[2]);

                case 
4:
                    return 
$this->$method(array($fieldName => $arguments[0]), $arguments[1], $arguments[2], $arguments[3]);

                default:
                    
// Do nothing
            
}
        }

        throw 
ORMException::invalidFindByCall($this->_entityName$fieldName$method.$by);
    }

    
/**
     * @return string
     */
    
protected function getEntityName()
    {
        return 
$this->_entityName;
    }

    
/**
     * @return string
     */
    
public function getClassName()
    {
        return 
$this->getEntityName();
    }

    
/**
     * @return EntityManager
     */
    
protected function getEntityManager()
    {
        return 
$this->_em;
    }

    
/**
     * @return MappingClassMetadata
     */
    
protected function getClassMetadata()
    {
        return 
$this->_class;
    }

    
/**
     * Select all elements from a selectable that match the expression and
     * return a new collection containing these elements.
     *
     * @param DoctrineCommonCollectionsCriteria $criteria
     *
     * @return DoctrineCommonCollectionsCollection
     */
    
public function matching(Criteria $criteria)
    {
        
$persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);

        return new 
ArrayCollection($persister->loadCriteria($criteria));
    }
}
Онлайн: 0
Реклама