Rev | Line | |
---|
[235] | 1 | package de.ugoe.cs.eventbench.commands;
|
---|
| 2 |
|
---|
| 3 | import java.security.InvalidParameterException;
|
---|
| 4 | import java.util.List;
|
---|
| 5 |
|
---|
[240] | 6 | import de.ugoe.cs.eventbench.CommandHelpers;
|
---|
[235] | 7 | import de.ugoe.cs.eventbench.data.GlobalDataContainer;
|
---|
| 8 | import de.ugoe.cs.util.console.Command;
|
---|
| 9 | import de.ugoe.cs.util.console.Console;
|
---|
| 10 |
|
---|
| 11 | /**
|
---|
| 12 | * <p>
|
---|
| 13 | * Command to show the time elapsed since a timer has been started.
|
---|
| 14 | * </p>
|
---|
| 15 | *
|
---|
| 16 | * @author Steffen Herbold
|
---|
| 17 | * @version 1.0
|
---|
| 18 | */
|
---|
| 19 | public class CMDshowTimer implements Command {
|
---|
| 20 |
|
---|
| 21 | /*
|
---|
| 22 | * (non-Javadoc)
|
---|
| 23 | *
|
---|
| 24 | * @see de.ugoe.cs.util.console.Command#run(java.util.List)
|
---|
| 25 | */
|
---|
| 26 | @Override
|
---|
| 27 | public void run(List<Object> parameters) {
|
---|
| 28 | String timerName;
|
---|
| 29 | try {
|
---|
| 30 | timerName = (String) parameters.get(0);
|
---|
| 31 | } catch (Exception e) {
|
---|
| 32 | throw new InvalidParameterException();
|
---|
| 33 | }
|
---|
| 34 |
|
---|
[284] | 35 | Object dataObject = GlobalDataContainer.getInstance().getData(timerName);
|
---|
[235] | 36 | if (dataObject == null) {
|
---|
[240] | 37 | CommandHelpers.objectNotFoundMessage(timerName);
|
---|
[235] | 38 | return;
|
---|
| 39 | }
|
---|
| 40 | if (!(dataObject instanceof Long)) {
|
---|
[240] | 41 | CommandHelpers.objectNotType(timerName, "Long");
|
---|
[235] | 42 | return;
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | long startTime = (Long) dataObject;
|
---|
| 46 | long currentTime = System.currentTimeMillis();
|
---|
[242] | 47 | Console.traceln("" + (currentTime - startTime) + " milliseconds");
|
---|
[235] | 48 | }
|
---|
| 49 |
|
---|
| 50 | /*
|
---|
| 51 | * (non-Javadoc)
|
---|
| 52 | *
|
---|
| 53 | * @see de.ugoe.cs.util.console.Command#help()
|
---|
| 54 | */
|
---|
| 55 | @Override
|
---|
| 56 | public void help() {
|
---|
| 57 | Console.println("Usage: showTimer <timerName>");
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.