Package org.infinispan.compatibility.adaptor52x

Source Code of org.infinispan.compatibility.adaptor52x.Adaptor52xStore

package org.infinispan.compatibility.adaptor52x;

import org.infinispan.config.parsing.XmlConfigHelper;
import org.infinispan.container.InternalEntryFactory;
import org.infinispan.container.entries.InternalCacheEntry;
import org.infinispan.executors.ExecutorAllCompletionService;
import org.infinispan.loaders.CacheLoader;
import org.infinispan.loaders.CacheLoaderConfig;
import org.infinispan.loaders.CacheLoaderException;
import org.infinispan.loaders.CacheLoaderMetadata;
import org.infinispan.loaders.CacheStore;
import org.infinispan.marshall.StreamingMarshallerAdapter;
import org.infinispan.marshall.core.MarshalledEntry;
import org.infinispan.marshall.core.MarshalledEntryImpl;
import org.infinispan.metadata.InternalMetadataImpl;
import org.infinispan.persistence.spi.PersistenceException;
import org.infinispan.persistence.PersistenceUtil;
import org.infinispan.persistence.TaskContextImpl;
import org.infinispan.persistence.spi.AdvancedLoadWriteStore;
import org.infinispan.persistence.spi.InitializationContext;
import org.infinispan.util.Util;

import java.util.HashSet;
import java.util.Set;
import java.util.concurrent.Callable;
import java.util.concurrent.CompletionService;
import java.util.concurrent.Executor;

/**
* @author Mircea Markus
* @since 6.0
*/
public class Adaptor52xStore implements AdvancedLoadWriteStore {

   private InitializationContext ctx;
   private Adaptor52xStoreConfiguration configuration;
   private CacheLoader loader;
   private InternalEntryFactory entryFactory;

   @Override
   public void init(InitializationContext ctx) {
      this.ctx = ctx;
      configuration = ctx.getConfiguration();
      loader = configuration.getLoader();
      CacheLoaderConfig cacheLoaderConfig = instantiateCacheLoaderConfig(loader.getClass());
      XmlConfigHelper.setValues(cacheLoaderConfig, configuration.properties(), false, true);
      try {
         loader.init(cacheLoaderConfig, ctx.getCache(), new StreamingMarshallerAdapter(ctx.getMarshaller()));
      } catch (CacheLoaderException e) {
         throw newPersistenceException(e);
      }
   }

   @Override
   public void start() {
      try {
         loader.start();
      } catch (CacheLoaderException e) {
         throw newPersistenceException(e);
      }
      entryFactory = ctx.getCache().getAdvancedCache().getComponentRegistry().getComponent(InternalEntryFactory.class);
   }

   @Override
   public void stop() {
      try {
         loader.stop();
      } catch (CacheLoaderException e) {
         throw newPersistenceException(e);
      }
   }

   private CacheLoaderConfig instantiateCacheLoaderConfig(Class clazz) {
      // first see if the type is annotated
      Class<? extends CacheLoaderConfig> cacheLoaderConfigType;
      CacheLoaderMetadata metadata = (CacheLoaderMetadata) clazz.getAnnotation(CacheLoaderMetadata.class);
      if (metadata == null) {
         CacheLoader cl = (CacheLoader) Util.getInstance(clazz);
         cacheLoaderConfigType = cl.getConfigurationClass();
      } else {
         cacheLoaderConfigType = metadata.configurationClass();
      }
      return Util.getInstance(cacheLoaderConfigType);
   }


   @Override
   public void process(KeyFilter keyFilter, CacheLoaderTask cacheLoaderTask, Executor executor, boolean fetchValue, boolean fetchMetadata) {
      try {
         Set<Object> keys = loader.loadAllKeys(null);

         int batchSize = 1000;
         ExecutorAllCompletionService eacs = new ExecutorAllCompletionService(executor);
         final TaskContext taskContext = new TaskContextImpl();
         Set<Object> entries = new HashSet<Object>(batchSize);
         for (Object key : keys) {
            if (keyFilter == null || keyFilter.shouldLoadKey(key))
               entries.add(key);
            if (entries.size() == batchSize) {
               final Set<Object> batch = entries;
               entries = new HashSet<Object>(batchSize);
               submitProcessTask(cacheLoaderTask, eacs, taskContext, batch, fetchValue, fetchMetadata);
            }
         }
         if (!entries.isEmpty()) {
            submitProcessTask(cacheLoaderTask, eacs, taskContext, entries, fetchValue, fetchMetadata);
         }
         eacs.waitUntilAllCompleted();
         if (eacs.isExceptionThrown()) {
            throw newPersistenceException(eacs.getFirstException());
         }
      } catch (CacheLoaderException e) {
         throw newPersistenceException(e);
      }
   }

   private void submitProcessTask(final CacheLoaderTask cacheLoaderTask, CompletionService<Void> ecs,
                                  final TaskContext taskContext, final Set<Object> batch, final boolean loadEntry,
                                  final boolean loadMetadata) {
      ecs.submit(new Callable<Void>() {
         @Override
         public Void call() throws Exception {
            for (Object key : batch) {
               if (taskContext.isStopped())
                  break;
               MarshalledEntry marshalledEntry = !loadEntry && !loadMetadata ?
                     new MarshalledEntryImpl(key, (Object) null, null, ctx.getMarshaller()) :
                     load(key);
               if (marshalledEntry != null) {
                  cacheLoaderTask.processEntry(marshalledEntry, taskContext);
               }
            }
            return null;
         }
      });
   }


   @Override
   public int size() {
      return PersistenceUtil.count(this, null);
   }

   @Override
   public void clear() {
      if (loader instanceof CacheStore) {
         try {
            ((CacheStore) loader).clear();
         } catch (CacheLoaderException e) {
            throw newPersistenceException(e);
         }
      }
   }

   @Override
   public void purge(Executor threadPool, PurgeListener listener) {
      if (loader instanceof CacheStore) {
         try {
            ((CacheStore) loader).purgeExpired();
         } catch (CacheLoaderException e) {
            throw newPersistenceException(e);
         }
      }
   }

   @Override
   public MarshalledEntry load(Object key) {
      try {
         InternalCacheEntry load = loader.load(key);
         if (load == null)
            return null;
         return new MarshalledEntryImpl(key, load.getValue(), new InternalMetadataImpl(load), ctx.getMarshaller());
      } catch (CacheLoaderException e) {
         throw newPersistenceException(e);
      }
   }

   @Override
   public boolean contains(Object key) {
      return load(key) != null;
   }

   @Override
   public void write(MarshalledEntry entry) {
      if (loader instanceof CacheStore)
         try {
            ((CacheStore) loader).store(entryFactory.create(entry.getKey(), entry.getValue(), entry.getMetadata()));
         } catch (CacheLoaderException e) {
            throw newPersistenceException(e);
         }
   }

   @Override
   public boolean delete(Object key) {
      if (loader instanceof CacheStore)
         try {
            return ((CacheStore) loader).remove(key);
         } catch (CacheLoaderException e) {
            throw newPersistenceException(e);
         }
      return false;
   }

   private PersistenceException newPersistenceException(Throwable cause) {
      return new PersistenceException(cause);
   }

   public CacheLoader getLoader() {
      return loader;
   }
}
TOP

Related Classes of org.infinispan.compatibility.adaptor52x.Adaptor52xStore

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.