blob: fcb68b6aa5ec4e608605fa55064eab1bbf06bdd3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 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.core.internal.context.orm;
import java.util.Iterator;
import org.eclipse.jpt.core.context.AssociationOverride;
import org.eclipse.jpt.core.context.BaseColumn;
import org.eclipse.jpt.core.context.BaseJoinColumn;
import org.eclipse.jpt.core.context.Entity;
import org.eclipse.jpt.core.context.NamedColumn;
import org.eclipse.jpt.core.context.PersistentAttribute;
import org.eclipse.jpt.core.context.RelationshipMapping;
import org.eclipse.jpt.core.context.TypeMapping;
import org.eclipse.jpt.core.context.orm.OrmAssociationOverride;
import org.eclipse.jpt.core.context.orm.OrmAssociationOverrideRelationshipReference;
import org.eclipse.jpt.core.context.orm.OrmJoinColumn;
import org.eclipse.jpt.core.context.orm.OrmJoinColumnInAssociationOverrideJoiningStrategy;
import org.eclipse.jpt.core.context.orm.OrmJoinColumn.Owner;
import org.eclipse.jpt.core.resource.orm.XmlAssociationOverride;
import org.eclipse.jpt.core.utility.TextRange;
import org.eclipse.jpt.db.Table;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
public class GenericOrmJoinColumnInAssociationOverrideJoiningStrategy
extends AbstractOrmJoinColumnJoiningStrategy
implements OrmJoinColumnInAssociationOverrideJoiningStrategy
{
public GenericOrmJoinColumnInAssociationOverrideJoiningStrategy(OrmAssociationOverrideRelationshipReference parent, XmlAssociationOverride xao) {
super(parent, xao);
}
@Override
protected Owner buildJoinColumnOwner() {
return new JoinColumnOwner();
}
public TypeMapping getTypeMapping() {
return getAssociationOverride().getOwner().getTypeMapping();
}
public String getTableName() {
return getAssociationOverride().getOwner().getDefaultTableName();
}
public Table getDbTable(String tableName) {
return getAssociationOverride().getOwner().getDbTable(tableName);
}
public boolean tableNameIsInvalid(String tableName) {
return getAssociationOverride().getOwner().tableNameIsInvalid(tableName);
}
public String getColumnTableNotValidDescription() {
return null;
}
public boolean isOverridableAssociation() {
return false;
}
protected OrmAssociationOverride getAssociationOverride() {
return this.getRelationshipReference().getAssociationOverride();
}
@Override
public OrmAssociationOverrideRelationshipReference getRelationshipReference() {
return (OrmAssociationOverrideRelationshipReference) super.getRelationshipReference();
}
public TextRange getValidationTextRange() {
return getRelationshipReference().getValidationTextRange();
}
public void update(XmlAssociationOverride xao) {
//TODO can we make resource final and then just have an update() method?
//would need to update the association overrides with the same resource association override
this.resource = xao;
super.update();
}
// ********** join column owner adapter **********
protected class JoinColumnOwner
implements OrmJoinColumn.Owner
{
protected JoinColumnOwner() {
super();
}
protected AssociationOverride getAssociationOverride() {
return GenericOrmJoinColumnInAssociationOverrideJoiningStrategy.this.getRelationshipReference().getAssociationOverride();
}
public String getDefaultTableName() {
return GenericOrmJoinColumnInAssociationOverrideJoiningStrategy.this.getTableName();
}
public String getDefaultColumnName() {
//built in MappingTools.buildJoinColumnDefaultName()
return null;
}
public Entity getTargetEntity() {
RelationshipMapping relationshipMapping = getRelationshipMapping();
return relationshipMapping == null ? null : relationshipMapping.getResolvedTargetEntity();
}
public String getAttributeName() {
return getAssociationOverride().getName();
}
public PersistentAttribute getPersistentAttribute() {
RelationshipMapping relationshipMapping = getRelationshipMapping();
return relationshipMapping == null ? null : relationshipMapping.getPersistentAttribute();
}
public RelationshipMapping getRelationshipMapping() {
return getAssociationOverride().getOwner().getRelationshipMapping(GenericOrmJoinColumnInAssociationOverrideJoiningStrategy.this.getRelationshipReference().getAssociationOverride().getName());
}
public boolean tableNameIsInvalid(String tableName) {
return getAssociationOverride().getOwner().tableNameIsInvalid(tableName);
}
public Iterator<String> candidateTableNames() {
return getAssociationOverride().getOwner().candidateTableNames();
}
public TypeMapping getTypeMapping() {
return GenericOrmJoinColumnInAssociationOverrideJoiningStrategy.this.getTypeMapping();
}
public Table getDbTable(String tableName) {
return getAssociationOverride().getOwner().getDbTable(tableName);
}
public Table getReferencedColumnDbTable() {
Entity targetEntity = getTargetEntity();
return (targetEntity == null) ? null : targetEntity.getPrimaryDbTable();
}
public boolean isVirtual(BaseJoinColumn joinColumn) {
return false;
}
public int joinColumnsSize() {
return GenericOrmJoinColumnInAssociationOverrideJoiningStrategy.this.joinColumnsSize();
}
public TextRange getValidationTextRange() {
return GenericOrmJoinColumnInAssociationOverrideJoiningStrategy.this.getValidationTextRange();
}
public IMessage buildTableNotValidMessage(BaseColumn column, TextRange textRange) {
return getAssociationOverride().getOwner().buildColumnTableNotValidMessage(getAssociationOverride(), column, textRange);
}
public IMessage buildUnresolvedNameMessage(NamedColumn column, TextRange textRange) {
return getAssociationOverride().getOwner().buildColumnUnresolvedNameMessage(getAssociationOverride(), column, textRange);
}
public IMessage buildUnresolvedReferencedColumnNameMessage(BaseJoinColumn column, TextRange textRange) {
return getAssociationOverride().getOwner().buildColumnUnresolvedReferencedColumnNameMessage(getAssociationOverride(), column, textRange);
}
public IMessage buildUnspecifiedNameMultipleJoinColumnsMessage(BaseJoinColumn column, TextRange textRange) {
return getAssociationOverride().getOwner().buildUnspecifiedNameMultipleJoinColumnsMessage(getAssociationOverride(), column, textRange);
}
public IMessage buildUnspecifiedReferencedColumnNameMultipleJoinColumnsMessage(BaseJoinColumn column, TextRange textRange) {
return getAssociationOverride().getOwner().buildUnspecifiedReferencedColumnNameMultipleJoinColumnsMessage(getAssociationOverride(), column, textRange);
}
}
}