blob: 429174fc44c4f7e0b996cb15777cb13fb4c8dc31 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.jpa1.context.persistence;
import java.util.List;
import org.eclipse.core.resources.IResource;
import org.eclipse.jpt.common.core.JptResourceType;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.core.JpaFile;
import org.eclipse.jpt.core.JpaStructureNode;
import org.eclipse.jpt.core.JptCorePlugin;
import org.eclipse.jpt.core.context.JpaRootContextNode;
import org.eclipse.jpt.core.context.persistence.Persistence;
import org.eclipse.jpt.core.internal.context.persistence.AbstractPersistenceXmlContextNode;
import org.eclipse.jpt.core.internal.validation.DefaultJpaValidationMessages;
import org.eclipse.jpt.core.internal.validation.JpaValidationMessages;
import org.eclipse.jpt.core.jpa2.context.persistence.Persistence2_0;
import org.eclipse.jpt.core.jpa2.context.persistence.PersistenceXml2_0;
import org.eclipse.jpt.core.resource.persistence.XmlPersistence;
import org.eclipse.jpt.core.resource.xml.JpaXmlResource;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
import org.eclipse.wst.validation.internal.provisional.core.IReporter;
/**
* context model <code>persistence.xml</code> file
*/
public class GenericPersistenceXml
extends AbstractPersistenceXmlContextNode
implements PersistenceXml2_0
{
/**
* If the XML resource's content type changes, the root context
* node will throw out its current persistence XML.
*/
protected final JpaXmlResource xmlResource; // never null
/**
* The resource type will only change if the XML file's version changes
* (since, if the content type changes, we get garbage-collected).
*/
protected JptResourceType resourceType;
/**
* The root element of the <code>persistence.xml</code> file.
*/
protected Persistence persistence;
public GenericPersistenceXml(JpaRootContextNode parent, JpaXmlResource xmlResource) {
super(parent);
this.checkXmlResource(xmlResource);
this.xmlResource = xmlResource;
this.resourceType = xmlResource.getResourceType();
XmlPersistence xmlPersistence = (XmlPersistence) xmlResource.getRootObject();
if (xmlPersistence != null) {
this.persistence = this.buildPersistence(xmlPersistence);
}
}
// ********** synchronize/update **********
/**
* @see org.eclipse.jpt.core.internal.jpa1.context.orm.GenericOrmXml#synchronizeWithResourceModel()
*/
@Override
public void synchronizeWithResourceModel() {
super.synchronizeWithResourceModel();
XmlPersistence oldXmlPersistence = (this.persistence == null) ? null : this.persistence.getXmlPersistence();
XmlPersistence newXmlPersistence = (XmlPersistence) this.xmlResource.getRootObject();
JptResourceType newResourceType = this.xmlResource.getResourceType();
// If the old and new XML persistences are different instances,
// we scrap the old context persistence and rebuild.
// (This can happen when the resource model changes drastically,
// such as a CVS checkout or an edit reversion.)
if ((oldXmlPersistence != newXmlPersistence) ||
(newXmlPersistence == null) ||
this.valuesAreDifferent(this.resourceType, newResourceType)
) {
if (this.persistence != null) {
this.unregisterRootStructureNode();
this.persistence.dispose();
this.setPersistence(null);
}
}
this.resourceType = newResourceType;
if (newXmlPersistence != null) {
if (this.persistence == null) {
this.setPersistence(this.buildPersistence(newXmlPersistence));
} else {
// the context persistence already holds the XML persistence
this.persistence.synchronizeWithResourceModel();
}
}
}
@Override
public void update() {
super.update();
if (this.persistence != null) {
this.persistence.update();
// this will happen redundantly - need to hold JpaFile?
this.registerRootStructureNode();
}
}
// ********** persistence **********
public Persistence getPersistence() {
return this.persistence;
}
protected void setPersistence(Persistence persistence) {
Persistence old = this.persistence;
this.persistence = persistence;
this.firePropertyChanged(PERSISTENCE_PROPERTY, old, persistence);
}
protected Persistence buildPersistence(XmlPersistence xmlPersistence) {
return this.getContextNodeFactory().buildPersistence(this, xmlPersistence);
}
// ********** misc **********
protected void checkXmlResource(JpaXmlResource resource) {
if (resource == null) {
throw new NullPointerException();
}
if ( ! resource.getContentType().isKindOf(JptCorePlugin.PERSISTENCE_XML_CONTENT_TYPE)) {
throw new IllegalArgumentException("Content type is not 'persistence': " + resource); //$NON-NLS-1$
}
}
public JpaXmlResource getXmlResource() {
return this.xmlResource;
}
@Override
public IResource getResource() {
return this.xmlResource.getFile();
}
@Override
public JptResourceType getResourceType() {
return this.xmlResource.getResourceType();
}
protected JpaFile getJpaFile() {
return this.getJpaFile(this.xmlResource.getFile());
}
// ********** metamodel **********
public void initializeMetamodel() {
if (this.persistence != null) {
((Persistence2_0) this.persistence).initializeMetamodel();
}
}
public void synchronizeMetamodel() {
if (this.persistence != null) {
((Persistence2_0) this.persistence).synchronizeMetamodel();
}
}
public void disposeMetamodel() {
if (this.persistence != null) {
((Persistence2_0) this.persistence).disposeMetamodel();
}
}
// ********** JpaStructureNode implementation **********
public String getId() {
// isn't actually displayed, so needs no details page
return null;
}
public JpaStructureNode getStructureNode(int textOffset) {
if (this.persistence.containsOffset(textOffset)) {
return this.persistence.getStructureNode(textOffset);
}
return this;
}
// never actually selected
public TextRange getSelectionTextRange() {
return TextRange.Empty.instance();
}
public void dispose() {
if (this.persistence != null) {
JpaFile jpaFile = this.getJpaFile();
if (jpaFile != null) {
this.unregisterRootStructureNode();
}
this.persistence.dispose();
}
}
// TODO hold the JpaFile?
protected void registerRootStructureNode() {
this.getJpaFile().addRootStructureNode(this.xmlResource, this.persistence);
}
protected void unregisterRootStructureNode() {
this.getJpaFile().removeRootStructureNode(this.xmlResource, this.persistence);
}
// ********** validation **********
@Override
public void validate(List<IMessage> messages, IReporter reporter) {
super.validate(messages, reporter);
if (this.persistence == null) {
messages.add(
DefaultJpaValidationMessages.buildMessage(
IMessage.HIGH_SEVERITY,
JpaValidationMessages.PERSISTENCE_XML_INVALID_CONTENT,
this
)
);
return;
}
this.persistence.validate(messages, reporter);
}
// never actually selected
public TextRange getValidationTextRange() {
return TextRange.Empty.instance();
}
}