Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/jdk.dynalink/share/classes/jdk/dynalink/beans/MaximallySpecific.java
41161 views
1
/*
2
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
/*
27
* This file is available under and governed by the GNU General Public
28
* License version 2 only, as published by the Free Software Foundation.
29
* However, the following notice accompanied the original version of this
30
* file, and Oracle licenses the original version of this file under the BSD
31
* license:
32
*/
33
/*
34
Copyright 2009-2013 Attila Szegedi
35
36
Redistribution and use in source and binary forms, with or without
37
modification, are permitted provided that the following conditions are
38
met:
39
* Redistributions of source code must retain the above copyright
40
notice, this list of conditions and the following disclaimer.
41
* Redistributions in binary form must reproduce the above copyright
42
notice, this list of conditions and the following disclaimer in the
43
documentation and/or other materials provided with the distribution.
44
* Neither the name of the copyright holder nor the names of
45
contributors may be used to endorse or promote products derived from
46
this software without specific prior written permission.
47
48
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
49
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
50
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
51
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
52
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
53
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
54
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
55
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
56
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
57
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
58
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
59
*/
60
61
package jdk.dynalink.beans;
62
63
import java.lang.invoke.MethodHandle;
64
import java.lang.invoke.MethodType;
65
import java.util.Iterator;
66
import java.util.LinkedList;
67
import java.util.List;
68
import java.util.function.Function;
69
import jdk.dynalink.linker.ConversionComparator.Comparison;
70
import jdk.dynalink.linker.LinkerServices;
71
import jdk.dynalink.linker.support.TypeUtilities;
72
73
/**
74
* Utility class that encapsulates the algorithm for choosing the maximally specific methods.
75
*/
76
class MaximallySpecific {
77
/**
78
* Given a list of methods, returns a list of maximally specific methods.
79
*
80
* @param methods the list of methods
81
* @param varArgs whether to assume the methods are varargs
82
* @return the list of maximally specific methods.
83
*/
84
static List<SingleDynamicMethod> getMaximallySpecificMethods(final List<SingleDynamicMethod> methods, final boolean varArgs) {
85
return getMaximallySpecificMethods(methods, varArgs, null, null, SingleDynamicMethod::getMethodType);
86
}
87
88
/**
89
* Given a list of methods handles, returns a list of maximally specific methods, applying language-runtime
90
* specific conversion preferences.
91
*
92
* @param methods the list of method handles
93
* @param varArgs whether to assume the method handles are varargs
94
* @param argTypes concrete argument types for the invocation
95
* @return the list of maximally specific method handles.
96
*/
97
static List<MethodHandle> getMaximallySpecificMethodHandles(final List<MethodHandle> methods, final boolean varArgs,
98
final Class<?>[] argTypes, final LinkerServices ls) {
99
return getMaximallySpecificMethods(methods, varArgs, argTypes, ls, MethodHandle::type);
100
}
101
102
/**
103
* Given a list of methods, returns a list of maximally specific methods, applying language-runtime specific
104
* conversion preferences.
105
*
106
* @param methods the list of methods
107
* @param varArgs whether to assume the methods are varargs
108
* @param argTypes concrete argument types for the invocation
109
* @return the list of maximally specific methods.
110
*/
111
private static <T> List<T> getMaximallySpecificMethods(final List<T> methods, final boolean varArgs,
112
final Class<?>[] argTypes, final LinkerServices ls, final Function<T, MethodType> methodTypeGetter) {
113
if(methods.size() < 2) {
114
return methods;
115
}
116
final LinkedList<T> maximals = new LinkedList<>();
117
for(final T m: methods) {
118
final MethodType methodType = methodTypeGetter.apply(m);
119
boolean lessSpecific = false;
120
for(final Iterator<T> maximal = maximals.iterator(); maximal.hasNext();) {
121
final T max = maximal.next();
122
switch(isMoreSpecific(methodType, methodTypeGetter.apply(max), varArgs, argTypes, ls)) {
123
case TYPE_1_BETTER: {
124
maximal.remove();
125
break;
126
}
127
case TYPE_2_BETTER: {
128
lessSpecific = true;
129
break;
130
}
131
case INDETERMINATE: {
132
// do nothing
133
break;
134
}
135
default: {
136
throw new AssertionError();
137
}
138
}
139
}
140
if(!lessSpecific) {
141
maximals.addLast(m);
142
}
143
}
144
return maximals;
145
}
146
147
private static Comparison isMoreSpecific(final MethodType t1, final MethodType t2, final boolean varArgs, final Class<?>[] argTypes,
148
final LinkerServices ls) {
149
final int pc1 = t1.parameterCount();
150
final int pc2 = t2.parameterCount();
151
assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
152
assert (argTypes == null) == (ls == null);
153
final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
154
boolean t1MoreSpecific = false;
155
boolean t2MoreSpecific = false;
156
// NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
157
// 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
158
// a fake 'this' of type StaticClass.
159
for(int i = 1; i < maxPc; ++i) {
160
final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
161
final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
162
if(c1 != c2) {
163
final Comparison cmp = compare(c1, c2, argTypes, i, ls);
164
if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
165
t1MoreSpecific = true;
166
if(t2MoreSpecific) {
167
return Comparison.INDETERMINATE;
168
}
169
}
170
if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
171
t2MoreSpecific = true;
172
if(t1MoreSpecific) {
173
return Comparison.INDETERMINATE;
174
}
175
}
176
}
177
}
178
if(t1MoreSpecific) {
179
return Comparison.TYPE_1_BETTER;
180
} else if(t2MoreSpecific) {
181
return Comparison.TYPE_2_BETTER;
182
}
183
return Comparison.INDETERMINATE;
184
}
185
186
private static Comparison compare(final Class<?> c1, final Class<?> c2, final Class<?>[] argTypes, final int i, final LinkerServices cmp) {
187
if(cmp != null) {
188
final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
189
if(c != Comparison.INDETERMINATE) {
190
return c;
191
}
192
}
193
if(TypeUtilities.isSubtype(c1, c2)) {
194
return Comparison.TYPE_1_BETTER;
195
} if(TypeUtilities.isSubtype(c2, c1)) {
196
return Comparison.TYPE_2_BETTER;
197
}
198
return Comparison.INDETERMINATE;
199
}
200
201
private static Class<?> getParameterClass(final MethodType t, final int l, final int i, final boolean varArgs) {
202
return varArgs && i >= l - 1 ? t.parameterType(l - 1).getComponentType() : t.parameterType(i);
203
}
204
}
205
206