|
Last change
on this file since 329 was
284,
checked in by sherbold, 14 years ago
|
|
|
-
Property svn:mime-type set to
text/plain
|
|
File size:
1.4 KB
|
| Line | |
|---|
| 1 | package de.ugoe.cs.eventbench.commands;
|
|---|
| 2 |
|
|---|
| 3 | import java.security.InvalidParameterException;
|
|---|
| 4 | import java.util.List;
|
|---|
| 5 |
|
|---|
| 6 | import de.ugoe.cs.eventbench.CommandHelpers;
|
|---|
| 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 |
|
|---|
| 35 | Object dataObject = GlobalDataContainer.getInstance().getData(timerName);
|
|---|
| 36 | if (dataObject == null) {
|
|---|
| 37 | CommandHelpers.objectNotFoundMessage(timerName);
|
|---|
| 38 | return;
|
|---|
| 39 | }
|
|---|
| 40 | if (!(dataObject instanceof Long)) {
|
|---|
| 41 | CommandHelpers.objectNotType(timerName, "Long");
|
|---|
| 42 | return;
|
|---|
| 43 | }
|
|---|
| 44 |
|
|---|
| 45 | long startTime = (Long) dataObject;
|
|---|
| 46 | long currentTime = System.currentTimeMillis();
|
|---|
| 47 | Console.traceln("" + (currentTime - startTime) + " milliseconds");
|
|---|
| 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.