io.trino.benchto.driver.utils.PropertiesUtils Maven / Gradle / Ivy
/*
* 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 io.trino.benchto.driver.utils;
import com.google.common.base.Splitter;
import com.google.common.collect.ImmutableList;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.FatalBeanException;
import org.springframework.boot.bind.PropertiesConfigurationFactory;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.validation.BindException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.Optional;
import static com.google.common.base.Strings.isNullOrEmpty;
import static java.util.Collections.emptyList;
import static java.util.stream.Collectors.toList;
public final class PropertiesUtils
{
public static T resolveEnvironmentProperties(ConfigurableEnvironment environment, Class clazz)
{
return resolveEnvironmentProperties(environment, clazz, "");
}
public static T resolveEnvironmentProperties(ConfigurableEnvironment environment, Class clazz, String prefix)
{
try {
T properties = BeanUtils.instantiate(clazz);
PropertiesConfigurationFactory factory = new PropertiesConfigurationFactory(properties);
factory.setTargetName(prefix);
factory.setPropertySources(environment.getPropertySources());
factory.setConversionService(environment.getConversionService());
factory.bindPropertiesToTarget();
return properties;
}
catch (BindException ex) {
throw new FatalBeanException("Could not bind " + clazz + " properties", ex);
}
}
public static List extractPaths(String paths)
{
return splitProperty(paths).map(dirs -> dirs.stream()
.map(Paths::get)
.collect(toList()))
.orElse(emptyList());
}
public static Optional> splitProperty(String value)
{
if (isNullOrEmpty(value)) {
return Optional.empty();
}
Iterable values = Splitter.on(",").trimResults().split(value);
return Optional.of(ImmutableList.copyOf(values));
}
private PropertiesUtils() {}
}