jdk.internal.dynalink.linker.ConversionComparator.Comparison Java Examples

The following examples show how to use jdk.internal.dynalink.linker.ConversionComparator.Comparison. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TypeConverterFactory.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    for(final ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #2
Source File: TypeConverterFactory.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    for(final ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #3
Source File: TypeConverterFactory.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    for(final ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #4
Source File: TypeConverterFactory.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    for(final ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #5
Source File: TypeConverterFactory.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(Class<?> sourceType, Class<?> targetType1, Class<?> targetType2) {
    for(ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #6
Source File: TypeConverterFactory.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(Class<?> sourceType, Class<?> targetType1, Class<?> targetType2) {
    for(ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #7
Source File: TypeConverterFactory.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    for(final ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #8
Source File: TypeConverterFactory.java    From jdk8u_nashorn with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    for(final ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #9
Source File: TypeConverterFactory.java    From nashorn with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Determines which of the two type conversions from a source type to the two target types is preferred. This is
 * used for dynamic overloaded method resolution. If the source type is convertible to exactly one target type with
 * a method invocation conversion, it is chosen, otherwise available {@link ConversionComparator}s are consulted.
 * @param sourceType the source type.
 * @param targetType1 one potential target type
 * @param targetType2 another potential target type.
 * @return one of Comparison constants that establish which - if any - of the target types is preferable for the
 * conversion.
 */
public Comparison compareConversion(Class<?> sourceType, Class<?> targetType1, Class<?> targetType2) {
    for(ConversionComparator comparator: comparators) {
        final Comparison result = comparator.compareConversion(sourceType, targetType1, targetType2);
        if(result != Comparison.INDETERMINATE) {
            return result;
        }
    }
    if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType1)) {
        if(!TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
            return Comparison.TYPE_1_BETTER;
        }
    } else if(TypeUtilities.isMethodInvocationConvertible(sourceType, targetType2)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #10
Source File: MaximallySpecific.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(final Class<?> c1, final Class<?> c2, final Class<?>[] argTypes, final int i, final LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #11
Source File: MaximallySpecific.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison isMoreSpecific(final MethodType t1, final MethodType t2, final boolean varArgs, final Class<?>[] argTypes,
        final LinkerServices ls) {
    final int pc1 = t1.parameterCount();
    final int pc2 = t2.parameterCount();
    assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
    assert (argTypes == null) == (ls == null);
    final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
    boolean t1MoreSpecific = false;
    boolean t2MoreSpecific = false;
    // NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
    // 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
    // a fake 'this' of type StaticClass.
    for(int i = 1; i < maxPc; ++i) {
        final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
        final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
        if(c1 != c2) {
            final Comparison cmp = compare(c1, c2, argTypes, i, ls);
            if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
                t1MoreSpecific = true;
                if(t2MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
            if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
                t2MoreSpecific = true;
                if(t1MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
        }
    }
    if(t1MoreSpecific) {
        return Comparison.TYPE_1_BETTER;
    } else if(t2MoreSpecific) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #12
Source File: NashornBeansLinker.java    From jdk8u_nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    if (sourceType == ConsString.class) {
        if (String.class == targetType1 || CharSequence.class == targetType1) {
            return Comparison.TYPE_1_BETTER;
        }

        if (String.class == targetType2 || CharSequence.class == targetType2) {
            return Comparison.TYPE_2_BETTER;
        }
    }
    return linkerServices.compareConversion(sourceType, targetType1, targetType2);
}
 
Example #13
Source File: MaximallySpecific.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(Class<?> c1, Class<?> c2, Class<?>[] argTypes, int i, LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #14
Source File: MaximallySpecific.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison isMoreSpecific(final MethodType t1, final MethodType t2, final boolean varArgs, final Class<?>[] argTypes,
        final LinkerServices ls) {
    final int pc1 = t1.parameterCount();
    final int pc2 = t2.parameterCount();
    assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
    assert (argTypes == null) == (ls == null);
    final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
    boolean t1MoreSpecific = false;
    boolean t2MoreSpecific = false;
    // NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
    // 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
    // a fake 'this' of type StaticClass.
    for(int i = 1; i < maxPc; ++i) {
        final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
        final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
        if(c1 != c2) {
            final Comparison cmp = compare(c1, c2, argTypes, i, ls);
            if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
                t1MoreSpecific = true;
                if(t2MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
            if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
                t2MoreSpecific = true;
                if(t1MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
        }
    }
    if(t1MoreSpecific) {
        return Comparison.TYPE_1_BETTER;
    } else if(t2MoreSpecific) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #15
Source File: MaximallySpecific.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison isMoreSpecific(MethodType t1, MethodType t2, boolean varArgs, Class<?>[] argTypes,
        LinkerServices ls) {
    final int pc1 = t1.parameterCount();
    final int pc2 = t2.parameterCount();
    assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
    assert (argTypes == null) == (ls == null);
    final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
    boolean t1MoreSpecific = false;
    boolean t2MoreSpecific = false;
    // NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
    // 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
    // a fake 'this' of type StaticClass.
    for(int i = 1; i < maxPc; ++i) {
        final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
        final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
        if(c1 != c2) {
            final Comparison cmp = compare(c1, c2, argTypes, i, ls);
            if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
                t1MoreSpecific = true;
                if(t2MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
            if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
                t2MoreSpecific = true;
                if(t1MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
        }
    }
    if(t1MoreSpecific) {
        return Comparison.TYPE_1_BETTER;
    } else if(t2MoreSpecific) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #16
Source File: MaximallySpecific.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(Class<?> c1, Class<?> c2, Class<?>[] argTypes, int i, LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #17
Source File: MaximallySpecific.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison isMoreSpecific(MethodType t1, MethodType t2, boolean varArgs, Class<?>[] argTypes,
        LinkerServices ls) {
    final int pc1 = t1.parameterCount();
    final int pc2 = t2.parameterCount();
    assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
    assert (argTypes == null) == (ls == null);
    final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
    boolean t1MoreSpecific = false;
    boolean t2MoreSpecific = false;
    // NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
    // 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
    // a fake 'this' of type StaticClass.
    for(int i = 1; i < maxPc; ++i) {
        final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
        final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
        if(c1 != c2) {
            final Comparison cmp = compare(c1, c2, argTypes, i, ls);
            if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
                t1MoreSpecific = true;
                if(t2MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
            if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
                t2MoreSpecific = true;
                if(t1MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
        }
    }
    if(t1MoreSpecific) {
        return Comparison.TYPE_1_BETTER;
    } else if(t2MoreSpecific) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #18
Source File: MaximallySpecific.java    From nashorn with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison isMoreSpecific(MethodType t1, MethodType t2, boolean varArgs, Class<?>[] argTypes,
        LinkerServices ls) {
    final int pc1 = t1.parameterCount();
    final int pc2 = t2.parameterCount();
    assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
    assert (argTypes == null) == (ls == null);
    final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
    boolean t1MoreSpecific = false;
    boolean t2MoreSpecific = false;
    // NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
    // 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
    // a fake 'this' of type StaticClass.
    for(int i = 1; i < maxPc; ++i) {
        final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
        final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
        if(c1 != c2) {
            final Comparison cmp = compare(c1, c2, argTypes, i, ls);
            if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
                t1MoreSpecific = true;
                if(t2MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
            if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
                t2MoreSpecific = true;
                if(t1MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
        }
    }
    if(t1MoreSpecific) {
        return Comparison.TYPE_1_BETTER;
    } else if(t2MoreSpecific) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #19
Source File: MaximallySpecific.java    From nashorn with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(Class<?> c1, Class<?> c2, Class<?>[] argTypes, int i, LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #20
Source File: MaximallySpecific.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(final Class<?> c1, final Class<?> c2, final Class<?>[] argTypes, final int i, final LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #21
Source File: NashornBeansLinker.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    if (sourceType == ConsString.class) {
        if (String.class == targetType1 || CharSequence.class == targetType1) {
            return Comparison.TYPE_1_BETTER;
        }

        if (String.class == targetType2 || CharSequence.class == targetType2) {
            return Comparison.TYPE_2_BETTER;
        }
    }
    return linkerServices.compareConversion(sourceType, targetType1, targetType2);
}
 
Example #22
Source File: NashornBeansLinker.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    if (sourceType == ConsString.class) {
        if (String.class == targetType1 || CharSequence.class == targetType1) {
            return Comparison.TYPE_1_BETTER;
        }

        if (String.class == targetType2 || CharSequence.class == targetType2) {
            return Comparison.TYPE_2_BETTER;
        }
    }
    return linkerServices.compareConversion(sourceType, targetType1, targetType2);
}
 
Example #23
Source File: MaximallySpecific.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(final Class<?> c1, final Class<?> c2, final Class<?>[] argTypes, final int i, final LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #24
Source File: NashornBeansLinker.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    if (sourceType == ConsString.class) {
        if (String.class == targetType1 || CharSequence.class == targetType1) {
            return Comparison.TYPE_1_BETTER;
        }

        if (String.class == targetType2 || CharSequence.class == targetType2) {
            return Comparison.TYPE_2_BETTER;
        }
    }
    return linkerServices.compareConversion(sourceType, targetType1, targetType2);
}
 
Example #25
Source File: MaximallySpecific.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison isMoreSpecific(final MethodType t1, final MethodType t2, final boolean varArgs, final Class<?>[] argTypes,
        final LinkerServices ls) {
    final int pc1 = t1.parameterCount();
    final int pc2 = t2.parameterCount();
    assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
    assert (argTypes == null) == (ls == null);
    final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
    boolean t1MoreSpecific = false;
    boolean t2MoreSpecific = false;
    // NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
    // 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
    // a fake 'this' of type StaticClass.
    for(int i = 1; i < maxPc; ++i) {
        final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
        final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
        if(c1 != c2) {
            final Comparison cmp = compare(c1, c2, argTypes, i, ls);
            if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
                t1MoreSpecific = true;
                if(t2MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
            if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
                t2MoreSpecific = true;
                if(t1MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
        }
    }
    if(t1MoreSpecific) {
        return Comparison.TYPE_1_BETTER;
    } else if(t2MoreSpecific) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #26
Source File: MaximallySpecific.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(final Class<?> c1, final Class<?> c2, final Class<?>[] argTypes, final int i, final LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #27
Source File: NashornBeansLinker.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
    if (sourceType == ConsString.class) {
        if (String.class == targetType1 || CharSequence.class == targetType1) {
            return Comparison.TYPE_1_BETTER;
        }

        if (String.class == targetType2 || CharSequence.class == targetType2) {
            return Comparison.TYPE_2_BETTER;
        }
    }
    return linkerServices.compareConversion(sourceType, targetType1, targetType2);
}
 
Example #28
Source File: MaximallySpecific.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(final Class<?> c1, final Class<?> c2, final Class<?>[] argTypes, final int i, final LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #29
Source File: MaximallySpecific.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison isMoreSpecific(final MethodType t1, final MethodType t2, final boolean varArgs, final Class<?>[] argTypes,
        final LinkerServices ls) {
    final int pc1 = t1.parameterCount();
    final int pc2 = t2.parameterCount();
    assert varArgs || (pc1 == pc2) && (argTypes == null || argTypes.length == pc1);
    assert (argTypes == null) == (ls == null);
    final int maxPc = Math.max(Math.max(pc1, pc2), argTypes == null ? 0 : argTypes.length);
    boolean t1MoreSpecific = false;
    boolean t2MoreSpecific = false;
    // NOTE: Starting from 1 as overloaded method resolution doesn't depend on 0th element, which is the type of
    // 'this'. We're only dealing with instance methods here, not static methods. Actually, static methods will have
    // a fake 'this' of type StaticClass.
    for(int i = 1; i < maxPc; ++i) {
        final Class<?> c1 = getParameterClass(t1, pc1, i, varArgs);
        final Class<?> c2 = getParameterClass(t2, pc2, i, varArgs);
        if(c1 != c2) {
            final Comparison cmp = compare(c1, c2, argTypes, i, ls);
            if(cmp == Comparison.TYPE_1_BETTER && !t1MoreSpecific) {
                t1MoreSpecific = true;
                if(t2MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
            if(cmp == Comparison.TYPE_2_BETTER && !t2MoreSpecific) {
                t2MoreSpecific = true;
                if(t1MoreSpecific) {
                    return Comparison.INDETERMINATE;
                }
            }
        }
    }
    if(t1MoreSpecific) {
        return Comparison.TYPE_1_BETTER;
    } else if(t2MoreSpecific) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}
 
Example #30
Source File: MaximallySpecific.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private static Comparison compare(final Class<?> c1, final Class<?> c2, final Class<?>[] argTypes, final int i, final LinkerServices cmp) {
    if(cmp != null) {
        final Comparison c = cmp.compareConversion(argTypes[i], c1, c2);
        if(c != Comparison.INDETERMINATE) {
            return c;
        }
    }
    if(TypeUtilities.isSubtype(c1, c2)) {
        return Comparison.TYPE_1_BETTER;
    } if(TypeUtilities.isSubtype(c2, c1)) {
        return Comparison.TYPE_2_BETTER;
    }
    return Comparison.INDETERMINATE;
}