source: trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/usage/AbstractTrainCommand.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: 3.2 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.Collection;
18import java.util.List;
19
20import de.ugoe.cs.autoquest.CommandHelpers;
21import de.ugoe.cs.autoquest.SequenceInstanceOf;
22import de.ugoe.cs.autoquest.eventcore.Event;
23import de.ugoe.cs.autoquest.usageprofiles.TrieBasedModel;
24import de.ugoe.cs.util.console.Command;
25import de.ugoe.cs.util.console.GlobalDataContainer;
26
27/**
28 * <p>
29 * Abstract class for commands to train {@link TrieBasedModel}s.
30 * </p>
31 *
32 * @author Steffen Herbold
33 * @version 1.0
34 */
35public abstract class AbstractTrainCommand implements Command {
36
37        /**
38         * <p>
39         * Handling of additional parameters.
40         * </p>
41         *
42         * @param parameters
43         *            same as the parameters passed to {@link #run(List)}.
44         * @throws Exception
45         *             thrown, if there is an error parsing the parameters
46         */
47        abstract void handleAdditionalParameters(List<Object> parameters)
48                        throws Exception;
49
50        /**
51         * <p>
52         * Returns a concrete instance of {@link TrieBasedModel} to be trained. This
53         * is a factory method.
54         * </p>
55         *
56         * @return instance of {@link TrieBasedModel}
57         */
58        abstract TrieBasedModel createModel();
59
60        /**
61         * <p>
62         * The command is implemented as a template method. The general structure of
63         * the command is always the same, only the parameters of the command and
64         * the creation of the {@link TrieBasedModel} instance. The former is
65         * handled by {@link #handleAdditionalParameters(List)}, the latter by
66         * {@link #createModel()}.
67         * </p>
68         *
69         * @see de.ugoe.cs.util.console.Command#run(java.util.List)
70         */
71        @SuppressWarnings("unchecked")
72        @Override
73        public void run(List<Object> parameters) {
74                String modelname;
75                String sequencesName;
76
77                try {
78                        modelname = (String) parameters.get(0);
79                        sequencesName = (String) parameters.get(1);
80                        handleAdditionalParameters(parameters);
81                } catch (Exception e) {
82                        throw new IllegalArgumentException();
83                }
84
85                Object dataObject = GlobalDataContainer.getInstance().getData(
86                                sequencesName);
87                if (dataObject == null) {
88                        CommandHelpers.objectNotFoundMessage(sequencesName);
89                        return;
90                }
91                if (!SequenceInstanceOf.isCollectionOfSequences(dataObject)) {
92                        CommandHelpers.objectNotType(sequencesName,
93                                        "Collection<List<Event<?>>>");
94                        return;
95                }
96                Collection<List<Event>> sequences = (Collection<List<Event>>) dataObject;
97
98                TrieBasedModel model = createModel();
99                model.train(sequences);
100                if (GlobalDataContainer.getInstance().addData(modelname, model)) {
101                        CommandHelpers.dataOverwritten(modelname);
102                }
103
104        }
105
106}
Note: See TracBrowser for help on using the repository browser.