source: trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/usage/CMDlistSymbols.java @ 927

Last change on this file since 927 was 927, checked in by sherbold, 12 years ago
  • added copyright under the Apache License, Version 2.0
  • Property svn:mime-type set to text/plain
File size: 2.4 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.commands.usage;
16
17import java.util.Arrays;
18import java.util.List;
19
20import de.ugoe.cs.autoquest.CommandHelpers;
21import de.ugoe.cs.autoquest.usageprofiles.IStochasticProcess;
22import de.ugoe.cs.util.console.Command;
23import de.ugoe.cs.util.console.Console;
24import de.ugoe.cs.util.console.GlobalDataContainer;
25
26/**
27 * <p>
28 * Command to list all events (symbols) known to a usage profile (stochastic
29 * process).
30 * </p>
31 *
32 * @author Steffen Herbold
33 * @version 1.0
34 */
35public class CMDlistSymbols implements Command {
36
37        /*
38         * (non-Javadoc)
39         *
40         * @see de.ugoe.cs.util.console.Command#run(java.util.List)
41         */
42        @Override
43        public void run(List<Object> parameters) {
44                String modelname = "";
45                boolean sort = false;
46                try {
47                        modelname = (String) parameters.get(0);
48                        if (parameters.size() == 2) {
49                                sort = Boolean.parseBoolean((String) parameters.get(1));
50                        }
51                } catch (Exception e) {
52                        throw new IllegalArgumentException();
53                }
54
55                IStochasticProcess model = null;
56                Object dataObject = GlobalDataContainer.getInstance()
57                                .getData(modelname);
58                if (dataObject == null) {
59                        CommandHelpers.objectNotFoundMessage(modelname);
60                        return;
61                }
62                if (!(dataObject instanceof IStochasticProcess)) {
63                        CommandHelpers.objectNotType(modelname, "IStochasticProcess");
64                        return;
65                }
66                model = (IStochasticProcess) dataObject;
67                String[] stateStrings = model.getSymbolStrings();
68                if (sort) {
69                        Arrays.sort(stateStrings);
70                }
71                for (String stateString : stateStrings) {
72                        Console.println(stateString);
73                }
74        }
75
76        /*
77         * (non-Javadoc)
78         *
79         * @see de.ugoe.cs.util.console.Command#help()
80         */
81        @Override
82        public String help() {
83                return "listSymbols <modelname> {<sort>}";
84        }
85
86}
Note: See TracBrowser for help on using the repository browser.