xml analysis: internalize strings.
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / tmf / analysis / xml / core / model / TmfXmlStateAttribute.java
1 /*******************************************************************************
2 * Copyright (c) 2014, 2015 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.LinkedList;
16 import java.util.List;
17
18 import org.eclipse.jdt.annotation.Nullable;
19 import static org.eclipse.tracecompass.common.core.NonNullUtils.nullToEmptyString;
20 import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
21
22 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.Activator;
23 import org.eclipse.tracecompass.statesystem.core.ITmfStateSystem;
24 import org.eclipse.tracecompass.statesystem.core.ITmfStateSystemBuilder;
25 import org.eclipse.tracecompass.statesystem.core.exceptions.AttributeNotFoundException;
26 import org.eclipse.tracecompass.statesystem.core.exceptions.StateValueTypeException;
27 import org.eclipse.tracecompass.statesystem.core.statevalue.ITmfStateValue;
28 import org.eclipse.tracecompass.statesystem.core.statevalue.TmfStateValue;
29 import org.eclipse.tracecompass.tmf.analysis.xml.core.module.IXmlStateSystemContainer;
30 import org.eclipse.tracecompass.tmf.analysis.xml.core.module.XmlUtils;
31 import org.eclipse.tracecompass.tmf.analysis.xml.core.stateprovider.TmfXmlStrings;
32 import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
33 import org.eclipse.tracecompass.tmf.core.event.ITmfEventField;
34 import org.eclipse.tracecompass.tmf.core.event.aspect.TmfCpuAspect;
35 import org.eclipse.tracecompass.tmf.core.trace.TmfTraceUtils;
36 import org.w3c.dom.Element;
37
38 /**
39 * This Class implements a single attribute value in the XML-defined state
40 * system.
41 *
42 * <pre>
43 * Examples:
44 * <stateAttribute type="constant" value="Threads" />
45 * <stateAttribute type="query" />
46 * <stateAttribute type="constant" value="CPUs" />
47 * <stateAttribute type="eventField" value="cpu" />
48 * <stateAttribute type="constant" value="Current_thread" />
49 * </attribute>
50 * </pre>
51 *
52 * @author Florian Wininger
53 */
54 public abstract class TmfXmlStateAttribute implements ITmfXmlStateAttribute {
55
56 private enum StateAttributeType {
57 NONE,
58 CONSTANT,
59 EVENTFIELD,
60 QUERY,
61 LOCATION,
62 SELF,
63 EVENTNAME
64 }
65
66 private final String CURRENT_STATE = "#currentState"; //$NON-NLS-1$
67
68 private final String CURRENT_SCENARIO = "#CurrentScenario"; //$NON-NLS-1$
69
70 /** Type of attribute */
71 private final StateAttributeType fType;
72
73 /** Attribute's name */
74 private final @Nullable String fName;
75
76 /** List of attributes for a query */
77 private final List<ITmfXmlStateAttribute> fQueryList = new LinkedList<>();
78
79 private final IXmlStateSystemContainer fContainer;
80
81 /**
82 * Constructor
83 *
84 * @param modelFactory
85 * The factory used to create XML model elements
86 * @param attribute
87 * XML element of the attribute
88 * @param container
89 * The state system container this state attribute belongs to
90 */
91 protected TmfXmlStateAttribute(ITmfXmlModelFactory modelFactory, Element attribute, IXmlStateSystemContainer container) {
92 fContainer = container;
93
94 switch (attribute.getAttribute(TmfXmlStrings.TYPE)) {
95 case TmfXmlStrings.TYPE_CONSTANT:
96 fType = StateAttributeType.CONSTANT;
97 fName = getAttributeName(attribute);
98 break;
99 case TmfXmlStrings.EVENT_FIELD:
100 fType = StateAttributeType.EVENTFIELD;
101 fName = getAttributeName(attribute);
102 break;
103 case TmfXmlStrings.TYPE_LOCATION:
104 fType = StateAttributeType.LOCATION;
105 fName = getAttributeName(attribute);
106 break;
107 case TmfXmlStrings.TYPE_QUERY:
108 List<@Nullable Element> childElements = XmlUtils.getChildElements(attribute);
109 for (Element subAttributeNode : childElements) {
110 if (subAttributeNode == null) {
111 continue;
112 }
113 ITmfXmlStateAttribute subAttribute = modelFactory.createStateAttribute(subAttributeNode, fContainer);
114 fQueryList.add(subAttribute);
115 }
116 fType = StateAttributeType.QUERY;
117 fName = null;
118 break;
119 case TmfXmlStrings.TYPE_EVENT_NAME:
120 fType = StateAttributeType.EVENTNAME;
121 fName = getAttributeName(attribute);
122 break;
123 case TmfXmlStrings.NULL:
124 fType = StateAttributeType.NONE;
125 fName = null;
126 break;
127 case TmfXmlStrings.TYPE_SELF:
128 fType = StateAttributeType.SELF;
129 fName = null;
130 break;
131 default:
132 throw new IllegalArgumentException("TmfXmlStateAttribute constructor: The XML element is not of the right type"); //$NON-NLS-1$
133 }
134 }
135
136 private String getAttributeName(Element attribute) {
137 return fContainer.getAttributeValue(attribute.getAttribute(TmfXmlStrings.VALUE)).intern();
138 }
139
140 /**
141 * @since 2.0
142 */
143 @Override
144 public int getAttributeQuark(int startQuark, @Nullable TmfXmlScenarioInfo scenarioInfo) {
145 return getAttributeQuark(null, startQuark, scenarioInfo);
146 }
147
148 /**
149 * Basic quark-retrieving method. Pass an attribute in parameter as an array
150 * of strings, the matching quark will be returned. If the attribute does
151 * not exist, it will add the quark to the state system if the context
152 * allows it.
153 *
154 * See {@link ITmfStateSystemBuilder#getQuarkAbsoluteAndAdd(String...)}
155 *
156 * @param path
157 * Full path to the attribute
158 * @return The quark for this attribute
159 * @throws AttributeNotFoundException
160 * The attribute does not exist and cannot be added
161 */
162 protected abstract int getQuarkAbsoluteAndAdd(String... path) throws AttributeNotFoundException;
163
164 /**
165 * Quark-retrieving method, but the attribute is queried starting from the
166 * startNodeQuark. If the attribute does not exist, it will add it to the
167 * state system if the context allows it.
168 *
169 * See {@link ITmfStateSystemBuilder#getQuarkRelativeAndAdd(int, String...)}
170 *
171 * @param startNodeQuark
172 * The quark of the attribute from which 'path' originates.
173 * @param path
174 * Relative path to the attribute
175 * @return The quark for this attribute
176 * @throws AttributeNotFoundException
177 * The attribute does not exist and cannot be added
178 */
179 protected abstract int getQuarkRelativeAndAdd(int startNodeQuark, String... path) throws AttributeNotFoundException;
180
181 /**
182 * Get the state system associated with this attribute's container
183 *
184 * @return The state system associated with this state attribute
185 */
186 protected @Nullable ITmfStateSystem getStateSystem() {
187 return fContainer.getStateSystem();
188 }
189
190 /**
191 * @since 2.0
192 */
193 @Override
194 public int getAttributeQuark(@Nullable ITmfEvent event, int startQuark, @Nullable TmfXmlScenarioInfo scenarioInfo) {
195 ITmfStateSystem ss = getStateSystem();
196 if (ss == null) {
197 throw new IllegalStateException("The state system hasn't been initialized yet"); //$NON-NLS-1$
198 }
199 String name = nullToEmptyString(fName);
200 if (name.length() > 0 && name.charAt(0) == '#' && scenarioInfo == null) {
201 throw new IllegalStateException("XML Attribute needs " + fName + " but the data is not available."); //$NON-NLS-1$//$NON-NLS-2$
202 }
203 name = name.equals(CURRENT_STATE) ? checkNotNull(scenarioInfo).getActiveState()
204 : fName;
205
206 try {
207 switch (fType) {
208 case CONSTANT: {
209 int quark;
210 if (name == null) {
211 throw new IllegalStateException("Invalid attribute name"); //$NON-NLS-1$
212 }
213 if (name.equals(CURRENT_SCENARIO)) {
214 return checkNotNull(scenarioInfo).getQuark();
215 }
216 if (startQuark == IXmlStateSystemContainer.ROOT_QUARK) {
217 quark = getQuarkAbsoluteAndAdd(name);
218 } else {
219 quark = getQuarkRelativeAndAdd(startQuark, name);
220 }
221 return quark;
222 }
223 case EVENTFIELD: {
224 int quark = IXmlStateSystemContainer.ERROR_QUARK;
225 if (event == null) {
226 Activator.logWarning("XML State attribute: looking for an event field, but event is null"); //$NON-NLS-1$
227 return quark;
228 }
229 if (name == null) {
230 throw new IllegalStateException("Invalid attribute name"); //$NON-NLS-1$
231 }
232 if (name.equals(TmfXmlStrings.CPU)) {
233 /* See if the event advertises a CPU aspect */
234 Integer cpu = TmfTraceUtils.resolveIntEventAspectOfClassForEvent(
235 event.getTrace(), TmfCpuAspect.class, event);
236 if (cpu != null) {
237 quark = getQuarkRelativeAndAdd(startQuark, cpu.toString());
238 }
239 } else {
240 final ITmfEventField content = event.getContent();
241 /* stop if the event field doesn't exist */
242 if (content.getField(name) == null) {
243 return IXmlStateSystemContainer.ERROR_QUARK;
244 }
245
246 Object field = content.getField(name).getValue();
247
248 if (field instanceof String) {
249 String fieldString = (String) field;
250 quark = getQuarkRelativeAndAdd(startQuark, fieldString);
251 } else if (field instanceof Long) {
252 Long fieldLong = (Long) field;
253 quark = getQuarkRelativeAndAdd(startQuark, fieldLong.toString());
254 } else if (field instanceof Integer) {
255 Integer fieldInterger = (Integer) field;
256 quark = getQuarkRelativeAndAdd(startQuark, fieldInterger.toString());
257 }
258 }
259 return quark;
260 }
261 case QUERY: {
262 int quark;
263 ITmfStateValue value = TmfStateValue.nullValue();
264 int quarkQuery = IXmlStateSystemContainer.ROOT_QUARK;
265
266 for (ITmfXmlStateAttribute attrib : fQueryList) {
267 quarkQuery = attrib.getAttributeQuark(event, quarkQuery, scenarioInfo);
268 if (quarkQuery == IXmlStateSystemContainer.ERROR_QUARK) {
269 break;
270 }
271 }
272
273 // the query may fail: for example CurrentThread if there
274 // has not been a sched_switch event
275 if (quarkQuery != IXmlStateSystemContainer.ERROR_QUARK) {
276 value = ss.queryOngoingState(quarkQuery);
277 }
278
279 switch (value.getType()) {
280 case INTEGER: {
281 int result = value.unboxInt();
282 quark = getQuarkRelativeAndAdd(startQuark, String.valueOf(result));
283 break;
284 }
285 case LONG: {
286 long result = value.unboxLong();
287 quark = getQuarkRelativeAndAdd(startQuark, String.valueOf(result));
288 break;
289 }
290 case STRING: {
291 String result = value.unboxStr();
292 quark = getQuarkRelativeAndAdd(startQuark, result);
293 break;
294 }
295 case DOUBLE:
296 case NULL:
297 default:
298 quark = IXmlStateSystemContainer.ERROR_QUARK; // error
299 break;
300 }
301 return quark;
302 }
303 case LOCATION: {
304 int quark = startQuark;
305 String idLocation = name;
306
307 /* TODO: Add a fContainer.getLocation(id) method */
308 for (TmfXmlLocation location : fContainer.getLocations()) {
309 if (location.getId().equals(idLocation)) {
310 quark = location.getLocationQuark(event, quark, scenarioInfo);
311 if (quark == IXmlStateSystemContainer.ERROR_QUARK) {
312 break;
313 }
314 }
315 }
316 return quark;
317 }
318 case EVENTNAME: {
319 int quark = IXmlStateSystemContainer.ERROR_QUARK;
320 if (event == null) {
321 Activator.logWarning("XML State attribute: looking for an eventname, but event is null"); //$NON-NLS-1$
322 return quark;
323 }
324 quark = getQuarkRelativeAndAdd(startQuark, event.getName());
325 return quark;
326 }
327 case SELF:
328 return startQuark;
329 case NONE:
330 default:
331 return startQuark;
332 }
333 } catch (AttributeNotFoundException ae) {
334 /*
335 * This can be happen before the creation of the node for a query in
336 * the state system. Example : current thread before a sched_switch
337 */
338 return IXmlStateSystemContainer.ERROR_QUARK;
339 } catch (StateValueTypeException e) {
340 /*
341 * This would happen if we were trying to push/pop attributes not of
342 * type integer. Which, once again, should never happen.
343 */
344 Activator.logError("StateValueTypeException", e); //$NON-NLS-1$
345 return IXmlStateSystemContainer.ERROR_QUARK;
346 }
347 }
348
349 @Override
350 public String toString() {
351 return "TmfXmlStateAttribute " + fType + ": " + fName; //$NON-NLS-1$ //$NON-NLS-2$
352 }
353
354 }
This page took 0.04116 seconds and 5 git commands to generate.