blob: b3e2795288ba1461443fc7d1e1967af6dbfed95c [file] [log] [blame]
/*
* 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.tamaya.jsr382;
import org.apache.tamaya.spi.PropertySource;
import org.apache.tamaya.spi.PropertySourceProvider;
import org.apache.tamaya.spi.PropertyValue;
import javax.config.spi.ConfigSource;
import javax.config.spi.ConfigSourceProvider;
import java.util.*;
/**
* JavaConfig {@link javax.config.spi.ConfigSource} implementation that wraps a {@link PropertySource} instance.
*/
public class JavaConfigSourceProvider implements ConfigSourceProvider {
private PropertySourceProvider delegate;
public JavaConfigSourceProvider(PropertySourceProvider propertySourceProvider) {
this.delegate = Objects.requireNonNull(propertySourceProvider);
}
public PropertySourceProvider getPropertySourceProvider() {
return this.delegate;
}
private Map<String, String> toMap(Map<String, PropertyValue> properties) {
Map<String, String> valueMap = new HashMap<>(properties.size());
for (Map.Entry<String, PropertyValue> en : properties.entrySet()) {
if (en.getValue().getValue() != null) {
valueMap.put(en.getKey(), en.getValue().getValue());
}
}
return valueMap;
}
@Override
public Iterable<ConfigSource> getConfigSources(ClassLoader forClassLoader) {
if (delegate instanceof TamayaPropertySourceProviderAdapter) {
return ((TamayaPropertySourceProviderAdapter) delegate).getConfigSourceProvider()
.getConfigSources(forClassLoader);
} else {
return JavaConfigAdapterFactory.toConfigSources(delegate.getPropertySources());
}
}
@Override
public String toString() {
return "JavaConfigSourceProvider{" +
"delegate=" + delegate +
'}';
}
}