Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / lib / Doctrine / ORM / Id / AssignedGenerator.php
1 <?php
2 /*
3  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14  *
15  * This software consists of voluntary contributions made by many individuals
16  * and is licensed under the MIT license. For more information, see
17  * <http://www.doctrine-project.org>.
18  */
19
20 namespace Doctrine\ORM\Id;
21
22 use Doctrine\ORM\EntityManager;
23 use Doctrine\ORM\ORMException;
24
25 /**
26  * Special generator for application-assigned identifiers (doesnt really generate anything).
27  *
28  * @since   2.0
29  * @author  Benjamin Eberlei <kontakt@beberlei.de>
30  * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
31  * @author  Jonathan Wage <jonwage@gmail.com>
32  * @author  Roman Borschel <roman@code-factory.org>
33  */
34 class AssignedGenerator extends AbstractIdGenerator
35 {
36     /**
37      * Returns the identifier assigned to the given entity.
38      *
39      * @param object $entity
40      * @return mixed
41      * @override
42      */
43     public function generate(EntityManager $em, $entity)
44     {
45         $class      = $em->getClassMetadata(get_class($entity));
46         $idFields   = $class->getIdentifierFieldNames();
47         $identifier = array();
48
49         foreach ($idFields as $idField) {
50             $value = $class->reflFields[$idField]->getValue($entity);
51
52             if ( ! isset($value)) {
53                 throw ORMException::entityMissingAssignedIdForField($entity, $idField);
54             }
55
56             if (isset($class->associationMappings[$idField])) {
57                 if ( ! $em->getUnitOfWork()->isInIdentityMap($value)) {
58                     throw ORMException::entityMissingForeignAssignedId($entity, $value);
59                 }
60
61                 // NOTE: Single Columns as associated identifiers only allowed - this constraint it is enforced.
62                 $value = current($em->getUnitOfWork()->getEntityIdentifier($value));
63             }
64
65             $identifier[$idField] = $value;
66         }
67
68         return $identifier;
69     }
70 }