NashornPrimitiveLinker.java revision 1559:a1ef259a183f
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
26package jdk.nashorn.internal.runtime.linker;
27
28import static jdk.nashorn.internal.lookup.Lookup.MH;
29
30import java.lang.invoke.MethodHandle;
31import java.lang.invoke.MethodHandles;
32import java.util.function.Supplier;
33import jdk.dynalink.linker.ConversionComparator;
34import jdk.dynalink.linker.GuardedInvocation;
35import jdk.dynalink.linker.GuardingTypeConverterFactory;
36import jdk.dynalink.linker.LinkRequest;
37import jdk.dynalink.linker.LinkerServices;
38import jdk.dynalink.linker.TypeBasedGuardingDynamicLinker;
39import jdk.dynalink.linker.support.TypeUtilities;
40import jdk.nashorn.internal.objects.Global;
41import jdk.nashorn.internal.runtime.ConsString;
42import jdk.nashorn.internal.runtime.JSType;
43import jdk.nashorn.internal.runtime.ScriptRuntime;
44
45/**
46 * Internal linker for String, Boolean, and Number objects, only ever used by Nashorn engine and not exposed to other
47 * engines. It is used for treatment of strings, boolean, and numbers as JavaScript primitives. Also provides ECMAScript
48 * primitive type conversions for these types when linking to Java methods.
49 */
50final class NashornPrimitiveLinker implements TypeBasedGuardingDynamicLinker, GuardingTypeConverterFactory, ConversionComparator {
51    private static final GuardedInvocation VOID_TO_OBJECT =
52            new GuardedInvocation(MethodHandles.constant(Object.class, ScriptRuntime.UNDEFINED));
53
54    @Override
55    public boolean canLinkType(final Class<?> type) {
56        return canLinkTypeStatic(type);
57    }
58
59    private static boolean canLinkTypeStatic(final Class<?> type) {
60        return type == String.class || type == Boolean.class || type == ConsString.class || Number.class.isAssignableFrom(type);
61    }
62
63    @Override
64    public GuardedInvocation getGuardedInvocation(final LinkRequest request, final LinkerServices linkerServices)
65            throws Exception {
66        final Object self = request.getReceiver();
67        return Bootstrap.asTypeSafeReturn(Global.primitiveLookup(request, self), linkerServices, request.getCallSiteDescriptor());
68    }
69
70    /**
71     * This implementation of type converter factory will pretty much allow implicit conversions of anything to anything
72     * else that's allowed among JavaScript primitive types (string to number, boolean to string, etc.)
73     * @param sourceType the type to convert from
74     * @param targetType the type to convert to
75     * @return a conditional converter from source to target type
76     */
77    @Override
78    public GuardedInvocation convertToType(final Class<?> sourceType, final Class<?> targetType, final Supplier<MethodHandles.Lookup> lookupSupplier) {
79        final MethodHandle mh = JavaArgumentConverters.getConverter(targetType);
80        if (mh == null) {
81            if(targetType == Object.class && sourceType == void.class) {
82                return VOID_TO_OBJECT;
83            }
84            return null;
85        }
86
87        return new GuardedInvocation(mh, canLinkTypeStatic(sourceType) ? null : GUARD_PRIMITIVE).asType(mh.type().changeParameterType(0, sourceType));
88    }
89
90    /**
91     * Implements the somewhat involved prioritization of JavaScript primitive types conversions. Instead of explaining
92     * it here in prose, just follow the source code comments.
93     * @param sourceType the source type to convert from
94     * @param targetType1 one candidate target type
95     * @param targetType2 another candidate target type
96     * @return one of {@link jdk.dynalink.linker.ConversionComparator.Comparison} values signifying which
97     * target type should be favored for conversion.
98     */
99    @Override
100    public Comparison compareConversion(final Class<?> sourceType, final Class<?> targetType1, final Class<?> targetType2) {
101        final Class<?> wrapper1 = getWrapperTypeOrSelf(targetType1);
102        if (sourceType == wrapper1) {
103            // Source type exactly matches target 1
104            return Comparison.TYPE_1_BETTER;
105        }
106        final Class<?> wrapper2 = getWrapperTypeOrSelf(targetType2);
107        if (sourceType == wrapper2) {
108            // Source type exactly matches target 2
109            return Comparison.TYPE_2_BETTER;
110        }
111
112        if (Number.class.isAssignableFrom(sourceType)) {
113            // If exactly one of the targets is a number, pick it.
114            if (Number.class.isAssignableFrom(wrapper1)) {
115                if (!Number.class.isAssignableFrom(wrapper2)) {
116                    return Comparison.TYPE_1_BETTER;
117                }
118            } else if (Number.class.isAssignableFrom(wrapper2)) {
119                return Comparison.TYPE_2_BETTER;
120            }
121
122            // If exactly one of the targets is a character, pick it. Numbers can be reasonably converted to chars using
123            // the UTF-16 values.
124            if (Character.class == wrapper1) {
125                return Comparison.TYPE_1_BETTER;
126            } else if (Character.class == wrapper2) {
127                return Comparison.TYPE_2_BETTER;
128            }
129
130            // For all other cases, we fall through to the next if statement - not that we repeat the condition in it
131            // too so if we entered this branch, we'll enter the below if statement too.
132        }
133
134        if (sourceType == String.class || sourceType == Boolean.class || Number.class.isAssignableFrom(sourceType)) {
135            // Treat wrappers as primitives.
136            final Class<?> primitiveType1 = getPrimitiveTypeOrSelf(targetType1);
137            final Class<?> primitiveType2 = getPrimitiveTypeOrSelf(targetType2);
138            // Basically, choose the widest possible primitive type. (First "if" returning TYPE_2_BETTER is correct;
139            // when faced with a choice between double and int, choose double).
140            if (TypeUtilities.isMethodInvocationConvertible(primitiveType1, primitiveType2)) {
141                return Comparison.TYPE_2_BETTER;
142            } else if (TypeUtilities.isMethodInvocationConvertible(primitiveType2, primitiveType1)) {
143                return Comparison.TYPE_1_BETTER;
144            }
145            // Ok, at this point we're out of possible number conversions, so try strings. A String can represent any
146            // value without loss, so if one of the potential targets is string, go for it.
147            if (targetType1 == String.class) {
148                return Comparison.TYPE_1_BETTER;
149            }
150            if (targetType2 == String.class) {
151                return Comparison.TYPE_2_BETTER;
152            }
153        }
154
155        return Comparison.INDETERMINATE;
156    }
157
158    private static Class<?> getPrimitiveTypeOrSelf(final Class<?> type) {
159        final Class<?> primitive = TypeUtilities.getPrimitiveType(type);
160        return primitive == null ? type : primitive;
161    }
162
163    private static Class<?> getWrapperTypeOrSelf(final Class<?> type) {
164        final Class<?> wrapper = TypeUtilities.getWrapperType(type);
165        return wrapper == null ? type : wrapper;
166    }
167
168    @SuppressWarnings("unused")
169    private static boolean isJavaScriptPrimitive(final Object o) {
170        return JSType.isString(o) || o instanceof Boolean || o instanceof Number || o == null;
171    }
172
173    private static final MethodHandle GUARD_PRIMITIVE = findOwnMH("isJavaScriptPrimitive", boolean.class, Object.class);
174
175    private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) {
176        return MH.findStatic(MethodHandles.lookup(), NashornPrimitiveLinker.class, name, MH.type(rtype, types));
177    }
178}
179