Fix for bug 385419: Streaming issues with legacy LTTng traces.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / TmfTrace.java
CommitLineData
8c8bf09f 1/*******************************************************************************
09e86496 2 * Copyright (c) 2009, 2010, 2012 Ericsson
0bfb7d06 3 *
8c8bf09f
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
0bfb7d06 8 *
8c8bf09f 9 * Contributors:
20658947
FC
10 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Updated as per TMF Trace Model 1.0
8c8bf09f
ASL
12 *******************************************************************************/
13
6c13869b 14package org.eclipse.linuxtools.tmf.core.trace;
8c8bf09f 15
6f4a1d2b 16import java.io.File;
8c8bf09f 17
828e5592 18import org.eclipse.core.resources.IResource;
9b749023 19import org.eclipse.core.runtime.IPath;
6c13869b 20import org.eclipse.linuxtools.tmf.core.component.TmfEventProvider;
72f1e62a 21import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
4df4581d 22import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
6c13869b
FC
23import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
24import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
b4f71e4a 25import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
6c13869b
FC
26import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest;
27import org.eclipse.linuxtools.tmf.core.request.ITmfEventRequest;
8c8bf09f
ASL
28
29/**
09e86496
FC
30 * Abstract implementation of ITmfTrace.
31 * <p>
13cb5f43
FC
32 * Since the concept of 'location' is trace specific, the concrete classes have
33 * to provide the related methods, namely:
34 * <ul>
35 * <li> public ITmfLocation<?> getCurrentLocation()
36 * <li> public double getLocationRatio(ITmfLocation<?> location)
37 * <li> public ITmfContext seekEvent(ITmfLocation<?> location)
38 * <li> public ITmfContext seekEvent(double ratio)
2848c377 39 * <li> public boolean validate(IProject project, String path)
13cb5f43
FC
40 * </ul>
41 * A concrete trace must provide its corresponding parser. A common way to
42 * accomplish this is by making the concrete class extend TmfTrace and
43 * implement ITmfEventParser.
44 * <p>
45 * The concrete class can either specify its own indexer or use the provided
46 * TmfCheckpointIndexer (default). In this case, the trace cache size will be
47 * used as checkpoint interval.
0bfb7d06 48 *
f7703ed6
FC
49 * @version 1.0
50 * @author Francois Chouinard
51 *
f7703ed6
FC
52 * @see ITmfEvent
53 * @see ITmfTraceIndexer
54 * @see ITmfEventParser
8c8bf09f 55 */
3791b5df 56public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T> implements ITmfTrace<T> {
62d1696a 57
e31e01e8 58 // ------------------------------------------------------------------------
8c8bf09f 59 // Attributes
e31e01e8 60 // ------------------------------------------------------------------------
8c8bf09f 61
09e86496
FC
62 // The resource used for persistent properties for this trace
63 private IResource fResource;
64
b0a282fb 65 // The trace path
12c155f5 66 private String fPath;
b0a282fb 67
0316808c
FC
68 // The trace cache page size
69 private int fCacheSize = ITmfTrace.DEFAULT_TRACE_CACHE_SIZE;
62d1696a 70
0316808c
FC
71 // The number of events collected (so far)
72 private long fNbEvents = 0;
62d1696a
FC
73
74 // The time span of the event stream
a4115405
FC
75 private ITmfTimestamp fStartTime = TmfTimestamp.BIG_CRUNCH;
76 private ITmfTimestamp fEndTime = TmfTimestamp.BIG_BANG;
62d1696a 77
0316808c
FC
78 // The trace streaming interval (0 = no streaming)
79 private long fStreamingInterval = 0;
085d898f 80
0316808c
FC
81 // The trace indexer
82 private ITmfTraceIndexer<ITmfTrace<ITmfEvent>> fIndexer;
20658947 83
0316808c
FC
84 // The trace parser
85 private ITmfEventParser<T> fParser;
7e6347b0 86
e31e01e8 87 // ------------------------------------------------------------------------
3791b5df 88 // Construction
e31e01e8 89 // ------------------------------------------------------------------------
8c8bf09f 90
62d1696a 91 /**
3791b5df 92 * The default, parameterless, constructor
62d1696a 93 */
3791b5df
FC
94 public TmfTrace() {
95 super();
05bd3318
FC
96 }
97
98 /**
13cb5f43 99 * The standard constructor (non-live trace). Applicable when the trace
0bfb7d06
MK
100 * implements its own parser and if at checkpoint-based index is OK.
101 *
20658947
FC
102 * @param resource the resource associated to the trace
103 * @param type the trace event type
104 * @param path the trace path
105 * @param cacheSize the trace cache size
2352aed9 106 * @throws TmfTraceException
20658947 107 */
b4f71e4a 108 protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize) throws TmfTraceException {
9e0640dc 109 this(resource, type, path, cacheSize, 0);
20658947
FC
110 }
111
112 /**
13cb5f43
FC
113 * The standard constructor (live trace). Applicable when the trace
114 * implements its own parser and if at checkpoint-based index is OK.
0bfb7d06 115 *
20658947 116 * @param resource the resource associated to the trace
3791b5df
FC
117 * @param type the trace event type
118 * @param path the trace path
20658947
FC
119 * @param cacheSize the trace cache size
120 * @param interval the trace streaming interval
2352aed9 121 * @throws TmfTraceException
05bd3318 122 */
b4f71e4a 123 protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize, final long interval) throws TmfTraceException {
20658947 124 this(resource, type, path, cacheSize, interval, null);
05bd3318
FC
125 }
126
127 /**
13cb5f43
FC
128 * The 'non-default indexer' constructor. Allows to provide a trace
129 * specific indexer.
0bfb7d06 130 *
20658947 131 * @param resource the resource associated to the trace
3791b5df
FC
132 * @param type the trace event type
133 * @param path the trace path
20658947
FC
134 * @param cacheSize the trace cache size
135 * @param indexer the trace indexer
2352aed9 136 * @throws TmfTraceException
05bd3318 137 */
20658947 138 protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize,
b4f71e4a 139 final long interval, final ITmfTraceIndexer<?> indexer) throws TmfTraceException {
0316808c 140 this(resource, type, path, cacheSize, interval, indexer, null);
13cb5f43
FC
141 }
142
143 /**
0bfb7d06
MK
144 * The full constructor where trace specific indexer/parser are provided.
145 *
13cb5f43
FC
146 * @param resource the resource associated to the trace
147 * @param type the trace event type
148 * @param path the trace path
149 * @param cacheSize the trace cache size
150 * @param indexer the trace indexer
151 * @param parser the trace event parser
2352aed9 152 * @throws TmfTraceException
13cb5f43
FC
153 */
154 @SuppressWarnings({ "unchecked", "rawtypes" })
155 protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize,
2352aed9 156 final long interval, final ITmfTraceIndexer<?> indexer, final ITmfEventParser<T> parser) throws TmfTraceException {
00641a97 157 super();
0316808c 158 fCacheSize = (cacheSize > 0) ? cacheSize : ITmfTrace.DEFAULT_TRACE_CACHE_SIZE;
3791b5df 159 fStreamingInterval = interval;
7e6347b0 160 fIndexer = (indexer != null) ? indexer : new TmfCheckpointIndexer(this, fCacheSize);
13cb5f43 161 fParser = parser;
09e86496 162 initialize(resource, path, type);
8c8bf09f
ASL
163 }
164
3791b5df
FC
165 /**
166 * Copy constructor
0bfb7d06 167 *
3791b5df
FC
168 * @param trace the original trace
169 */
20658947 170 @SuppressWarnings({ "unchecked", "rawtypes" })
b4f71e4a 171 public TmfTrace(final TmfTrace<T> trace) throws TmfTraceException {
3791b5df 172 super();
0316808c 173 if (trace == null) {
3791b5df 174 throw new IllegalArgumentException();
0316808c 175 }
20658947
FC
176 fCacheSize = trace.getCacheSize();
177 fStreamingInterval = trace.getStreamingInterval();
7e6347b0 178 fIndexer = new TmfCheckpointIndexer(this);
13cb5f43
FC
179 fParser = trace.fParser;
180 initialize(trace.getResource(), trace.getPath(), trace.getEventType());
3791b5df
FC
181 }
182
7e6347b0
FC
183 // ------------------------------------------------------------------------
184 // ITmfTrace - Initializers
185 // ------------------------------------------------------------------------
186
187 /* (non-Javadoc)
188 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#initTrace(org.eclipse.core.resources.IResource, java.lang.String, java.lang.Class)
189 */
190 @Override
9dc3dee2 191 @SuppressWarnings({ "unchecked", "rawtypes" })
b4f71e4a 192 public void initTrace(final IResource resource, final String path, final Class<T> type) throws TmfTraceException {
9dc3dee2 193 fIndexer = new TmfCheckpointIndexer(this, fCacheSize);
7e6347b0 194 initialize(resource, path, type);
7e6347b0
FC
195 }
196
09e86496 197 /**
1703b536 198 * Initialize the trace common attributes and the base component.
0bfb7d06
MK
199 *
200 * @param resource the Eclipse resource (trace)
1703b536
FC
201 * @param path the trace path
202 * @param type the trace event type
0bfb7d06 203 *
0316808c 204 * @throws TmfTraceException
3791b5df 205 */
2352aed9 206 @SuppressWarnings("unchecked")
b4f71e4a 207 protected void initialize(final IResource resource, final String path, final Class<T> type) throws TmfTraceException {
0316808c 208 if (path == null) {
b4f71e4a 209 throw new TmfTraceException("Invalid trace path"); //$NON-NLS-1$
0316808c 210 }
3791b5df 211 fPath = path;
1703b536 212 fResource = resource;
25e48683 213 String traceName = (resource != null) ? resource.getName() : null;
1703b536
FC
214 // If no resource was provided, extract the display name the trace path
215 if (traceName == null) {
9b749023 216 final int sep = path.lastIndexOf(IPath.SEPARATOR);
1703b536
FC
217 traceName = (sep >= 0) ? path.substring(sep + 1) : path;
218 }
2352aed9
FC
219 if (fParser == null) {
220 if (this instanceof ITmfEventParser) {
221 fParser = (ITmfEventParser<T>) this;
222 } else {
223 throw new TmfTraceException("Invalid trace parser"); //$NON-NLS-1$
224 }
225 }
3791b5df
FC
226 super.init(traceName, type);
227 }
228
2352aed9
FC
229 /**
230 * Indicates if the path points to an existing file/directory
0bfb7d06 231 *
2352aed9
FC
232 * @param path the path to test
233 * @return true if the file/directory exists
3791b5df 234 */
2352aed9 235 protected boolean fileExists(final String path) {
085d898f 236 final File file = new File(path);
3791b5df
FC
237 return file.exists();
238 }
239
c7e1020d
FC
240 /**
241 * Index the trace
0bfb7d06 242 *
c7e1020d
FC
243 * @param waitForCompletion index synchronously (true) or not (false)
244 */
245 protected void indexTrace(boolean waitForCompletion) {
9e0640dc 246 getIndexer().buildIndex(0, TmfTimeRange.ETERNITY, waitForCompletion);
c7e1020d
FC
247 }
248
b5ee6881
FC
249 /**
250 * Clears the trace
251 */
252 @Override
253 public synchronized void dispose() {
77551cc2
FC
254 // Clean up the index if applicable
255 if (getIndexer() != null) {
256 getIndexer().dispose();
257 }
b5ee6881
FC
258 super.dispose();
259 }
260
3791b5df 261 // ------------------------------------------------------------------------
09e86496 262 // ITmfTrace - Basic getters
e31e01e8 263 // ------------------------------------------------------------------------
8c8bf09f 264
09e86496 265 /* (non-Javadoc)
13cb5f43 266 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getEventType()
25e48683
FC
267 */
268 @Override
09e86496 269 @SuppressWarnings("unchecked")
13cb5f43 270 public Class<T> getEventType() {
09e86496 271 return (Class<T>) super.getType();
25e48683
FC
272 }
273
09e86496
FC
274 /* (non-Javadoc)
275 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getResource()
62d1696a 276 */
d4011df2 277 @Override
09e86496
FC
278 public IResource getResource() {
279 return fResource;
8c8bf09f
ASL
280 }
281
09e86496
FC
282 /* (non-Javadoc)
283 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getPath()
62d1696a 284 */
d4011df2 285 @Override
09e86496
FC
286 public String getPath() {
287 return fPath;
8c8bf09f
ASL
288 }
289
20658947
FC
290 /* (non-Javadoc)
291 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getIndexPageSize()
292 */
293 @Override
294 public int getCacheSize() {
295 return fCacheSize;
296 }
297
298 /* (non-Javadoc)
299 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getStreamingInterval()
300 */
301 @Override
302 public long getStreamingInterval() {
303 return fStreamingInterval;
304 }
305
0316808c
FC
306 /**
307 * @return the trace indexer
308 */
309 protected ITmfTraceIndexer<ITmfTrace<ITmfEvent>> getIndexer() {
310 return fIndexer;
311 }
312
313 /**
314 * @return the trace parser
315 */
316 protected ITmfEventParser<T> getParser() {
317 return fParser;
318 }
319
09e86496
FC
320 // ------------------------------------------------------------------------
321 // ITmfTrace - Trace characteristics getters
322 // ------------------------------------------------------------------------
323
324 /* (non-Javadoc)
325 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getNbEvents()
b0a282fb 326 */
d4011df2 327 @Override
afc86f78 328 public synchronized long getNbEvents() {
3791b5df 329 return fNbEvents;
b0a282fb
FC
330 }
331
09e86496
FC
332 /* (non-Javadoc)
333 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getTimeRange()
62d1696a 334 */
d4011df2 335 @Override
12c155f5 336 public TmfTimeRange getTimeRange() {
cb866e08 337 return new TmfTimeRange(fStartTime, fEndTime);
8c8bf09f
ASL
338 }
339
09e86496
FC
340 /* (non-Javadoc)
341 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getStartTime()
e31e01e8 342 */
d4011df2 343 @Override
4df4581d 344 public ITmfTimestamp getStartTime() {
20658947 345 return fStartTime.clone();
146a887c
FC
346 }
347
09e86496
FC
348 /* (non-Javadoc)
349 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getEndTime()
e31e01e8 350 */
d4011df2 351 @Override
4df4581d 352 public ITmfTimestamp getEndTime() {
20658947
FC
353 return fEndTime.clone();
354 }
355
356 // ------------------------------------------------------------------------
0316808c 357 // Convenience setters/getters
20658947
FC
358 // ------------------------------------------------------------------------
359
0316808c
FC
360 /**
361 * Set the trace cache size. Must be done at initialization time.
0bfb7d06 362 *
0316808c
FC
363 * @param cacheSize The trace cache size
364 */
365 protected void setCacheSize(final int cacheSize) {
366 fCacheSize = cacheSize;
367 }
368
369 /**
370 * Set the trace known number of events. This can be quite dynamic
371 * during indexing or for live traces.
0bfb7d06 372 *
0316808c
FC
373 * @param nbEvents The number of events
374 */
375 protected synchronized void setNbEvents(final long nbEvents) {
376 fNbEvents = (nbEvents > 0) ? nbEvents : 0;
377 }
378
20658947
FC
379 /**
380 * Update the trace events time range
0bfb7d06 381 *
20658947
FC
382 * @param range the new time range
383 */
384 protected void setTimeRange(final TmfTimeRange range) {
385 fStartTime = range.getStartTime().clone();
386 fEndTime = range.getEndTime().clone();
387 }
388
389 /**
390 * Update the trace chronologically first event timestamp
0bfb7d06 391 *
20658947
FC
392 * @param startTime the new first event timestamp
393 */
394 protected void setStartTime(final ITmfTimestamp startTime) {
395 fStartTime = startTime.clone();
396 }
397
398 /**
399 * Update the trace chronologically last event timestamp
0bfb7d06 400 *
20658947
FC
401 * @param endTime the new last event timestamp
402 */
403 protected void setEndTime(final ITmfTimestamp endTime) {
404 fEndTime = endTime.clone();
405 }
406
407 /**
0316808c 408 * Set the polling interval for live traces (default = 0 = no streaming).
0bfb7d06 409 *
20658947
FC
410 * @param interval the new trace streaming interval
411 */
412 protected void setStreamingInterval(final long interval) {
1703b536 413 fStreamingInterval = (interval > 0) ? interval : 0;
146a887c
FC
414 }
415
0316808c
FC
416 /**
417 * Set the trace indexer. Must be done at initialization time.
0bfb7d06 418 *
0316808c
FC
419 * @param indexer the trace indexer
420 */
421 protected void setIndexer(final ITmfTraceIndexer<ITmfTrace<ITmfEvent>> indexer) {
422 fIndexer = indexer;
423 }
424
425 /**
426 * Set the trace parser. Must be done at initialization time.
0bfb7d06 427 *
0316808c
FC
428 * @param parser the new trace parser
429 */
430 protected void setParser(final ITmfEventParser<T> parser) {
431 fParser = parser;
432 }
433
09e86496 434 // ------------------------------------------------------------------------
7e6347b0 435 // ITmfTrace - SeekEvent operations (returning a trace context)
09e86496
FC
436 // ------------------------------------------------------------------------
437
438 /* (non-Javadoc)
7e6347b0 439 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#seekEvent(long)
1b70b6dc
PT
440 */
441 @Override
7e6347b0 442 public synchronized ITmfContext seekEvent(final long rank) {
09e86496 443
7e6347b0 444 // A rank <= 0 indicates to seek the first event
2352aed9
FC
445 if (rank <= 0) {
446 ITmfContext context = seekEvent((ITmfLocation<?>) null);
447 context.setRank(0);
448 return context;
449 }
09e86496 450
09e86496 451 // Position the trace at the checkpoint
7e6347b0 452 final ITmfContext context = fIndexer.seekIndex(rank);
09e86496
FC
453
454 // And locate the requested event context
7e6347b0
FC
455 long pos = context.getRank();
456 if (pos < rank) {
c32744d6 457 ITmfEvent event = getNext(context);
0bfb7d06 458 while ((event != null) && (++pos < rank)) {
c32744d6 459 event = getNext(context);
7e6347b0 460 }
09e86496
FC
461 }
462 return context;
1b70b6dc
PT
463 }
464
09e86496 465 /* (non-Javadoc)
7e6347b0 466 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#seekEvent(org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp)
09e86496
FC
467 */
468 @Override
7e6347b0 469 public synchronized ITmfContext seekEvent(final ITmfTimestamp timestamp) {
09e86496 470
7e6347b0 471 // A null timestamp indicates to seek the first event
2352aed9
FC
472 if (timestamp == null) {
473 ITmfContext context = seekEvent((ITmfLocation<?>) null);
474 context.setRank(0);
475 return context;
476 }
09e86496 477
1703b536 478 // Position the trace at the checkpoint
408e65d2 479 ITmfContext context = fIndexer.seekIndex(timestamp);
09e86496
FC
480
481 // And locate the requested event context
7e6347b0 482 final ITmfContext nextEventContext = context.clone(); // Must use clone() to get the right subtype...
c32744d6 483 ITmfEvent event = getNext(nextEventContext);
7e6347b0 484 while (event != null && event.getTimestamp().compareTo(timestamp, false) < 0) {
3cec7398 485 context = nextEventContext.clone();
c32744d6 486 event = getNext(nextEventContext);
09e86496 487 }
0316808c
FC
488 if (event == null) {
489 context.setLocation(null);
490 context.setRank(ITmfContext.UNKNOWN_RANK);
491 }
09e86496
FC
492 return context;
493 }
17324c9a 494
09e86496
FC
495 // ------------------------------------------------------------------------
496 // ITmfTrace - Read operations (returning an actual event)
497 // ------------------------------------------------------------------------
498
d337369a 499 /* (non-Javadoc)
b4f71e4a 500 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#readNextEvent(org.eclipse.linuxtools.tmf.core.trace.ITmfContext)
abfad0aa 501 */
d4011df2 502 @Override
c32744d6 503 public synchronized T getNext(final ITmfContext context) {
09e86496 504 // parseEvent() does not update the context
c32744d6 505 final T event = fParser.parseEvent(context);
09e86496 506 if (event != null) {
d337369a 507 updateAttributes(context, event.getTimestamp());
09e86496
FC
508 context.setLocation(getCurrentLocation());
509 context.increaseRank();
510 processEvent(event);
511 }
512 return event;
513 }
514
515 /**
d337369a 516 * Hook for special event processing by the concrete class
7e6347b0 517 * (called by TmfTrace.getEvent())
0bfb7d06 518 *
d337369a 519 * @param event the event
09e86496
FC
520 */
521 protected void processEvent(final ITmfEvent event) {
d337369a 522 // Do nothing
09e86496
FC
523 }
524
d337369a
FC
525 /**
526 * Update the trace attributes
0bfb7d06 527 *
d337369a 528 * @param context the current trace context
2848c377 529 * @param timestamp the corresponding timestamp
d337369a
FC
530 */
531 protected synchronized void updateAttributes(final ITmfContext context, final ITmfTimestamp timestamp) {
0bfb7d06 532 if (fStartTime.equals(TmfTimestamp.BIG_BANG) || (fStartTime.compareTo(timestamp, false) > 0)) {
49e2f79a 533 fStartTime = timestamp.clone();
09e86496 534 }
0bfb7d06 535 if (fEndTime.equals(TmfTimestamp.BIG_CRUNCH) || (fEndTime.compareTo(timestamp, false) < 0)) {
49e2f79a 536 fEndTime = timestamp.clone();
09e86496
FC
537 }
538 if (context.hasValidRank()) {
d337369a 539 long rank = context.getRank();
09e86496
FC
540 if (fNbEvents <= rank) {
541 fNbEvents = rank + 1;
542 }
d337369a 543 fIndexer.updateIndex(context, timestamp);
09e86496 544 }
abfad0aa
FC
545 }
546
3791b5df 547 // ------------------------------------------------------------------------
d337369a 548 // TmfDataProvider
3791b5df
FC
549 // ------------------------------------------------------------------------
550
d337369a
FC
551 /* (non-Javadoc)
552 * @see org.eclipse.linuxtools.tmf.core.component.TmfDataProvider#armRequest(org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest)
553 */
3791b5df 554 @Override
9e0640dc 555 protected ITmfContext armRequest(final ITmfDataRequest<T> request) {
0bfb7d06 556 if ((request instanceof ITmfEventRequest<?>)
0316808c 557 && !TmfTimestamp.BIG_BANG.equals(((ITmfEventRequest<T>) request).getRange().getStartTime())
0bfb7d06 558 && (request.getIndex() == 0))
0316808c 559 {
085d898f 560 final ITmfContext context = seekEvent(((ITmfEventRequest<T>) request).getRange().getStartTime());
3791b5df
FC
561 ((ITmfEventRequest<T>) request).setStartIndex((int) context.getRank());
562 return context;
563
564 }
565 return seekEvent(request.getIndex());
566 }
567
3791b5df 568 // ------------------------------------------------------------------------
09e86496 569 // toString
3791b5df
FC
570 // ------------------------------------------------------------------------
571
d337369a
FC
572 /* (non-Javadoc)
573 * @see java.lang.Object#toString()
574 */
12c155f5 575 @Override
09e86496 576 @SuppressWarnings("nls")
afc86f78 577 public synchronized String toString() {
20658947
FC
578 return "TmfTrace [fPath=" + fPath + ", fCacheSize=" + fCacheSize
579 + ", fNbEvents=" + fNbEvents + ", fStartTime=" + fStartTime
580 + ", fEndTime=" + fEndTime + ", fStreamingInterval=" + fStreamingInterval + "]";
12c155f5
FC
581 }
582
8c8bf09f 583}
This page took 0.080866 seconds and 5 git commands to generate.