/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * 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. * * This software 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.jboss.as.clustering.infinispan.subsystem; import static org.jboss.as.clustering.infinispan.subsystem.CacheContainerResourceDefinition.Attribute.ALIASES; import static org.jboss.as.clustering.infinispan.subsystem.CacheContainerResourceDefinition.Attribute.DEFAULT_CACHE; import static org.jboss.as.clustering.infinispan.subsystem.CacheContainerResourceDefinition.Capability.CONTAINER; import java.util.LinkedList; import java.util.List; import java.util.function.Consumer; import java.util.function.Function; import java.util.function.Supplier; import org.infinispan.commons.api.BasicCacheContainer; import org.infinispan.configuration.global.GlobalConfiguration; import org.infinispan.manager.DefaultCacheManager; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.notifications.Listener; import org.infinispan.notifications.cachemanagerlistener.annotation.CacheStarted; import org.infinispan.notifications.cachemanagerlistener.annotation.CacheStopped; import org.infinispan.notifications.cachemanagerlistener.event.CacheStartedEvent; import org.infinispan.notifications.cachemanagerlistener.event.CacheStoppedEvent; import org.jboss.as.clustering.controller.CapabilityServiceNameProvider; import org.jboss.as.clustering.controller.ResourceServiceBuilder; import org.jboss.as.clustering.dmr.ModelNodes; import org.jboss.as.clustering.infinispan.BatcherFactory; import org.jboss.as.clustering.infinispan.DefaultCacheContainer; import org.jboss.as.clustering.infinispan.InfinispanBatcherFactory; import org.jboss.as.clustering.infinispan.InfinispanLogger; import org.jboss.as.controller.OperationContext; import org.jboss.as.controller.OperationFailedException; import org.jboss.as.controller.PathAddress; import org.jboss.dmr.ModelNode; import org.jboss.msc.service.Service; import org.jboss.msc.service.ServiceBuilder; import org.jboss.msc.service.ServiceController; import org.jboss.msc.service.ServiceName; import org.jboss.msc.service.ServiceTarget; import org.wildfly.clustering.infinispan.spi.CacheContainer; import org.wildfly.clustering.infinispan.spi.InfinispanRequirement; import org.wildfly.clustering.service.InjectedValueDependency; import org.wildfly.clustering.service.SuppliedValueService; import org.wildfly.clustering.service.ValueDependency; /** * @author Paul Ferraro */ @Listener public class CacheContainerBuilder extends CapabilityServiceNameProvider implements ResourceServiceBuilder<CacheContainer> { private final List<ServiceName> aliases = new LinkedList<>(); private final String name; private final ValueDependency<GlobalConfiguration> configuration; private final BatcherFactory batcherFactory = new InfinispanBatcherFactory(); private volatile String defaultCache; public CacheContainerBuilder(PathAddress address) { super(CONTAINER, address); this.name = address.getLastElement().getValue(); this.configuration = new InjectedValueDependency<>(CacheContainerResourceDefinition.Capability.CONFIGURATION.getServiceName(address), GlobalConfiguration.class); } @Override public CacheContainerBuilder configure(OperationContext context, ModelNode model) throws OperationFailedException { this.aliases.clear(); ModelNodes.optionalList(ALIASES.resolveModelAttribute(context, model)).ifPresent(aliases -> { aliases.stream().map(ModelNode::asString).forEach(alias -> this.aliases.add(InfinispanRequirement.CONTAINER.getServiceName(context.getCapabilityServiceSupport(), alias))); }); this.defaultCache = ModelNodes.optionalString(DEFAULT_CACHE.resolveModelAttribute(context, model)).orElse(BasicCacheContainer.DEFAULT_CACHE_NAME); return this; } @Override public ServiceBuilder<CacheContainer> build(ServiceTarget target) { Function<EmbeddedCacheManager, CacheContainer> mapper = manager -> new DefaultCacheContainer(this.name, manager, this.defaultCache, this.batcherFactory); Supplier<EmbeddedCacheManager> supplier = () -> { GlobalConfiguration config = this.configuration.getValue(); EmbeddedCacheManager manager = new DefaultCacheManager(config, null, false); manager.addListener(this); manager.start(); InfinispanLogger.ROOT_LOGGER.debugf("%s cache container started", this.name); return manager; }; Consumer<EmbeddedCacheManager> destroyer = manager -> { manager.stop(); manager.removeListener(this); InfinispanLogger.ROOT_LOGGER.debugf("%s cache container stopped", this.name); }; Service<CacheContainer> service = new SuppliedValueService<>(mapper, supplier, destroyer); ServiceBuilder<CacheContainer> builder = target.addService(this.getServiceName(), service) .addAliases(this.aliases.stream().toArray(ServiceName[]::new)) .setInitialMode(ServiceController.Mode.PASSIVE) ; return this.configuration.register(builder); } String getDefaultCache() { return this.defaultCache; } @CacheStarted public void cacheStarted(CacheStartedEvent event) { InfinispanLogger.ROOT_LOGGER.cacheStarted(event.getCacheName(), this.name); } @CacheStopped public void cacheStopped(CacheStoppedEvent event) { InfinispanLogger.ROOT_LOGGER.cacheStopped(event.getCacheName(), this.name); } }