blob: f6f28b8520f5f0a1436d2727c6c71a89d7666c52 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 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.Iterator;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.jpa.core.context.AssociationOverrideContainer;
import org.eclipse.jpt.jpa.core.context.BaseColumn;
import org.eclipse.jpt.jpa.core.context.Entity;
import org.eclipse.jpt.jpa.core.context.NamedColumn;
import org.eclipse.jpt.jpa.core.context.PersistentAttribute;
import org.eclipse.jpt.jpa.core.context.ReadOnlyBaseJoinColumn;
import org.eclipse.jpt.jpa.core.context.RelationshipMapping;
import org.eclipse.jpt.jpa.core.context.TypeMapping;
import org.eclipse.jpt.jpa.core.context.orm.OrmAssociationOverride;
import org.eclipse.jpt.jpa.core.context.orm.OrmJoinColumn;
import org.eclipse.jpt.jpa.core.context.orm.OrmOverrideRelationship;
import org.eclipse.jpt.jpa.core.context.orm.OrmJoinColumn.Owner;
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.NamedColumnTextRangeResolver;
import org.eclipse.jpt.jpa.db.Table;
public class GenericOrmOverrideJoinColumnRelationshipStrategy
extends AbstractOrmJoinColumnRelationshipStrategy
{
public GenericOrmOverrideJoinColumnRelationshipStrategy(OrmOverrideRelationship parent) {
super(parent);
}
@Override
protected Owner buildJoinColumnOwner() {
return new JoinColumnOwner();
}
public boolean isTargetForeignKey() {
RelationshipMapping relationshipMapping = this.getRelationshipMapping();
return (relationshipMapping != null) &&
relationshipMapping.getRelationship().isTargetForeignKey();
}
public TypeMapping getRelationshipSource() {
return this.isTargetForeignKey() ?
this.getRelationshipMapping().getResolvedTargetEntity() :
this.getAssociationOverrideContainer().getTypeMapping();
}
public TypeMapping getRelationshipTarget() {
return this.isTargetForeignKey() ?
this.getAssociationOverrideContainer().getTypeMapping() :
this.getRelationshipMappingTargetEntity();
}
protected TypeMapping getRelationshipMappingTargetEntity() {
RelationshipMapping mapping = this.getRelationshipMapping();
return (mapping == null) ? null : mapping.getResolvedTargetEntity();
}
protected Entity getRelationshipTargetEntity() {
TypeMapping target = this.getRelationshipTarget();
return (target instanceof Entity) ? (Entity) target : null;
}
@Override
public RelationshipMapping getRelationshipMapping() {
return this.getAssociationOverride().getMapping();
}
protected String getAttributeName() {
return this.getAssociationOverride().getName();
}
@Override
public String getTableName() {
return this.isTargetForeignKey() ?
super.getTableName() :
this.getAssociationOverrideContainer().getDefaultTableName();
}
@Override
public Table resolveDbTable(String tableName) {
return this.isTargetForeignKey() ?
super.resolveDbTable(tableName) :
this.getAssociationOverrideContainer().resolveDbTable(tableName);
}
@Override
public boolean tableNameIsInvalid(String tableName) {
return this.isTargetForeignKey() ?
super.tableNameIsInvalid(tableName) :
this.getAssociationOverrideContainer().tableNameIsInvalid(tableName);
}
@Override
public Iterator<String> candidateTableNames() {
return this.isTargetForeignKey() ?
super.candidateTableNames() :
this.getAssociationOverrideContainer().candidateTableNames();
}
public String getColumnTableNotValidDescription() {
return null;
}
public boolean isOverridable() {
return false;
}
protected OrmAssociationOverride getAssociationOverride() {
return this.getRelationship().getAssociationOverride();
}
protected AssociationOverrideContainer getAssociationOverrideContainer() {
return this.getAssociationOverride().getContainer();
}
@Override
public OrmOverrideRelationship getRelationship() {
return (OrmOverrideRelationship) super.getRelationship();
}
public TextRange getValidationTextRange() {
return this.getRelationship().getValidationTextRange();
}
// ********** join column owner **********
protected class JoinColumnOwner
implements OrmJoinColumn.Owner
{
protected JoinColumnOwner() {
super();
}
public String getDefaultTableName() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getTableName();
}
public String getDefaultColumnName() {
//built in MappingTools.buildJoinColumnDefaultName()
return null;
}
public String getAttributeName() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getAttributeName();
}
public PersistentAttribute getPersistentAttribute() {
RelationshipMapping relationshipMapping = GenericOrmOverrideJoinColumnRelationshipStrategy.this.getRelationshipMapping();
return relationshipMapping == null ? null : relationshipMapping.getPersistentAttribute();
}
public TypeMapping getTypeMapping() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getRelationshipSource();
}
public Entity getRelationshipTarget() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getRelationshipTargetEntity();
}
public boolean tableNameIsInvalid(String tableName) {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.tableNameIsInvalid(tableName);
}
public Iterator<String> candidateTableNames() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.candidateTableNames();
}
public Table resolveDbTable(String tableName) {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.resolveDbTable(tableName);
}
public Table getReferencedColumnDbTable() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getReferencedColumnDbTable();
}
public boolean joinColumnIsDefault(ReadOnlyBaseJoinColumn joinColumn) {
return false;
}
public int joinColumnsSize() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.joinColumnsSize();
}
public TextRange getValidationTextRange() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getValidationTextRange();
}
public JptValidator buildColumnValidator(NamedColumn column, NamedColumnTextRangeResolver textRangeResolver) {
return this.getAssociationOverrideContainer().buildColumnValidator(this.getAssociationOverride(), (BaseColumn) column, this, (BaseColumnTextRangeResolver) textRangeResolver);
}
protected OrmAssociationOverride getAssociationOverride() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getAssociationOverride();
}
protected AssociationOverrideContainer getAssociationOverrideContainer() {
return GenericOrmOverrideJoinColumnRelationshipStrategy.this.getAssociationOverrideContainer();
}
}
}