Path: blob/master/src/jdk.dynalink/share/classes/jdk/dynalink/beans/ApplicableOverloadedMethods.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.MethodType;63import java.util.LinkedList;64import java.util.List;65import jdk.dynalink.linker.support.TypeUtilities;6667/**68* Represents overloaded methods applicable to a specific call site signature.69*/70class ApplicableOverloadedMethods {71private final List<SingleDynamicMethod> methods;72private final boolean varArgs;7374/**75* Creates a new ApplicableOverloadedMethods instance76*77* @param methods a list of all overloaded methods with the same name for a class.78* @param callSiteType the type of the call site79* @param test applicability test. One of {@link #APPLICABLE_BY_SUBTYPING},80* {@link #APPLICABLE_BY_METHOD_INVOCATION_CONVERSION}, or {@link #APPLICABLE_BY_VARIABLE_ARITY}.81*/82ApplicableOverloadedMethods(final List<SingleDynamicMethod> methods, final MethodType callSiteType,83final ApplicabilityTest test) {84this.methods = new LinkedList<>();85for(final SingleDynamicMethod m: methods) {86if(test.isApplicable(callSiteType, m)) {87this.methods.add(m);88}89}90varArgs = test == APPLICABLE_BY_VARIABLE_ARITY;91}9293/**94* Retrieves all the methods this object holds.95*96* @return list of all methods.97*/98List<SingleDynamicMethod> getMethods() {99return methods;100}101102/**103* Returns a list of all methods in this objects that are maximally specific.104*105* @return a list of maximally specific methods.106*/107List<SingleDynamicMethod> findMaximallySpecificMethods() {108return MaximallySpecific.getMaximallySpecificMethods(methods, varArgs);109}110111abstract static class ApplicabilityTest {112abstract boolean isApplicable(MethodType callSiteType, SingleDynamicMethod method);113}114115/**116* Implements the applicability-by-subtyping test from JLS 15.12.2.2.117*/118static final ApplicabilityTest APPLICABLE_BY_SUBTYPING = new ApplicabilityTest() {119@Override120boolean isApplicable(final MethodType callSiteType, final SingleDynamicMethod method) {121final MethodType methodType = method.getMethodType();122final int methodArity = methodType.parameterCount();123if(methodArity != callSiteType.parameterCount()) {124return false;125}126// 0th arg is receiver; it doesn't matter for overload127// resolution.128for(int i = 1; i < methodArity; ++i) {129if(!TypeUtilities.isSubtype(callSiteType.parameterType(i), methodType.parameterType(i))) {130return false;131}132}133return true;134}135};136137/**138* Implements the applicability-by-method-invocation-conversion test from JLS 15.12.2.3.139*/140static final ApplicabilityTest APPLICABLE_BY_METHOD_INVOCATION_CONVERSION = new ApplicabilityTest() {141@Override142boolean isApplicable(final MethodType callSiteType, final SingleDynamicMethod method) {143final MethodType methodType = method.getMethodType();144final int methodArity = methodType.parameterCount();145if(methodArity != callSiteType.parameterCount()) {146return false;147}148// 0th arg is receiver; it doesn't matter for overload149// resolution.150for(int i = 1; i < methodArity; ++i) {151if(!TypeUtilities.isMethodInvocationConvertible(callSiteType.parameterType(i),152methodType.parameterType(i))) {153return false;154}155}156return true;157}158};159160/**161* Implements the applicability-by-variable-arity test from JLS 15.12.2.4.162*/163static final ApplicabilityTest APPLICABLE_BY_VARIABLE_ARITY = new ApplicabilityTest() {164@Override165boolean isApplicable(final MethodType callSiteType, final SingleDynamicMethod method) {166if(!method.isVarArgs()) {167return false;168}169final MethodType methodType = method.getMethodType();170final int methodArity = methodType.parameterCount();171final int fixArity = methodArity - 1;172final int callSiteArity = callSiteType.parameterCount();173if(fixArity > callSiteArity) {174return false;175}176// 0th arg is receiver; it doesn't matter for overload177// resolution.178for(int i = 1; i < fixArity; ++i) {179if(!TypeUtilities.isMethodInvocationConvertible(callSiteType.parameterType(i),180methodType.parameterType(i))) {181return false;182}183}184final Class<?> varArgType = methodType.parameterType(fixArity).getComponentType();185for(int i = fixArity; i < callSiteArity; ++i) {186if(!TypeUtilities.isMethodInvocationConvertible(callSiteType.parameterType(i), varArgType)) {187return false;188}189}190return true;191}192};193}194195196