blob: eabf1c41cdd80e98c695785974b077478485bf90 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2011 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.core.internal.context.orm;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.emf.common.util.EList;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IType;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.utility.internal.Tools;
import org.eclipse.jpt.common.utility.internal.iterables.CompositeIterable;
import org.eclipse.jpt.common.utility.internal.iterables.EmptyIterable;
import org.eclipse.jpt.common.utility.internal.iterables.SingleElementIterable;
import org.eclipse.jpt.jpa.core.context.AttributeMapping;
import org.eclipse.jpt.jpa.core.context.AttributeOverrideContainer;
import org.eclipse.jpt.jpa.core.context.Column;
import org.eclipse.jpt.jpa.core.context.Embeddable;
import org.eclipse.jpt.jpa.core.context.Entity;
import org.eclipse.jpt.jpa.core.context.FetchType;
import org.eclipse.jpt.jpa.core.context.OverrideContainer;
import org.eclipse.jpt.jpa.core.context.PersistentType;
import org.eclipse.jpt.jpa.core.context.ReadOnlyAttributeOverride;
import org.eclipse.jpt.jpa.core.context.ReadOnlyBaseColumn;
import org.eclipse.jpt.jpa.core.context.ReadOnlyNamedColumn;
import org.eclipse.jpt.jpa.core.context.ReadOnlyOverride;
import org.eclipse.jpt.jpa.core.context.TypeMapping;
import org.eclipse.jpt.jpa.core.context.java.JavaAttributeOverride;
import org.eclipse.jpt.jpa.core.context.java.JavaPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.orm.OrmAttributeOverrideContainer;
import org.eclipse.jpt.jpa.core.context.orm.OrmColumn;
import org.eclipse.jpt.jpa.core.context.orm.OrmMultiRelationshipMapping;
import org.eclipse.jpt.jpa.core.context.orm.OrmOrderable;
import org.eclipse.jpt.jpa.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.orm.OrmRelationshipStrategy;
import org.eclipse.jpt.jpa.core.context.orm.OrmTypeMapping;
import org.eclipse.jpt.jpa.core.internal.context.BaseColumnTextRangeResolver;
import org.eclipse.jpt.jpa.core.internal.context.JptValidator;
import org.eclipse.jpt.jpa.core.internal.context.MappingTools;
import org.eclipse.jpt.jpa.core.internal.context.NamedColumnTextRangeResolver;
import org.eclipse.jpt.jpa.core.internal.context.OverrideTextRangeResolver;
import org.eclipse.jpt.jpa.core.internal.jpa1.context.EmbeddableOverrideDescriptionProvider;
import org.eclipse.jpt.jpa.core.internal.jpa1.context.MapKeyAttributeOverrideColumnValidator;
import org.eclipse.jpt.jpa.core.internal.jpa1.context.MapKeyAttributeOverrideValidator;
import org.eclipse.jpt.jpa.core.internal.jpa1.context.MapKeyColumnValidator;
import org.eclipse.jpt.jpa.core.internal.jpa1.context.RelationshipStrategyTableDescriptionProvider;
import org.eclipse.jpt.jpa.core.jpa2.context.Orderable2_0;
import org.eclipse.jpt.jpa.core.jpa2.context.java.JavaCollectionMapping2_0;
import org.eclipse.jpt.jpa.core.jpa2.context.orm.OrmCollectionMapping2_0;
import org.eclipse.jpt.jpa.core.jpa2.context.orm.OrmPersistentAttribute2_0;
import org.eclipse.jpt.jpa.core.resource.orm.AbstractXmlMultiRelationshipMapping;
import org.eclipse.jpt.jpa.core.resource.orm.MapKey;
import org.eclipse.jpt.jpa.core.resource.orm.OrmFactory;
import org.eclipse.jpt.jpa.core.resource.orm.XmlAttributeOverride;
import org.eclipse.jpt.jpa.core.resource.orm.XmlClassReference;
import org.eclipse.jpt.jpa.core.resource.orm.XmlColumn;
import org.eclipse.jpt.jpa.db.Table;
import org.eclipse.text.edits.ReplaceEdit;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
import org.eclipse.wst.validation.internal.provisional.core.IReporter;
/**
* <code>orm.xml</code> multi-relationship (1:m, m:m) mapping
*/
public abstract class AbstractOrmMultiRelationshipMapping<X extends AbstractXmlMultiRelationshipMapping>
extends AbstractOrmRelationshipMapping<X>
implements OrmMultiRelationshipMapping, OrmCollectionMapping2_0
{
protected final OrmOrderable orderable;
protected String specifiedMapKey;
protected boolean noMapKey = false;
protected boolean pkMapKey = false;
protected boolean customMapKey = false;
protected String specifiedMapKeyClass;
protected String defaultMapKeyClass;
protected Type valueType;
protected Type keyType;
protected final OrmColumn mapKeyColumn;
protected final OrmAttributeOverrideContainer mapKeyAttributeOverrideContainer;
protected AbstractOrmMultiRelationshipMapping(OrmPersistentAttribute parent, X xmlMapping) {
super(parent, xmlMapping);
this.orderable = this.buildOrderable();
this.specifiedMapKey = this.buildSpecifiedMapKey();
this.noMapKey = this.buildNoMapKey();
this.pkMapKey = this.buildPkMapKey();
this.customMapKey = this.buildCustomMapKey();
this.specifiedMapKeyClass = this.buildSpecifiedMapKeyClass();
this.mapKeyColumn = this.buildMapKeyColumn();
this.mapKeyAttributeOverrideContainer = this.buildMapKeyAttributeOverrideContainer();
}
// ********** synchronize/update **********
@Override
public void synchronizeWithResourceModel() {
super.synchronizeWithResourceModel();
this.orderable.synchronizeWithResourceModel();
this.setSpecifiedMapKey_(this.buildSpecifiedMapKey());
this.setNoMapKey_(this.buildNoMapKey());
this.setPkMapKey_(this.buildPkMapKey());
this.setCustomMapKey_(this.buildCustomMapKey());
this.setSpecifiedMapKeyClass_(this.buildSpecifiedMapKeyClass());
this.mapKeyColumn.synchronizeWithResourceModel();
this.mapKeyAttributeOverrideContainer.synchronizeWithResourceModel();
}
@Override
public void update() {
super.update();
this.orderable.update();
this.setDefaultMapKeyClass(this.buildDefaultMapKeyClass());
this.setValueType(this.buildValueType());
this.setKeyType(this.buildKeyType());
this.mapKeyColumn.update();
this.mapKeyAttributeOverrideContainer.update();
}
// ********** orderable **********
public OrmOrderable getOrderable() {
return this.orderable;
}
protected OrmOrderable buildOrderable() {
return this.isOrmXml2_0Compatible() ?
this.getContextNodeFactory2_0().buildOrmOrderable(this, this.buildOrderableOwner()) :
this.getContextNodeFactory().buildOrmOrderable(this);
}
protected Orderable2_0.Owner buildOrderableOwner() {
return new OrderableOwner();
}
protected class OrderableOwner
implements Orderable2_0.Owner
{
public String getTableName() {
return this.getRelationshipStrategy().getTableName();
}
public Table resolveDbTable(String tableName) {
return this.getRelationshipStrategy().resolveDbTable(tableName);
}
protected OrmRelationshipStrategy getRelationshipStrategy() {
return AbstractOrmMultiRelationshipMapping.this.getRelationship().getStrategy();
}
}
// ********** map key **********
public String getMapKey() {
if (this.noMapKey) {
return null;
}
if (this.pkMapKey) {
return this.getTargetEntityIdAttributeName();
}
if (this.customMapKey) {
return this.specifiedMapKey;
}
throw new IllegalStateException("unknown map key"); //$NON-NLS-1$
}
// ********** specified map key **********
public String getSpecifiedMapKey() {
return this.specifiedMapKey;
}
public void setSpecifiedMapKey(String mapKey) {
if (mapKey != null) {
this.setSpecifiedMapKey_(mapKey);
this.setNoMapKey_(false);
this.setPkMapKey_(false);
this.setCustomMapKey_(true);
MapKey xmlMapKey = this.getXmlMapKey();
if (xmlMapKey == null) {
xmlMapKey = this.buildXmlMapKey();
}
xmlMapKey.setName(mapKey);
} else {
this.setPkMapKey(true); // hmmm...
}
}
protected void setSpecifiedMapKey_(String mapKey) {
String old = this.specifiedMapKey;
this.specifiedMapKey = mapKey;
this.firePropertyChanged(SPECIFIED_MAP_KEY_PROPERTY, old, mapKey);
}
protected String buildSpecifiedMapKey() {
MapKey xmlMapKey = this.getXmlMapKey();
return (xmlMapKey == null) ? null : xmlMapKey.getName();
}
// ********** no map key **********
public boolean isNoMapKey() {
return this.noMapKey;
}
public void setNoMapKey(boolean noMapKey) {
if (noMapKey) {
this.setSpecifiedMapKey_(null);
this.setNoMapKey_(true);
this.setPkMapKey_(false);
this.setCustomMapKey_(false);
if (this.getXmlMapKey() != null) {
this.removeXmlMapKey();
}
} else {
this.setPkMapKey(true); // hmmm...
}
}
protected void setNoMapKey_(boolean noMapKey) {
boolean old = this.noMapKey;
this.noMapKey = noMapKey;
this.firePropertyChanged(NO_MAP_KEY_PROPERTY, old, noMapKey);
}
protected boolean buildNoMapKey() {
return this.getXmlMapKey() == null;
}
// ********** pk map key **********
public boolean isPkMapKey() {
return this.pkMapKey;
}
public void setPkMapKey(boolean pkMapKey) {
if (pkMapKey) {
this.setSpecifiedMapKey_(null);
this.setNoMapKey_(false);
this.setPkMapKey_(true);
this.setCustomMapKey_(false);
MapKey xmlMapKey = this.getXmlMapKey();
if (xmlMapKey == null) {
this.buildXmlMapKey();
} else {
xmlMapKey.setName(null);
}
} else {
this.setNoMapKey(true); // hmmm...
}
}
protected void setPkMapKey_(boolean pkMapKey) {
boolean old = this.pkMapKey;
this.pkMapKey = pkMapKey;
this.firePropertyChanged(PK_MAP_KEY_PROPERTY, old, pkMapKey);
}
protected boolean buildPkMapKey() {
MapKey xmlMapKey = this.getXmlMapKey();
return (xmlMapKey != null) && (xmlMapKey.getName() == null);
}
// ********** custom map key **********
public boolean isCustomMapKey() {
return this.customMapKey;
}
public void setCustomMapKey(boolean customMapKey) {
if (customMapKey) {
this.setSpecifiedMapKey(""); //$NON-NLS-1$
} else {
this.setNoMapKey(true); // hmmm...
}
}
protected void setCustomMapKey_(boolean customMapKey) {
boolean old = this.customMapKey;
this.customMapKey = customMapKey;
this.firePropertyChanged(CUSTOM_MAP_KEY_PROPERTY, old, customMapKey);
}
protected boolean buildCustomMapKey() {
MapKey xmlMapKey = this.getXmlMapKey();
return (xmlMapKey != null) && (xmlMapKey.getName() != null);
}
// ********** xml map key **********
protected MapKey getXmlMapKey() {
return this.xmlAttributeMapping.getMapKey();
}
protected MapKey buildXmlMapKey() {
MapKey mapKey = OrmFactory.eINSTANCE.createMapKey();
this.xmlAttributeMapping.setMapKey(mapKey);
return mapKey;
}
protected void removeXmlMapKey() {
this.xmlAttributeMapping.setMapKey(null);
}
// ********** map key class **********
public String getMapKeyClass() {
return (this.specifiedMapKeyClass != null) ? this.specifiedMapKeyClass : this.defaultMapKeyClass;
}
public String getSpecifiedMapKeyClass() {
return this.specifiedMapKeyClass;
}
public void setSpecifiedMapKeyClass(String mapKeyClass) {
if (this.setSpecifiedMapKeyClass_(mapKeyClass)) {
XmlClassReference xmlClassRef = this.xmlAttributeMapping.getMapKeyClass();
if (mapKeyClass == null) {
if (xmlClassRef != null) {
this.xmlAttributeMapping.setMapKeyClass(null);
}
} else {
if (xmlClassRef == null) {
xmlClassRef = this.buildXmlMapKeyClassReference();
}
xmlClassRef.setClassName(mapKeyClass);
}
}
}
protected boolean setSpecifiedMapKeyClass_(String mapKeyClass) {
String old = this.specifiedMapKeyClass;
this.specifiedMapKeyClass = mapKeyClass;
return this.firePropertyChanged(SPECIFIED_MAP_KEY_CLASS_PROPERTY, old, mapKeyClass);
}
protected XmlClassReference buildXmlMapKeyClassReference() {
XmlClassReference mapKeyClass = OrmFactory.eINSTANCE.createXmlClassReference();
this.xmlAttributeMapping.setMapKeyClass(mapKeyClass);
return mapKeyClass;
}
protected String buildSpecifiedMapKeyClass() {
XmlClassReference xmlClassRef = this.xmlAttributeMapping.getMapKeyClass();
return (xmlClassRef == null) ? null : xmlClassRef.getClassName();
}
public String getDefaultMapKeyClass() {
return this.defaultMapKeyClass;
}
protected void setDefaultMapKeyClass(String mapKeyClass) {
String old = this.defaultMapKeyClass;
this.defaultMapKeyClass = mapKeyClass;
this.firePropertyChanged(DEFAULT_MAP_KEY_CLASS_PROPERTY, old, mapKeyClass);
}
protected String buildDefaultMapKeyClass() {
JavaPersistentAttribute javaAttribute = this.getJavaPersistentAttribute();
return (javaAttribute == null) ? null : javaAttribute.getMultiReferenceMapKeyTypeName();
}
public char getMapKeyClassEnclosingTypeSeparator() {
return '$';
}
// ********** resolved map key embeddable/entity **********
protected Embeddable getResolvedMapKeyEmbeddable() {
TypeMapping typeMapping = this.getResolvedMapKeyTypeMapping();
return (typeMapping instanceof Embeddable) ? (Embeddable) typeMapping : null;
}
protected Entity getResolvedMapKeyEntity() {
TypeMapping typeMapping = this.getResolvedMapKeyTypeMapping();
return (typeMapping instanceof Entity) ? (Entity) typeMapping : null;
}
protected TypeMapping getResolvedMapKeyTypeMapping() {
PersistentType resolvedMapKeyType = this.getResolvedMapKeyType();
return (resolvedMapKeyType == null) ? null : resolvedMapKeyType.getMapping();
}
protected PersistentType getResolvedMapKeyType() {
return this.resolvePersistentType(this.getMapKeyClass());
}
// ********** value type **********
public Type getValueType() {
return this.valueType;
}
protected void setValueType(Type valueType) {
Type old = this.valueType;
this.valueType = valueType;
this.firePropertyChanged(VALUE_TYPE_PROPERTY, old, valueType);
}
protected Type buildValueType() {
if (this.getResolvedTargetEntity() != null) {
return Type.ENTITY_TYPE;
}
if (this.getResolvedTargetEmbeddable() != null) {
return Type.EMBEDDABLE_TYPE;
}
if (this.getTargetEntity() == null) {
return Type.NO_TYPE;
}
return Type.BASIC_TYPE;
}
protected Embeddable getResolvedTargetEmbeddable() {
TypeMapping typeMapping = this.getResolvedTargetTypeMapping();
return (typeMapping instanceof Embeddable) ? (Embeddable) typeMapping : null;
}
// ********** key type **********
public Type getKeyType() {
return this.keyType;
}
protected void setKeyType(Type keyType) {
Type old = this.keyType;
this.keyType = keyType;
this.firePropertyChanged(KEY_TYPE_PROPERTY, old, keyType);
}
protected Type buildKeyType() {
if (this.getResolvedMapKeyEmbeddable() != null) {
return Type.EMBEDDABLE_TYPE;
}
if (this.getResolvedMapKeyEntity() != null) {
return Type.ENTITY_TYPE;
}
if (this.getMapKeyClass() == null) {
return Type.NO_TYPE;
}
return Type.BASIC_TYPE;
}
// ********** map key column **********
public OrmColumn getMapKeyColumn() {
return this.mapKeyColumn;
}
protected OrmColumn buildMapKeyColumn() {
return this.getContextNodeFactory().buildOrmColumn(this, this.buildMapKeyColumnOwner());
}
protected OrmColumn.Owner buildMapKeyColumnOwner() {
return new MapKeyColumnOwner();
}
protected XmlColumn getXmlMapKeyColumn() {
return this.xmlAttributeMapping.getMapKeyColumn();
}
protected XmlColumn buildXmlMapKeyColumn() {
XmlColumn xmlColumn = OrmFactory.eINSTANCE.createXmlColumn();
this.xmlAttributeMapping.setMapKeyColumn(xmlColumn);
return xmlColumn;
}
protected void removeXmlMapKeyColumn() {
this.xmlAttributeMapping.setMapKeyColumn(null);
}
// ********** map key attribute override container **********
public OrmAttributeOverrideContainer getMapKeyAttributeOverrideContainer() {
return this.mapKeyAttributeOverrideContainer;
}
protected OrmAttributeOverrideContainer buildMapKeyAttributeOverrideContainer() {
return this.getContextNodeFactory().buildOrmAttributeOverrideContainer(this, this.buildMapKeyAttributeOverrideContainerOwner());
}
protected OrmAttributeOverrideContainer.Owner buildMapKeyAttributeOverrideContainerOwner() {
return new MapKeyAttributeOverrideContainerOwner();
}
protected JavaAttributeOverride getSpecifiedJavaMapKeyAttributeOverrideNamed(String attributeName) {
JavaCollectionMapping2_0 javaCollectionMapping = this.getJavaCollectionMapping();
return (javaCollectionMapping == null) ? null :
javaCollectionMapping.getMapKeyAttributeOverrideContainer().getSpecifiedOverrideNamed(attributeName);
}
protected JavaCollectionMapping2_0 getJavaCollectionMapping() {
AttributeMapping javaAttributeMapping = this.getJavaAttributeMapping();
return (javaAttributeMapping.getKey() == this.getKey()) ?
(JavaCollectionMapping2_0) javaAttributeMapping :
null;
}
protected AttributeMapping getJavaAttributeMapping() {
JavaPersistentAttribute javaAttribute = this.getJavaPersistentAttribute();
return (javaAttribute == null) ? null : javaAttribute.getMapping();
}
// ********** misc **********
/**
* pre-condition: the mapping's Java persistent attribute is not
* <code>null</code>.
*/
@Override
protected String getJavaTargetType() {
return this.getJavaPersistentAttribute().getMultiReferenceTargetTypeName();
}
@Override
protected FetchType buildDefaultFetch() {
return DEFAULT_FETCH_TYPE;
}
public Iterable<String> getCandidateMapKeyNames() {
return this.getAllTargetEntityAttributeNames();
}
// ********** metamodel **********
@Override
protected String getMetamodelFieldTypeName() {
return ((OrmPersistentAttribute2_0) this.getPersistentAttribute()).getMetamodelContainerFieldTypeName();
}
@Override
protected void addMetamodelFieldTypeArgumentNamesTo(ArrayList<String> typeArgumentNames) {
this.addMetamodelFieldMapKeyTypeArgumentNameTo(typeArgumentNames);
super.addMetamodelFieldTypeArgumentNamesTo(typeArgumentNames);
}
protected void addMetamodelFieldMapKeyTypeArgumentNameTo(ArrayList<String> typeArgumentNames) {
String keyTypeName = ((OrmPersistentAttribute2_0) this.getPersistentAttribute()).getMetamodelContainerFieldMapKeyTypeName();
if (keyTypeName != null) {
typeArgumentNames.add(keyTypeName);
}
}
public String getMetamodelFieldMapKeyTypeName() {
return MappingTools.getMetamodelFieldMapKeyTypeName(this);
}
//************* refactoring *************
@Override
@SuppressWarnings("unchecked")
public Iterable<ReplaceEdit> createRenameTypeEdits(IType originalType, String newName) {
return new CompositeIterable<ReplaceEdit>(
super.createRenameTypeEdits(originalType, newName),
this.createMapKeyClassRenameTypeEdits(originalType, newName)
);
}
protected Iterable<ReplaceEdit> createMapKeyClassRenameTypeEdits(IType originalType, String newName) {
if (this.specifiedMapKeyClass != null) {
PersistentType mapKeyType = this.getResolvedMapKeyType();
if ((mapKeyType != null) && mapKeyType.isFor(originalType.getFullyQualifiedName('.'))) {
return new SingleElementIterable<ReplaceEdit>(this.createMapKeyClassRenameTypeEdit(originalType, newName));
}
}
return EmptyIterable.<ReplaceEdit>instance();
}
protected ReplaceEdit createMapKeyClassRenameTypeEdit(IType originalType, String newName) {
return this.xmlAttributeMapping.createRenameMapKeyClassEdit(originalType, newName);
}
@Override
@SuppressWarnings("unchecked")
public Iterable<ReplaceEdit> createMoveTypeEdits(IType originalType, IPackageFragment newPackage) {
return new CompositeIterable<ReplaceEdit>(
super.createMoveTypeEdits(originalType, newPackage),
this.createMapKeyClassMoveTypeEdits(originalType, newPackage)
);
}
protected Iterable<ReplaceEdit> createMapKeyClassMoveTypeEdits(IType originalType, IPackageFragment newPackage) {
if (this.specifiedMapKeyClass != null) {
PersistentType mapKeyType = this.getResolvedMapKeyType();
if ((mapKeyType != null) && mapKeyType.isFor(originalType.getFullyQualifiedName('.'))) {
return new SingleElementIterable<ReplaceEdit>(this.createMapKeyClassRenamePackageEdit(newPackage.getElementName()));
}
}
return EmptyIterable.<ReplaceEdit>instance();
}
@Override
@SuppressWarnings("unchecked")
public Iterable<ReplaceEdit> createRenamePackageEdits(IPackageFragment originalPackage, String newName) {
return new CompositeIterable<ReplaceEdit>(
super.createRenamePackageEdits(originalPackage, newName),
this.createMapKeyClassRenamePackageEdits(originalPackage, newName)
);
}
protected Iterable<ReplaceEdit> createMapKeyClassRenamePackageEdits(IPackageFragment originalPackage, String newName) {
if (this.specifiedMapKeyClass != null) {
PersistentType mapKeyType = this.getResolvedMapKeyType();
if ((mapKeyType != null) && mapKeyType.isIn(originalPackage)) {
return new SingleElementIterable<ReplaceEdit>(this.createMapKeyClassRenamePackageEdit(newName));
}
}
return EmptyIterable.<ReplaceEdit>instance();
}
protected ReplaceEdit createMapKeyClassRenamePackageEdit(String newName) {
return this.xmlAttributeMapping.createRenameMapKeyClassPackageEdit(newName);
}
// ********** validation **********
@Override
public void validate(List<IMessage> messages, IReporter reporter) {
super.validate(messages, reporter);
this.orderable.validate(messages, reporter);
this.validateMapKey(messages, reporter);
}
public void validateMapKey(List<IMessage> messages, IReporter reporter) {
if (this.getMapKey() != null) {
//TODO validate that the map key refers to an existing attribute
return;
}
if (this.keyType == Type.BASIC_TYPE) {
this.mapKeyColumn.validate(messages, reporter);
//validate map key converter
}
else if (this.keyType == Type.ENTITY_TYPE) {
//validate map key join columns
}
else if (this.keyType == Type.EMBEDDABLE_TYPE) {
this.mapKeyAttributeOverrideContainer.validate(messages, reporter);
//validate map key association overrides
}
}
// ********** abstract owner **********
/**
* some common behavior
*/
protected class AbstractOwner
{
public OrmTypeMapping getTypeMapping() {
return AbstractOrmMultiRelationshipMapping.this.getTypeMapping();
}
public String getDefaultTableName() {
return this.getRelationshipStrategy().getTableName();
}
public Table resolveDbTable(String tableName) {
return this.getRelationshipStrategy().resolveDbTable(tableName);
}
public Iterable<String> getCandidateTableNames() {
return EmptyIterable.instance();
}
public TextRange getValidationTextRange() {
return AbstractOrmMultiRelationshipMapping.this.getValidationTextRange();
}
protected OrmRelationshipStrategy getRelationshipStrategy() {
return AbstractOrmMultiRelationshipMapping.this.getRelationship().getStrategy();
}
protected OrmPersistentAttribute getPersistentAttribute() {
return AbstractOrmMultiRelationshipMapping.this.getPersistentAttribute();
}
}
// ********** map key column owner **********
protected class MapKeyColumnOwner
extends AbstractOwner
implements OrmColumn.Owner
{
public String getDefaultColumnName() {
return AbstractOrmMultiRelationshipMapping.this.getName() + "_KEY"; //$NON-NLS-1$
}
public boolean tableNameIsInvalid(String tableName) {
return this.getRelationshipStrategy().tableNameIsInvalid(tableName);
}
public XmlColumn getXmlColumn() {
return AbstractOrmMultiRelationshipMapping.this.getXmlMapKeyColumn();
}
public XmlColumn buildXmlColumn() {
return AbstractOrmMultiRelationshipMapping.this.buildXmlMapKeyColumn();
}
public void removeXmlColumn() {
AbstractOrmMultiRelationshipMapping.this.removeXmlMapKeyColumn();
}
public JptValidator buildColumnValidator(ReadOnlyNamedColumn column, NamedColumnTextRangeResolver textRangeResolver) {
return new MapKeyColumnValidator(this.getPersistentAttribute(), (ReadOnlyBaseColumn) column, (BaseColumnTextRangeResolver) textRangeResolver, new RelationshipStrategyTableDescriptionProvider(this.getRelationshipStrategy()));
}
}
// ********** map key attribute override container owner **********
protected class MapKeyAttributeOverrideContainerOwner
extends AbstractOwner
implements OrmAttributeOverrideContainer.Owner
{
public TypeMapping getOverridableTypeMapping() {
return AbstractOrmMultiRelationshipMapping.this.getResolvedMapKeyEmbeddable();
}
public Iterable<String> getAllOverridableNames() {
TypeMapping overriddenTypeMapping = this.getOverridableTypeMapping();
return (overriddenTypeMapping != null) ? overriddenTypeMapping.getAllOverridableAttributeNames() : EmptyIterable.<String>instance();
}
protected JavaAttributeOverride getSpecifiedJavaAttributeOverrideNamed(String attributeName) {
return AbstractOrmMultiRelationshipMapping.this.getSpecifiedJavaMapKeyAttributeOverrideNamed(attributeName);
}
public Iterable<String> getJavaOverrideNames() {
return null;
}
public EList<XmlAttributeOverride> getXmlOverrides() {
return AbstractOrmMultiRelationshipMapping.this.xmlAttributeMapping.getMapKeyAttributeOverrides();
}
public Column resolveOverriddenColumn(String attributeName) {
return MappingTools.resolveOverriddenColumn(this.getOverridableTypeMapping(), attributeName);
}
/**
* If there is a specified table name it needs to be the same
* the default table name. the table is always the collection table
*/
public boolean tableNameIsInvalid(String tableName) {
return Tools.valuesAreDifferent(this.getDefaultTableName(), tableName);
}
public JptValidator buildOverrideValidator(ReadOnlyOverride override, OverrideContainer container, OverrideTextRangeResolver textRangeResolver) {
return new MapKeyAttributeOverrideValidator(this.getPersistentAttribute(), (ReadOnlyAttributeOverride) override, (AttributeOverrideContainer) container, textRangeResolver, new EmbeddableOverrideDescriptionProvider());
}
public JptValidator buildColumnValidator(ReadOnlyOverride override, ReadOnlyBaseColumn column, ReadOnlyBaseColumn.Owner owner, BaseColumnTextRangeResolver textRangeResolver) {
return new MapKeyAttributeOverrideColumnValidator(this.getPersistentAttribute(), (ReadOnlyAttributeOverride) override, column, textRangeResolver, new RelationshipStrategyTableDescriptionProvider(this.getRelationshipStrategy()));
}
}
}