/*
* This file is part of the Jikes RVM project (http://jikesrvm.org).
*
* This file is licensed to You under the Common Public License (CPL);
* You may not use this file except in compliance with the License. You
* may obtain a copy of the License at
*
* http://www.opensource.org/licenses/cpl1.0.php
*
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership.
*/
package org.mmtk.utility.options;
import org.mmtk.utility.Log;
import org.vmmagic.pragma.*;
/**
* Base class for boolean options.
*/
public class BooleanOption extends Option {
// values
protected boolean defaultValue;
protected boolean value;
/**
* Create a new boolean option.
*
* @param name The space separated name for the option.
* @param desc The purpose of the option
* @param defaultValue The default value of the option.
*/
protected BooleanOption(String name, String desc, boolean defaultValue) {
super(BOOLEAN_OPTION, name, desc);
this.value = this.defaultValue = defaultValue;
}
/**
* Read the current value of the option.
*
* @return The option value.
*/
@Uninterruptible
public boolean getValue() {
return this.value;
}
/**
* Read the default value of the option.
*
* @return The default value.
*/
@Uninterruptible
public boolean getDefaultValue() {
return this.defaultValue;
}
/**
* Update the value of the option, echoing the change if the echoOptions
* option is set. This method also calls the validate method to allow
* subclasses to perform any required validation.
*
* @param value The new value for the option.
*/
public void setValue(boolean value) {
boolean oldValue = this.value;
this.value = value;
if (Options.echoOptions.getValue()) {
Log.write("Option '");
Log.write(this.getKey());
Log.write("' set ");
Log.write(oldValue);
Log.write(" -> ");
Log.writeln(value);
}
validate();
}
/**
* Log the option value in raw format - delegate upwards
* for fancier formatting.
*
* @param format Output format (see Option.java for possible values)
*/
@Override
void log(int format) {
switch (format) {
case RAW:
Log.write(value);
break;
default:
super.log(format);
}
}
}