org.gradle.internal.classpath.intercept.Invocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-test-kit Show documentation
Show all versions of gradle-test-kit Show documentation
Gradle 6.2.1 API redistribution.
/*
* Copyright 2022 the original author or authors.
*
* 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.gradle.internal.classpath.intercept;
import org.codehaus.groovy.runtime.callsite.CallSite;
/**
* Represents a single invocation of the intercepted method/constructor/property.
*/
public interface Invocation {
/**
* Returns the receiver of the invocation.
* It can be a {@link Class} if the invocation targets constructor, static method, or static property.
* It can be the instance if the invocation targets the instance method or property.
*
* @return the receiver of the method
* @see CallSite
*/
Object getReceiver();
/**
* Returns a number of arguments supplied for this invocation.
*/
int getArgsCount();
/**
* Returns an unwrapped argument at the position {@code pos}.
* Arguments are numbered left-to-right, from 0 to {@code getArgsCount() - 1} inclusive.
* Throws {@link ArrayIndexOutOfBoundsException} if {@code pos} is outside the bounds.
*
* @param pos the position of the argument
* @return the unwrapped value of the argument
*/
Object getArgument(int pos);
/**
* Returns an unwrapped argument at the position {@code pos} or {@code null} if the {@code pos} is greater or equal than {@link #getArgsCount()}.
* This method is useful for handling optional arguments represented as "telescopic" overloads, like the one of the {@code Runtime.exec}:
*
* Runtime.exec("/usr/bin/echo")
* Runtime.exec("/usr/bin/echo", new String[] {"FOO=BAR"})
*
*
* @param pos the position of the argument
* @return the unwrapped value of the argument or {@code null} if {@code pos >= getArgsCount()}
*/
default Object getOptionalArgument(int pos) {
return pos < getArgsCount() ? getArgument(pos) : null;
}
/**
* Forwards the call to the original Groovy implementation and returns the result.
*
* @return the value produced by the original Groovy implementation
* @throws Throwable if the original Groovy implementation throws
*/
Object callOriginal() throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy