* @author Gediminas Morkevicius * @author Miha Vrhovnik * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ class Xml extends BaseXml { /** * {@inheritDoc} */ public function readExtendedMetadata($meta, array &$config) { /** * @var \SimpleXmlElement $xml */ $xml = $this->_getMapping($meta->name); $xmlDoctrine = $xml; $xml = $xml->children(self::GEDMO_NAMESPACE_URI); if ($xmlDoctrine->getName() == 'entity' || $xmlDoctrine->getName() == 'document' || $xmlDoctrine->getName() == 'mapped-superclass') { if (isset($xml->loggable)) { /** * @var SimpleXMLElement $data; */ $data = $xml->loggable; $config['loggable'] = true; if ($this->_isAttributeSet($data, 'log-entry-class')) { $class = $this->_getAttribute($data, 'log-entry-class'); if (!class_exists($class)) { throw new InvalidMappingException("LogEntry class: {$class} does not exist."); } $config['logEntryClass'] = $class; } } } if (isset($xmlDoctrine->field)) { $this->inspectElementForVersioned($xmlDoctrine->field, $config, $meta); } if (isset($xmlDoctrine->{'many-to-one'})) { $this->inspectElementForVersioned($xmlDoctrine->{'many-to-one'}, $config, $meta); } if (isset($xmlDoctrine->{'one-to-one'})) { $this->inspectElementForVersioned($xmlDoctrine->{'one-to-one'}, $config, $meta); } if (isset($xmlDoctrine->{'reference-one'})) { $this->inspectElementForVersioned($xmlDoctrine->{'reference-one'}, $config, $meta); } if (!$meta->isMappedSuperclass && $config) { if (is_array($meta->identifier) && count($meta->identifier) > 1) { throw new InvalidMappingException("Loggable does not support composite identifiers in class - {$meta->name}"); } if (isset($config['versioned']) && !isset($config['loggable'])) { throw new InvalidMappingException("Class must be annoted with Loggable annotation in order to track versioned fields in class - {$meta->name}"); } } } /** * Searches mappings on element for versioned fields * * @param SimpleXMLElement $element * @param array $config * @param object $meta */ private function inspectElementForVersioned(\SimpleXMLElement $element, array &$config, $meta) { foreach ($element as $mapping) { $mappingDoctrine = $mapping; /** * @var \SimpleXmlElement $mapping */ $mapping = $mapping->children(self::GEDMO_NAMESPACE_URI); $isAssoc = $this->_isAttributeSet($mappingDoctrine, 'field'); $field = $this->_getAttribute($mappingDoctrine, $isAssoc ? 'field' : 'name'); if (isset($mapping->versioned)) { if ($isAssoc && !$meta->associationMappings[$field]['isOwningSide']) { throw new InvalidMappingException("Cannot version [{$field}] as it is not the owning side in object - {$meta->name}"); } $config['versioned'][] = $field; } } } }