All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.killbill.billing.util.glue.Redis107CacheManagerProvider Maven / Gradle / Ivy

There is a newer version: 0.24.11
Show newest version
/*
 * Copyright 2014-2018 Groupon, Inc
 * Copyright 2014-2018 The Billing Project, LLC
 *
 * The Billing Project licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package org.killbill.billing.util.glue;

import java.util.Set;

import javax.cache.CacheManager;
import javax.cache.Caching;
import javax.cache.spi.CachingProvider;
import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Provider;

import org.killbill.billing.util.cache.BaseCacheLoader;
import org.killbill.commons.metrics.api.MetricRegistry;
import org.redisson.api.RedissonClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;


import static org.killbill.billing.util.glue.CacheModule.REDIS_CACHE_CLIENT;

public class Redis107CacheManagerProvider extends RedisCacheProviderBase implements Provider {

    private static final Logger logger = LoggerFactory.getLogger(Redis107CacheManagerProvider.class);

    private final Set cacheLoaders;

    @Inject
    public Redis107CacheManagerProvider(final MetricRegistry metricRegistry,
                                        @Named(REDIS_CACHE_CLIENT) final RedissonClient redissonClient,
                                        final Set cacheLoaders) {
        super(metricRegistry, redissonClient);
        this.cacheLoaders = cacheLoaders;
    }

    @Override
    public CacheManager get() {
        // JSR-107 registration, required for JMX integration
        final CachingProvider cachingProvider = Caching.getCachingProvider("org.redisson.jcache.JCachingProvider");

        final CacheManager cacheManager = cachingProvider.getCacheManager();

        for (final BaseCacheLoader cacheLoader : cacheLoaders) {
            createCache(cacheManager,
                        cacheLoader.getCacheType().getCacheName(),
                        cacheLoader.getCacheType().getKeyType(),
                        cacheLoader.getCacheType().getValueType());
        }

        return cacheManager;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy