DDC-117 - Add XML and YML Driver support for associated identifier.
This commit is contained in:
parent
c2bbaa9ead
commit
2a005019bf
3 changed files with 30 additions and 1 deletions
|
@ -187,8 +187,9 @@
|
||||||
<xs:element name="sequence-generator" type="orm:sequence-generator" minOccurs="0" maxOccurs="1" />
|
<xs:element name="sequence-generator" type="orm:sequence-generator" minOccurs="0" maxOccurs="1" />
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
<xs:attribute name="name" type="xs:NMTOKEN" use="required" />
|
<xs:attribute name="name" type="xs:NMTOKEN" use="required" />
|
||||||
<xs:attribute name="type" type="xs:NMTOKEN" use="required" />
|
<xs:attribute name="type" type="xs:NMTOKEN" />
|
||||||
<xs:attribute name="column" type="xs:NMTOKEN" />
|
<xs:attribute name="column" type="xs:NMTOKEN" />
|
||||||
|
<xs:attribute name="association-key" type="xs:boolean" default="false" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
|
|
||||||
<xs:complexType name="sequence-generator">
|
<xs:complexType name="sequence-generator">
|
||||||
|
|
|
@ -194,7 +194,13 @@ class XmlDriver extends AbstractFileDriver
|
||||||
}
|
}
|
||||||
|
|
||||||
// Evaluate <id ...> mappings
|
// Evaluate <id ...> mappings
|
||||||
|
$associationIds = array();
|
||||||
foreach ($xmlRoot->id as $idElement) {
|
foreach ($xmlRoot->id as $idElement) {
|
||||||
|
if ((bool)$idElement['association-key'] == true) {
|
||||||
|
$associationIds[(string)$idElement['fieldName']] = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$mapping = array(
|
$mapping = array(
|
||||||
'id' => true,
|
'id' => true,
|
||||||
'fieldName' => (string)$idElement['name'],
|
'fieldName' => (string)$idElement['name'],
|
||||||
|
@ -235,6 +241,10 @@ class XmlDriver extends AbstractFileDriver
|
||||||
'targetEntity' => (string)$oneToOneElement['target-entity']
|
'targetEntity' => (string)$oneToOneElement['target-entity']
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (isset($associationIds[$mapping['fieldName']])) {
|
||||||
|
$mapping['id'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($oneToOneElement['fetch'])) {
|
if (isset($oneToOneElement['fetch'])) {
|
||||||
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . (string)$oneToOneElement['fetch']);
|
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . (string)$oneToOneElement['fetch']);
|
||||||
}
|
}
|
||||||
|
@ -311,6 +321,10 @@ class XmlDriver extends AbstractFileDriver
|
||||||
'targetEntity' => (string)$manyToOneElement['target-entity']
|
'targetEntity' => (string)$manyToOneElement['target-entity']
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (isset($associationIds[$mapping['fieldName']])) {
|
||||||
|
$mapping['id'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($manyToOneElement['fetch'])) {
|
if (isset($manyToOneElement['fetch'])) {
|
||||||
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . (string)$manyToOneElement['fetch']);
|
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . (string)$manyToOneElement['fetch']);
|
||||||
}
|
}
|
||||||
|
|
|
@ -135,9 +135,15 @@ class YamlDriver extends AbstractFileDriver
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$associationIds = array();
|
||||||
if (isset($element['id'])) {
|
if (isset($element['id'])) {
|
||||||
// Evaluate identifier settings
|
// Evaluate identifier settings
|
||||||
foreach ($element['id'] as $name => $idElement) {
|
foreach ($element['id'] as $name => $idElement) {
|
||||||
|
if (isset($idElement['associationKey']) && $idElement['associationKey'] == true) {
|
||||||
|
$associationIds[$name] = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (!isset($idElement['type'])) {
|
if (!isset($idElement['type'])) {
|
||||||
throw MappingException::propertyTypeIsRequired($className, $name);
|
throw MappingException::propertyTypeIsRequired($className, $name);
|
||||||
}
|
}
|
||||||
|
@ -234,6 +240,10 @@ class YamlDriver extends AbstractFileDriver
|
||||||
'targetEntity' => $oneToOneElement['targetEntity']
|
'targetEntity' => $oneToOneElement['targetEntity']
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (isset($associationIds[$mapping['fieldName']])) {
|
||||||
|
$mapping['id'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($oneToOneElement['fetch'])) {
|
if (isset($oneToOneElement['fetch'])) {
|
||||||
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $oneToOneElement['fetch']);
|
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $oneToOneElement['fetch']);
|
||||||
}
|
}
|
||||||
|
@ -303,6 +313,10 @@ class YamlDriver extends AbstractFileDriver
|
||||||
'targetEntity' => $manyToOneElement['targetEntity']
|
'targetEntity' => $manyToOneElement['targetEntity']
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (isset($associationIds[$mapping['fieldName']])) {
|
||||||
|
$mapping['id'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($manyToOneElement['fetch'])) {
|
if (isset($manyToOneElement['fetch'])) {
|
||||||
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $manyToOneElement['fetch']);
|
$mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $manyToOneElement['fetch']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue