source: trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDparseDirJFC.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
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.plugin.jfc.commands;
16
17import java.io.File;
18import java.util.Collection;
19import java.util.List;
20import java.util.logging.Level;
21
22import de.ugoe.cs.autoquest.CommandHelpers;
23import de.ugoe.cs.autoquest.eventcore.Event;
24import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModel;
25import de.ugoe.cs.autoquest.plugin.jfc.JFCLogParser;
26import de.ugoe.cs.util.console.Command;
27import de.ugoe.cs.util.console.Console;
28import de.ugoe.cs.util.console.GlobalDataContainer;
29
30/**
31 * <p>
32 * Command that tries to parse all files in a folder as if they were log files generated by the
33 * JFCMonitor. The result is one set of sequences for all files (not one set of sequences for each
34 * file!).
35 * </p>
36 *
37 * @author Steffen Herbold
38 * @version 1.0
39 */
40public class CMDparseDirJFC implements Command {
41
42    /*
43     * (non-Javadoc)
44     *
45     * @see de.ugoe.cs.util.console.Command#run(java.util.List)
46     */
47    @Override
48    public void run(List<Object> parameters) {
49        String path;
50        String sequencesName = "sequences";
51
52        try {
53            path = (String) parameters.get(0);
54            if (parameters.size() >= 2) {
55                sequencesName = (String) parameters.get(1);
56            }
57        }
58        catch (Exception e) {
59            throw new IllegalArgumentException();
60        }
61
62        File folder = new File(path);
63        if (!folder.isDirectory()) {
64            Console.printerrln(path + " is not a directory");
65            return;
66        }
67
68        JFCLogParser parser = new JFCLogParser();
69
70        String absolutPath = folder.getAbsolutePath();
71        for (String filename : folder.list()) {
72            String source = absolutPath + "/" + filename;
73            Console.traceln(Level.INFO, "Processing file: " + source);
74
75            parser.parseFile(source);
76        }
77
78        Collection<List<Event>> sequences = parser.getSequences();
79       
80        GUIModel targets = parser.getGuiModel();
81
82        if (GlobalDataContainer.getInstance().addData(sequencesName, sequences)) {
83            CommandHelpers.dataOverwritten(sequencesName);
84        }
85       
86        if (GlobalDataContainer.getInstance().addData(sequencesName + "_targets", targets)) {
87            CommandHelpers.dataOverwritten(sequencesName + "_targets");
88        }
89    }
90
91    /*
92     * (non-Javadoc)
93     *
94     * @see de.ugoe.cs.util.console.Command#help()
95     */
96    @Override
97    public String help() {
98        return "parseDirJFC <directory> {<sequencesName>}";
99    }
100
101}
Note: See TracBrowser for help on using the repository browser.