/* * Copyright 2014 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.springframework.data.repository.query.spi; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.util.List; import org.springframework.core.convert.TypeDescriptor; import org.springframework.util.Assert; import org.springframework.util.TypeUtils; /** * Value object to represent a function. Can either be backed by a static {@link Method} invocation (see * {@link #Function(Method)}) or a method invocation on an instance (see {@link #Function(Method, Object)}. * * @author Thomas Darimont * @author Oliver Gierke * @since 1.9 */ public class Function { private final Method method; private final Object target; /** * Creates a new {@link Function} to statically invoke the given {@link Method}. * * @param method */ public Function(Method method) { this(method, null); Assert.isTrue(Modifier.isStatic(method.getModifiers()), "Method must be static!"); } /** * Creates a new {@link Function} for the given method on the given target instance. * * @param method must not be {@literal null}. * @param target can be {@literal null}, if so, the method */ public Function(Method method, Object target) { Assert.notNull(method, "Method must not be null!"); Assert.isTrue(target != null || Modifier.isStatic(method.getModifiers()), "Method must either be static or a non-static one with a target object!"); this.method = method; this.target = target; } /** * Invokes the function with the given arguments. * * @param arguments must not be {@literal null}. * @return * @throws Exception */ public Object invoke(Object[] arguments) throws Exception { return method.invoke(target, arguments); } /** * Returns the name of the function. * * @return */ public String getName() { return method.getName(); } /** * Returns the type declaring the {@link Function}. * * @return */ public Class<?> getDeclaringClass() { return method.getDeclaringClass(); } /** * Returns {@literal true} if the function can be called with the given {@code argumentTypes}. * * @param argumentTypes * @return */ public boolean supports(List<TypeDescriptor> argumentTypes) { if (method.getParameterCount() != argumentTypes.size()) { return false; } Class<?>[] parameterTypes = method.getParameterTypes(); for (int i = 0; i < parameterTypes.length; i++) { if (!TypeUtils.isAssignable(parameterTypes[i], argumentTypes.get(i).getType())) { return false; } } return true; } }