Search in sources :

Example 1 with CacheProperties

use of org.wildfly.clustering.ee.cache.CacheProperties in project wildfly by wildfly.

the class InfinispanCachePropertiesTestCase method isMarshalling.

@Test
public void isMarshalling() {
    for (CacheMode mode : EnumSet.allOf(CacheMode.class)) {
        Configuration config = new ConfigurationBuilder().clustering().cacheMode(mode).build();
        CacheProperties configuration = new InfinispanCacheProperties(config);
        if (mode.isDistributed() || mode.isReplicated() || mode.isScattered()) {
            Assert.assertTrue(mode.name(), configuration.isMarshalling());
        } else {
            Assert.assertFalse(mode.name(), configuration.isMarshalling());
        }
    }
    Configuration config = new ConfigurationBuilder().clustering().cacheMode(CacheMode.LOCAL).persistence().passivation(false).addSingleFileStore().build();
    Assert.assertTrue(new InfinispanCacheProperties(config).isMarshalling());
    Configuration passivating = new ConfigurationBuilder().read(config).persistence().passivation(true).build();
    Assert.assertTrue(new InfinispanCacheProperties(passivating).isMarshalling());
    Configuration noStore = new ConfigurationBuilder().read(config).persistence().clearStores().build();
    Assert.assertFalse(new InfinispanCacheProperties(noStore).isMarshalling());
}
Also used : ConfigurationBuilder(org.infinispan.configuration.cache.ConfigurationBuilder) CacheProperties(org.wildfly.clustering.ee.cache.CacheProperties) Configuration(org.infinispan.configuration.cache.Configuration) CacheMode(org.infinispan.configuration.cache.CacheMode) Test(org.junit.Test)

Example 2 with CacheProperties

use of org.wildfly.clustering.ee.cache.CacheProperties in project wildfly by wildfly.

the class InfinispanCachePropertiesTestCase method isPersistent.

@Test
public void isPersistent() {
    for (CacheMode mode : EnumSet.allOf(CacheMode.class)) {
        Configuration config = new ConfigurationBuilder().clustering().cacheMode(mode).build();
        CacheProperties configuration = new InfinispanCacheProperties(config);
        if (mode.isDistributed() || mode.isReplicated() || mode.isScattered()) {
            Assert.assertTrue(mode.name(), configuration.isPersistent());
        } else {
            Assert.assertFalse(mode.name(), configuration.isPersistent());
        }
    }
    Configuration config = new ConfigurationBuilder().clustering().cacheMode(CacheMode.LOCAL).persistence().passivation(false).addSingleFileStore().build();
    Assert.assertTrue(new InfinispanCacheProperties(config).isPersistent());
    Configuration passivating = new ConfigurationBuilder().read(config).persistence().passivation(true).build();
    Assert.assertFalse(new InfinispanCacheProperties(passivating).isPersistent());
    Configuration noStore = new ConfigurationBuilder().read(config).persistence().clearStores().build();
    Assert.assertFalse(new InfinispanCacheProperties(noStore).isPersistent());
}
Also used : ConfigurationBuilder(org.infinispan.configuration.cache.ConfigurationBuilder) CacheProperties(org.wildfly.clustering.ee.cache.CacheProperties) Configuration(org.infinispan.configuration.cache.Configuration) CacheMode(org.infinispan.configuration.cache.CacheMode) Test(org.junit.Test)

Example 3 with CacheProperties

use of org.wildfly.clustering.ee.cache.CacheProperties in project wildfly by wildfly.

the class InfinispanBeanManagerFactory method createBeanManager.

@Override
public BeanManager<I, T, TransactionBatch> createBeanManager(Supplier<I> identifierFactory, PassivationListener<T> passivationListener, RemoveListener<T> removeListener) {
    ByteBufferMarshaller marshaller = new JBossByteBufferMarshaller(this.configuration.getMarshallingConfigurationRepository(), this.configuration.getBeanConfiguration().getModule().getClassLoader());
    MarshalledValueFactory<ByteBufferMarshaller> factory = new ByteBufferMarshalledValueFactory(marshaller);
    Cache<BeanKey<I>, BeanEntry<I>> beanCache = this.configuration.getCache();
    Cache<BeanGroupKey<I>, BeanGroupEntry<I, T, ByteBufferMarshaller>> groupCache = this.configuration.getCache();
    CacheProperties properties = new InfinispanCacheProperties(groupCache.getCacheConfiguration());
    String beanName = this.configuration.getBeanConfiguration().getName();
    BeanPassivationConfiguration passivationConfig = this.configuration.getPassivationConfiguration();
    PassivationConfiguration<T> passivation = new PassivationConfiguration<T>() {

        @Override
        public PassivationListener<T> getPassivationListener() {
            return passivationListener;
        }

        @Override
        public BeanPassivationConfiguration getConfiguration() {
            return passivationConfig;
        }
    };
    Predicate<Map.Entry<? super BeanKey<I>, ? super BeanEntry<I>>> beanFilter = new BeanFilter<>(beanName);
    BeanGroupFactory<I, T, ByteBufferMarshaller> groupFactory = new InfinispanBeanGroupFactory<>(groupCache, beanCache, beanFilter, factory, properties, passivation);
    Configuration<BeanGroupKey<I>, BeanGroupEntry<I, T, ByteBufferMarshaller>, BeanGroupFactory<I, T, ByteBufferMarshaller>> groupConfiguration = new SimpleConfiguration<>(groupCache, groupFactory);
    BeanFactory<I, T> beanFactory = new InfinispanBeanFactory<>(beanName, groupFactory, beanCache, properties, this.configuration.getBeanConfiguration().getTimeout(), properties.isPersistent() ? passivationListener : null);
    Configuration<BeanKey<I>, BeanEntry<I>, BeanFactory<I, T>> beanConfiguration = new SimpleConfiguration<>(beanCache, beanFactory);
    Group<Address> group = this.configuration.getGroup();
    KeyAffinityServiceFactory affinityFactory = this.configuration.getKeyAffinityServiceFactory();
    CommandDispatcherFactory dispatcherFactory = this.configuration.getCommandDispatcherFactory();
    Duration timeout = this.configuration.getBeanConfiguration().getTimeout();
    ExpirationConfiguration<T> expiration = new ExpirationConfiguration<T>() {

        @Override
        public Duration getTimeout() {
            return timeout;
        }

        @Override
        public RemoveListener<T> getRemoveListener() {
            return removeListener;
        }
    };
    String name = this.configuration.getName();
    InfinispanBeanManagerConfiguration<I, T> configuration = new InfinispanBeanManagerConfiguration<I, T>() {

        @Override
        public String getName() {
            return name;
        }

        @Override
        public Predicate<Map.Entry<? super BeanKey<I>, ? super BeanEntry<I>>> getBeanFilter() {
            return beanFilter;
        }

        @Override
        public KeyAffinityServiceFactory getAffinityFactory() {
            return affinityFactory;
        }

        @Override
        public Group<Address> getGroup() {
            return group;
        }

        @Override
        public CommandDispatcherFactory getCommandDispatcherFactory() {
            return dispatcherFactory;
        }

        @Override
        public ExpirationConfiguration<T> getExpirationConfiguration() {
            return expiration;
        }

        @Override
        public PassivationConfiguration<T> getPassivationConfiguration() {
            return passivation;
        }

        @Override
        public CacheProperties getProperties() {
            return properties;
        }
    };
    return new InfinispanBeanManager<>(configuration, identifierFactory, beanConfiguration, groupConfiguration);
}
Also used : InfinispanBeanGroupFactory(org.wildfly.clustering.ejb.infinispan.group.InfinispanBeanGroupFactory) Address(org.infinispan.remoting.transport.Address) BeanPassivationConfiguration(org.wildfly.clustering.ejb.BeanPassivationConfiguration) InfinispanCacheProperties(org.wildfly.clustering.ee.infinispan.InfinispanCacheProperties) CacheProperties(org.wildfly.clustering.ee.cache.CacheProperties) InfinispanBeanFactory(org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory) CommandDispatcherFactory(org.wildfly.clustering.spi.dispatcher.CommandDispatcherFactory) ByteBufferMarshaller(org.wildfly.clustering.marshalling.spi.ByteBufferMarshaller) JBossByteBufferMarshaller(org.wildfly.clustering.marshalling.jboss.JBossByteBufferMarshaller) JBossByteBufferMarshaller(org.wildfly.clustering.marshalling.jboss.JBossByteBufferMarshaller) InfinispanBeanGroupFactory(org.wildfly.clustering.ejb.infinispan.group.InfinispanBeanGroupFactory) InfinispanBeanFactory(org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory) BeanPassivationConfiguration(org.wildfly.clustering.ejb.BeanPassivationConfiguration) Duration(java.time.Duration) KeyAffinityServiceFactory(org.wildfly.clustering.infinispan.spi.affinity.KeyAffinityServiceFactory) ByteBufferMarshalledValueFactory(org.wildfly.clustering.marshalling.spi.ByteBufferMarshalledValueFactory) InfinispanCacheProperties(org.wildfly.clustering.ee.infinispan.InfinispanCacheProperties)

Aggregations

CacheProperties (org.wildfly.clustering.ee.cache.CacheProperties)3 CacheMode (org.infinispan.configuration.cache.CacheMode)2 Configuration (org.infinispan.configuration.cache.Configuration)2 ConfigurationBuilder (org.infinispan.configuration.cache.ConfigurationBuilder)2 Test (org.junit.Test)2 Duration (java.time.Duration)1 Address (org.infinispan.remoting.transport.Address)1 InfinispanCacheProperties (org.wildfly.clustering.ee.infinispan.InfinispanCacheProperties)1 BeanPassivationConfiguration (org.wildfly.clustering.ejb.BeanPassivationConfiguration)1 InfinispanBeanFactory (org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory)1 InfinispanBeanGroupFactory (org.wildfly.clustering.ejb.infinispan.group.InfinispanBeanGroupFactory)1 KeyAffinityServiceFactory (org.wildfly.clustering.infinispan.spi.affinity.KeyAffinityServiceFactory)1 JBossByteBufferMarshaller (org.wildfly.clustering.marshalling.jboss.JBossByteBufferMarshaller)1 ByteBufferMarshalledValueFactory (org.wildfly.clustering.marshalling.spi.ByteBufferMarshalledValueFactory)1 ByteBufferMarshaller (org.wildfly.clustering.marshalling.spi.ByteBufferMarshaller)1 CommandDispatcherFactory (org.wildfly.clustering.spi.dispatcher.CommandDispatcherFactory)1