Define CTF API
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / ctf / core / trace / CTFTraceReader.java
CommitLineData
866e5b51
FC
1/*******************************************************************************
2 * Copyright (c) 2011-2012 Ericsson, Ecole Polytechnique de Montreal and others
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 *
9 * Contributors: Matthew Khouzam - Initial API and implementation
10 * Contributors: Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.ctf.core.trace;
14
15import java.util.Collection;
16import java.util.PriorityQueue;
17import java.util.Set;
18import java.util.Vector;
19
866e5b51 20import org.eclipse.linuxtools.ctf.core.event.EventDefinition;
a9d52b8f 21import org.eclipse.linuxtools.internal.ctf.core.Activator;
83603224
MK
22import org.eclipse.linuxtools.internal.ctf.core.trace.Stream;
23import org.eclipse.linuxtools.internal.ctf.core.trace.StreamInput;
769f614a 24import org.eclipse.linuxtools.internal.ctf.core.trace.StreamInputPacketIndexEntry;
83603224 25import org.eclipse.linuxtools.internal.ctf.core.trace.StreamInputReaderTimestampComparator;
c62f8976 26
866e5b51
FC
27/**
28 * Reads the events of a trace.
29 */
30
31public class CTFTraceReader {
32
33 // ------------------------------------------------------------------------
34 // Attributes
35 // ------------------------------------------------------------------------
36
37 /**
38 * The trace to read from.
39 */
40 private final CTFTrace trace;
41
42 /**
43 * Vector of all the trace file readers.
44 */
45 private final Vector<StreamInputReader> streamInputReaders = new Vector<StreamInputReader>();
46
47 /**
48 * Priority queue to order the trace file readers by timestamp.
49 */
50 protected PriorityQueue<StreamInputReader> prio;
51
52 /**
53 * Array to count the number of event per trace file.
54 */
55 private int[] eventCountPerTraceFile;
56
57 /**
58 * Timestamp of the first event in the trace
59 */
60 private long startTime;
61
62 /**
63 * Timestamp of the last event read so far
64 */
65 private long endTime;
66
06656021
MK
67 /**
68 * Current event index
69 */
70 private long index;
71
4dbe1f0e 72 private final long startIndex[];
06656021 73
866e5b51
FC
74 // ------------------------------------------------------------------------
75 // Constructors
76 // ------------------------------------------------------------------------
77
78 /**
79 * Constructs a TraceReader to read a trace.
80 *
81 * @param trace
82 * The trace to read from.
83 * @throws CTFReaderException
84 */
85 public CTFTraceReader(CTFTrace trace) {
86 this.trace = trace;
87
88 /**
89 * Create the trace file readers.
90 */
91 createStreamInputReaders();
92
93 /**
94 * Populate the timestamp-based priority queue.
95 */
96 populateStreamInputReaderHeap();
97
98 /**
99 * Get the start Time of this trace
100 */
101 this.startTime = prio.peek().getCurrentEvent().timestamp;
102 this.endTime = this.startTime;
06656021 103 this.index = 0;
4dbe1f0e 104 startIndex = new long[prio.size()];
f37679e7 105 for (int i = 0; i < prio.size(); i++) {
4dbe1f0e
MK
106 startIndex[i] = 0;
107 }
866e5b51
FC
108 }
109
110 /**
111 * Copy constructor
866e5b51
FC
112 */
113 public CTFTraceReader copyFrom() {
114 CTFTraceReader newReader = null;
115
116 newReader = new CTFTraceReader(this.trace);
117 newReader.startTime = this.startTime;
118 newReader.endTime = this.endTime;
119 return newReader;
120 }
121
122 // ------------------------------------------------------------------------
123 // Getters/Setters/Predicates
124 // ------------------------------------------------------------------------
125
126 /**
127 * Return the start time of this trace (== timestamp of the first event)
128 *
0d9a6d76 129 * @return the trace start time
866e5b51
FC
130 */
131 public long getStartTime() {
132 return this.startTime;
133 }
134
06656021
MK
135 /**
136 * @return the index
137 */
138 public long getIndex() {
139 return index;
140 }
141
866e5b51
FC
142 // ------------------------------------------------------------------------
143 // Operations
144 // ------------------------------------------------------------------------
145
146 /**
147 * Creates one trace file reader per trace file contained in the trace.
148 */
149 private void createStreamInputReaders() {
150 Collection<Stream> streams = this.trace.getStreams().values();
151
152 /*
153 * For each stream.
154 */
155 for (Stream stream : streams) {
156 Set<StreamInput> streamInputs = stream.getStreamInputs();
157
158 /*
159 * For each trace file of the stream.
160 */
161 for (StreamInput streamInput : streamInputs) {
162 /*
163 * Create a reader.
164 */
165 StreamInputReader streamInputReader = new StreamInputReader(
166 streamInput);
167
168 /*
169 * Add it to the group.
170 */
171 this.streamInputReaders.add(streamInputReader);
172 }
173 }
174
175 /*
176 * Create the array to count the number of event per trace file.
177 */
178 this.eventCountPerTraceFile = new int[this.streamInputReaders.size()];
179 }
180
181 /**
182 * Initializes the priority queue used to choose the trace file with the
183 * lower next event timestamp.
184 */
185 private void populateStreamInputReaderHeap() {
186 /*
187 * Create the priority queue with a size twice as bigger as the number
188 * of reader in order to avoid constant resizing.
189 */
190 this.prio = new PriorityQueue<StreamInputReader>(
191 this.streamInputReaders.size() * 2,
192 new StreamInputReaderTimestampComparator());
193
194 int pos = 0;
195
196 for (StreamInputReader reader : this.streamInputReaders) {
197 /*
198 * Add each trace file reader in the priority queue, if we are able
199 * to read an event from it.
200 */
201 if (reader.readNextEvent()) {
202 this.prio.add(reader);
203
204 this.eventCountPerTraceFile[pos] = 0;
205 reader.setName(pos);
206
207 pos++;
208 }
209 }
210 }
211
212 /**
213 * Get the current event, which is the current event of the trace file
214 * reader with the lowest timestamp.
215 *
216 * @return An event definition, or null of the trace reader reached the end
217 * of the trace.
218 */
219 public EventDefinition getCurrentEventDef() {
06656021 220 StreamInputReader top = getTopStream();
866e5b51
FC
221
222 return (top != null) ? top.getCurrentEvent() : null;
223 }
224
225 /**
226 * Go to the next event.
227 *
228 * @return True if an event was read.
229 */
230 public boolean advance() {
06656021
MK
231 /*
232 * Index the
233 */
866e5b51
FC
234 /*
235 * Remove the reader from the top of the priority queue.
236 */
237 StreamInputReader top = this.prio.poll();
238
239 /*
240 * If the queue was empty.
241 */
242 if (top == null) {
243 return false;
244 }
1a096cc5
MK
245 /*
246 * index if needed
247 */
248 if (hasMoreEvents()) {
249 StreamInputPacketReader packetReader = top.getPacketReader();
250 boolean packetHasMoreEvents = packetReader.hasMoreEvents();
251 StreamInputPacketIndexEntry currentPacket = packetReader
252 .getCurrentPacket();
253 if (!packetHasMoreEvents) {
254 int n = this.streamInputReaders.indexOf(top);
255 currentPacket.setIndexBegin(startIndex[n]);
256 currentPacket.setIndexEnd(index);
257 startIndex[n] = index + 1;
258 }
259 }
866e5b51
FC
260 /*
261 * Read the next event of this reader.
262 */
263 if (top.readNextEvent()) {
264 /*
265 * Add it back in the queue.
266 */
267 this.prio.add(top);
268 final long topEnd = top.getCurrentEvent().timestamp;
269 this.endTime = Math.max(topEnd, this.endTime);
270 this.eventCountPerTraceFile[top.getName()]++;
06656021
MK
271 /*
272 * increment the index
273 */
274 index++;
06656021 275 }
1a096cc5
MK
276 boolean hasMoreEvents = hasMoreEvents();
277
866e5b51
FC
278 /*
279 * If there is no reader in the queue, it means the trace reader reached
280 * the end of the trace.
281 */
1a096cc5 282 return hasMoreEvents;
866e5b51
FC
283 }
284
285 /**
286 * Go to the last event in the trace.
287 *
288 * @throws CTFReaderException
289 */
290 public void goToLastEvent() throws CTFReaderException {
291
292 this.seek(0);
293 for (StreamInputReader streamInputReader : this.streamInputReaders) {
294 /*
295 * Seek the trace reader.
296 */
297 streamInputReader.goToLastEvent();
298 }
299 int count = prio.size();
300 for (int i = 0; i < (count); i++) {
301 advance();
302 }
303 }
304
305 /**
306 * Seeks to a given timestamp It will go to the event just after the
307 * timestamp or the timestamp itself. if a if a trace is 10 20 30 40 and
308 * you're looking for 19, it'll give you 20, it you want 20, you'll get 20,
309 * if you want 21, you'll get 30. You want -inf, you'll get the first
310 * element, you want +inf, you'll get the end of the file with no events.
311 *
312 * @param timestamp
313 * the timestamp to seek to
0d9a6d76 314 * @return true if the trace has more events following the timestamp
866e5b51
FC
315 */
316 public boolean seek(long timestamp) {
317 /*
318 * Remove all the trace readers from the priority queue
319 */
320 this.prio.clear();
06656021 321 index = 0;
4dbe1f0e 322 long offset = 0;
06656021
MK
323 for (StreamInputReader streamInputReader : this.streamInputReaders) {
324 /*
325 * Seek the trace reader.
326 */
4dbe1f0e 327 offset += streamInputReader.seek(timestamp);
06656021
MK
328
329 /*
330 * Add it to the priority queue if there is a current event.
331 */
4dbe1f0e
MK
332
333 }
f37679e7 334 for (StreamInputReader streamInputReader : this.streamInputReaders) {
06656021
MK
335 if (streamInputReader.getCurrentEvent() != null) {
336 this.prio.add(streamInputReader);
337 index = Math.max(index, streamInputReader.getPacketReader()
f37679e7
MK
338 .getCurrentPacket().getIndexBegin()
339 + offset);
06656021
MK
340 }
341 }
06656021
MK
342 return hasMoreEvents();
343 }
344
f37679e7 345 public boolean seekIndex(long index) {
06656021 346 this.prio.clear();
f37679e7
MK
347
348 long tempIndex = Long.MIN_VALUE;
349 long tempTimestamp = Long.MIN_VALUE;
c62f8976
MK
350 try {
351 for (StreamInputReader streamInputReader : this.streamInputReaders) {
352 /*
353 * Seek the trace reader.
354 */
355 final long streamIndex = streamInputReader.seekIndex(index);
356 tempIndex = Math.max(tempIndex, streamIndex);
357 tempTimestamp = Math.max(tempTimestamp,
358 streamInputReader.getCurrentEvent().timestamp);
359
360 }
361 } catch (CTFReaderException e) {
866e5b51 362 /*
1a096cc5
MK
363 * Important, if it failed, it's because it's not yet indexed, so we
364 * have to manually advance to the right value.
866e5b51 365 */
c62f8976
MK
366 for (StreamInputReader streamInputReader : this.streamInputReaders) {
367 /*
368 * Seek the trace reader.
369 */
370 streamInputReader.seek(0);
371 }
372 tempIndex = 0;
f37679e7
MK
373 }
374 for (StreamInputReader streamInputReader : this.streamInputReaders) {
866e5b51
FC
375 /*
376 * Add it to the priority queue if there is a current event.
377 */
f37679e7 378
866e5b51
FC
379 if (streamInputReader.getCurrentEvent() != null) {
380 this.prio.add(streamInputReader);
381 }
382 }
1a096cc5
MK
383 if (tempIndex == Long.MAX_VALUE) {
384 tempIndex = 0;
06656021 385 }
f37679e7 386 long pos = tempIndex;
1a096cc5
MK
387 if (index > tempIndex) {
388 /*
389 * advance for offset
390 */
391 while ((prio.peek().getCurrentEvent().timestamp < tempTimestamp)
392 && hasMoreEvents()) {
393 this.advance();
394 }
395
396 for (pos = tempIndex; (pos < index) && hasMoreEvents(); pos++) {
397 this.advance();
398 }
f37679e7
MK
399 }
400 this.index = pos;
866e5b51
FC
401 return hasMoreEvents();
402 }
403
06656021
MK
404 public StreamInputReader getTopStream() {
405 return this.prio.peek();
406 }
407
866e5b51
FC
408 /**
409 * Does the trace have more events?
410 *
411 * @return true if yes.
412 */
413 public boolean hasMoreEvents() {
414 return this.prio.size() > 0;
415 }
416
417 /**
418 * Prints the event count stats.
419 */
420 public void printStats() {
421 printStats(60);
422 }
423
424 /**
425 * Prints the event count stats.
426 *
427 * @param width
428 * Width of the display.
429 */
430 public void printStats(int width) {
431 int numEvents = 0;
432 if (width == 0) {
433 return;
434 }
435
436 for (int i : this.eventCountPerTraceFile) {
437 numEvents += i;
438 }
439
440 for (int j = 0; j < this.eventCountPerTraceFile.length; j++) {
441 StreamInputReader se = this.streamInputReaders.get(j);
442
443 int len = (width * this.eventCountPerTraceFile[se.getName()])
444 / numEvents;
445
83603224 446 StringBuilder sb = new StringBuilder(se.getFilename() + "\t["); //$NON-NLS-1$
866e5b51
FC
447
448 for (int i = 0; i < len; i++) {
449 sb.append('+');
450 }
451
452 for (int i = len; i < width; i++) {
453 sb.append(' ');
454 }
455
456 sb.append("]\t" + this.eventCountPerTraceFile[se.getName()] + " Events"); //$NON-NLS-1$//$NON-NLS-2$
a9d52b8f 457 Activator.getDefault().log(sb.toString());
866e5b51
FC
458 }
459 }
460
461 public long getEndTime() {
462 return this.endTime;
463 }
464
465 @Override
466 public int hashCode() {
467 final int prime = 31;
468 int result = 1;
469 result = (prime * result) + (int) (endTime ^ (endTime >>> 32));
470 result = (prime * result) + (int) (startTime ^ (startTime >>> 32));
471 result = (prime * result)
06656021
MK
472 + ((streamInputReaders == null) ? 0 : streamInputReaders
473 .hashCode());
866e5b51
FC
474 result = (prime * result) + ((trace == null) ? 0 : trace.hashCode());
475 return result;
476 }
477
478 @Override
479 public boolean equals(Object obj) {
480 if (this == obj) {
481 return true;
482 }
483 if (obj == null) {
484 return false;
485 }
486 if (getClass() != obj.getClass()) {
487 return false;
488 }
489 CTFTraceReader other = (CTFTraceReader) obj;
490 if (endTime != other.endTime) {
491 return false;
492 }
493 if (startTime != other.startTime) {
494 return false;
495 }
496 if (streamInputReaders == null) {
497 if (other.streamInputReaders != null) {
498 return false;
499 }
500 } else if (!streamInputReaders.equals(other.streamInputReaders)) {
501 return false;
502 }
503 if (trace == null) {
504 if (other.trace != null) {
505 return false;
506 }
507 } else if (!trace.equals(other.trace)) {
508 return false;
509 }
510 return true;
511 }
512
513 /*
514 * (non-Javadoc)
515 *
516 * @see java.lang.Object#toString()
517 */
518 @Override
519 public String toString() {
520 /* Only for debugging, shouldn't be externalized */
521 return "CTFTraceReader [trace=" + trace + ']'; //$NON-NLS-1$
522 }
523
524 public CTFTrace getTrace() {
525 return trace;
526 }
527}
This page took 0.046505 seconds and 5 git commands to generate.