org.infinispan.commands.remote.BaseRpcInvokingCommand Maven / Gradle / Ivy
package org.infinispan.commands.remote;
import org.infinispan.commands.ReplicableCommand;
import org.infinispan.commands.VisitableCommand;
import org.infinispan.context.InvocationContext;
import org.infinispan.context.InvocationContextFactory;
import org.infinispan.interceptors.InterceptorChain;
import org.infinispan.util.concurrent.locks.RemoteLockCommand;
import org.infinispan.util.logging.Log;
import org.infinispan.util.logging.LogFactory;
/**
* Base class for RPC commands.
*
* @author [email protected]
*/
public abstract class BaseRpcInvokingCommand extends BaseRpcCommand {
protected InterceptorChain interceptorChain;
protected InvocationContextFactory icf;
private static final Log log = LogFactory.getLog(BaseRpcInvokingCommand.class);
private static final boolean trace = log.isTraceEnabled();
protected BaseRpcInvokingCommand(String cacheName) {
super(cacheName);
}
public void init(InterceptorChain interceptorChain, InvocationContextFactory icf) {
this.interceptorChain = interceptorChain;
this.icf = icf;
}
protected final Object processVisitableCommand(ReplicableCommand cacheCommand) throws Throwable {
if (cacheCommand instanceof VisitableCommand) {
VisitableCommand vc = (VisitableCommand) cacheCommand;
final InvocationContext ctx = icf.createRemoteInvocationContextForCommand(vc, getOrigin());
if (cacheCommand instanceof RemoteLockCommand) {
ctx.setLockOwner(((RemoteLockCommand) cacheCommand).getKeyLockOwner());
}
if (vc.shouldInvoke(ctx)) {
if (trace) log.tracef("Invoking command %s, with originLocal flag set to %b", cacheCommand, ctx.isOriginLocal());
return interceptorChain.invoke(ctx, vc);
} else {
if (trace) log.tracef("Not invoking command %s since shouldInvoke() returned false with context %s", cacheCommand, ctx);
return null;
}
// we only need to return values for a set of remote calls; not every call.
} else {
throw new RuntimeException("Do we still need to deal with non-visitable commands? (" + cacheCommand.getClass().getName() + ")");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy