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

org.jruby.runtime.callsite.RefinedCachingCallSite Maven / Gradle / Ivy

package org.jruby.runtime.callsite;

import org.jruby.RubyClass;
import org.jruby.RubyModule;
import org.jruby.internal.runtime.methods.DynamicMethod;
import org.jruby.ir.runtime.IRRuntimeHelpers;
import org.jruby.parser.StaticScope;
import org.jruby.runtime.Block;
import org.jruby.runtime.CallType;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;

import java.util.Map;

public class RefinedCachingCallSite extends CachingCallSite {
    public RefinedCachingCallSite(String methodName, CallType callType) {
        super(methodName, callType);
    }

    @Override
    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject... args) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, args);
        }

        return method.call(context, self, selfType, methodName, args);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject[] args, Block block) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, args, block);
        }

        return method.call(context, self, selfType, methodName, args, block);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method);
        }

        return method.call(context, self, selfType, methodName);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, Block block) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, block);
        }

        return method.call(context, self, selfType, methodName, block);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, arg0);
        }

        return method.call(context, self, selfType, methodName, arg0);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, Block block) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, arg0, block);
        }

        return method.call(context, self, selfType, methodName, arg0, block);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, IRubyObject arg1) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, arg0, arg1);
        }

        return method.call(context, self, selfType, methodName, arg0, arg1);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, IRubyObject arg1, Block block) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, arg0, arg1, block);
        }

        return method.call(context, self, selfType, methodName, arg0, arg1, block);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, arg0, arg1, arg2);
        }

        return method.call(context, self, selfType, methodName, arg0, arg1, arg2);
    }

    public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) {
        RubyClass selfType = getClass(self);
        DynamicMethod method = selfType.searchWithRefinements(methodName, context.getCurrentStaticScope());

        if (methodMissing(method, caller)) {
            return callMethodMissing(context, self, method, arg0, arg1, arg2, block);
        }

        return method.call(context, self, selfType, methodName, arg0, arg1, arg2);
    }

    protected boolean methodMissing(DynamicMethod method, IRubyObject caller) {
        // doing full "normal" MM check rather than multiple refined sites by call types
        return method.isUndefined() || (!methodName.equals("method_missing") && !method.isCallableFrom(caller, callType));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy