blob: c07d574c5f4843c0a584917f81f79cc6bd781954 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 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.java;
import java.util.Iterator;
import java.util.List;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.JptCorePlugin;
import org.eclipse.jpt.core.context.AttributeMapping;
import org.eclipse.jpt.core.context.AttributeOverride;
import org.eclipse.jpt.core.context.Column;
import org.eclipse.jpt.core.context.Embeddable;
import org.eclipse.jpt.core.context.TypeMapping;
import org.eclipse.jpt.core.context.java.JavaAttributeOverrideContainer;
import org.eclipse.jpt.core.context.java.JavaBaseEmbeddedMapping;
import org.eclipse.jpt.core.context.java.JavaPersistentAttribute;
import org.eclipse.jpt.core.resource.java.Annotation;
import org.eclipse.jpt.core.resource.java.JPA;
import org.eclipse.jpt.utility.Filter;
import org.eclipse.jpt.utility.internal.ArrayTools;
import org.eclipse.jpt.utility.internal.iterators.CompositeIterator;
import org.eclipse.jpt.utility.internal.iterators.EmptyIterator;
import org.eclipse.jpt.utility.internal.iterators.TransformationIterator;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
import org.eclipse.wst.validation.internal.provisional.core.IReporter;
public abstract class AbstractJavaBaseEmbeddedMapping<T extends Annotation>
extends AbstractJavaAttributeMapping<T>
implements JavaBaseEmbeddedMapping
{
protected final JavaAttributeOverrideContainer attributeOverrideContainer;
private Embeddable embeddable;
protected AbstractJavaBaseEmbeddedMapping(JavaPersistentAttribute parent) {
super(parent);
this.attributeOverrideContainer = this.getJpaFactory().buildJavaAttributeOverrideContainer(this, this);
}
public JavaAttributeOverrideContainer getAttributeOverrideContainer() {
return this.attributeOverrideContainer;
}
public TypeMapping getOverridableTypeMapping() {
return this.embeddable;
}
//****************** JavaAttributeMapping implementation *******************
@Override
protected String[] buildSupportingAnnotationNames() {
return ArrayTools.addAll(
super.buildSupportingAnnotationNames(),
JPA.ATTRIBUTE_OVERRIDE,
JPA.ATTRIBUTE_OVERRIDES);
}
public Embeddable getEmbeddable() {
return this.embeddable;
}
@Override
protected void initialize() {
super.initialize();
this.attributeOverrideContainer.initialize(this.getResourcePersistentAttribute());
this.embeddable = this.getPersistentAttribute().getEmbeddable();
}
@Override
protected void update() {
super.update();
this.embeddable = this.getPersistentAttribute().getEmbeddable();
this.attributeOverrideContainer.update(this.getResourcePersistentAttribute());
}
protected Iterator<AttributeMapping> embeddableAttributeMappings() {
if (this.getEmbeddable() == null) {
return EmptyIterator.instance();
}
return this.getEmbeddable().attributeMappings();
}
@Override
public Iterator<String> allOverrideableMappingNames() {
if (getJpaPlatformVersion().isCompatibleWithJpaVersion(JptCorePlugin.JPA_FACET_VERSION_2_0)) {
return embeddableOverrideableAttributeMappingNames();
}
return super.allOverrideableMappingNames();
}
protected Iterator<String> embeddableOverrideableAttributeMappingNames() {
return new TransformationIterator<String, String>(
new CompositeIterator<String>(
new TransformationIterator<AttributeMapping, Iterator<String>>(this.embeddableAttributeMappings()) {
@Override
protected Iterator<String> transform(AttributeMapping mapping) {
return mapping.allOverrideableMappingNames();
}
}
)
) {
@Override
protected String transform(String next) {
return getName() + '.' + next;
}
};
}
@Override
public Column resolveOverridenColumn(String attributeName, boolean isMetadataComplete) {
if (getJpaPlatformVersion().isCompatibleWithJpaVersion(JptCorePlugin.JPA_FACET_VERSION_2_0)) {
int dotIndex = attributeName.indexOf('.');
if (dotIndex != -1) {
if (getName().equals(attributeName.substring(0, dotIndex))) {
attributeName = attributeName.substring(dotIndex + 1);
if (!isMetadataComplete) {
AttributeOverride override = getAttributeOverrideContainer().getAttributeOverrideNamed(attributeName);
if (override != null && !override.isVirtual()) {
return override.getColumn();
}
}
if (this.getEmbeddable() == null) {
return null;
}
return this.getEmbeddable().resolveOverridenColumn(attributeName, isMetadataComplete);
}
}
}
return null;
}
@Override
public Iterator<String> javaCompletionProposals(int pos, Filter<String> filter, CompilationUnit astRoot) {
Iterator<String> result = super.javaCompletionProposals(pos, filter, astRoot);
if (result != null) {
return result;
}
result = getAttributeOverrideContainer().javaCompletionProposals(pos, filter, astRoot);
if (result != null) {
return result;
}
return null;
}
//******** Validation ******************
@Override
public void validate(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
super.validate(messages, reporter, astRoot);
getAttributeOverrideContainer().validate(messages, reporter, astRoot);
}
}