blob: ec5b5d146d17da8a15ff88b27f0b0de832969b32 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 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.java;
import java.util.List;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.jpa.core.context.ReadOnlyNamedColumn;
import org.eclipse.jpt.jpa.core.context.VirtualNamedColumn;
import org.eclipse.jpt.jpa.core.context.java.JavaJpaContextNode;
import org.eclipse.jpt.jpa.core.context.java.JavaReadOnlyNamedColumn;
import org.eclipse.jpt.jpa.core.internal.context.JptValidator;
import org.eclipse.jpt.jpa.core.internal.context.NamedColumnTextRangeResolver;
import org.eclipse.jpt.jpa.db.Column;
import org.eclipse.jpt.jpa.db.Table;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
import org.eclipse.wst.validation.internal.provisional.core.IReporter;
/**
* Java virtual<ul>
* <li>column
* <li>join column
* </ul>
* <strong>NB:</strong> all state is sync'ed/updated in {@link #update()}
* because <em>all</em> of it is derived from the context model (i.e. none of it
* is derived from the resource model).
*/
public abstract class AbstractJavaVirtualNamedColumn<O extends ReadOnlyNamedColumn.Owner, C extends ReadOnlyNamedColumn>
extends AbstractJavaJpaContextNode
implements VirtualNamedColumn, JavaReadOnlyNamedColumn
{
protected final O owner;
protected String specifiedName;
protected String defaultName;
protected String columnDefinition;
protected AbstractJavaVirtualNamedColumn(JavaJpaContextNode parent, O owner) {
super(parent);
this.owner = owner;
}
// ********** synchronize/update **********
@Override
public void update() {
super.update();
this.setSpecifiedName(this.buildSpecifiedName());
this.setDefaultName(this.buildDefaultName());
this.setColumnDefinition(this.buildColumnDefinition());
}
// ********** column **********
/**
* This should never return <code>null</code>.
*/
public abstract C getOverriddenColumn();
// ********** name **********
public String getName() {
return (this.specifiedName != null) ? this.specifiedName : this.defaultName;
}
public String getSpecifiedName() {
return this.specifiedName;
}
protected void setSpecifiedName(String name) {
String old = this.specifiedName;
this.specifiedName = name;
this.firePropertyChanged(SPECIFIED_NAME_PROPERTY, old, name);
}
protected String buildSpecifiedName() {
return this.getOverriddenColumn().getSpecifiedName();
}
public String getDefaultName() {
return this.defaultName;
}
protected void setDefaultName(String name) {
String old = this.defaultName;
this.defaultName = name;
this.firePropertyChanged(DEFAULT_NAME_PROPERTY, old, name);
}
protected String buildDefaultName() {
return this.owner.getDefaultColumnName(this);
}
// ********** column definition **********
public String getColumnDefinition() {
return this.columnDefinition;
}
protected void setColumnDefinition(String columnDefinition) {
String old = this.columnDefinition;
this.columnDefinition = columnDefinition;
this.firePropertyChanged(COLUMN_DEFINITION_PROPERTY, old, columnDefinition);
}
protected String buildColumnDefinition() {
return this.getOverriddenColumn().getColumnDefinition();
}
// ********** database stuff **********
protected Column getDbColumn() {
Table table = this.getDbTable();
return (table == null) ? null : table.getColumnForIdentifier(this.getName());
}
public Table getDbTable() {
return this.owner.resolveDbTable(this.getTable());
}
/**
* Return the name of the column's table. This is overridden
* in {@link AbstractJavaVirtualBaseColumn} where a table can be defined.
*/
public String getTable() {
return this.owner.getDefaultTableName();
}
public boolean isResolved() {
return this.getDbColumn() != null;
}
// ********** validation **********
@Override
public void validate(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
super.validate(messages, reporter, astRoot);
this.buildValidator(astRoot).validate(messages, reporter);
}
protected JptValidator buildValidator(CompilationUnit astRoot) {
return this.owner.buildColumnValidator(this, this.buildTextRangeResolver(astRoot));
}
protected NamedColumnTextRangeResolver buildTextRangeResolver(CompilationUnit astRoot) {
return new JavaNamedColumnTextRangeResolver(this, astRoot);
}
public TextRange getValidationTextRange(CompilationUnit astRoot) {
return this.getParent().getValidationTextRange(astRoot);
}
public TextRange getNameTextRange(CompilationUnit astRoot) {
return this.getValidationTextRange(astRoot);
}
// ********** misc **********
@Override
public JavaJpaContextNode getParent() {
return (JavaJpaContextNode) super.getParent();
}
@Override
public void toString(StringBuilder sb) {
String table = this.getTable();
if (table != null) {
sb.append(table);
sb.append('.');
}
sb.append(this.getName());
}
}