blob: 29557dd4008d961f8dee1dd06784bc2fa4cd7dda [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2012 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 org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.jpa.core.context.Entity;
import org.eclipse.jpt.jpa.core.context.PersistentAttribute;
import org.eclipse.jpt.jpa.core.context.ReadOnlyJoinColumn;
import org.eclipse.jpt.jpa.core.context.ReadOnlyNamedColumn;
import org.eclipse.jpt.jpa.core.context.ReadOnlyRelationshipStrategy;
import org.eclipse.jpt.jpa.core.context.RelationshipMapping;
import org.eclipse.jpt.jpa.core.context.TypeMapping;
import org.eclipse.jpt.jpa.core.context.orm.OrmMappingJoinColumnRelationship;
import org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyJoinColumn;
import org.eclipse.jpt.jpa.core.internal.context.JoinColumnTextRangeResolver;
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.jpa1.context.EntityTableDescriptionProvider;
import org.eclipse.jpt.jpa.core.internal.jpa1.context.JoinColumnValidator;
import org.eclipse.jpt.jpa.core.internal.validation.JpaValidationDescriptionMessages;
import org.eclipse.jpt.jpa.core.jpa2.context.ReadOnlyOverrideRelationship2_0;
import org.eclipse.jpt.jpa.core.jpa2.context.orm.OrmMappingJoinColumnRelationshipStrategy2_0;
import org.eclipse.jpt.jpa.db.Table;
public class GenericOrmMappingJoinColumnRelationshipStrategy
extends AbstractOrmJoinColumnRelationshipStrategy
implements OrmMappingJoinColumnRelationshipStrategy2_0
{
protected final boolean targetForeignKey;
/**
* The default strategy is for a "source" foreign key.
*/
public GenericOrmMappingJoinColumnRelationshipStrategy(OrmMappingJoinColumnRelationship parent) {
this(parent, false);
}
public GenericOrmMappingJoinColumnRelationshipStrategy(OrmMappingJoinColumnRelationship parent, boolean targetForeignKey) {
super(parent);
this.targetForeignKey = targetForeignKey;
}
@Override
protected OrmReadOnlyJoinColumn.Owner buildJoinColumnOwner() {
return new JoinColumnOwner();
}
public boolean isOverridable() {
return true;
}
public TypeMapping getRelationshipSource() {
RelationshipMapping mapping = this.getRelationshipMapping();
return this.targetForeignKey ?
mapping.getResolvedTargetEntity() :
mapping.getTypeMapping();
}
public TypeMapping getRelationshipTarget() {
RelationshipMapping mapping = this.getRelationshipMapping();
return this.targetForeignKey ?
mapping.getTypeMapping() :
mapping.getResolvedTargetEntity();
}
protected Entity getRelationshipTargetEntity() {
TypeMapping target = this.getRelationshipTarget();
return (target instanceof Entity) ? (Entity) target : null;
}
public boolean isTargetForeignKey() {
return this.targetForeignKey;
}
public ReadOnlyRelationshipStrategy selectOverrideStrategy(ReadOnlyOverrideRelationship2_0 overrideRelationship) {
return overrideRelationship.getJoinColumnStrategy();
}
// ********** validation **********
public String getColumnTableNotValidDescription() {
return JpaValidationDescriptionMessages.NOT_VALID_FOR_THIS_ENTITY;
}
public TextRange getValidationTextRange() {
return this.getRelationship().getValidationTextRange();
}
// ********** join column owner **********
protected class JoinColumnOwner
implements OrmReadOnlyJoinColumn.Owner
{
protected JoinColumnOwner() {
super();
}
/**
* by default, the join column is in the type mapping's primary table
*/
public String getDefaultTableName() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getTableName();
}
public String getDefaultColumnName(ReadOnlyNamedColumn column) {
return MappingTools.buildJoinColumnDefaultName((ReadOnlyJoinColumn) column, this);
}
public String getAttributeName() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getRelationshipMapping().getName();
}
protected PersistentAttribute getPersistentAttribute() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getRelationshipMapping().getPersistentAttribute();
}
public Entity getRelationshipTarget() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getRelationshipTargetEntity();
}
public boolean tableNameIsInvalid(String tableName) {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.tableNameIsInvalid(tableName);
}
public Iterable<String> getCandidateTableNames() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getCandidateTableNames();
}
public Table resolveDbTable(String tableName) {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.resolveDbTable(tableName);
}
public Table getReferencedColumnDbTable() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getReferencedColumnDbTable();
}
public int getJoinColumnsSize() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getJoinColumnsSize();
}
public TextRange getValidationTextRange() {
return GenericOrmMappingJoinColumnRelationshipStrategy.this.getValidationTextRange();
}
public JptValidator buildColumnValidator(ReadOnlyNamedColumn column, NamedColumnTextRangeResolver textRangeResolver) {
return new JoinColumnValidator(this.getPersistentAttribute(), (ReadOnlyJoinColumn) column, this, (JoinColumnTextRangeResolver) textRangeResolver, new EntityTableDescriptionProvider());
}
}
}