blob: 4785d38abe84606968b9cbdebaaf4c7dc2182872 [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.apex.common.util;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.hadoop.classification.InterfaceStability.Evolving;
@Evolving
/**
* @since 3.7.0
*/
public class PropertiesHelper
{
/**
* Reading system property as long value.
* @param propertyName Name of the system property
* @param defaultValue Default value to return in case of an error, out of range etc.
* @param minValue minimum valid value
* @param maxValue maximum valid value
* @return returns the value if it is between min and max value(inclusive), otherwise default value is returned.
*/
public static long getLong(String propertyName, long defaultValue, long minValue, long maxValue)
{
String property = System.getProperty(propertyName);
long result = defaultValue;
if (property != null) {
try {
long value = Long.decode(property);
if (value < minValue || value > maxValue) {
logger.warn("Property {} is outside the range [{},{}], setting to default {}", propertyName, minValue, maxValue, defaultValue);
} else {
result = value;
}
} catch (Exception ex) {
logger.warn("Can't convert property {} value {} to a long, using default {}", propertyName, property, defaultValue, ex);
}
}
logger.debug("System property {}'s value is {}", propertyName, result);
return result;
}
private static final Logger logger = LoggerFactory.getLogger(PropertiesHelper.class);
}