Path: blob/master/src/jdk.dynalink/share/classes/jdk/dynalink/beans/DynamicMethod.java
41161 views
/*1* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/*26* This file is available under and governed by the GNU General Public27* License version 2 only, as published by the Free Software Foundation.28* However, the following notice accompanied the original version of this29* file, and Oracle licenses the original version of this file under the BSD30* license:31*/32/*33Copyright 2009-2013 Attila Szegedi3435Redistribution and use in source and binary forms, with or without36modification, are permitted provided that the following conditions are37met:38* Redistributions of source code must retain the above copyright39notice, this list of conditions and the following disclaimer.40* Redistributions in binary form must reproduce the above copyright41notice, this list of conditions and the following disclaimer in the42documentation and/or other materials provided with the distribution.43* Neither the name of the copyright holder nor the names of44contributors may be used to endorse or promote products derived from45this software without specific prior written permission.4647THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS48IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED49TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A50PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER51BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR52CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF53SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR54BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,55WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR56OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF57ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.58*/5960package jdk.dynalink.beans;6162import java.lang.invoke.MethodHandle;63import jdk.dynalink.CallSiteDescriptor;64import jdk.dynalink.linker.LinkerServices;6566/**67* Represents a single dynamic method. A "dynamic" method can be bound to a single Java method, or can be bound to all68* overloaded methods of the same name on a class. Getting an invocation of a dynamic method bound to multiple69* overloaded methods will perform overload resolution (actually, it will perform partial overloaded resolution at link70* time, but if that fails to identify exactly one target method, it will generate a method handle that will perform the71* rest of the overload resolution at invocation time for actual argument types).72*/73abstract class DynamicMethod {74private final String name;7576DynamicMethod(final String name) {77this.name = name;78}7980String getName() {81return name;82}8384/**85* Creates an invocation for the dynamic method. If the method is overloaded, it will perform overloaded method86* resolution based on the specified method type. The resulting resolution can either identify a single method to be87* invoked among the overloads, or it can identify multiple ones. In the latter case, the returned method handle88* will perform further overload resolution among these candidates at every invocation. If the method to be invoked89* is a variable arguments (vararg) method, it will pack the extra arguments in an array before the invocation of90* the underlying method if it is not already done.91*92* @param callSiteDescriptor the descriptor of the call site93* @param linkerServices linker services. Used for language-specific type conversions.94* @return an invocation suitable for calling the method from the specified call site.95*/96abstract MethodHandle getInvocation(CallSiteDescriptor callSiteDescriptor, LinkerServices linkerServices);9798/**99* Returns a single dynamic method representing a single underlying Java method (possibly selected among several100* overloads) with formal parameter types exactly matching the passed signature.101* @param paramTypes the comma-separated list of requested parameter type names. The names will match both102* qualified and unqualified type names.103* @return a single dynamic method representing a single underlying Java method, or null if none of the Java methods104* behind this dynamic method exactly match the requested parameter types.105*/106abstract SingleDynamicMethod getMethodForExactParamTypes(String paramTypes);107108/**109* True if this dynamic method already contains a method with an identical signature as the passed in method.110* @param method the method to check111* @return true if it already contains an equivalent method.112*/113abstract boolean contains(SingleDynamicMethod method);114115static String getClassAndMethodName(final Class<?> clazz, final String name) {116final String clazzName = clazz.getCanonicalName();117return (clazzName == null ? clazz.getName() : clazzName) + "." + name;118}119120@Override121public String toString() {122return "[" + getClass().getName() + " " + getName() + "]";123}124125/**126* True if this method happens to be a constructor method.127*128* @return true if this represents a constructor.129*/130boolean isConstructor() {131return false;132}133}134135136