org.finos.tracdap.common.config.ConfigHelpers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracdap-lib-common Show documentation
Show all versions of tracdap-lib-common Show documentation
TRAC D.A.P. common library, interfaces and utilities used across all TRAC components
/*
* Copyright 2023 Accenture Global Solutions Limited
*
* 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.finos.tracdap.common.config;
import org.finos.tracdap.common.exception.EStartup;
import java.util.Properties;
public class ConfigHelpers {
private static final String BOOLEAN_TRUE = Boolean.TRUE.toString();
private static final String BOOLEAN_FALSE = Boolean.FALSE.toString();
public static String readString(String context, Properties properties, String key) {
return readString(context, properties, key, true);
}
public static String readString(String context, Properties properties, String key, boolean required) {
var rawValue = properties.getProperty(key);
if (rawValue == null || rawValue.isEmpty()) {
if (required)
throw new EStartup(String.format("Missing required property [%s] for [%s]", key, context));
else
return null;
}
return rawValue.trim();
}
public static boolean optionalBoolean(String context, Properties properties, String key, boolean defaultValue) {
var rawValue = properties.getProperty(key);
if (rawValue == null || rawValue.trim().isEmpty())
return defaultValue;
return checkBoolean(context, key, rawValue);
}
private static boolean checkBoolean(String context, String key, String rawValue) {
if (rawValue == null || rawValue.trim().equals("")) {
var message = String.format("Missing required property [%s] for [%s]", key, context);
throw new EStartup(message);
}
if (rawValue.equalsIgnoreCase(BOOLEAN_TRUE))
return true;
if (rawValue.equalsIgnoreCase(BOOLEAN_FALSE))
return false;
var message = String.format("Invalid boolean value for property [%s] in [%s]", key, context);
throw new EStartup(message);
}
}