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.Event;
|
---|
7 | import de.ugoe.cs.eventbench.data.GlobalDataContainer;
|
---|
8 | import de.ugoe.cs.eventbench.models.IStochasticProcess;
|
---|
9 | import de.ugoe.cs.util.console.Command;
|
---|
10 | import de.ugoe.cs.util.console.Console;
|
---|
11 |
|
---|
12 | /**
|
---|
13 | * <p>
|
---|
14 | * Command that prints a randomly generated sessions of events to the console.
|
---|
15 | * </p>
|
---|
16 | *
|
---|
17 | * @author Steffen Herbold
|
---|
18 | * @version 1.0
|
---|
19 | */
|
---|
20 | public class CMDprintRandomSession implements Command {
|
---|
21 |
|
---|
22 | /*
|
---|
23 | * (non-Javadoc)
|
---|
24 | *
|
---|
25 | * @see de.ugoe.cs.util.console.Command#help()
|
---|
26 | */
|
---|
27 | @Override
|
---|
28 | public void help() {
|
---|
29 | Console.println("Usage: printRandomSession <modelName>");
|
---|
30 | }
|
---|
31 |
|
---|
32 | /*
|
---|
33 | * (non-Javadoc)
|
---|
34 | *
|
---|
35 | * @see de.ugoe.cs.util.console.Command#run(java.util.List)
|
---|
36 | */
|
---|
37 | @Override
|
---|
38 | public void run(List<Object> parameters) {
|
---|
39 | String modelname;
|
---|
40 | try {
|
---|
41 | modelname = (String) parameters.get(0);
|
---|
42 | } catch (Exception e) {
|
---|
43 | throw new InvalidParameterException();
|
---|
44 | }
|
---|
45 |
|
---|
46 | IStochasticProcess model = null;
|
---|
47 | Object dataObject = GlobalDataContainer.getInstance()
|
---|
48 | .getData(modelname);
|
---|
49 | if (dataObject == null) {
|
---|
50 | Console.println("Model " + modelname + " not found in storage.");
|
---|
51 | return;
|
---|
52 | }
|
---|
53 | if (!(dataObject instanceof IStochasticProcess)) {
|
---|
54 | Console.println("Object " + modelname + " not of type MarkovModel!");
|
---|
55 | return;
|
---|
56 | }
|
---|
57 |
|
---|
58 | model = (IStochasticProcess) dataObject;
|
---|
59 | for (Event<?> event : model.randomSequence()) {
|
---|
60 | Console.println(event.toString());
|
---|
61 | }
|
---|
62 | }
|
---|
63 |
|
---|
64 | }
|
---|