|
0
|
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 LGPL. 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 |
$identifier = array(); |
|
|
47 |
if ($class->isIdentifierComposite) { |
|
|
48 |
$idFields = $class->getIdentifierFieldNames(); |
|
|
49 |
foreach ($idFields as $idField) { |
|
|
50 |
$value = $class->reflFields[$idField]->getValue($entity); |
|
|
51 |
if (isset($value)) { |
|
|
52 |
if (isset($class->associationMappings[$idField])) { |
|
|
53 |
if (!$em->getUnitOfWork()->isInIdentityMap($value)) { |
|
|
54 |
throw ORMException::entityMissingForeignAssignedId($entity, $value); |
|
|
55 |
} |
|
|
56 |
|
|
|
57 |
// NOTE: Single Columns as associated identifiers only allowed - this constraint it is enforced. |
|
|
58 |
$identifier[$idField] = current($em->getUnitOfWork()->getEntityIdentifier($value)); |
|
|
59 |
} else { |
|
|
60 |
$identifier[$idField] = $value; |
|
|
61 |
} |
|
|
62 |
} else { |
|
|
63 |
throw ORMException::entityMissingAssignedId($entity); |
|
|
64 |
} |
|
|
65 |
} |
|
|
66 |
} else { |
|
|
67 |
$idField = $class->identifier[0]; |
|
|
68 |
$value = $class->reflFields[$idField]->getValue($entity); |
|
|
69 |
if (isset($value)) { |
|
|
70 |
if (isset($class->associationMappings[$idField])) { |
|
|
71 |
if (!$em->getUnitOfWork()->isInIdentityMap($value)) { |
|
|
72 |
throw ORMException::entityMissingForeignAssignedId($entity, $value); |
|
|
73 |
} |
|
|
74 |
|
|
|
75 |
// NOTE: Single Columns as associated identifiers only allowed - this constraint it is enforced. |
|
|
76 |
$identifier[$idField] = current($em->getUnitOfWork()->getEntityIdentifier($value)); |
|
|
77 |
} else { |
|
|
78 |
$identifier[$idField] = $value; |
|
|
79 |
} |
|
|
80 |
} else { |
|
|
81 |
throw ORMException::entityMissingAssignedId($entity); |
|
|
82 |
} |
|
|
83 |
} |
|
|
84 |
|
|
|
85 |
return $identifier; |
|
|
86 |
} |
|
|
87 |
} |