tmf: Use long[] instead of List<Long> in CTF integer-array fields
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfEventField.java
CommitLineData
a3fc8213 1/*******************************************************************************
404b264a 2 * Copyright (c) 2011, 2013 Ericsson, École Polytechnique de Montréal
a3fc8213
AM
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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 *
d4a8d935
BH
9 * Contributors:
10 * Matthew Khouzam - Initial API and implementation
404b264a 11 * Alexandre Montplaisir - Initial API and implementation, extend TmfEventField
d4a8d935 12 * Bernd Hufmann - Add Enum field handling
404b264a 13 * Geneviève Bastien - Add Struct and Variant field handling
459f705b 14 * Jean-Christian Kouame - Correct handling of unsigned integer fields
a3fc8213
AM
15 *******************************************************************************/
16
17package org.eclipse.linuxtools.tmf.core.ctfadaptor;
18
459f705b 19import java.math.BigInteger;
a6223d74 20import java.util.ArrayList;
7a6cee1a 21import java.util.Arrays;
a6223d74 22import java.util.List;
7a6cee1a 23import java.util.Map.Entry;
a6223d74 24
a3fc8213
AM
25import org.eclipse.linuxtools.ctf.core.event.types.ArrayDeclaration;
26import org.eclipse.linuxtools.ctf.core.event.types.ArrayDefinition;
27import org.eclipse.linuxtools.ctf.core.event.types.Definition;
21fb02fa 28import org.eclipse.linuxtools.ctf.core.event.types.EnumDefinition;
a04464b1 29import org.eclipse.linuxtools.ctf.core.event.types.FloatDefinition;
a3fc8213
AM
30import org.eclipse.linuxtools.ctf.core.event.types.IntegerDeclaration;
31import org.eclipse.linuxtools.ctf.core.event.types.IntegerDefinition;
32import org.eclipse.linuxtools.ctf.core.event.types.SequenceDeclaration;
33import org.eclipse.linuxtools.ctf.core.event.types.SequenceDefinition;
34import org.eclipse.linuxtools.ctf.core.event.types.StringDefinition;
7a6cee1a 35import org.eclipse.linuxtools.ctf.core.event.types.StructDefinition;
404b264a
GB
36import org.eclipse.linuxtools.ctf.core.event.types.VariantDefinition;
37import org.eclipse.linuxtools.internal.tmf.core.Messages;
7a6cee1a 38import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
68b18f2f 39import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
a3fc8213
AM
40
41/**
7558a1e1
AM
42 * The CTF implementation of the TMF event field model
43 *
d4a8d935 44 * @version 2.0
7558a1e1 45 * @author Matthew Khouzam
d09f973b 46 * @author Alexandre Montplaisir
a3fc8213 47 */
68b18f2f 48public abstract class CtfTmfEventField extends TmfEventField {
a3fc8213 49
a3fc8213 50 // ------------------------------------------------------------------------
7558a1e1 51 // Constructor
a3fc8213
AM
52 // ------------------------------------------------------------------------
53
b1baa808 54 /**
7558a1e1
AM
55 * Standard constructor. Only to be used internally, call parseField() to
56 * generate a new field object.
57 *
58 * @param name
59 * The name of this field
68b18f2f
AM
60 * @param value
61 * The value of this field. Its type should match the field type.
81ed27a8
MK
62 * @param fields
63 * The children fields. Useful for composite fields
68b18f2f 64 * @since 2.0
b1baa808 65 */
81ed27a8 66 protected CtfTmfEventField(String name, Object value, ITmfEventField[] fields) {
68b18f2f
AM
67 super(/* Strip the underscore from the field name if there is one */
68 name.startsWith("_") ? name.substring(1) : name, //$NON-NLS-1$
69 value,
81ed27a8 70 fields);
a3fc8213
AM
71 }
72
73 // ------------------------------------------------------------------------
74 // Operations
75 // ------------------------------------------------------------------------
76
b1baa808 77 /**
7558a1e1
AM
78 * Factory method to instantiate CtfTmfEventField objects.
79 *
80 * @param fieldDef
81 * The CTF Definition of this event field
82 * @param fieldName
83 * String The name to assign to this field
84 * @return The resulting CtfTmfEventField object
b1baa808 85 */
a3fc8213
AM
86 public static CtfTmfEventField parseField(Definition fieldDef,
87 String fieldName) {
88 CtfTmfEventField field = null;
89
90 /* Determine the Definition type */
91 if (fieldDef instanceof IntegerDefinition) {
367bcd2b
AM
92 IntegerDefinition intDef = (IntegerDefinition) fieldDef;
93 int base = intDef.getDeclaration().getBase();
459f705b 94 field = new CTFIntegerField(fieldName, intDef.getValue(), base, intDef.getDeclaration().isSigned());
a3fc8213 95
21fb02fa
MK
96 } else if (fieldDef instanceof EnumDefinition) {
97 EnumDefinition enumDef = (EnumDefinition) fieldDef;
68b18f2f 98 field = new CTFEnumField(fieldName, new CtfEnumPair(enumDef.getValue(), enumDef.getIntegerValue()));
21fb02fa 99
a3fc8213 100 } else if (fieldDef instanceof StringDefinition) {
68b18f2f
AM
101 field = new CTFStringField(fieldName, ((StringDefinition) fieldDef).getValue());
102
103 } else if (fieldDef instanceof FloatDefinition) {
104 FloatDefinition floatDef = (FloatDefinition) fieldDef;
105 field = new CTFFloatField(fieldName, floatDef.getValue());
a3fc8213
AM
106
107 } else if (fieldDef instanceof ArrayDefinition) {
108 ArrayDefinition arrayDef = (ArrayDefinition) fieldDef;
109 ArrayDeclaration arrayDecl = arrayDef.getDeclaration();
110
111 if (arrayDef.isString()) {
112 /* This is an array of UTF-8 bytes, a.k.a. a String! */
68b18f2f 113 field = new CTFStringField(fieldName, fieldDef.toString());
a3fc8213
AM
114
115 } else if (arrayDecl.getElementType() instanceof IntegerDeclaration) {
116 /* This is a an array of CTF Integers */
68b18f2f 117 List<Long> values = new ArrayList<Long>(arrayDecl.getLength());
a3fc8213 118 for (int i = 0; i < arrayDecl.getLength(); i++) {
68b18f2f 119 values.add(((IntegerDefinition) arrayDef.getElem(i)).getValue());
a3fc8213 120 }
cefe3edf
AM
121 long[] valuesArray = convertListToArray(values);
122 field = new CTFIntegerArrayField(fieldName, valuesArray,
123 ((IntegerDeclaration) arrayDecl.getElementType()).getBase(),
459f705b 124 ((IntegerDeclaration) arrayDecl.getElementType()).isSigned());
a3fc8213
AM
125 }
126 /* Add other types of arrays here */
127
128 } else if (fieldDef instanceof SequenceDefinition) {
129 SequenceDefinition seqDef = (SequenceDefinition) fieldDef;
130 SequenceDeclaration seqDecl = seqDef.getDeclaration();
131
132 if (seqDef.getLength() == 0) {
133 /* Some sequences have length = 0. Simply use an empty string */
68b18f2f 134 field = new CTFStringField(fieldName, ""); //$NON-NLS-1$
a3fc8213
AM
135 } else if (seqDef.isString()) {
136 /* Interpret this sequence as a String */
68b18f2f 137 field = new CTFStringField(fieldName, seqDef.toString());
a3fc8213
AM
138 } else if (seqDecl.getElementType() instanceof IntegerDeclaration) {
139 /* Sequence of integers => CTFIntegerArrayField */
68b18f2f 140 List<Long> values = new ArrayList<Long>(seqDef.getLength());
a3fc8213 141 for (int i = 0; i < seqDef.getLength(); i++) {
68b18f2f 142 values.add(((IntegerDefinition) seqDef.getElem(i)).getValue());
a3fc8213 143 }
cefe3edf
AM
144 long[] valuesArray = convertListToArray(values);
145 field = new CTFIntegerArrayField(fieldName, valuesArray,
146 ((IntegerDeclaration) seqDecl.getElementType()).getBase(),
459f705b 147 ((IntegerDeclaration) seqDecl.getElementType()).isSigned());
a3fc8213
AM
148 }
149 /* Add other Sequence types here */
367bcd2b 150
7a6cee1a
GB
151 } else if (fieldDef instanceof StructDefinition) {
152 StructDefinition strDef = (StructDefinition) fieldDef;
153
154 String curFieldName = null;
155 Definition curFieldDef;
156 CtfTmfEventField curField;
157 List<ITmfEventField> list = new ArrayList<ITmfEventField>();
158 /* Recursively parse the fields */
159 for (Entry<String, Definition> entry : strDef.getDefinitions().entrySet()) {
160 curFieldName = entry.getKey();
161 curFieldDef = entry.getValue();
162 curField = CtfTmfEventField.parseField(curFieldDef, curFieldName);
163 list.add(curField);
164 }
165 field = new CTFStructField(fieldName, list.toArray(new CtfTmfEventField[list.size()]));
a0e9eac8 166
404b264a
GB
167 } else if (fieldDef instanceof VariantDefinition) {
168 VariantDefinition varDef = (VariantDefinition) fieldDef;
169
170 String curFieldName = varDef.getCurrentFieldName();
171 Definition curFieldDef = varDef.getDefinitions().get(curFieldName);
172 if (curFieldDef != null) {
51cc7ef4
GB
173 CtfTmfEventField subField = CtfTmfEventField.parseField(curFieldDef, curFieldName);
174 field = new CTFVariantField(fieldName, subField);
404b264a
GB
175 } else {
176 /* A safe-guard, but curFieldDef should never be null */
177 field = new CTFStringField(curFieldName, ""); //$NON-NLS-1$
178 }
179
180 } else {
459f705b
JCK
181 /*
182 * Safe-guard, to avoid null exceptions later, field is expected not
183 * to be null
184 */
404b264a 185 field = new CTFStringField(fieldName, Messages.TmfEventField_UnsupportedType + fieldDef.getClass().toString());
a3fc8213 186 }
a3fc8213
AM
187 return field;
188 }
189
a3fc8213 190 @Override
68b18f2f 191 public String toString() {
51cc7ef4 192 return getName() + '=' + getFormattedValue();
a3fc8213
AM
193 }
194
404b264a
GB
195 /**
196 * Print a numeric value as a string in a given base
197 *
198 * @param value
199 * The value to print as string
200 * @param base
201 * The base for this value
459f705b
JCK
202 * @param signed
203 * Is the value signed or not
404b264a
GB
204 * @return formatted number string
205 * @since 2.0
206 */
459f705b 207 public final static String formatNumber(long value, int base, boolean signed) {
404b264a 208 String s;
459f705b 209
404b264a
GB
210 /* Format the number correctly according to the integer's base */
211 switch (base) {
212 case 2:
213 s = "0b" + Long.toBinaryString(value); //$NON-NLS-1$
214 break;
215 case 8:
216 s = "0" + Long.toOctalString(value); //$NON-NLS-1$
459f705b 217
404b264a
GB
218 break;
219 case 16:
220 s = "0x" + Long.toHexString(value); //$NON-NLS-1$
221 break;
459f705b 222 case 10:
404b264a 223 default:
459f705b
JCK
224 /* For non-standard base, we'll just print it as a decimal number */
225 if (!signed && value < 0) {
226 /* Since there are no 'unsigned long', handle this case with BigInteger */
227 BigInteger bigInteger = BigInteger.valueOf(value);
228 /*
229 * powerOfTwo = 2^64 we add 2^64 to the negative number to get
230 * the real unsigned value
231 */
232 BigInteger powerOfTwo = (BigInteger.valueOf(Long.MAX_VALUE)).add(BigInteger.valueOf(1));
233 powerOfTwo = powerOfTwo.multiply(BigInteger.valueOf(2));
234 bigInteger = bigInteger.add(powerOfTwo);
235
236 s = bigInteger.toString();
237 } else {
238 s = Long.toString(value);
239 }
404b264a
GB
240 break;
241 }
242 return s;
243 }
244
cefe3edf
AM
245 /**
246 * We cannot use List.toArray(T[]) for primitives types, so do it manually.
247 */
248 private static long[] convertListToArray(List<Long> list) {
249 long[] array = new long[list.size()];
250 for (int i = 0; i < list.size(); i++) {
251 array[i] = list.get(i);
252 }
253 return array;
254 }
255
a3fc8213
AM
256}
257
258/**
7558a1e1
AM
259 * The CTF field implementation for integer fields.
260 *
261 * @author alexmont
a3fc8213
AM
262 */
263final class CTFIntegerField extends CtfTmfEventField {
264
367bcd2b 265 private final int base;
459f705b 266 private final boolean signed;
a3fc8213
AM
267
268 /**
269 * A CTF "IntegerDefinition" can be an integer of any byte size, so in the
270 * Java parser this is interpreted as a long.
7558a1e1 271 *
7558a1e1
AM
272 * @param name
273 * The name of this field
459f705b
JCK
274 * @param longValue
275 * The integer value of this field
276 * @param signed
277 * Is the value signed or not
a3fc8213 278 */
459f705b 279 CTFIntegerField(String name, long longValue, int base, boolean signed) {
81ed27a8 280 super(name, longValue, null);
459f705b 281 this.signed = signed;
367bcd2b
AM
282 this.base = base;
283 }
284
a3fc8213
AM
285 @Override
286 public Long getValue() {
68b18f2f 287 return (Long) super.getValue();
a3fc8213
AM
288 }
289
8f86c552
GB
290 @Override
291 public String getFormattedValue() {
459f705b 292 return formatNumber(getValue(), base, signed);
8f86c552
GB
293 }
294
a3fc8213
AM
295}
296
297/**
7558a1e1
AM
298 * The CTF field implementation for string fields
299 *
300 * @author alexmont
a3fc8213
AM
301 */
302final class CTFStringField extends CtfTmfEventField {
303
b1baa808
MK
304 /**
305 * Constructor for CTFStringField.
7558a1e1
AM
306 *
307 * @param strValue
308 * The string value of this field
309 * @param name
310 * The name of this field
b1baa808 311 */
68b18f2f 312 CTFStringField(String name, String strValue) {
81ed27a8 313 super(name, strValue, null);
a3fc8213
AM
314 }
315
a3fc8213
AM
316 @Override
317 public String getValue() {
68b18f2f 318 return (String) super.getValue();
a3fc8213
AM
319 }
320}
321
322/**
7558a1e1
AM
323 * CTF field implementation for arrays of integers.
324 *
325 * @author alexmont
a3fc8213
AM
326 */
327final class CTFIntegerArrayField extends CtfTmfEventField {
328
404b264a 329 private final int base;
459f705b 330 private final boolean signed;
8f86c552 331 private String formattedValue = null;
404b264a 332
b1baa808
MK
333 /**
334 * Constructor for CTFIntegerArrayField.
7558a1e1 335 *
459f705b
JCK
336 * @param name
337 * The name of this field
7558a1e1
AM
338 * @param longValues
339 * The array of integers (as longs) that compose this field's
340 * value
459f705b
JCK
341 * @param signed
342 * Are the values in the array signed or not
b1baa808 343 */
cefe3edf 344 CTFIntegerArrayField(String name, long[] longValues, int base, boolean signed) {
81ed27a8 345 super(name, longValues, null);
404b264a 346 this.base = base;
459f705b 347 this.signed = signed;
a3fc8213
AM
348 }
349
a6223d74 350 @Override
cefe3edf
AM
351 public long[] getValue() {
352 return (long[]) super.getValue();
a3fc8213 353 }
404b264a 354
8f86c552
GB
355 @Override
356 public String getFormattedValue() {
357 if (formattedValue == null) {
358 List<String> strings = new ArrayList<String>();
cefe3edf 359 for (long value : getValue()) {
459f705b 360 strings.add(formatNumber(value, base, signed));
8f86c552
GB
361 }
362 formattedValue = strings.toString();
363 }
364 return formattedValue;
365 }
366
a3fc8213
AM
367}
368
b1baa808 369/**
7558a1e1
AM
370 * CTF field implementation for floats.
371 *
372 * @author emathko
b1baa808 373 */
a04464b1
MK
374final class CTFFloatField extends CtfTmfEventField {
375
b1baa808
MK
376 /**
377 * Constructor for CTFFloatField.
7558a1e1
AM
378 *
379 * @param value
380 * The float value (actually a double) of this field
381 * @param name
382 * The name of this field
b1baa808 383 */
68b18f2f 384 protected CTFFloatField(String name, double value) {
81ed27a8 385 super(name, value, null);
a04464b1
MK
386 }
387
a04464b1 388 @Override
81c8e6f7 389 public Double getValue() {
68b18f2f 390 return (Double) super.getValue();
a04464b1 391 }
a04464b1 392}
7558a1e1 393
d4a8d935
BH
394/**
395 * The CTF field implementation for Enum fields
396 *
397 * @author Bernd Hufmann
398 */
399final class CTFEnumField extends CtfTmfEventField {
400
d4a8d935
BH
401 /**
402 * Constructor for CTFEnumField.
403 *
404 * @param enumValue
459f705b
JCK
405 * The Enum value consisting of a pair of Enum value name and its
406 * long value
d4a8d935
BH
407 * @param name
408 * The name of this field
409 */
68b18f2f
AM
410 CTFEnumField(String name, CtfEnumPair enumValue) {
411 super(name, new CtfEnumPair(enumValue.getFirst(),
459f705b 412 enumValue.getSecond().longValue()), null);
d4a8d935
BH
413 }
414
d4a8d935 415 @Override
68b18f2f
AM
416 public CtfEnumPair getValue() {
417 return (CtfEnumPair) super.getValue();
d4a8d935
BH
418 }
419}
420
7a6cee1a 421/**
51cc7ef4 422 * The CTF field implementation for struct fields with sub-fields
7a6cee1a
GB
423 *
424 * @author gbastien
425 */
426final class CTFStructField extends CtfTmfEventField {
427
428 /**
51cc7ef4 429 * Constructor for CTFStructField.
7a6cee1a 430 *
51cc7ef4
GB
431 * @param fields
432 * The children of this field
7a6cee1a
GB
433 * @param name
434 * The name of this field
435 */
436 CTFStructField(String name, CtfTmfEventField[] fields) {
81ed27a8 437 super(name, fields, fields);
7a6cee1a
GB
438 }
439
7a6cee1a
GB
440 @Override
441 public CtfTmfEventField[] getValue() {
442 return (CtfTmfEventField[]) super.getValue();
443 }
444
445 @Override
51cc7ef4
GB
446 public String getFormattedValue() {
447 return Arrays.toString(getValue());
7a6cee1a 448 }
51cc7ef4
GB
449
450}
451
452/**
453 * The CTF field implementation for variant fields its child
454 *
455 * @author gbastien
456 */
457final class CTFVariantField extends CtfTmfEventField {
458
459 /**
460 * Constructor for CTFVariantField.
461 *
462 * @param field
463 * The field selected for this variant
464 * @param name
465 * The name of this field
466 */
467 CTFVariantField(String name, CtfTmfEventField field) {
459f705b 468 super(name, field, new CtfTmfEventField[] { field });
51cc7ef4
GB
469 }
470
471 @Override
472 public CtfTmfEventField getValue() {
473 return (CtfTmfEventField) super.getValue();
474 }
475
7a6cee1a
GB
476}
477
a3fc8213 478/* Implement other possible fields types here... */
This page took 0.065013 seconds and 5 git commands to generate.