org.lable.oss.dynamicconfig.di.ConfigurationProvider Maven / Gradle / Ivy
/*
* Copyright (C) 2015 Lable ([email protected])
*
* 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.
*/
package org.lable.oss.dynamicconfig.di;
import com.google.inject.Inject;
import org.apache.commons.configuration.Configuration;
import org.apache.commons.configuration.HierarchicalConfiguration;
import org.lable.oss.dynamicconfig.core.ConfigurationException;
import org.lable.oss.dynamicconfig.core.ConfigurationManager;
import org.lable.oss.dynamicconfig.core.InitializedConfiguration;
import org.lable.oss.dynamicconfig.core.spi.HierarchicalConfigurationDeserializer;
import javax.inject.Provider;
import javax.inject.Singleton;
/**
* Provides a singleton, thread-safe configuration instance by invoking {@link
* ConfigurationManager#configureFromProperties(HierarchicalConfiguration,
* HierarchicalConfigurationDeserializer)}. It will attempt to load a configuration resource based on the system
* properties that configure it.
*
* A default configuration can be specified by binding {@link ConfigurationDefaults} to an instance of
* {@link HierarchicalConfiguration}.
*/
@Singleton
public class ConfigurationProvider implements Provider {
final HierarchicalConfigurationDeserializer deserializer;
HierarchicalConfiguration defaults;
@Inject
ConfigurationProvider(HierarchicalConfigurationDeserializer deserializer) {
this.deserializer = deserializer;
}
@Inject(optional = true)
public void setDefaults(@ConfigurationDefaults HierarchicalConfiguration defaults) {
this.defaults = defaults;
}
@Override
public Configuration get() {
Configuration result;
try {
InitializedConfiguration ic = ConfigurationManager.configureFromProperties(defaults, deserializer);
result = ic.getConfiguration();
} catch (ConfigurationException e) {
// Treat a failure to bootstrap the configuration as fatal.
throw new RuntimeException(e);
}
return result;
}
}