/* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright (c) 2016 Payara Foundation. All rights reserved. The contents of this file are subject to the terms of the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html or packager/legal/LICENSE.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License file at packager/legal/LICENSE.txt. */ package fish.payara.cdi.jsr107; import fish.payara.cdi.jsr107.impl.NamedCache; import com.hazelcast.core.HazelcastInstance; import fish.payara.nucleus.hazelcast.HazelcastCore; import javax.cache.Cache; import javax.cache.CacheManager; import javax.cache.annotation.CacheDefaults; import javax.cache.configuration.Factory; import javax.cache.configuration.FactoryBuilder; import javax.cache.configuration.MutableConfiguration; import javax.cache.spi.CachingProvider; import javax.enterprise.context.Dependent; import javax.enterprise.inject.Produces; import javax.enterprise.inject.spi.Bean; import javax.enterprise.inject.spi.InjectionPoint; /** * * @author steve */ public class JSR107Producer { public JSR107Producer() { hazelcastCore = HazelcastCore.getCore(); } HazelcastCore hazelcastCore; @Dependent @Produces CachingProvider getCachingProvider() { // TBD look for scoped Caching Providers in JNDI return hazelcastCore.getCachingProvider(); } @Dependent @Produces CacheManager getCacheManager(InjectionPoint point) { CacheManager result = null; return hazelcastCore.getCachingProvider().getCacheManager(); } @Dependent @Produces HazelcastInstance getHazelcast() { return hazelcastCore.getInstance(); } /** * Produces a Cache for injection. If the @NamedCache annotation is present the * cache will be created based on the values of the annotation field * * Otherwise the cache will be created with the cache name being equal * to the fully qualified name of the class into which it is injected * @param ip * @return */ @Produces public <K,V> Cache<K, V> createCache(InjectionPoint ip) { Cache<K, V> result; //determine the cache name first start with the default name String cacheName = ip.getMember().getDeclaringClass().getCanonicalName(); NamedCache ncqualifier = ip.getAnnotated().getAnnotation(NamedCache.class); CacheManager manager = getCacheManager(ip); if (ncqualifier != null) { // configure the cache based on the annotation String qualifierName = ncqualifier.cacheName(); if (!"".equals(cacheName)) { cacheName = qualifierName; } Class keyClass = ncqualifier.keyClass(); Class valueClass = ncqualifier.valueClass(); result = manager.getCache(cacheName, keyClass, valueClass); if (result == null) { MutableConfiguration<K, V> config = new MutableConfiguration<>(); config.setTypes(keyClass, valueClass); // determine the expiry policy Class expiryPolicyFactoryClass = ncqualifier.expiryPolicyFactoryClass(); if (!"Object".equals(expiryPolicyFactoryClass.getSimpleName())) { Factory factory = FactoryBuilder.factoryOf(expiryPolicyFactoryClass); config.setExpiryPolicyFactory(factory); } // determine the cache writer if any Class writerFactoryClass = ncqualifier.cacheWriterFactoryClass(); if (!"Object".equals(writerFactoryClass.getSimpleName())) { Factory factory = FactoryBuilder.factoryOf(writerFactoryClass); config.setCacheWriterFactory(factory); } config.setWriteThrough(ncqualifier.writeThrough()); // determine the cache loader if any Class loaderFactoryClass = ncqualifier.cacheLoaderFactoryClass(); if (!"Object".equals(loaderFactoryClass.getSimpleName())) { Factory factory = FactoryBuilder.factoryOf(loaderFactoryClass); config.setCacheLoaderFactory(factory); } config.setReadThrough(ncqualifier.readThrough()); config.setManagementEnabled(ncqualifier.managementEnabled()); config.setStatisticsEnabled(ncqualifier.statisticsEnabled()); result = manager.createCache(cacheName, config); } } else { // configure a "raw" cache Bean<?> bean = ip.getBean(); if (bean != null) { Class<?> beanClass = bean.getBeanClass(); CacheDefaults defaults = beanClass.getAnnotation(CacheDefaults.class); if (defaults != null) { String cacheNameFromAnnotation = defaults.cacheName(); if (!"".equals(cacheNameFromAnnotation)) { cacheName = cacheNameFromAnnotation; } } } result = manager.getCache(cacheName); if (result == null) { MutableConfiguration<K, V> config = new MutableConfiguration<>(); config.setManagementEnabled(true); config.setStatisticsEnabled(true); result = manager.createCache(cacheName, config); } } return result; } }