org.modeshape.jcr.InfinispanUtil Maven / Gradle / Ivy
/*
* ModeShape (http://www.modeshape.org)
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership. Some portions may be licensed
* to Red Hat, Inc. under one or more contributor license agreements.
* See the AUTHORS.txt file in the distribution for a full listing of
* individual contributors.
*
* ModeShape is free software. Unless otherwise indicated, all code in ModeShape
* is licensed to you under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* ModeShape is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.modeshape.jcr;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.infinispan.Cache;
import org.infinispan.distexec.DefaultExecutorService;
import org.infinispan.distexec.DistributedCallable;
import org.infinispan.distexec.DistributedExecutorService;
import org.infinispan.loaders.CacheLoader;
import org.infinispan.loaders.CacheLoaderException;
import org.infinispan.loaders.CacheLoaderManager;
import org.modeshape.common.logging.Logger;
/**
* A set of utility methods for Infinispan caches.
*/
public class InfinispanUtil {
protected static final Logger LOGGER = Logger.getLogger(InfinispanUtil.class);
private InfinispanUtil() {
// prevent instantiation ...
}
/**
* Get all of the keys in the cache.
*
* @param the type of key
* @param the type of value
* @param cache the cache
* @return the sequence that can be used to obtain the keys; never null
* @throws CacheLoaderException if there is an error within the cache loader
* @throws InterruptedException if the process is interrupted
* @throws ExecutionException if there is an error while getting all keys
*/
@SuppressWarnings("unchecked")
public static Sequence getAllKeys( Cache cache ) throws CacheLoaderException, InterruptedException, ExecutionException {
LOGGER.debug("getAllKeys of {0}", cache.getName());
CacheLoader cacheLoader = null;
CacheLoaderManager cacheLoaderManager = cache.getAdvancedCache().getComponentRegistry().getComponent(CacheLoaderManager.class);
if(cacheLoaderManager != null){
cacheLoader = cacheLoaderManager.getCacheLoader();
}
Set cacheKeys;
if(cacheLoader == null){
if(cache.getCacheConfiguration().clustering().cacheMode().isDistributed()){
LOGGER.debug("Use distributed call to fetch all keys");
// Use a distributed executor to execute callables throughout the Infinispan cluster ...
DistributedExecutorService distributedExecutor = new DefaultExecutorService(cache);
@SuppressWarnings( "synthetic-access" )
List>> futures = distributedExecutor.submitEverywhere(new GetAllMemoryKeys());
cacheKeys = mergeResults(futures);
} else {
cacheKeys = cache.keySet();
}
} else {
LOGGER.debug("Cache contains loader");
boolean shared = cache.getCacheConfiguration().loaders().shared();
if(cache.getCacheConfiguration().clustering().cacheMode().isDistributed()){
if(!shared){
LOGGER.debug("Use distributed call to fetch all keys");
// store is not shared so every node must return key list of the store
DistributedExecutorService distributedExecutor = new DefaultExecutorService(cache);
@SuppressWarnings( "synthetic-access" )
List>> futures = distributedExecutor.submitEverywhere(new GetAllKeys());
cacheKeys = mergeResults(futures);
} else {
LOGGER.debug("Load keys from loader");
// load only these keys, which are not in memory
cacheKeys = new HashSet(cache.keySet());
cacheKeys.addAll((Set)cacheLoader.loadAllKeys((Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy