Change ITmfTrace<T extends TmfEvent> to ITmfTrace<T extends ITmfEvent>
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / widgetStubs / org / eclipse / linuxtools / tmf / ui / tests / uml2sd / trace / TmfUml2SDTestTrace.java
CommitLineData
73005152
BH
1/*******************************************************************************
2 * Copyright (c) 2011 Ericsson
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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12package org.eclipse.linuxtools.tmf.ui.tests.uml2sd.trace;
13
14import java.io.EOFException;
15import java.io.IOException;
16import java.io.RandomAccessFile;
17
4c564a2d 18import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
6c13869b 19import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
6c13869b 20import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
6c13869b
FC
21import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
22import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
23import org.eclipse.linuxtools.tmf.core.parser.ITmfEventParser;
24import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
25import org.eclipse.linuxtools.tmf.core.trace.TmfContext;
26import org.eclipse.linuxtools.tmf.core.trace.TmfLocation;
27import org.eclipse.linuxtools.tmf.stubs.trace.TmfTraceStub;
73005152 28
72f1e62a 29public class TmfUml2SDTestTrace implements ITmfEventParser<TmfEvent> {
73005152
BH
30
31 @Override
32 @SuppressWarnings({ "unchecked", "nls" })
72f1e62a 33 public TmfEvent parseNextEvent(ITmfTrace<TmfEvent> eventStream, TmfContext context) throws IOException {
73005152
BH
34 if (! (eventStream instanceof TmfTraceStub)) {
35 return null;
36 }
37
38 // Highly inefficient...
39 RandomAccessFile stream = ((TmfTraceStub) eventStream).getStream();
40
41 String name = eventStream.getName();
42 name = name.substring(name.lastIndexOf('/') + 1);
43
44 long location = 0;
45 if (context != null)
46 location = ((TmfLocation<Long>) (context.getLocation())).getLocation();
47 stream.seek(location);
48
49 try {
50 long ts = stream.readLong();
51 String source = stream.readUTF();
52 String type = stream.readUTF();
53 String reference = stream.readUTF();
54 String sender = stream.readUTF();
55 String receiver = stream.readUTF();
56 String signal = stream.readUTF();
57
73005152
BH
58 String[] labels = {"sender", "receiver", "signal"};
59
4c564a2d
FC
60 TmfEventType tmfEventType = new TmfEventType("UnitTest", type, TmfEventField.makeRoot(labels));
61 TmfEvent tmfEvent = new TmfEvent(new TmfTimestamp(ts, -9), source, tmfEventType, reference);
73005152
BH
62
63 String content = "[";
64 content += sender;
65 content += "," + receiver;
66 content += "," + signal;
67 content += "]";
68
4c564a2d
FC
69 // Pre-parse the content
70 TmfEventField[] fields = new TmfEventField[3];
71 fields[0] = new TmfEventField("sender", sender);
72 fields[1] = new TmfEventField("receiver", receiver);
73 fields[2] = new TmfEventField("signal", signal);
74
75 ITmfEventField tmfContent = new TmfEventField(ITmfEventField.ROOT_ID, content, fields);
73005152
BH
76 tmfEvent.setContent(tmfContent);
77
78 return tmfEvent;
79 } catch (EOFException e) {
80 }
81 return null;
82 }
83
84}
This page took 0.027548 seconds and 5 git commands to generate.