com.mchange.v2.lang.SystemUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.mchange-commons-java
Show all versions of org.apache.servicemix.bundles.mchange-commons-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.mchange.v2.lang;
import java.util.Collections;
import java.util.Map;
import java.util.regex.*;
// NOTE: Don't ever use com.mchange.v2.log logging in this class, as log initialization makes use of it
/**
* java.lang.System related utils. At present, just some utilities for replacing
* parts of Strings with System properties or environment variables
*/
public final class SystemUtils
{
private final static Pattern REPLACE_ME_REGEX;
private final static Pattern UNESCAPE_ME_REGEX;
static
{
REPLACE_ME_REGEX = Pattern.compile("(? replacements )
{
Matcher m = REPLACE_ME_REGEX.matcher(source);
StringBuffer sb = new StringBuffer();
while (m.find())
{
String replacement = replacements.get( m.group(1) );
if ( replacement != null )
{ m.appendReplacement(sb, replacement); }
}
m.appendTail(sb);
return sb.toString();
}
private static Map propsMap()
{ return Collections.checkedMap( (Map) System.getProperties(), String.class, String.class ); }
/**
* Use $${....} as escapes for ${....}
*/
public static String mapReplace( String source, Map replacements )
{ return _unescape( _mapReplace( source, replacements ) ); }
/**
* Use $${....} as escapes for ${....}
*/
@SuppressWarnings("unchecked")
public static String sysPropsReplace( String source )
{ return mapReplace( source, propsMap() ); }
/**
* Use $${....} as escapes for ${....}
*/
public static String envReplace( String source )
{ return mapReplace( source, System.getenv() ); }
/**
* Use $${....} as escapes for ${....}
*/
public static String sysPropsEnvReplace( String source )
{
String halfway = _mapReplace( source, propsMap() );
return envReplace( halfway );
}
private SystemUtils()
{}
}