25028b38676515b23562d4049f96d81379ba5e22
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / tmf / analysis / xml / core / model / TmfXmlStateChange.java
1 /*******************************************************************************
2 * Copyright (c) 2014 Ecole Polytechnique de Montreal
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 * Florian Wininger - Initial API and implementation
11 ******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.analysis.xml.core.model;
14
15 import java.util.ArrayList;
16 import java.util.List;
17
18 import org.eclipse.jdt.annotation.NonNull;
19 import org.eclipse.jdt.annotation.Nullable;
20 import org.eclipse.tracecompass.statesystem.core.exceptions.AttributeNotFoundException;
21 import org.eclipse.tracecompass.statesystem.core.exceptions.StateValueTypeException;
22 import org.eclipse.tracecompass.statesystem.core.exceptions.TimeRangeException;
23 import org.eclipse.tracecompass.tmf.analysis.xml.core.module.IXmlStateSystemContainer;
24 import org.eclipse.tracecompass.tmf.analysis.xml.core.module.XmlUtils;
25 import org.eclipse.tracecompass.tmf.analysis.xml.core.stateprovider.TmfXmlStrings;
26 import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
27 import org.w3c.dom.Element;
28 import org.w3c.dom.Node;
29
30 /**
31 * This Class implement a State Change in the XML-defined state system
32 *
33 * <pre>
34 * example 1: Simple state change
35 * <stateChange>
36 * <stateAttribute type="location" value="CurrentThread" />
37 * <stateAttribute type="constant" value="System_call" />
38 * <stateValue type="null" />
39 * </stateChange>
40 *
41 * example 2: Conditional state change
42 * <stateChange>
43 * <if>
44 * <condition>
45 * <stateAttribute type="location" value="CurrentThread" />
46 * <stateAttribute type="constant" value="System_call" />
47 * <stateValue type="null" />
48 * </condition>
49 * </if>
50 * <then>
51 * <stateAttribute type="location" value="CurrentThread" />
52 * <stateAttribute type="constant" value="Status" />
53 * <stateValue int="$PROCESS_STATUS_RUN_USERMODE"/>
54 * </then>
55 * <else>
56 * <stateAttribute type="location" value="CurrentThread" />
57 * <stateAttribute type="constant" value="Status" />
58 * <stateValue int="$PROCESS_STATUS_RUN_SYSCALL"/>
59 * </else>
60 * </stateChange>
61 * </pre>
62 *
63 * @author Florian Wininger
64 */
65 public class TmfXmlStateChange {
66
67 private final IXmlStateChange fChange;
68 private final IXmlStateSystemContainer fContainer;
69
70 /**
71 * Constructor
72 *
73 * @param modelFactory
74 * The factory used to create XML model elements
75 * @param statechange
76 * XML node root of this state change
77 * @param container
78 * The state system container this state change belongs to
79 */
80 public TmfXmlStateChange(ITmfXmlModelFactory modelFactory, Element statechange, IXmlStateSystemContainer container) {
81 fContainer = container;
82
83 /*
84 * child nodes is either a list of TmfXmlStateAttributes and
85 * TmfXmlStateValues, or an if-then-else series of nodes.
86 */
87 Node ifNode = statechange.getElementsByTagName(TmfXmlStrings.IF).item(0);
88 if (ifNode != null) {
89 /* the state change has a condition */
90 fChange = new XmlConditionalChange(modelFactory, statechange);
91 } else {
92 /* the state change does not have a condition */
93 fChange = new XmlStateValueChange(modelFactory, statechange);
94 }
95 }
96
97 /**
98 * Execute the state change for an event. If necessary, it validates the
99 * condition and executes the required change.
100 *
101 * @param event
102 * The event to process
103 * @param scenarioInfo
104 * The active scenario details. The value should be null if there
105 * no scenario.
106 * @throws AttributeNotFoundException
107 * Pass through the exception it received
108 * @throws TimeRangeException
109 * Pass through the exception it received
110 * @throws StateValueTypeException
111 * Pass through the exception it received
112 * @since 2.0
113 */
114 public void handleEvent(ITmfEvent event, @Nullable TmfXmlScenarioInfo scenarioInfo) throws AttributeNotFoundException, StateValueTypeException, TimeRangeException {
115 fChange.handleEvent(event, scenarioInfo);
116 }
117
118 @Override
119 public String toString() {
120 return "TmfXmlStateChange: " + fChange; //$NON-NLS-1$
121 }
122
123 /* Interface for both private classes to handle the event */
124 private interface IXmlStateChange {
125 void handleEvent(ITmfEvent event, @Nullable TmfXmlScenarioInfo scenarioInfo) throws AttributeNotFoundException, StateValueTypeException, TimeRangeException;
126 }
127
128 /**
129 * Conditional state change with a condition to verify
130 */
131 private class XmlConditionalChange implements IXmlStateChange {
132 private final ITmfXmlCondition fCondition;
133 private final TmfXmlStateChange fThenChange;
134 private final @Nullable TmfXmlStateChange fElseChange;
135
136 public XmlConditionalChange(ITmfXmlModelFactory modelFactory, Element statechange) {
137 /*
138 * The if node exists, it has been verified before calling this
139 */
140 Node ifNode = statechange.getElementsByTagName(TmfXmlStrings.IF).item(0);
141 if (ifNode == null) {
142 throw new IllegalArgumentException();
143 }
144 fCondition = modelFactory.createCondition((Element) ifNode, fContainer);
145
146 Node thenNode = statechange.getElementsByTagName(TmfXmlStrings.THEN).item(0);
147 if (thenNode == null) {
148 throw new IllegalArgumentException("Conditional state change: there should be a then clause."); //$NON-NLS-1$
149 }
150 fThenChange = modelFactory.createStateChange((Element) thenNode, fContainer);
151
152 Node elseNode = statechange.getElementsByTagName(TmfXmlStrings.ELSE).item(0);
153 if (elseNode != null) {
154 fElseChange = modelFactory.createStateChange((Element) elseNode, fContainer);
155 } else {
156 fElseChange = null;
157 }
158 }
159
160 @Override
161 public void handleEvent(@NonNull ITmfEvent event, @Nullable TmfXmlScenarioInfo scenarioInfo) throws AttributeNotFoundException, StateValueTypeException, TimeRangeException {
162 TmfXmlStateChange toExecute = fThenChange;
163 if (!fCondition.test(event, scenarioInfo)) {
164 toExecute = fElseChange;
165 }
166
167 if (toExecute == null) {
168 return;
169 }
170 toExecute.handleEvent(event, scenarioInfo);
171 }
172
173 @Override
174 public String toString() {
175 return "Condition: " + fCondition; //$NON-NLS-1$
176 }
177 }
178
179 /**
180 * State change with no condition
181 */
182 private class XmlStateValueChange implements IXmlStateChange {
183 private final ITmfXmlStateValue fValue;
184
185 public XmlStateValueChange(ITmfXmlModelFactory modelFactory, Element statechange) {
186 List<@Nullable Element> childElements = XmlUtils.getChildElements(statechange);
187
188 /*
189 * Last child element is the state value, the others are attributes
190 * to reach to value to set
191 */
192 Element stateValueElement = childElements.remove(childElements.size() - 1);
193 if (stateValueElement == null) {
194 throw new IllegalStateException();
195 }
196 List<ITmfXmlStateAttribute> attributes = new ArrayList<>();
197 for (Element element : childElements) {
198 if (element == null || !element.getNodeName().equals(TmfXmlStrings.STATE_ATTRIBUTE)) {
199 throw new IllegalArgumentException("TmfXmlStateChange: a state change must have only TmfXmlStateAttribute elements before the state value"); //$NON-NLS-1$
200 }
201 ITmfXmlStateAttribute attribute = modelFactory.createStateAttribute(element, fContainer);
202 attributes.add(attribute);
203 }
204 if (attributes.isEmpty()) {
205 throw new IllegalArgumentException("TmfXmlStateChange: a state change must have at least one TmfXmlStateAttribute element before the state value"); //$NON-NLS-1$
206 }
207 fValue = modelFactory.createStateValue(stateValueElement, fContainer, attributes);
208 }
209
210 @Override
211 public void handleEvent(@NonNull ITmfEvent event, @Nullable TmfXmlScenarioInfo scenarioInfo) throws AttributeNotFoundException, StateValueTypeException, TimeRangeException {
212 fValue.handleEvent(event, scenarioInfo);
213 }
214
215 @Override
216 public String toString() {
217 return "Value: " + fValue; //$NON-NLS-1$
218 }
219 }
220
221 }
This page took 0.036937 seconds and 4 git commands to generate.