All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.runtime.StructuralCallSite Maven / Gradle / Ivy

There is a newer version: 2.13.14
Show newest version
package scala.runtime;


import java.lang.invoke.*;
import java.lang.ref.SoftReference;
import java.lang.reflect.Method;

public final class StructuralCallSite {

    private Class[] parameterTypes;
    private SoftReference cache = new SoftReference<>(new EmptyMethodCache());

    private StructuralCallSite(MethodType callType) {
        parameterTypes = callType.parameterArray();
    }

    public MethodCache get() {
        MethodCache cache = this.cache.get();
        if (cache == null) {
            cache = new EmptyMethodCache();
            this.cache = new SoftReference<>(cache);
        }
        return cache;
    }

    public Method find(Class receiver) {
        return get().find(receiver);
    }

    public Method add(Class receiver, Method m) {
        cache = new SoftReference(get().add(receiver, m));
        return m;
    }
    public Class[] parameterTypes() {
        return parameterTypes;
    }

    public static CallSite bootstrap(MethodHandles.Lookup lookup, String invokedName,
                                     MethodType invokedType, MethodType reflectiveCallType) throws Throwable {
        StructuralCallSite structuralCallSite = new StructuralCallSite(reflectiveCallType);
        return new ConstantCallSite(MethodHandles.constant(StructuralCallSite.class, structuralCallSite));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy