blob: a71d8af007bdf5fa28755c8651943a069c0b00db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jdt.core.ILocalVariable;
import org.eclipse.jdt.core.IMethod;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.Signature;
import org.eclipse.jdt.internal.compiler.lookup.Binding;
import org.eclipse.jdt.internal.core.util.Util;
public class LambdaMethod extends SourceMethod {
private int sourceStart; // cached for ease of use in hashcode/equals.
private String [] parameterNameStrings;
private String returnTypeString;
SourceMethodElementInfo elementInfo;
private String key;
LambdaMethod(JavaElement parent, String name, String key, int sourceStart, String [] parameterTypes, String [] parameterNames, String returnType, SourceMethodElementInfo elementInfo) {
super(parent, name, parameterTypes);
this.sourceStart = sourceStart;
this.parameterNameStrings = parameterNames;
this.returnTypeString = returnType;
this.elementInfo = elementInfo;
this.key = key;
}
/**
* @see IMethod
*/
@Override
public String getReturnType() throws JavaModelException {
return this.returnTypeString;
}
/**
* @see IMethod
*/
@Override
public String getSignature() throws JavaModelException {
return Signature.createMethodSignature(this.parameterTypes, this.returnTypeString);
}
/**
* @see IMethod#isLambdaMethod()
*/
@Override
public boolean isLambdaMethod() {
return true;
}
@Override
protected void closing(Object info) {
// nothing to do.
}
@Override
public boolean equals(Object o) {
if (!(o instanceof LambdaMethod)) return false;
LambdaMethod that = (LambdaMethod) o;
return super.equals(o) && this.sourceStart == that.sourceStart;
}
@Override
public Object getElementInfo(IProgressMonitor monitor) throws JavaModelException {
return this.elementInfo;
}
public void getHandleMemento(StringBuffer buff, boolean serializeParent) {
if (serializeParent) {
((LambdaExpression) getParent()).getHandleMemento(buff, true, false);
}
appendEscapedDelimiter(buff, getHandleMementoDelimiter());
escapeMementoName(buff, getElementName());
buff.append(JEM_COUNT);
buff.append(this.parameterTypes.length);
for (int i = 0, length = this.parameterTypes.length; i < length; i++) {
appendEscapedDelimiter(buff, JEM_STRING);
escapeMementoName(buff, this.parameterTypes[i]);
appendEscapedDelimiter(buff, JEM_STRING);
escapeMementoName(buff, this.parameterNameStrings[i]);
}
appendEscapedDelimiter(buff, JEM_STRING);
escapeMementoName(buff, this.returnTypeString);
appendEscapedDelimiter(buff, JEM_STRING);
escapeMementoName(buff, this.key);
ILocalVariable[] arguments = this.elementInfo.arguments;
for (int i = 0, length = arguments.length; i < length; i++) {
LocalVariable local = (LocalVariable) arguments[i];
local.getHandleMemento(buff, false);
}
}
@Override
public void getHandleMemento(StringBuffer buff) {
getHandleMemento(buff, true);
// lambda method and lambda expression cannot share the same memento - add a trailing discriminator.
appendEscapedDelimiter(buff, getHandleMementoDelimiter());
}
@Override
protected char getHandleMementoDelimiter() {
return JavaElement.JEM_LAMBDA_METHOD;
}
@Override
public String getKey() {
return this.key;
}
@Override
public int hashCode() {
return Util.combineHashCodes(super.hashCode(), this.sourceStart);
}
@Override
public boolean isResolved() {
return true; // we maintain enough information so as not to need another layer of abstraction.
}
@Override
public JavaElement resolved(Binding binding) {
return this;
}
}