blob: ef31971e16aa77ccac9fb5d3a83619b1cef39b61 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.resource.java.source;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.common.core.internal.resource.java.source.SourceAnnotation;
import org.eclipse.jpt.common.core.internal.utility.jdt.ConversionDeclarationAnnotationElementAdapter;
import org.eclipse.jpt.common.core.resource.java.JavaResourceNode;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.core.utility.jdt.AnnotatedElement;
import org.eclipse.jpt.common.core.utility.jdt.AnnotationAdapter;
import org.eclipse.jpt.common.core.utility.jdt.AnnotationElementAdapter;
import org.eclipse.jpt.common.core.utility.jdt.DeclarationAnnotationAdapter;
import org.eclipse.jpt.common.core.utility.jdt.DeclarationAnnotationElementAdapter;
import org.eclipse.jpt.common.utility.internal.iterables.ListIterable;
import org.eclipse.jpt.jpa.core.resource.java.QueryAnnotation;
import org.eclipse.jpt.jpa.core.resource.java.QueryHintAnnotation;
/**
* <ul>
* <li><code>javax.persistence.NamedQuery</code>
* <li><code>javax.persistence.NamedNativeQuery</code>
* </ul>
*/
abstract class SourceQueryAnnotation
extends SourceAnnotation
implements QueryAnnotation
{
DeclarationAnnotationElementAdapter<String> nameDeclarationAdapter;
AnnotationElementAdapter<String> nameAdapter;
String name;
TextRange nameTextRange;
DeclarationAnnotationElementAdapter<String> queryDeclarationAdapter;
AnnotationElementAdapter<String> queryAdapter;
String query;
TextRange queryTextRange;
final QueryHintsAnnotationContainer hintsContainer = new QueryHintsAnnotationContainer();
SourceQueryAnnotation(JavaResourceNode parent, AnnotatedElement element, DeclarationAnnotationAdapter daa, AnnotationAdapter annotationAdapter) {
super(parent, element, daa, annotationAdapter);
this.nameDeclarationAdapter = this.buildNameDeclarationAdapter();
this.nameAdapter = this.buildNameAdapter();
this.queryDeclarationAdapter = this.buildQueryDeclarationAdapter();
this.queryAdapter = this.buildQueryAdapter();
}
public void initialize(CompilationUnit astRoot) {
this.name = this.buildName(astRoot);
this.nameTextRange = this.buildNameTextRange(astRoot);
this.query = this.buildQuery(astRoot);
this.queryTextRange = this.buildQueryTextRange(astRoot);
this.hintsContainer.initialize(this.getAstAnnotation(astRoot));
}
public void synchronizeWith(CompilationUnit astRoot) {
this.syncName(this.buildName(astRoot));
this.nameTextRange = this.buildNameTextRange(astRoot);
this.syncQuery(this.buildQuery(astRoot));
this.queryTextRange = this.buildQueryTextRange(astRoot);
this.hintsContainer.synchronize(this.getAstAnnotation(astRoot));
}
// ********** BaseNamedQueryAnnotation implementation **********
// ***** name
public String getName() {
return this.name;
}
public void setName(String name) {
if (this.attributeValueHasChanged(this.name, name)) {
this.name = name;
this.nameAdapter.setValue(name);
}
}
private void syncName(String astName) {
String old = this.name;
this.name = astName;
this.firePropertyChanged(NAME_PROPERTY, old, astName);
}
private String buildName(CompilationUnit astRoot) {
return this.nameAdapter.getValue(astRoot);
}
public TextRange getNameTextRange(CompilationUnit astRoot) {
return this.nameTextRange;
}
private TextRange buildNameTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(this.nameDeclarationAdapter, astRoot);
}
private DeclarationAnnotationElementAdapter<String> buildNameDeclarationAdapter() {
return ConversionDeclarationAnnotationElementAdapter.forStrings(this.daa, this.getNameElementName());
}
private AnnotationElementAdapter<String> buildNameAdapter() {
return this.buildStringElementAdapter(this.nameDeclarationAdapter);
}
abstract String getNameElementName();
// ***** query
public String getQuery() {
return this.query;
}
public void setQuery(String query) {
if (this.attributeValueHasChanged(this.query, query)) {
this.query = query;
this.queryAdapter.setValue(query);
}
}
private void syncQuery(String annotationQuery) {
String old = this.query;
this.query = annotationQuery;
this.firePropertyChanged(QUERY_PROPERTY, old, annotationQuery);
}
private String buildQuery(CompilationUnit astRoot) {
return this.queryAdapter.getValue(astRoot);
}
public TextRange getQueryTextRange(CompilationUnit astRoot) {
return this.queryTextRange;
}
private TextRange buildQueryTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(this.queryDeclarationAdapter, astRoot);
}
private DeclarationAnnotationElementAdapter<String> buildQueryDeclarationAdapter() {
return ConversionDeclarationAnnotationElementAdapter.forStrings(this.daa, this.getQueryElementName());
}
private AnnotationElementAdapter<String> buildQueryAdapter() {
return this.buildStringElementAdapter(this.queryDeclarationAdapter);
}
abstract String getQueryElementName();
// ***** hints
public ListIterable<QueryHintAnnotation> getHints() {
return this.hintsContainer.getNestedAnnotations();
}
public int getHintsSize() {
return this.hintsContainer.getNestedAnnotationsSize();
}
public QueryHintAnnotation hintAt(int index) {
return this.hintsContainer.nestedAnnotationAt(index);
}
public QueryHintAnnotation addHint(int index) {
return this.hintsContainer.addNestedAnnotation(index);
}
public void moveHint(int targetIndex, int sourceIndex) {
this.hintsContainer.moveNestedAnnotation(targetIndex, sourceIndex);
}
public void removeHint(int index) {
this.hintsContainer.removeNestedAnnotation(index);
}
abstract QueryHintAnnotation buildHint(int index);
abstract String getHintsElementName();
// ********** misc **********
@Override
public boolean isUnset() {
return super.isUnset() &&
(this.name == null) &&
(this.query == null) &&
this.hintsContainer.isEmpty();
}
@Override
public void toString(StringBuilder sb) {
sb.append(this.name);
}
// ********** hint container **********
/**
* adapt the AnnotationContainer interface to the xml schema's xmlns
*/
class QueryHintsAnnotationContainer
extends AnnotationContainer<QueryHintAnnotation>
{
@Override
protected String getAnnotationsPropertyName() {
return HINTS_LIST;
}
@Override
protected String getElementName() {
return SourceQueryAnnotation.this.getHintsElementName();
}
@Override
protected String getNestedAnnotationName() {
return QueryHintAnnotation.ANNOTATION_NAME;
}
@Override
protected QueryHintAnnotation buildNestedAnnotation(int index) {
return SourceQueryAnnotation.this.buildHint(index);
}
}
}