org.teavm.metaprogramming.impl.reflect.ReflectMethodImpl Maven / Gradle / Ivy
/*
* Copyright 2016 Alexey Andreev.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.metaprogramming.impl.reflect;
import java.lang.annotation.Annotation;
import java.util.Arrays;
import java.util.Objects;
import java.util.stream.Collectors;
import org.teavm.metaprogramming.ReflectClass;
import org.teavm.metaprogramming.reflect.ReflectAnnotatedElement;
import org.teavm.metaprogramming.reflect.ReflectMethod;
import org.teavm.model.MethodReader;
public class ReflectMethodImpl implements ReflectMethod {
private ReflectContext context;
private ReflectClassImpl> declaringClass;
public final MethodReader method;
private ReflectClassImpl> returnType;
private ReflectClass>[] parameterTypes;
private ReflectAnnotatedElementImpl annotations;
private ReflectAnnotatedElementImpl[] parameterAnnotations;
public ReflectMethodImpl(ReflectClassImpl> declaringClass, MethodReader method) {
this.declaringClass = declaringClass;
this.method = method;
context = declaringClass.getReflectContext();
}
@Override
public ReflectClass> getDeclaringClass() {
return declaringClass;
}
@Override
public String getName() {
return method.getName();
}
@Override
public int getModifiers() {
return ReflectContext.getModifiers(method);
}
@Override
public boolean isConstructor() {
return method.getName().equals("");
}
@Override
public ReflectClass> getReturnType() {
if (returnType == null) {
returnType = context.getClass(method.getResultType());
}
return returnType;
}
@Override
public ReflectClass>[] getParameterTypes() {
ensureParameterTypes();
return parameterTypes.clone();
}
@Override
public ReflectClass> getParameterType(int index) {
ensureParameterTypes();
return parameterTypes[index];
}
@Override
public int getParameterCount() {
ensureParameterTypes();
return parameterTypes.length;
}
private void ensureParameterTypes() {
if (parameterTypes == null) {
parameterTypes = Arrays.stream(method.getParameterTypes())
.map(type -> context.getClass(type))
.toArray(sz -> new ReflectClass>[sz]);
}
}
@Override
public S getAnnotation(Class type) {
if (annotations == null) {
annotations = new ReflectAnnotatedElementImpl(context, method.getAnnotations());
}
return annotations.getAnnotation(type);
}
@Override
public Object invoke(Object obj, Object... args) {
throw new IllegalStateException("Don't call this method from compile domain");
}
@Override
public Object construct(Object... args) {
throw new IllegalStateException("Don't call this method from compile domain");
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getReturnType()).append(' ').append(getName()).append('(');
ReflectClass>[] parameterTypes = getParameterTypes();
sb.append(Arrays.stream(parameterTypes).map(Objects::toString).collect(Collectors.joining(", ")));
sb.append(')');
return sb.toString();
}
@Override
public ReflectAnnotatedElement getParameterAnnotations(int index) {
if (parameterAnnotations == null) {
parameterAnnotations = Arrays.stream(method.getParameterAnnotations())
.map(annot -> new ReflectAnnotatedElementImpl(context, annot))
.toArray(sz -> new ReflectAnnotatedElementImpl[sz]);
}
return parameterAnnotations[index];
}
}