Path: blob/master/src/jdk.dynalink/share/classes/jdk/dynalink/beans/CallerSensitiveDynamicMethod.java
41161 views
/*1* Copyright (c) 2010, 2021, 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.MethodHandle;63import java.lang.invoke.MethodHandles;64import java.lang.invoke.MethodType;65import java.lang.reflect.Constructor;66import java.lang.reflect.Executable;67import java.lang.reflect.Method;68import java.lang.reflect.Modifier;69import java.security.AccessControlContext;70import java.security.AccessController;71import java.security.PrivilegedAction;72import jdk.dynalink.CallSiteDescriptor;73import jdk.dynalink.SecureLookupSupplier;74import jdk.dynalink.internal.AccessControlContextFactory;75import jdk.dynalink.linker.support.Lookup;7677/**78* A dynamic method bound to exactly one Java method or constructor that is caller sensitive. Since the target method is79* caller sensitive, it doesn't cache a method handle but rather uses the passed lookup object in80* {@link #getTarget(CallSiteDescriptor)} to unreflect a method handle from the reflective member on81* every request.82*/83class CallerSensitiveDynamicMethod extends SingleDynamicMethod {84@SuppressWarnings("removal")85private static final AccessControlContext GET_LOOKUP_CONTEXT =86AccessControlContextFactory.createAccessControlContext(87SecureLookupSupplier.GET_LOOKUP_PERMISSION_NAME);8889private final Executable target;90private final MethodType type;9192CallerSensitiveDynamicMethod(final Executable target) {93super(getName(target));94this.target = target;95this.type = getMethodType(target);96}9798private static String getName(final Executable m) {99final boolean constructor = m instanceof Constructor;100return getMethodNameWithSignature(getMethodType(m), constructor ? m.getName() :101getClassAndMethodName(m.getDeclaringClass(), m.getName()), !constructor);102}103104@Override105MethodType getMethodType() {106return type;107}108109private static MethodType getMethodType(final Executable m) {110final boolean isMethod = m instanceof Method;111final Class<?> rtype = isMethod ? ((Method)m).getReturnType() : ((Constructor<?>)m).getDeclaringClass();112final Class<?>[] ptypes = m.getParameterTypes();113final MethodType type = MethodType.methodType(rtype, ptypes);114return type.insertParameterTypes(0,115isMethod ?116Modifier.isStatic(m.getModifiers()) ?117Object.class :118m.getDeclaringClass() :119StaticClass.class);120}121122@Override123boolean isVarArgs() {124return target.isVarArgs();125}126127@Override128MethodHandle getTarget(final CallSiteDescriptor desc) {129@SuppressWarnings("removal")130final MethodHandles.Lookup lookup = AccessController.doPrivileged(131(PrivilegedAction<MethodHandles.Lookup>)desc::getLookup,132GET_LOOKUP_CONTEXT);133134if(target instanceof Method) {135final MethodHandle mh = unreflect(lookup, (Method)target);136if(Modifier.isStatic(target.getModifiers())) {137return StaticClassIntrospector.editStaticMethodHandle(mh);138}139return mh;140}141return StaticClassIntrospector.editConstructorMethodHandle(unreflectConstructor(lookup,142(Constructor<?>)target));143}144145@Override146boolean isConstructor() {147return target instanceof Constructor;148}149150private static MethodHandle unreflect(final MethodHandles.Lookup lookup, final Method m) {151return Lookup.unreflect(lookup, m);152}153154private static MethodHandle unreflectConstructor(final MethodHandles.Lookup lookup, final Constructor<?> c) {155return Lookup.unreflectConstructor(lookup, c);156}157}158159160