Path: blob/master/src/jdk.dynalink/share/classes/jdk/dynalink/linker/GuardingDynamicLinker.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.linker;6162import java.lang.invoke.MethodHandle;63import java.lang.invoke.MethodType;64import java.util.List;65import jdk.dynalink.DynamicLinkerFactory;6667/**68* The base interface for language-specific dynamic linkers. Such linkers69* always have to produce method handles with guards, as the validity of the70* method handle for calls at a call site inevitably depends on some condition71* (at the very least, it depends on the receiver belonging to the language72* runtime of the linker). Language runtime implementors will normally implement73* the linking logic for their own language as one or more74* {@link GuardingDynamicLinker} classes. They will typically set them as75* {@link DynamicLinkerFactory#setPrioritizedLinkers(List) prioritized linkers}76* in the {@code DynamicLinkerFactory} they configure for themselves, and maybe also77* set some as {@link DynamicLinkerFactory#setFallbackLinkers(List) fallback78* linkers} to handle language-specific "property not found" etc. conditions.79* <p>80* Consider implementing {@link TypeBasedGuardingDynamicLinker} interface81* instead of this interface for those linkers that are based on the Java class82* of the objects. If you need to implement language-specific type conversions,83* have your {@code GuardingDynamicLinker} also implement the84* {@link GuardingTypeConverterFactory} interface.85* <p>86* Languages can export linkers to other language runtimes for87* {@link DynamicLinkerFactory#setClassLoader(ClassLoader) automatic discovery}88* using a {@link GuardingDynamicLinkerExporter}.89*/90public interface GuardingDynamicLinker {91/**92* Creates a guarded invocation appropriate for a particular invocation with93* the specified arguments at a call site.94*95* @param linkRequest the object describing the request for linking a96* particular invocation97* @param linkerServices linker services98* @return a guarded invocation with a method handle suitable for the99* arguments, as well as a guard condition that if fails should trigger100* relinking. Must return null if it can't resolve the invocation. If the101* returned invocation is unconditional (which is actually quite rare), the102* guard in the return value can be null. The invocation can also have any103* number of switch points for asynchronous invalidation of the linkage, as104* well as a {@link Throwable} subclass that describes an expected exception105* condition that also triggers relinking (often it is faster to rely on an106* infrequent but expected {@link ClassCastException} than on an always107* evaluated {@code instanceof} guard). While the linker must produce an108* invocation with parameter types matching those in the call site109* descriptor of the link request, it should not try to match the return110* type expected at the call site except when it can do it with only the111* conversions that lose neither precision nor magnitude, see112* {@link LinkerServices#asTypeLosslessReturn(MethodHandle, MethodType)} for113* further explanation.114* @throws Exception if the operation fails for whatever reason115*/116public GuardedInvocation getGuardedInvocation(LinkRequest linkRequest, LinkerServices linkerServices)117throws Exception;118}119120121