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

org.eclipse.microprofile.config.spi.ConfigSource Maven / Gradle / Ivy

/*
 ******************************************************************************
 * Copyright (c) 2009-2018 Contributors to the Eclipse Foundation
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information regarding copyright ownership.
 *
 * 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.
 *
 * Contributors:
 *   2009       - Mark Struberg
 *      Ordinal solution in Apache OpenWebBeans
 *   2011-12-28 - Mark Struberg & Gerhard Petracek
 *      Contributed to Apache DeltaSpike fb0131106481f0b9a8fd
 *   2016-11-14 - Emily Jiang / IBM Corp
 *      Methods renamed, JavaDoc and cleanup
 *
 *******************************************************************************/
package org.eclipse.microprofile.config.spi;

import java.util.Map;
import java.util.Set;

/**
 * 

Implement this interfaces to provide a ConfigSource. * A ConfigSource provides configuration values from a specific place, like JNDI configuration, a properties file, etc. * A ConfigSource is always read-only, any potential updates of the configured values must be handled directly inside each ConfigSource. * *

The default config sources always available by default are:

*
    *
  1. System properties (default ordinal=400)
  2. *
  3. Environment properties (default ordinal=300) *
  4. /META-INF/microprofile-config.properties (ordinal=100)
  5. *
* *

Environment Variables Mapping Rules

*

Some operating systems allow only alphabetic characters or an underscore, _, in environment variables. * Other characters such as ., /, etc may be disallowed. In order to set a value for a config property * that has a name containing such disallowed characters from an environment variable, the following rules are used. * This ConfigSource searches 3 environment variables for a given property name (e.g. {@code "com.ACME.size"}):

*
    *
  1. Exact match (i.e. {@code "com.ACME.size"})
  2. *
  3. Replace each character that is neither alphanumeric nor _ with _ (i.e. {@code "com_ACME_size"})
  4. *
  5. Replace each character that is neither alphanumeric nor _ with _ ; then convert the name to upper case * (i.e. {@code "COM_ACME_SIZE"})
  6. *
*

The first environment variable that is found is returned by this ConfigSource.

* *

Custom ConfigSource will get picked up via the {@link java.util.ServiceLoader} mechanism and and can be registered by * providing a file {@code META-INF/services/org.eclipse.microprofile.config.spi.ConfigSource} * which contains the fully qualified {@code ConfigSource} implementation class name as content. * *

Adding a dynamic amount of custom config sources can be done programmatically via * {@link org.eclipse.microprofile.config.spi.ConfigSourceProvider}. * *

If a ConfigSource implements the {@link AutoCloseable} interface * then the {@link AutoCloseable#close()} method will be called when * the underlying {@link org.eclipse.microprofile.config.Config} is being released. * * @author Mark Struberg * @author Gerhard Petracek * @author Emily Jiang * @author John D. Ament * */ public interface ConfigSource { String CONFIG_ORDINAL = "config_ordinal"; int DEFAULT_ORDINAL = 100; /** * Return the properties in this config source * @return the map containing the properties in this config source */ Map getProperties(); /** * Gets all property names known to this config source, without evaluating the values. * The returned property names may be a subset of the names of the total set of retrievable properties in this config source. * * For backwards compatibility, there is a default implementation that just returns the keys of {@code getProperties()} * slower ConfigSource implementations should replace this with a more performant implementation * * @return the set of property keys that are known to this ConfigSource */ default Set getPropertyNames() { return getProperties().keySet(); } /** * Return the ordinal for this config source. If a property is specified in multiple config sources, the value * in the config source with the highest ordinal takes precedence. * For the config sources with the same ordinal value, the config source names will * be used for sorting according to string sorting criteria. * Note that this property only gets evaluated during ConfigSource discovery. * * The default ordinals for the default config sources:

    *
  1. System properties (ordinal=400)
  2. *
  3. Environment properties (ordinal=300) *

    Some operating systems allow only alphabetic characters or an underscore(_), in environment variables. * Other characters such as ., /, etc may be disallowed. * In order to set a value for a config property that has a name containing such disallowed characters from an environment variable, * the following rules are used. * This ConfigSource searches for potentially 3 environment variables with a given property name (e.g. {@code "com.ACME.size"}):

    *
      *
    1. Exact match (i.e. {@code "com.ACME.size"})
    2. *
    3. Replace the character that is neither alphanumeric nor '_' with '_' (i.e. {@code "com_ACME_size"})
    4. *
    5. Replace the character that is neither alphanumeric nor '_' with '_' and convert to upper case * (i.e. {@code "COM_ACME_SIZE"})
    6. *
    *

    The first environment variable that is found is returned by this ConfigSource.

    *
  4. *
  5. /META-INF/microprofile-config.properties (default ordinal=100)
  6. *
* * * Any ConfigSource part of an application will typically use an ordinal between 0 and 200. * ConfigSource provided by the container or 'environment' typically use an ordinal higher than 200. * A framework which intends have values overwritten by the application will use ordinals between 0 and 100. * The property "config_ordinal" can be specified to override the default value. * * @return the ordinal value */ default int getOrdinal() { String configOrdinal = getValue(CONFIG_ORDINAL); if(configOrdinal != null) { try { return Integer.parseInt(configOrdinal); } catch (NumberFormatException ignored) { } } return DEFAULT_ORDINAL; } /** * Return the value for the specified property in this config source. * @param propertyName the property name * @return the property value */ String getValue(String propertyName); /** * The name of the config might be used for logging or analysis of configured values. * * @return the 'name' of the configuration source, e.g. 'property-file mylocation/myproperty.properties' */ String getName(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy