Last change
on this file since 236 was
235,
checked in by sherbold, 13 years ago
|
- added commands startTimer, showTimer for measuring time of experiments
|
-
Property svn:mime-type set to
text/plain
|
File size:
1.1 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.data.GlobalDataContainer;
|
---|
7 | import de.ugoe.cs.util.console.Command;
|
---|
8 | import de.ugoe.cs.util.console.Console;
|
---|
9 |
|
---|
10 | /**
|
---|
11 | * <p>
|
---|
12 | * Command to start a time.
|
---|
13 | * </p>
|
---|
14 | *
|
---|
15 | * @author Steffen Herbold
|
---|
16 | * @version 1.0
|
---|
17 | */
|
---|
18 | public class CMDstartTimer implements Command {
|
---|
19 |
|
---|
20 | /*
|
---|
21 | * (non-Javadoc)
|
---|
22 | *
|
---|
23 | * @see de.ugoe.cs.util.console.Command#run(java.util.List)
|
---|
24 | */
|
---|
25 | @Override
|
---|
26 | public void run(List<Object> parameters) {
|
---|
27 | String timerName;
|
---|
28 | try {
|
---|
29 | timerName = (String) parameters.get(0);
|
---|
30 | } catch (Exception e) {
|
---|
31 | throw new InvalidParameterException();
|
---|
32 | }
|
---|
33 | Long time = System.currentTimeMillis();
|
---|
34 | if (GlobalDataContainer.getInstance().addData(timerName, time)) {
|
---|
35 | Console.traceln("Old data \"" + timerName + "\" overwritten");
|
---|
36 | }
|
---|
37 | }
|
---|
38 |
|
---|
39 | /*
|
---|
40 | * (non-Javadoc)
|
---|
41 | *
|
---|
42 | * @see de.ugoe.cs.util.console.Command#help()
|
---|
43 | */
|
---|
44 | @Override
|
---|
45 | public void help() {
|
---|
46 | Console.println("Usage: startTimer <timerName>");
|
---|
47 | }
|
---|
48 |
|
---|
49 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.