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