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

org.infinispan.spring.remote.session.InfinispanRemoteSessionRepository Maven / Gradle / Ivy

There is a newer version: 14.0.33.Final
Show newest version
package org.infinispan.spring.remote.session;

import java.util.Collections;
import java.util.Map;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.stream.Collectors;

import org.infinispan.client.hotrod.Flag;
import org.infinispan.client.hotrod.RemoteCache;
import org.infinispan.commons.CacheException;
import org.infinispan.spring.common.provider.SpringCache;
import org.infinispan.spring.common.session.AbstractInfinispanSessionRepository;
import org.infinispan.spring.common.session.PrincipalNameResolver;
import org.springframework.session.MapSession;

/**
 * Session Repository for Infinispan in client/server mode.
 *
 * @author Sebastian Łaskawiec
 * @since 9.0
 */
public class InfinispanRemoteSessionRepository extends AbstractInfinispanSessionRepository {
   /**
    * Creates new repository based on {@link SpringCache}
    *
    * @param cache Cache which shall be used for session repository.
    */
   public InfinispanRemoteSessionRepository(SpringCache cache) {
      super(cache, new RemoteApplicationPublishedBridge(cache));
   }

   @Override
   protected void removeFromCacheWithoutNotifications(String originalId) {
      RemoteCache remoteCache = (RemoteCache) nativeCache;
      if (cache.getWriteTimeout() > 0) {
         try {
            remoteCache.withFlags(Flag.SKIP_LISTENER_NOTIFICATION).removeAsync(originalId).get(cache.getWriteTimeout(), TimeUnit.MILLISECONDS);
         } catch (InterruptedException e) {
            Thread.currentThread().interrupt();
            throw new CacheException(e);
         } catch (ExecutionException | TimeoutException e) {
            throw new CacheException(e);
         }
      } else {
         remoteCache.withFlags(Flag.SKIP_LISTENER_NOTIFICATION).remove(originalId);
      }
   }

   @Override
   public Map findByIndexNameAndIndexValue(String indexName, String indexValue) {
      if (!PRINCIPAL_NAME_INDEX_NAME.equals(indexName)) {
         return Collections.emptyMap();
      }

      return nativeCache.values().stream()
            .filter(session -> indexValue.equals(PrincipalNameResolver.getInstance().resolvePrincipal(session)))
            .collect(Collectors.toMap(MapSession::getId, session -> new InfinispanSession(session, false)));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy