source: trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/commands/CMDparseDirAndroid.java @ 1783

Last change on this file since 1783 was 1783, checked in by funger, 10 years ago

Parser for onClick events only. Using MouseClick? to simulate onClick events.

  • Property svn:mime-type set to text/plain
File size: 3.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.plugin.android.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.android.AndroidLogParser;
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 * Androidmonitor. The result is one set of sequences for all files (not one set of sequences for each
34 * file!).
35 * </p>
36 *
37 * @author Florian Unger
38 * @version 1.0
39 */
40public class CMDparseDirAndroid 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        AndroidLogParser parser = new AndroidLogParser();
69       
70        String absolutPath = folder.getAbsolutePath();
71        for (String filename : folder.list()) {
72            String source = absolutPath + File.separator + filename;
73            Console.traceln(Level.INFO, "Processing file: " + source);
74
75            try {
76                parser.parseFile(source);
77            }
78            catch (Exception e) {
79                Console.printerrln("Could not parse " + source + ": " + e.getMessage());
80            }
81        }
82       
83        Collection<List<Event>> sequences = parser.getSequences();
84       
85        GUIModel targets = parser.getGuiModel();
86
87        if (GlobalDataContainer.getInstance().addData(sequencesName, sequences)) {
88            CommandHelpers.dataOverwritten(sequencesName);
89        }
90       
91        if (GlobalDataContainer.getInstance().addData(sequencesName + "_targets", targets)) {
92            CommandHelpers.dataOverwritten(sequencesName + "_targets");
93        }
94               
95        }
96
97        /*
98     * (non-Javadoc)
99     *
100     * @see de.ugoe.cs.util.console.Command#help()
101     */
102        @Override
103        public String help() {
104                return "parseDirAndroid <directory> {<sequencesName>}";
105        }
106
107}
Note: See TracBrowser for help on using the repository browser.