source: trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDparseDirJFC.java @ 2233

Last change on this file since 2233 was 2233, checked in by pharms, 7 years ago
  • solved some findbugs issues
File size: 3.5 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.JFCSimplifiedLogParser;
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        JFCSimplifiedLogParser parser = new JFCSimplifiedLogParser();
69
70        String absolutPath = folder.getAbsolutePath();
71        String[] children = folder.list();
72       
73        if (children != null) {
74                for (String filename : children) {
75                        String source = absolutPath + File.separator + filename;
76                        Console.traceln(Level.INFO, "Processing file: " + source);
77
78                        try {
79                                parser.parseFile(source);
80                        }
81                        catch (Exception e) {
82                                Console.printerrln("Could not parse " + source + ": " + e.getMessage());
83                        }
84                }
85        }
86
87        Collection<List<Event>> sequences = parser.getSequences();
88       
89        GUIModel targets = parser.getGuiModel();
90
91        if (GlobalDataContainer.getInstance().addData(sequencesName, sequences)) {
92            CommandHelpers.dataOverwritten(sequencesName);
93        }
94       
95        if (GlobalDataContainer.getInstance().addData(sequencesName + "_targets", targets)) {
96            CommandHelpers.dataOverwritten(sequencesName + "_targets");
97        }
98    }
99
100    /*
101     * (non-Javadoc)
102     *
103     * @see de.ugoe.cs.util.console.Command#help()
104     */
105    @Override
106    public String help() {
107        return "parseDirJFC <directory> {<sequencesName>}";
108    }
109
110}
Note: See TracBrowser for help on using the repository browser.