sigar/bindings/java/src/org/hyperic/sigar/cmd/Time.java
2006-06-27 12:44:52 +00:00

64 lines
1.4 KiB
Java

package org.hyperic.sigar.cmd;
import org.hyperic.sigar.SigarException;
import org.hyperic.sigar.CpuTimer;
public class Time extends SigarCommandBase {
public Time(Shell shell) {
super(shell);
}
public Time() {
super();
}
protected boolean validateArgs(String[] args) {
return args.length >= 1;
}
public String getSyntaxArgs() {
return "[command] [...]";
}
public String getUsageShort() {
return "Time command";
}
public void output(String[] args) throws SigarException {
boolean isInteractive = this.shell.isInteractive();
//turn off paging.
this.shell.setInteractive(false);
CpuTimer cpu = new CpuTimer(this.sigar);
int num;
if (Character.isDigit(args[0].charAt(0))) {
num = Integer.parseInt(args[0]);
String[] xargs = new String[args.length-1];
System.arraycopy(args, 1, xargs, 0, xargs.length);
args = xargs;
}
else {
num = 1;
}
cpu.start();
try {
for (int i=0; i<num; i++) {
this.shell.handleCommand("time " + args[0], args);
}
} finally {
this.shell.setInteractive(isInteractive);
}
cpu.stop();
cpu.list(this.out);
}
public static void main(String[] args) throws Exception {
new Time().processCommand(args);
}
}