hu.icellmobilsoft.coffee.module.redis.producer.RedisConfigProducer Maven / Gradle / Ivy
/*-
* #%L
* Coffee
* %%
* Copyright (C) 2020 i-Cell Mobilsoft Zrt.
* %%
* Licensed 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.
* #L%
*/
package hu.icellmobilsoft.coffee.module.redis.producer;
import java.util.Optional;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.enterprise.context.Dependent;
import jakarta.enterprise.inject.Produces;
import jakarta.enterprise.inject.spi.CDI;
import jakarta.enterprise.inject.spi.InjectionPoint;
import hu.icellmobilsoft.coffee.module.redis.annotation.RedisConnection;
import hu.icellmobilsoft.coffee.module.redis.config.ManagedRedisConfig;
import hu.icellmobilsoft.coffee.module.redis.config.RedisConfig;
import hu.icellmobilsoft.coffee.tool.utils.annotation.AnnotationUtil;
/**
* Producer for creating ManagedRedisConfig
*
* @author mark.petrenyi
* @since 1.0.0
*/
@ApplicationScoped
public class RedisConfigProducer {
/**
* Default constructor, constructs a new object.
*/
public RedisConfigProducer() {
super();
}
/**
* Creates {@link ManagedRedisConfig} for the injected config key
*
* @param injectionPoint
* injection metadata
* @return managed Redis config
*/
@Produces
@Dependent
@RedisConnection(configKey = "", poolConfigKey = "")
public ManagedRedisConfig getRedisConfig(InjectionPoint injectionPoint) {
Optional annotation = AnnotationUtil.getAnnotation(injectionPoint, RedisConnection.class);
String configKey = annotation.map(RedisConnection::configKey).orElse(null);
String poolConfigKey = annotation.map(RedisConnection::poolConfigKey).orElse(RedisConfig.POOL_CONFIG_KEY_DEFAULT_VALUE);
ManagedRedisConfig redisConfig = CDI.current().select(ManagedRedisConfig.class).get();
redisConfig.setConfigKey(configKey);
redisConfig.setPoolConfigKey(poolConfigKey);
return redisConfig;
}
}