net.sf.ehcache.util.PropertyUtil Maven / Gradle / Ivy
/**
* Copyright Terracotta, Inc.
*
* 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 net.sf.ehcache.util;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.util.Map;
import java.util.Properties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Property utilities.
* @author Greg Luck
* @version $Id: PropertyUtil.java 5631 2012-05-10 08:31:33Z teck $
*/
public final class PropertyUtil {
private static final Logger LOG = LoggerFactory.getLogger(PropertyUtil.class.getName());
private static final String DEFAULT_PROPERTY_SEPARATOR = ",";
/**
* Utility class therefore no constructor.
*/
private PropertyUtil() {
//noop
}
/**
* @return null if their is no property for the key, or their are no properties
*/
public static String extractAndLogProperty(String name, Properties properties) {
if (properties == null || properties.size() == 0) {
return null;
}
String foundValue = (String) properties.get(name);
if (foundValue != null) {
foundValue = foundValue.trim();
}
if (LOG.isDebugEnabled()) {
LOG.debug(new StringBuilder().append("Value found for ").append(name).append(": ").append(foundValue).toString());
}
return foundValue;
}
/**
* @return null if their is no property for the key, or their are no properties
*/
public static String extractAndLogProperty(String name, Map properties) {
if (properties == null || properties.size() == 0) {
return null;
}
String foundValue = (String) properties.get(name);
if (foundValue != null) {
foundValue = foundValue.trim();
}
if (LOG.isDebugEnabled()) {
LOG.debug(new StringBuilder().append("Value found for ").append(name).append(": ").append(foundValue).toString());
}
return foundValue;
}
/**
* Parse properties supplied as a comma separated list into a Properties
object
* @param propertiesString a comma separated list such as "propertyA=s, propertyB=t"
* @return a newly constructed properties object
*/
public static Properties parseProperties(String propertiesString, String propertySeparator) {
String propertySeparatorLocal = propertySeparator;
if (propertiesString == null) {
LOG.debug("propertiesString is null.");
return null;
}
if (propertySeparator == null) {
propertySeparatorLocal = DEFAULT_PROPERTY_SEPARATOR;
}
Properties properties = new Properties();
String propertyLines = propertiesString.trim();
propertyLines = propertyLines.replaceAll(propertySeparatorLocal, "\n");
try {
properties.load(new ByteArrayInputStream(propertyLines.getBytes()));
} catch (IOException e) {
LOG.error("Cannot load properties from " + propertiesString);
}
return properties;
}
/**
* Null safe, parser of boolean from a String
* @param value
* @return true if non null and case insensitively matches true
*/
public static boolean parseBoolean(String value) {
return ((value != null) && value.equalsIgnoreCase("true"));
}
}