Rename 'locationData' to 'locationInfo' (for lack of a better name...)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / trace / TmfEventParserStub.java
CommitLineData
d18dd09b
ASL
1/*******************************************************************************
2 * Copyright (c) 2009 Ericsson
54a7a54c 3 *
d18dd09b
ASL
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
54a7a54c 8 *
d18dd09b
ASL
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
4918b8f2 13package org.eclipse.linuxtools.tmf.tests.stubs.trace;
d18dd09b
ASL
14
15import java.io.EOFException;
16import java.io.IOException;
17import java.io.RandomAccessFile;
18import java.util.Vector;
19
4c564a2d 20import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
6c13869b 21import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
4c564a2d 22import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
6c13869b
FC
23import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
24import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
a1440d1f 25import org.eclipse.linuxtools.tmf.core.trace.ITmfContext;
7e6347b0 26import org.eclipse.linuxtools.tmf.core.trace.ITmfEventParser;
6c13869b 27import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
d18dd09b
ASL
28
29/**
30 * <b><u>TmfEventParserStub</u></b>
31 * <p>
32 * TODO: Implement me. Please.
33 */
54a7a54c 34@SuppressWarnings({"nls","javadoc"})
6256d8ad 35public class TmfEventParserStub implements ITmfEventParser {
d18dd09b 36
e31e01e8 37 // ------------------------------------------------------------------------
d18dd09b 38 // Attributes
e31e01e8 39 // ------------------------------------------------------------------------
d18dd09b 40
085d898f 41 private static final int NB_TYPES = 10;
28b94d61 42 private final TmfEventType[] fTypes;
6256d8ad 43 private final ITmfTrace fEventStream;
d18dd09b 44
e31e01e8 45 // ------------------------------------------------------------------------
d18dd09b 46 // Constructors
e31e01e8 47 // ------------------------------------------------------------------------
d18dd09b 48
6256d8ad 49 public TmfEventParserStub(final ITmfTrace eventStream) {
7e6347b0 50 fEventStream = eventStream;
085d898f
FC
51 fTypes = new TmfEventType[NB_TYPES];
52 for (int i = 0; i < NB_TYPES; i++) {
53 final Vector<String> fields = new Vector<String>();
54 for (int j = 1; j <= i; j++) {
55 final String field = "Fmt-" + i + "-Fld-" + j;
56 fields.add(field);
57 }
58 final String[] fieldArray = new String[i];
59 final ITmfEventField rootField = TmfEventField.makeRoot(fields.toArray(fieldArray));
60 fTypes[i] = new TmfEventType("UnitTest", "Type-" + i, rootField);
61 }
d18dd09b
ASL
62 }
63
e31e01e8 64 // ------------------------------------------------------------------------
d18dd09b 65 // Operators
e31e01e8 66 // ------------------------------------------------------------------------
d18dd09b
ASL
67
68 static final String typePrefix = "Type-";
d4011df2 69 @Override
2352aed9 70 public TmfEvent parseEvent(final ITmfContext context) {
d18dd09b 71
54a7a54c 72 if (! (fEventStream instanceof TmfTraceStub)) {
d18dd09b 73 return null;
54a7a54c 74 }
d18dd09b 75
085d898f 76 // Highly inefficient...
7e6347b0 77 final RandomAccessFile stream = ((TmfTraceStub) fEventStream).getStream();
085d898f
FC
78 // String name = eventStream.getName();
79 // name = name.substring(name.lastIndexOf('/') + 1);
80
81 // no need to use synchronized since it's already cover by the calling method
82
83 long location = 0;
0316808c 84 if (context != null && context.getLocation() != null) {
5976d44a 85 location = (Long) context.getLocation().getLocationInfo();
0316808c
FC
86 try {
87 stream.seek(location);
88
89 final long ts = stream.readLong();
90 final String source = stream.readUTF();
91 final String type = stream.readUTF();
92 final Integer reference = stream.readInt();
93 final int typeIndex = Integer.parseInt(type.substring(typePrefix.length()));
94 final String[] fields = new String[typeIndex];
54a7a54c 95 for (int i = 0; i < typeIndex; i++) {
0316808c 96 fields[i] = stream.readUTF();
54a7a54c 97 }
0316808c
FC
98
99 final StringBuffer content = new StringBuffer("[");
54a7a54c 100 if (typeIndex > 0) {
0316808c 101 content.append(fields[0]);
54a7a54c
FC
102 }
103 for (int i = 1; i < typeIndex; i++) {
0316808c 104 content.append(", ").append(fields[i]);
54a7a54c 105 }
0316808c
FC
106 content.append("]");
107
108 final TmfEventField root = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, content.toString());
109 final TmfEvent event = new TmfEvent(fEventStream,
110 new TmfTimestamp(ts, -3, 0), // millisecs
111 source, fTypes[typeIndex], root, reference.toString());
112 return event;
113 } catch (final EOFException e) {
114 } catch (final IOException e) {
115 }
085d898f 116 }
d18dd09b
ASL
117 return null;
118 }
119
6256d8ad 120}
This page took 0.042431 seconds and 5 git commands to generate.