Package org.apache.deltaspike.core.spi.config

Source Code of org.apache.deltaspike.core.spi.config.BaseConfigPropertyProducer

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.deltaspike.core.spi.config;

import javax.enterprise.inject.spi.InjectionPoint;

import java.lang.annotation.Annotation;

import org.apache.deltaspike.core.api.config.ConfigResolver;
import org.apache.deltaspike.core.api.config.annotation.ConfigProperty;
import org.apache.deltaspike.core.util.BeanUtils;

/**
* <p>This contains the fundamental parts for implementing own
* ConfigProperty producers.</p>
*
* <h2>Providing own Converters and Type injection</h2>
* <p>DeltaSpikes own configuration system only natively only supports Strings.
* If you like to apply own Converters or extract other types from those Strings,
* you can simply do this by providing an own Qualifier and a simple
* CDI producer method for it.</p>
*
* <p>First we write a simple Qualifier:
* <pre>
* &#064;Target({ PARAMETER, FIELD, METHOD, CONSTRUCTOR, ANNOTATION_TYPE })
* &#064;Retention(RUNTIME)
* &#064;ConfigProperty(named="unused") // the name
* &#064;Qualifier
* public @interface NumberConfig
* {
*     &#064;Nonbinding
*     boolean name(); // the name of the configuration-key to lookup the value
*
*     &#064;Nonbinding
*     String defaultValue() default ConfigProperty.NULL;
*
*     &#064;Nonbinding
*     boolean pattern(); // the pattern for NumberFormatter
* }
* </pre>
* </p>
*
* <p>The producer method implementation is pretty easy as well:
* <pre>
* &#064;ApplicationScoped
* public class NumberConfigProducer extends BaseConfigPropertyProducer
* {
*     &#064;Produces
*     &#064;Dependent
*     &#064;NumberConfig
*     public Float produceNumberConfig(InjectionPoint injectionPoint)
*     {
*         // resolve the annotation
*         NumberConfig metaData = getAnnotation(injectionPoint, NumberConfig.class);

*         // get the configured value from the underlying configuration system
*         String configuredValue = getPropertyValue(metaData.name(), metaData.defaultValue());
*         if (configuredValue == null)
*         {
*             return null;
*         }
*
*         // format according to the given pattern
*         DecimalFormat df = new DecimalFormat(metaData.pattern(), new DecimalFormatSymbols(Locale.US));
*         return df.parse(configuredValue).floatValue(); *
*     }
* }
* </pre>
* </p>

*/
public abstract class BaseConfigPropertyProducer
{
    /**
     * <p>Inspects the given InjectionPoint and search for a {@link ConfigProperty}
     * annotation or an Annotation with a {@link ConfigProperty} meta-Annotation.
     * The name and defaultValue information will be used to resolve the
     * configured value.</p>
     *
     * @param injectionPoint current injection point
     * @return the configured value for the given InjectionPoint
     */
    protected String getStringPropertyValue(InjectionPoint injectionPoint)
    {
        ConfigProperty configProperty = getAnnotation(injectionPoint, ConfigProperty.class);

        if (configProperty == null)
        {
            throw new IllegalStateException("producer method called without @ConfigProperty being present!");
        }

        String configuredValue;
        String defaultValue = configProperty.defaultValue();

        configuredValue = getPropertyValue(configProperty.name(), defaultValue);

        return configuredValue;
    }

    /**
     * @param propertyName the name of the property key
     * @param defaultValue the default value to return if no configured property is found or
     *                     {@link ConfigProperty#NULL} if no default value should be returned.
     * @return the configured value or the defaultValue according to the NULL logic.
     */
    protected String getPropertyValue(String propertyName, String defaultValue)
    {
        String configuredValue;
        if (ConfigProperty.NULL.equals(defaultValue))
        {
            // no special defaultValue has been configured
            configuredValue = ConfigResolver.getPropertyValue(propertyName);
        }
        else
        {
            configuredValue = ConfigResolver.getPropertyValue(propertyName, defaultValue);
        }
        return configuredValue;
    }

    /**
     * @param injectionPoint current injection point
     * @param targetType target type
     * @param <T> type
     * @return annotation instance extracted from the injection point which matches the given type
     */
    protected <T extends Annotation> T getAnnotation(InjectionPoint injectionPoint, Class<T> targetType)
    {
        return BeanUtils.extractAnnotation(injectionPoint.getAnnotated(), targetType);
    }
}
TOP

Related Classes of org.apache.deltaspike.core.spi.config.BaseConfigPropertyProducer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.