blob: 54dd7fa46f8a7bc3eb7a796bd6d5d0adbe37466e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Shane Clarke.
* 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:
* Shane Clarke - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.internal.jaxws.ui.annotations.initialization;
import static org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils.HEADER;
import static org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils.NAME;
import static org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils.OPERATION_NAME;
import static org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils.PART_NAME;
import static org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils.RESPONSE;
import static org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils.RETURN;
import static org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils.TARGET_NAMESPACE;
import java.lang.annotation.Annotation;
import java.util.ArrayList;
import java.util.List;
import javax.jws.WebMethod;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import org.eclipse.jdt.core.IAnnotatable;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IMethod;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.dom.AST;
import org.eclipse.jdt.core.dom.MemberValuePair;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.jst.ws.annotations.core.AnnotationsCore;
import org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer;
import org.eclipse.jst.ws.annotations.core.utils.AnnotationUtils;
import org.eclipse.jst.ws.internal.jaxws.core.utils.JAXWSUtils;
import org.eclipse.jst.ws.internal.jaxws.ui.JAXWSUIPlugin;
import org.eclipse.jst.ws.jaxws.core.utils.JDTUtils;
public class WebResultAttributeInitializer extends AnnotationAttributeInitializer {
@Override
public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast,
Class<? extends Annotation> annotationClass) {
List<MemberValuePair> memberValuePairs = new ArrayList<MemberValuePair>();
if (javaElement.getElementType() == IJavaElement.METHOD) {
IMethod method = (IMethod) javaElement;
MemberValuePair nameValuePair = AnnotationsCore.createStringMemberValuePair(ast, NAME, getName(method));
memberValuePairs.add(nameValuePair);
}
return memberValuePairs;
}
public List<ICompletionProposal> getCompletionProposalsForMemberValuePair(IJavaElement javaElement,
MemberValuePair memberValuePair) {
List<ICompletionProposal> completionProposals = new ArrayList<ICompletionProposal>();
if (javaElement.getElementType() == IJavaElement.METHOD) {
IMethod method = (IMethod) javaElement;
String memberValuePairName = memberValuePair.getName().getIdentifier();
if (memberValuePairName.equals(NAME)) {
completionProposals.add(createCompletionProposal(getName(method), memberValuePair
.getValue()));
}
if (memberValuePairName.equals(PART_NAME)) {
completionProposals.add(createCompletionProposal(getPartName(method),
memberValuePair.getValue()));
}
if (memberValuePairName.equals(TARGET_NAMESPACE)) {
completionProposals.add(createCompletionProposal(getTargetNamespace(method),
memberValuePair.getValue()));
}
}
return completionProposals;
}
private String getName(IMethod method) {
if (hasDocumentBareSOAPBinding(method)) {
return getOperationName(method) + RESPONSE;
}
return RETURN;
}
private String getOperationName(IMethod method) {
try {
IAnnotation annotation = AnnotationUtils.getAnnotation(method, WebMethod.class);
if (annotation != null) {
String operationName = AnnotationUtils.getStringValue(annotation, OPERATION_NAME);
if (operationName != null) {
return operationName;
}
}
} catch (JavaModelException jme) {
JAXWSUIPlugin.log(jme.getStatus());
}
return method.getElementName();
}
private boolean hasDocumentBareSOAPBinding(IAnnotatable annotatable) {
try {
IAnnotation annotation = AnnotationUtils.getAnnotation(annotatable, SOAPBinding.class);
if (annotation != null) {
return JAXWSUtils.isDocumentBare(annotation);
}
if (annotatable instanceof IMethod) {
IMethod method = (IMethod) annotatable;
return hasDocumentBareSOAPBinding((IType) method.getParent());
}
} catch (JavaModelException jme) {
JAXWSUIPlugin.log(jme.getStatus());
}
return false;
}
private String getPartName(IMethod method) {
try {
IAnnotation annotation = AnnotationUtils.getAnnotation(method, WebResult.class);
if (annotation != null) {
String name = AnnotationUtils.getStringValue(annotation, NAME);
if (name != null) {
return name;
}
}
} catch (JavaModelException jme) {
JAXWSUIPlugin.log(jme.getStatus());
}
return getName(method);
}
private String getTargetNamespace(IMethod method) {
if (hasDocumentWrappedSOAPBinding(method) && !isHeader(method)) {
return ""; //$NON-NLS-1$
}
return getDefaultTargetNamespace(method);
}
private boolean hasDocumentWrappedSOAPBinding(IAnnotatable annotatable) {
try {
IAnnotation annotation = AnnotationUtils.getAnnotation(annotatable, SOAPBinding.class);
if (annotation != null) {
return JAXWSUtils.isDocumentWrapped(annotation);
}
if (annotatable instanceof IMethod) {
IMethod method = (IMethod) annotatable;
return hasDocumentWrappedSOAPBinding((IType) method.getParent());
}
} catch (JavaModelException jme) {
JAXWSUIPlugin.log(jme.getStatus());
}
return true;
}
private boolean isHeader(IMethod method) {
try {
IAnnotation annotation = AnnotationUtils.getAnnotation(method, WebResult.class);
if (annotation != null) {
Boolean header = AnnotationUtils.getBooleanValue(annotation, HEADER);
if (header != null) {
return header.booleanValue();
}
}
} catch (JavaModelException jme) {
JAXWSUIPlugin.log(jme.getStatus());
}
return false;
}
private String getDefaultTargetNamespace(IMethod method) {
IType type = method.getDeclaringType();
try {
IAnnotation annotation = AnnotationUtils.getAnnotation(type, WebService.class);
if (annotation != null) {
String targetNamespace = AnnotationUtils.getStringValue(annotation, TARGET_NAMESPACE);
if (targetNamespace != null) {
return targetNamespace;
}
}
} catch (JavaModelException jme) {
JAXWSUIPlugin.log(jme.getStatus());
}
return JDTUtils.getTargetNamespaceFromPackageName(getPackageName(type));
}
private String getPackageName(IType type) {
IPackageFragment packageFragment = type.getPackageFragment();
return packageFragment.getElementName();
}
}