/*
* 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 com.sun.jini.action;
import com.sun.jini.logging.Levels;
import com.sun.jini.logging.LogUtil;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.logging.Logger;
import net.jini.security.Security;
/**
* A convenience class for retrieving the <code>int</code> value of a
* system property as a privileged action.
*
* <p>An instance of this class can be used as the argument of {@link
* AccessController#doPrivileged(PrivilegedAction)
* AccessController.doPrivileged} or {@link
* Security#doPrivileged(PrivilegedAction) Security.doPrivileged}.
*
* <p>The following code retrieves the <code>int</code> value of the
* system property named <code>"prop"</code> as a privileged action.
* Since it does not pass a default value to be used in case the
* property <code>"prop"</code> is not defined, it has to check the
* result for <code>null</code>:
*
* <pre>
* Integer tmp = (Integer)
* Security.doPrivileged(new GetIntegerAction("prop"));
* int i;
* if (tmp != null) {
* i = tmp.intValue();
* }
* </pre>
*
* <p>The following code retrieves the <code>int</code> value of the
* system property named <code>"prop"</code> as a privileged action,
* and also passes a default value to be used in case the property
* <code>"prop"</code> is not defined:
*
* <pre>
* int i = ((Integer) Security.doPrivileged(
* new GetIntegerAction("prop", 3))).intValue();
* </pre>
*
* <p>If the protection domain of the immediate caller of
* <code>doPrivileged</code> or the protection domain of this class
* does not imply the permissions necessary for the operation, the
* behavior is as if the system property is not defined.
*
* @author Sun Microsystems, Inc.
*
* @see PrivilegedAction
* @see AccessController
* @see Security
* @since 2.0
**/
public class GetIntegerAction implements PrivilegedAction {
private static final Logger logger =
Logger.getLogger("com.sun.jini.action.GetIntegerAction");
private final String theProp;
private final int defaultVal;
private final boolean defaultSet;
/**
* Constructor that takes the name of the system property whose
* <code>int</code> value needs to be determined.
*
* @param theProp the name of the system property
**/
public GetIntegerAction(String theProp) {
this.theProp = theProp;
defaultVal = 0;
defaultSet = false;
}
/**
* Constructor that takes the name of the system property and the
* default value of that property.
*
* @param theProp the name of the system property
*
* @param defaultVal the default value
**/
public GetIntegerAction(String theProp, int defaultVal) {
this.theProp = theProp;
this.defaultVal = defaultVal;
defaultSet = true;
}
/**
* Determines the <code>int</code> value of the system property
* whose name was specified in the constructor. The value is
* returned in an <code>Integer</code> object.
*
* <p>If the system property is defined to be a value that can be
* parsed successfully by {@link Integer#decode Integer.decode},
* then this method returns an <code>Integer</code> with the
* parsed value. Otherwise, if a default value was supplied to
* this object's constructor, then this method returns an
* <code>Integer</code> with that default value, or else
* <code>null</code> is returned.
*
* @return an <code>Integer</code> representing the value of the
* system property or the default value, or <code>null</code>
**/
public Object run() {
try {
Integer value = Integer.getInteger(theProp);
if (value != null) {
return value;
}
} catch (SecurityException e) {
if (logger.isLoggable(Levels.HANDLED)) {
LogUtil.logThrow(logger, Levels.HANDLED,
GetIntegerAction.class, "run",
"security exception reading \"{0}\", returning {1}",
new Object[] { theProp, defaultValue() }, e);
}
}
return defaultValue();
}
private Integer defaultValue() {
return defaultSet ? new Integer(defaultVal) : null;
}
}