doc: Update user guide for time graph marker axis
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / tmf / analysis / xml / ui / module / TmfXmlAnalysisOutputSource.java
CommitLineData
048bde85
GB
1/*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.analysis.xml.ui.module;
048bde85
GB
14
15import java.io.File;
16import java.io.IOException;
1a23419e 17import java.util.List;
537572cd 18import java.util.Map;
048bde85
GB
19
20import javax.xml.parsers.DocumentBuilder;
21import javax.xml.parsers.DocumentBuilderFactory;
22import javax.xml.parsers.ParserConfigurationException;
23
44b06bb9 24import org.eclipse.jdt.annotation.NonNull;
2bdf0193
AM
25import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.Activator;
26import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.TmfXmlUiStrings;
27import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.views.xychart.XmlXYView;
28import org.eclipse.tracecompass.tmf.analysis.xml.core.module.XmlUtils;
29import org.eclipse.tracecompass.tmf.analysis.xml.core.stateprovider.TmfXmlStrings;
30import org.eclipse.tracecompass.tmf.analysis.xml.ui.views.timegraph.XmlTimeGraphView;
31import org.eclipse.tracecompass.tmf.core.analysis.IAnalysisModule;
32import org.eclipse.tracecompass.tmf.core.analysis.IAnalysisOutput;
33import org.eclipse.tracecompass.tmf.core.analysis.ITmfNewAnalysisModuleListener;
34import org.eclipse.tracecompass.tmf.core.statesystem.TmfStateSystemAnalysisModule;
048bde85 35import org.w3c.dom.Document;
1a23419e
FW
36import org.w3c.dom.Element;
37import org.w3c.dom.NodeList;
048bde85
GB
38import org.xml.sax.SAXException;
39
40/**
41 * This class searches all XML files to find outputs applicable to the newly
42 * created analysis
43 *
44 * @author Geneviève Bastien
45 */
46public class TmfXmlAnalysisOutputSource implements ITmfNewAnalysisModuleListener {
47
48 /** String separating data elements for the output properties */
8ecd89fa 49 public static final @NonNull String DATA_SEPARATOR = ";;;"; //$NON-NLS-1$
048bde85 50
2e9d15a9
GB
51 /**
52 * Enum to match the name of a view's XML element to its view ID.
53 */
44b06bb9
GB
54 public static enum ViewType {
55 /**
56 * Time graph view element
57 */
87c5447c 58 TIME_GRAPH_VIEW(TmfXmlUiStrings.TIME_GRAPH_VIEW, XmlTimeGraphView.ID),
44b06bb9
GB
59 /**
60 * XY chart view element
61 */
87c5447c 62 XY_VIEW(TmfXmlUiStrings.XY_VIEW, XmlXYView.ID);
2e9d15a9 63
44b06bb9 64 private final @NonNull String fXmlElem;
2e9d15a9
GB
65 private final String fViewId;
66
44b06bb9 67 private ViewType(@NonNull String xmlElem, String viewId) {
2e9d15a9
GB
68 fXmlElem = xmlElem;
69 fViewId = viewId;
70 }
71
44b06bb9
GB
72 /**
73 * Get the XML element corresponding to this view type
74 *
75 * @return The XML element corresponding to this type
76 */
77 public @NonNull String getXmlElem() {
2e9d15a9
GB
78 return fXmlElem;
79 }
80
44b06bb9 81 private String getViewId() {
2e9d15a9
GB
82 return fViewId;
83 }
84 }
85
87c5447c 86
048bde85
GB
87 @Override
88 public void moduleCreated(IAnalysisModule module) {
537572cd
BH
89 Map<String, File> files = XmlUtils.listFiles();
90 for (File xmlFile : files.values()) {
048bde85
GB
91 if (!XmlUtils.xmlValidate(xmlFile).isOK()) {
92 continue;
93 }
94
95 try {
96 /* Load the XML File */
97 DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
98 DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
99 Document doc = dBuilder.parse(xmlFile);
100 doc.getDocumentElement().normalize();
101
102 /* get state provider views if the analysis has state systems */
1a23419e 103 if (module instanceof TmfStateSystemAnalysisModule) {
2e9d15a9
GB
104 for (ViewType viewType : ViewType.values()) {
105 NodeList ssViewNodes = doc.getElementsByTagName(viewType.getXmlElem());
106 for (int i = 0; i < ssViewNodes.getLength(); i++) {
107 Element node = (Element) ssViewNodes.item(i);
108
109 /* Check if analysis is the right one */
110 List<Element> headNodes = XmlUtils.getChildElements(node, TmfXmlStrings.HEAD);
111 if (headNodes.size() != 1) {
112 continue;
113 }
1a23419e 114
2e9d15a9
GB
115 List<Element> analysisNodes = XmlUtils.getChildElements(headNodes.get(0), TmfXmlStrings.ANALYSIS);
116 for (Element analysis : analysisNodes) {
117 String analysisId = analysis.getAttribute(TmfXmlStrings.ID);
118 if (analysisId.equals(module.getId())) {
119 String viewId = viewType.getViewId();
44b06bb9 120 IAnalysisOutput output = new TmfXmlViewOutput(viewId, viewType);
2e9d15a9
GB
121 output.setOutputProperty(TmfXmlUiStrings.XML_OUTPUT_DATA, node.getAttribute(TmfXmlStrings.ID) + DATA_SEPARATOR + xmlFile.getAbsolutePath(), false);
122 module.registerOutput(output);
123 }
1a23419e
FW
124 }
125 }
126 }
127 }
048bde85
GB
128 } catch (ParserConfigurationException | SAXException | IOException e) {
129 Activator.logError("Error opening XML file", e); //$NON-NLS-1$
130 }
131 }
132 }
133
134}
This page took 0.075744 seconds and 5 git commands to generate.