Methods Summary |
---|
private void | appendChar(char c, java.lang.StringBuffer propName, java.lang.StringBuffer result)
if (propName == null) {
result.append(c);
} else {
propName.append(c);
}
|
protected void | fatalError(java.lang.String message, java.lang.String path)You would like to think that we could just log and continue (without throwing
a RuntimeException; however, unfortunately anything logged by the logger in the
launcher (PELaucnhFilter) does not appear in server.log, so for now, this
will be considered a fatal error.
getLogger().log(Level.SEVERE, message, new Object[] {path});
StringManagerBase sm = StringManagerBase.getStringManager(getLogger().getResourceBundleName());
throw new RuntimeException(sm.getString(message, path));
|
public static java.lang.String | getAlias(java.lang.String propName)check if a given property name matches AS alias pattern ${ALIAS=aliasname}.
if so, return the aliasname, otherwise return null.
String aliasName=null;
String starter = "${" + ALIAS_TOKEN + "="; //no space is allowed in starter
String ender = "}";
propName = propName.trim();
if (propName.startsWith(starter) && propName.endsWith(ender) ) {
propName = propName.substring(starter.length() );
int lastIdx = propName.length() - 1;
if (lastIdx > 1) {
propName = propName.substring(0,lastIdx);
if (propName!=null)
aliasName = propName.trim();
}
}
return aliasName;
|
private static synchronized com.sun.enterprise.util.RelativePathResolver | getInstance()
if (_instance == null) {
_instance = new RelativePathResolver();
}
return _instance;
|
protected static synchronized java.util.logging.Logger | getLogger()
if (_logger == null) {
_logger = LogDomains.getLogger(LogDomains.UTIL_LOGGER);
}
return _logger;
|
protected java.lang.String | getPropertyValue(java.lang.String propName, boolean bIncludingEnvironmentVariables)Resolves the given property by returning its value as either
1) a system property of the form ${system-property-name}
2) a password alias property of the form ${ALIAS=aliasname}. Here the alias name
is mapped to a password.
if(!bIncludingEnvironmentVariables)
return null;
// Try finding the property as a system property
String result = System.getProperty(propName);
if (result == null) {
//If not found as a system property, the see if it is a password alias.
int idx1 = propName.indexOf(ALIAS_TOKEN);
if (idx1 >= 0) {
int idx2 = propName.indexOf(ALIAS_DELIMITER, ALIAS_TOKEN.length());
if (idx2 > 0) {
String aliasName = propName.substring(idx2 + 1).trim();
//System.err.println("aliasName " + aliasName);
try {
if (pwdAdapter==null) {
//The masterPassword in the IdentityManager is available only through
//a running DAS, server instance, or node agent.
String masterPassword = IdentityManager.getMasterPassword();
pwdAdapter = new PasswordAdapter(masterPassword.toCharArray());
}
result = pwdAdapter.getPasswordForAlias(aliasName);
//System.err.println("alias password " + result);
} catch (Exception ex) {
getLogger().log(Level.WARNING, "enterprise_util.path_resolver_alias_exception",
new Object[] {ex, aliasName, propName});
getLogger().log(Level.FINE, "enterprise_util.path_resolver_alias_exception",
ex);
}
}
}
}
return result;
|
public static java.lang.String | getRealPasswordFromAlias(java.lang.String at)Returns the actual password from the domain-wide safe password store,
if the given password is aliased. An aliased String is of the form
${ALIAS=aliasname} where the actual password is stored in given alias name.
Following are the returned values:
- Returns a null if given String is null.
- Retuns the given String if it is not in the alias form.
- Returns the real password from store if the given String is
of the alias form and the alias has been created by the
administrator. If the alias is not defined in the store,
an IllegalArgumentException is thrown with appropriate
message.
try {
if (at == null || RelativePathResolver.getAlias(at) == null) {
return ( at );
}
} catch (final Exception e) { //underlying code is unsafe!
return (at);
}
final String an = RelativePathResolver.getAlias(at);
final String sp = IdentityManager.getMasterPassword();
final PasswordAdapter pa = new PasswordAdapter(sp.toCharArray()); // use default password store
final boolean exists = pa.aliasExists(an);
if (!exists) {
final StringManager lsm = StringManager.getManager(RelativePathResolver.class);
final String msg = lsm.getString("no_such_alias", an, at);
throw new IllegalArgumentException(msg);
}
final String real = pa.getPasswordForAlias(an);
return ( real );
|
public boolean | isResolvable(java.lang.String path, boolean bIncludingEnvironmentVariables)checks if string does not consist of unresolvable values
String resolved = resolve(path, bIncludingEnvironmentVariables);
return (resolved.indexOf("${")<0);
|
public static void | main(java.lang.String[] args)
if (args[0].equalsIgnoreCase("unresolve")) {
for (int i = 2; i < args.length; i++) {
String result = unresolvePath(args[i], new String[] {args[1]});
System.out.println(args[i] + " " + result + " " + resolvePath(result));
}
} else {
for (int i = 0; i < args.length; i++) {
System.out.println(args[i] + " " + resolvePath(args[i]));
}
}
|
public java.lang.String | resolve(java.lang.String path)
return resolve(path, true);
|
public java.lang.String | resolve(java.lang.String path, boolean bIncludingEnvironmentVariables)Replace any system properties of the form ${property} in the given path. Note
any mismatched delimiters (e.g. ${property/${property2} is considered a fatal
error and for now causes a fatal RuntimeException to be thrown.
if (path == null) {
return path;
}
//Now parse through the given string one character at a time looking for the
//starting delimiter "${". Occurrences of "$" or "{" are valid characters;
//however once an occurrence of "${" is found, then "}" becomes a closing
//delimiter.
int size = path.length();
StringBuffer result = new StringBuffer(size);
StringBuffer propName = null;
String propVal;
//keep track of whether we have found at least one occurrence of "${". The
//significance is that "}" is parsed as a terminating character.
boolean foundOne = false;
char c;
for (int i = 0; i < size; i++) {
c = path.charAt(i);
switch(c) {
case '$": {
if (i < size - 1 && path.charAt(i + 1) == '{") {
//found "${"
foundOne = true;
i++;
if (propName == null) { // start parsing a new property Name
propName = new StringBuffer();
break;
} else { // previous property not terminated missing }
fatalError(
"enterprise_util.path_resolver_missing_closing_delim",
path);
return path; //can't happen since fatalError throws RuntimeException
}
} else {
appendChar(c, propName, result);
}
break;
} case '}": {
if (foundOne) { // we have found at least one occurrence of ${
if (propName != null) {
propVal = getPropertyValue(propName.toString(), bIncludingEnvironmentVariables);
if (propVal != null) {
//Note: when elaborating a system property, we always convert \\ to / to ensure that
//paths created on windows are compatible with unix filesystems.
result.append(propVal.replace(File.separatorChar, '/"));
} else {
//NOTE: We cannot ensure that system properties will always
//be defined and so this is an expected case. Consider
//a property named ${http-listener-port}. This property
//may be defined at the server or config level and set only
//when that server instance starts up. The property may not
//be set in the DAS.
result.append("${" + propName + "}");
}
propName = null;
} else { //no matching starting delimiter found ${
fatalError(
"enterprise_util.path_resolver_missing_starting_delim",
path);
return path; //can't happen since fatalError throws RuntimeException
}
} else {
appendChar(c, propName, result);
}
break;
} default : {
appendChar(c, propName, result);
break;
}
}
}
if (propName != null) { // missing final }
fatalError(
"enterprise_util.path_resolver_missing_closing_delim",
path);
return path; //can't happen
}
return result.toString();
|
public static java.lang.String | resolvePath(java.lang.String path)
return getInstance().resolve(path);
|
public java.lang.String | unresolve(java.lang.String path, java.lang.String[] propNames)unresolvePath will replace the first occurrence of the value of the given
system properties with ${propName} in the given path
if (path != null) {
int startIdx;
String propVal;
//All paths returned will contain / as the separator. The
//assumption is that the File class can convert this to an OS
//dependent path separator (e.g. \\ on windows).
path = path.replace(File.separatorChar, '/");
for (int i = 0; i < propNames.length; i++) {
propVal = getPropertyValue(propNames[i], true);
if (propVal != null) {
//All paths returned will contain / as the separator. This will allow
//all comparison to be done using / as the separator
propVal = propVal.replace(File.separatorChar, '/");
startIdx = path.indexOf(propVal);
if (startIdx >= 0) {
path = path.substring(0, startIdx) +
"${" + propNames[i] + "}" +
path.substring(startIdx + propVal.length());
}
} else {
getLogger().log(Level.SEVERE,
"enterprise_util.path_unresolver_missing_property",
new Object[] {propNames[i], path});
}
}
}
return path;
|
public static java.lang.String | unresolvePath(java.lang.String path, java.lang.String[] propNames)
return getInstance().unresolve(path, propNames);
|