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

org.infinispan.interceptors.DeadlockDetectingInterceptor Maven / Gradle / Ivy

package org.infinispan.interceptors;

import org.infinispan.commands.VisitableCommand;
import org.infinispan.commands.control.LockControlCommand;
import org.infinispan.commands.tx.PrepareCommand;
import org.infinispan.commands.write.PutKeyValueCommand;
import org.infinispan.commands.write.RemoveCommand;
import org.infinispan.commands.write.ReplaceCommand;
import org.infinispan.configuration.cache.CacheMode;
import org.infinispan.context.InvocationContext;
import org.infinispan.context.impl.TxInvocationContext;
import org.infinispan.factories.annotations.Start;
import org.infinispan.interceptors.base.CommandInterceptor;
import org.infinispan.transaction.xa.DldGlobalTransaction;
import org.infinispan.util.logging.Log;
import org.infinispan.util.logging.LogFactory;

import java.util.Collections;

/**
 * This interceptor populates the {@link org.infinispan.transaction.xa.DldGlobalTransaction} with
 * appropriate information needed in order to accomplish deadlock detection. It MUST process populate data before the
 * replication takes place, so it will do all the tasks before calling {@link org.infinispan.interceptors.base.CommandInterceptor#invokeNextInterceptor(org.infinispan.context.InvocationContext,
 * org.infinispan.commands.VisitableCommand)}.
 * 

* Note: for local caches, deadlock detection dos NOT work for aggregate operations (clear, putAll). * * @author [email protected] * @deprecated Since 8.2, no longer public API. */ @Deprecated public class DeadlockDetectingInterceptor extends CommandInterceptor { private static final Log log = LogFactory.getLog(DeadlockDetectingInterceptor.class); private static final boolean trace = log.isTraceEnabled(); @Override protected Log getLog() { return log; } /** * Only does a sanity check. */ @Start public void start() { if (!cacheConfiguration.deadlockDetection().enabled()) { throw new IllegalStateException("This interceptor should not be present in the chain as deadlock detection is not used!"); } } @Override public Object visitPutKeyValueCommand(InvocationContext ctx, PutKeyValueCommand command) throws Throwable { return handleDataCommand(ctx, command); } @Override public Object visitRemoveCommand(InvocationContext ctx, RemoveCommand command) throws Throwable { return handleDataCommand(ctx, command); } @Override public Object visitReplaceCommand(InvocationContext ctx, ReplaceCommand command) throws Throwable { return handleDataCommand(ctx, command); } @Override public Object visitLockControlCommand(TxInvocationContext ctx, LockControlCommand command) throws Throwable { DldGlobalTransaction globalTransaction = (DldGlobalTransaction) ctx.getGlobalTransaction(); if (ctx.isOriginLocal()) { globalTransaction.setRemoteLockIntention(command.getKeys()); //in the case of DIST we need to propagate the list of keys. In all other situations in can be determined // based on the actual command CacheMode cacheMode = cacheConfiguration.clustering().cacheMode(); if (cacheMode.isDistributed() || cacheMode.isReplicated()) { if (trace) log.tracef("Locks as seen at origin are: %s", ctx.getLockedKeys()); ((DldGlobalTransaction) ctx.getGlobalTransaction()).setLocksHeldAtOrigin(ctx.getLockedKeys()); } } return handleDataCommand(ctx, command); } @Override public Object visitPrepareCommand(TxInvocationContext ctx, PrepareCommand command) throws Throwable { DldGlobalTransaction globalTransaction = (DldGlobalTransaction) ctx.getGlobalTransaction(); if (ctx.isOriginLocal()) { globalTransaction.setRemoteLockIntention(command.getAffectedKeys()); } Object result = invokeNextInterceptor(ctx, command); if (ctx.isOriginLocal()) { globalTransaction.setRemoteLockIntention(Collections.emptySet()); } return result; } private Object handleDataCommand(InvocationContext ctx, VisitableCommand command) throws Throwable { return invokeNextInterceptor(ctx, command); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy