// Copyright 2018 The Bazel Authors. All rights reserved. // // 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 com.google.devtools.build.lib.syntax; import com.google.common.base.Throwables; import com.google.common.collect.ImmutableList; import com.google.devtools.build.lib.events.Location; import com.google.devtools.build.lib.skylarkinterface.SkylarkCallable; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.util.Arrays; /** * A value class to store Methods with their corresponding {@link SkylarkCallable} annotation * metadata. This is needed because the annotation is sometimes in a superclass. * *

The annotation metadata is duplicated in this class to avoid usage of Java dynamic proxies * which are ~7X slower. */ public final class MethodDescriptor { private final Method method; private final SkylarkCallable annotation; private final String name; private final String doc; private final boolean documented; private final boolean structField; private final ImmutableList parameters; private final ParamDescriptor extraPositionals; private final ParamDescriptor extraKeywords; private final boolean selfCall; private final boolean allowReturnNones; private final boolean useLocation; private final boolean useAst; private final boolean useEnvironment; private final boolean useSkylarkSemantics; private MethodDescriptor( Method method, SkylarkCallable annotation, String name, String doc, boolean documented, boolean structField, ImmutableList parameters, ParamDescriptor extraPositionals, ParamDescriptor extraKeywords, boolean selfCall, boolean allowReturnNones, boolean useLocation, boolean useAst, boolean useEnvironment, boolean useSkylarkSemantics) { this.method = method; this.annotation = annotation; this.name = name; this.doc = doc; this.documented = documented; this.structField = structField; this.parameters = parameters; this.extraPositionals = extraPositionals; this.extraKeywords = extraKeywords; this.selfCall = selfCall; this.allowReturnNones = allowReturnNones; this.useLocation = useLocation; this.useAst = useAst; this.useEnvironment = useEnvironment; this.useSkylarkSemantics = useSkylarkSemantics; } /** Returns the SkylarkCallable annotation corresponding to this method. */ public SkylarkCallable getAnnotation() { return annotation; } /** @return Skylark method descriptor for provided Java method and signature annotation. */ public static MethodDescriptor of(Method method, SkylarkCallable annotation) { // This happens when the interface is public but the implementation classes // have reduced visibility. method.setAccessible(true); return new MethodDescriptor( method, annotation, annotation.name(), annotation.doc(), annotation.documented(), annotation.structField(), Arrays.stream(annotation.parameters()) .map(ParamDescriptor::of) .collect(ImmutableList.toImmutableList()), ParamDescriptor.of(annotation.extraPositionals()), ParamDescriptor.of(annotation.extraKeywords()), annotation.selfCall(), annotation.allowReturnNones(), annotation.useLocation(), annotation.useAst(), annotation.useEnvironment(), annotation.useSkylarkSemantics()); } /** @return The result of this method invocation on the {@code obj} as a target. */ public Object invoke(Object obj) throws InvocationTargetException, IllegalAccessException { return method.invoke(obj); } /** * Invokes this method using {@code obj} as a target and {@code args} as arguments. * *

{@code obj} may be {@code null} in case this method is static. Methods with {@code void} * return type return {@code None} following Python convention. */ public Object call(Object obj, Object[] args, Location loc, Environment env) throws EvalException, InterruptedException { try { if (obj == null && !Modifier.isStatic(method.getModifiers())) { throw new EvalException(loc, "method '" + getName() + "' is not static"); } Object result = method.invoke(obj, args); if (method.getReturnType().equals(Void.TYPE)) { return Runtime.NONE; } if (result == null) { if (isAllowReturnNones()) { return Runtime.NONE; } else { throw new EvalException( loc, "method invocation returned None, please file a bug report: " + getName() + Printer.printAbbreviatedList(ImmutableList.copyOf(args), "(", ", ", ")", null)); } } // TODO(bazel-team): get rid of this, by having everyone use the Skylark data structures result = SkylarkType.convertToSkylark(result, method, env); if (result != null && !EvalUtils.isSkylarkAcceptable(result.getClass())) { throw new EvalException( loc, Printer.format( "method '%s' returns an object of invalid type %r", getName(), result.getClass())); } return result; } catch (IllegalAccessException e) { // TODO(bazel-team): Print a nice error message. Maybe the method exists // and an argument is missing or has the wrong type. throw new EvalException(loc, "Method invocation failed: " + e); } catch (InvocationTargetException e) { if (e.getCause() instanceof FuncallExpression.FuncallException) { throw new EvalException(loc, e.getCause().getMessage()); } else if (e.getCause() != null) { Throwables.throwIfInstanceOf(e.getCause(), InterruptedException.class); throw new EvalException.EvalExceptionWithJavaCause(loc, e.getCause()); } else { // This is unlikely to happen throw new EvalException(loc, "method invocation failed: " + e); } } } /** @see SkylarkCallable#name() */ public String getName() { return name; } /** @see SkylarkCallable#structField() */ public boolean isStructField() { return structField; } /** @see SkylarkCallable#useEnvironment() */ public boolean isUseEnvironment() { return useEnvironment; } /** @see SkylarkCallable#useSkylarkSemantics() */ boolean isUseSkylarkSemantics() { return useSkylarkSemantics; } /** @see SkylarkCallable#useLocation() */ public boolean isUseLocation() { return useLocation; } /** @see SkylarkCallable#allowReturnNones() */ public boolean isAllowReturnNones() { return allowReturnNones; } /** @see SkylarkCallable#useAst() */ public boolean isUseAst() { return useAst; } /** @see SkylarkCallable#extraPositionals() */ public ParamDescriptor getExtraPositionals() { return extraPositionals; } public ParamDescriptor getExtraKeywords() { return extraKeywords; } /** @return {@code true} if this method accepts extra arguments ({@code *args}) */ boolean isAcceptsExtraArgs() { return !getExtraPositionals().getName().isEmpty(); } /** @see SkylarkCallable#extraKeywords() */ boolean isAcceptsExtraKwargs() { return !getExtraKeywords().getName().isEmpty(); } /** @see SkylarkCallable#parameters() */ public ImmutableList getParameters() { return parameters; } /** @see SkylarkCallable#documented() */ public boolean isDocumented() { return documented; } /** @see SkylarkCallable#doc() */ public String getDoc() { return doc; } /** @see SkylarkCallable#selfCall() */ public boolean isSelfCall() { return selfCall; } }