tmf/lttng: Fix newly-introduced Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / TmfTrace.java
index 86e38d5d3e46d2a8ff8e3d29499424976b1e8cce..ea18b442fd081056e97b60f3b34293dd22f89a34 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
  * Copyright (c) 2009, 2010, 2012 Ericsson
- * 
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Francois Chouinard - Initial API and implementation
  *   Francois Chouinard - Updated as per TMF Trace Model 1.0
 package org.eclipse.linuxtools.tmf.core.trace;
 
 import java.io.File;
-import java.io.FileNotFoundException;
 
-import org.eclipse.core.resources.IProject;
 import org.eclipse.core.resources.IResource;
-import org.eclipse.core.runtime.Path;
+import org.eclipse.core.runtime.IPath;
 import org.eclipse.linuxtools.tmf.core.component.TmfEventProvider;
 import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
 import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
 import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
 import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
 import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest;
 import org.eclipse.linuxtools.tmf.core.request.ITmfEventRequest;
+import org.eclipse.linuxtools.tmf.core.statesystem.ITmfStateSystem;
+import org.eclipse.linuxtools.tmf.core.statistics.ITmfStatistics;
+import org.eclipse.linuxtools.tmf.core.statistics.TmfStateStatistics;
 
 /**
- * <b><u>TmfTrace</u></b>
- * <p>
  * Abstract implementation of ITmfTrace.
  * <p>
  * Since the concept of 'location' is trace specific, the concrete classes have
@@ -39,6 +39,7 @@ import org.eclipse.linuxtools.tmf.core.request.ITmfEventRequest;
  * <li> public double getLocationRatio(ITmfLocation<?> location)
  * <li> public ITmfContext seekEvent(ITmfLocation<?> location)
  * <li> public ITmfContext seekEvent(double ratio)
+ * <li> public boolean validate(IProject project, String path)
  * </ul>
  * A concrete trace must provide its corresponding parser. A common way to
  * accomplish this is by making the concrete class extend TmfTrace and
@@ -47,17 +48,15 @@ import org.eclipse.linuxtools.tmf.core.request.ITmfEventRequest;
  * The concrete class can either specify its own indexer or use the provided
  * TmfCheckpointIndexer (default). In this case, the trace cache size will be
  * used as checkpoint interval.
+ *
+ * @version 1.0
+ * @author Francois Chouinard
+ *
+ * @see ITmfEvent
+ * @see ITmfTraceIndexer
+ * @see ITmfEventParser
  */
-public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T> implements ITmfTrace<T> {
-
-    // ------------------------------------------------------------------------
-    // Constants
-    // ------------------------------------------------------------------------
-
-    /**
-     * The default trace cache size
-     */
-    public static final int DEFAULT_TRACE_CACHE_SIZE = 50000;
+public abstract class TmfTrace extends TmfEventProvider implements ITmfTrace {
 
     // ------------------------------------------------------------------------
     // Attributes
@@ -69,34 +68,27 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
     // The trace path
     private String fPath;
 
-    /**
-     * The cache page size
-     */
-    protected int fCacheSize = DEFAULT_TRACE_CACHE_SIZE;
+    // The trace cache page size
+    private int fCacheSize = ITmfTrace.DEFAULT_TRACE_CACHE_SIZE;
 
-    /**
-     * The number of events collected so far
-     */
-    protected long fNbEvents = 0;
+    // The number of events collected (so far)
+    private long fNbEvents = 0;
 
     // The time span of the event stream
     private ITmfTimestamp fStartTime = TmfTimestamp.BIG_CRUNCH;
     private ITmfTimestamp fEndTime = TmfTimestamp.BIG_BANG;
 
-    /**
-     * The trace streaming interval (0 = no streaming)
-     */
-    protected long fStreamingInterval = 0;
+    // The trace streaming interval (0 = no streaming)
+    private long fStreamingInterval = 0;
 
-    /**
-     * The trace indexer
-     */
-    protected ITmfTraceIndexer<ITmfTrace<ITmfEvent>> fIndexer;
+    // The trace indexer
+    private ITmfTraceIndexer fIndexer;
 
-    /**
-     * The trace parser
-     */
-    protected ITmfEventParser<ITmfEvent> fParser;
+    // The trace parser
+    private ITmfEventParser fParser;
+
+    // The trace's statistics
+    private ITmfStatistics fStatistics;
 
     // ------------------------------------------------------------------------
     // Construction
@@ -105,73 +97,72 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
     /**
      * The default, parameterless, constructor
      */
-    @SuppressWarnings({ "unchecked", "rawtypes" })
     public TmfTrace() {
         super();
-        fIndexer = new TmfCheckpointIndexer(this);
     }
 
     /**
      * The standard constructor (non-live trace). Applicable when the trace
-     * implements its own parser and if at checkpoint-based index is OK. 
-     * 
+     * implements its own parser and if at checkpoint-based index is OK.
+     *
      * @param resource the resource associated to the trace
      * @param type the trace event type
      * @param path the trace path
      * @param cacheSize the trace cache size
-     * @throws FileNotFoundException
+     * @throws TmfTraceException If something failed during the opening
      */
-    protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize) throws FileNotFoundException {
-        this(resource, type, path, cacheSize, 0, null);
+    protected TmfTrace(final IResource resource, final Class<? extends ITmfEvent> type, final String path, final int cacheSize) throws TmfTraceException {
+        this(resource, type, path, cacheSize, 0);
     }
 
     /**
      * The standard constructor (live trace). Applicable when the trace
      * implements its own parser and if at checkpoint-based index is OK.
-     * 
+     *
      * @param resource the resource associated to the trace
      * @param type the trace event type
      * @param path the trace path
      * @param cacheSize the trace cache size
      * @param interval the trace streaming interval
-     * @throws FileNotFoundException
+     * @throws TmfTraceException If something failed during the opening
      */
-    protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize, final long interval) throws FileNotFoundException {
+    protected TmfTrace(final IResource resource, final Class<? extends ITmfEvent> type, final String path, final int cacheSize, final long interval) throws TmfTraceException {
         this(resource, type, path, cacheSize, interval, null);
     }
 
     /**
      * The 'non-default indexer' constructor. Allows to provide a trace
      * specific indexer.
-     * 
+     *
      * @param resource the resource associated to the trace
      * @param type the trace event type
      * @param path the trace path
      * @param cacheSize the trace cache size
+     * @param interval the trace streaming interval
      * @param indexer the trace indexer
-     * @throws FileNotFoundException
+     * @throws TmfTraceException If something failed during the opening
      */
-    protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize,
-            final long interval, final ITmfTraceIndexer<?> indexer) throws FileNotFoundException {
-        this(resource, type, path, cacheSize, interval, null, null);
+    protected TmfTrace(final IResource resource, final Class<? extends ITmfEvent> type, final String path, final int cacheSize,
+            final long interval, final ITmfTraceIndexer indexer) throws TmfTraceException {
+        this(resource, type, path, cacheSize, interval, indexer, null);
     }
 
     /**
-     * The full constructor where trace specific indexer/parser are provided. 
-     * 
+     * The full constructor where trace specific indexer/parser are provided.
+     *
      * @param resource the resource associated to the trace
      * @param type the trace event type
      * @param path the trace path
      * @param cacheSize the trace cache size
+     * @param interval the trace streaming interval
      * @param indexer the trace indexer
      * @param parser the trace event parser
-     * @throws FileNotFoundException
+     * @throws TmfTraceException If something failed during the opening
      */
-    @SuppressWarnings({ "unchecked", "rawtypes" })
-    protected TmfTrace(final IResource resource, final Class<T> type, final String path, final int cacheSize,
-            final long interval, final ITmfTraceIndexer<?> indexer, final ITmfEventParser<ITmfEvent> parser) throws FileNotFoundException {
+    protected TmfTrace(final IResource resource, final Class<? extends ITmfEvent> type, final String path, final int cacheSize,
+            final long interval, final ITmfTraceIndexer indexer, final ITmfEventParser parser) throws TmfTraceException {
         super();
-        fCacheSize = (cacheSize > 0) ? cacheSize : DEFAULT_TRACE_CACHE_SIZE;
+        fCacheSize = (cacheSize > 0) ? cacheSize : ITmfTrace.DEFAULT_TRACE_CACHE_SIZE;
         fStreamingInterval = interval;
         fIndexer = (indexer != null) ? indexer : new TmfCheckpointIndexer(this, fCacheSize);
         fParser = parser;
@@ -180,14 +171,15 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
 
     /**
      * Copy constructor
-     * 
+     *
      * @param trace the original trace
+     * @throws TmfTraceException Should not happen usually
      */
-    @SuppressWarnings({ "unchecked", "rawtypes" })
-    public TmfTrace(final TmfTrace<T> trace) throws FileNotFoundException {
+    public TmfTrace(final TmfTrace trace) throws TmfTraceException {
         super();
-        if (trace == null)
+        if (trace == null) {
             throw new IllegalArgumentException();
+        }
         fCacheSize = trace.getCacheSize();
         fStreamingInterval = trace.getStreamingInterval();
         fIndexer = new TmfCheckpointIndexer(this);
@@ -203,45 +195,97 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
      * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#initTrace(org.eclipse.core.resources.IResource, java.lang.String, java.lang.Class)
      */
     @Override
-    public void initTrace(final IResource resource, final String path, final Class<T> type) throws FileNotFoundException {
+    public void initTrace(final IResource resource, final String path, final Class<? extends ITmfEvent> type) throws TmfTraceException {
+        fIndexer = new TmfCheckpointIndexer(this, fCacheSize);
         initialize(resource, path, type);
-        fIndexer.buildIndex(false);
     }
 
     /**
      * Initialize the trace common attributes and the base component.
-     * 
-     * @param resource the Eclipse resource (trace) 
+     *
+     * @param resource the Eclipse resource (trace)
      * @param path the trace path
      * @param type the trace event type
-     * 
-     * @throws FileNotFoundException
+     *
+     * @throws TmfTraceException If something failed during the initialization
      */
-    protected void initialize(final IResource resource, final String path, final Class<T> type) throws FileNotFoundException {
-        if (path == null)
-            throw new FileNotFoundException();
+    protected void initialize(final IResource resource, final String path, final Class<? extends ITmfEvent> type) throws TmfTraceException {
+        if (path == null) {
+            throw new TmfTraceException("Invalid trace path"); //$NON-NLS-1$
+        }
         fPath = path;
         fResource = resource;
         String traceName = (resource != null) ? resource.getName() : null;
         // If no resource was provided, extract the display name the trace path
         if (traceName == null) {
-            final int sep = path.lastIndexOf(Path.SEPARATOR);
+            final int sep = path.lastIndexOf(IPath.SEPARATOR);
             traceName = (sep >= 0) ? path.substring(sep + 1) : path;
         }
+        if (fParser == null) {
+            if (this instanceof ITmfEventParser) {
+                fParser = (ITmfEventParser) this;
+            } else {
+                throw new TmfTraceException("Invalid trace parser"); //$NON-NLS-1$
+            }
+        }
         super.init(traceName, type);
+
+        buildStatistics();
     }
 
-    /* (non-Javadoc)
-     * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#validate(org.eclipse.core.resources.IProject, java.lang.String)
-     * 
-     * Default validation: make sure the trace file exists.
+    /**
+     * Indicates if the path points to an existing file/directory
+     *
+     * @param path the path to test
+     * @return true if the file/directory exists
      */
-    @Override
-    public boolean validate(final IProject project, final String path) {
+    protected boolean fileExists(final String path) {
         final File file = new File(path);
         return file.exists();
     }
 
+    /**
+     * Index the trace
+     *
+     * @param waitForCompletion index synchronously (true) or not (false)
+     */
+    protected void indexTrace(boolean waitForCompletion) {
+        getIndexer().buildIndex(0, TmfTimeRange.ETERNITY, waitForCompletion);
+    }
+
+    /**
+     * The default implementation of TmfTrace uses a TmfStatistics back-end.
+     * Override this if you want to specify another type (or none at all).
+     *
+     * @throws TmfTraceException
+     *             If there was a problem setting up the statistics
+     * @since 2.0
+     */
+    protected void buildStatistics() throws TmfTraceException {
+        /*
+         * Initialize the statistics provider, but only if a Resource has been
+         * set (so we don't build it for experiments, for unit tests, etc.)
+         */
+        fStatistics = (fResource == null ? null : new TmfStateStatistics(this) );
+    }
+
+    /**
+     * Clears the trace
+     */
+    @Override
+    public synchronized void dispose() {
+        /* Clean up the index if applicable */
+        if (getIndexer() != null) {
+            getIndexer().dispose();
+        }
+
+        /* Clean up the statistics */
+        if (fStatistics != null) {
+            fStatistics.dispose();
+        }
+        super.dispose();
+    }
+
     // ------------------------------------------------------------------------
     // ITmfTrace - Basic getters
     // ------------------------------------------------------------------------
@@ -250,9 +294,8 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
      * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getEventType()
      */
     @Override
-    @SuppressWarnings("unchecked")
-    public Class<T> getEventType() {
-        return (Class<T>) super.getType();
+    public Class<ITmfEvent> getEventType() {
+        return (Class<ITmfEvent>) super.getType();
     }
 
     /* (non-Javadoc)
@@ -287,6 +330,40 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
         return fStreamingInterval;
     }
 
+    /**
+     * @return the trace indexer
+     */
+    protected ITmfTraceIndexer getIndexer() {
+        return fIndexer;
+    }
+
+    /**
+     * @return the trace parser
+     */
+    protected ITmfEventParser getParser() {
+        return fParser;
+    }
+
+    /**
+     * @since 2.0
+     */
+    @Override
+    public ITmfStatistics getStatistics() {
+        return fStatistics;
+    }
+
+    /**
+     * @since 2.0
+     */
+    @Override
+    public ITmfStateSystem getStateSystem() {
+        /*
+         * By default, no state system is used. Sub-classes can specify their
+         * own behaviour.
+         */
+        return null;
+    }
+
     // ------------------------------------------------------------------------
     // ITmfTrace - Trace characteristics getters
     // ------------------------------------------------------------------------
@@ -295,7 +372,7 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
      * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getNbEvents()
      */
     @Override
-    public long getNbEvents() {
+    public synchronized long getNbEvents() {
         return fNbEvents;
     }
 
@@ -312,7 +389,7 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
      */
     @Override
     public ITmfTimestamp getStartTime() {
-        return fStartTime.clone();
+        return fStartTime;
     }
 
     /* (non-Javadoc)
@@ -320,50 +397,87 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
      */
     @Override
     public ITmfTimestamp getEndTime() {
-        return fEndTime.clone();
+        return fEndTime;
     }
 
     // ------------------------------------------------------------------------
-    // Convenience setters
+    // Convenience setters/getters
     // ------------------------------------------------------------------------
 
+    /**
+     * Set the trace cache size. Must be done at initialization time.
+     *
+     * @param cacheSize The trace cache size
+     */
+    protected void setCacheSize(final int cacheSize) {
+        fCacheSize = cacheSize;
+    }
+
+    /**
+     * Set the trace known number of events. This can be quite dynamic
+     * during indexing or for live traces.
+     *
+     * @param nbEvents The number of events
+     */
+    protected synchronized void setNbEvents(final long nbEvents) {
+        fNbEvents = (nbEvents > 0) ? nbEvents : 0;
+    }
+
     /**
      * Update the trace events time range
-     * 
+     *
      * @param range the new time range
      */
     protected void setTimeRange(final TmfTimeRange range) {
-        fStartTime = range.getStartTime().clone();
-        fEndTime = range.getEndTime().clone();
+        fStartTime = range.getStartTime();
+        fEndTime = range.getEndTime();
     }
 
     /**
      * Update the trace chronologically first event timestamp
-     * 
+     *
      * @param startTime the new first event timestamp
      */
     protected void setStartTime(final ITmfTimestamp startTime) {
-        fStartTime = startTime.clone();
+        fStartTime = startTime;
     }
 
     /**
      * Update the trace chronologically last event timestamp
-     * 
+     *
      * @param endTime the new last event timestamp
      */
     protected void setEndTime(final ITmfTimestamp endTime) {
-        fEndTime = endTime.clone();
+        fEndTime = endTime;
     }
 
     /**
-     * Update the trace streaming interval
-     * 
+     * Set the polling interval for live traces (default = 0 = no streaming).
+     *
      * @param interval the new trace streaming interval
      */
     protected void setStreamingInterval(final long interval) {
         fStreamingInterval = (interval > 0) ? interval : 0;
     }
 
+    /**
+     * Set the trace indexer. Must be done at initialization time.
+     *
+     * @param indexer the trace indexer
+     */
+    protected void setIndexer(final ITmfTraceIndexer indexer) {
+        fIndexer = indexer;
+    }
+
+    /**
+     * Set the trace parser. Must be done at initialization time.
+     *
+     * @param parser the new trace parser
+     */
+    protected void setParser(final ITmfEventParser parser) {
+        fParser = parser;
+    }
+
     // ------------------------------------------------------------------------
     // ITmfTrace - SeekEvent operations (returning a trace context)
     // ------------------------------------------------------------------------
@@ -375,8 +489,11 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
     public synchronized ITmfContext seekEvent(final long rank) {
 
         // A rank <= 0 indicates to seek the first event
-        if (rank <= 0)
-            return seekEvent((ITmfLocation<?>) null);
+        if (rank <= 0) {
+            ITmfContext context = seekEvent((ITmfLocation) null);
+            context.setRank(0);
+            return context;
+        }
 
         // Position the trace at the checkpoint
         final ITmfContext context = fIndexer.seekIndex(rank);
@@ -384,9 +501,9 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
         // And locate the requested event context
         long pos = context.getRank();
         if (pos < rank) {
-            ITmfEvent event = readEvent(context);
-            while (event != null && ++pos < rank) {
-                event = readEvent(context);
+            ITmfEvent event = getNext(context);
+            while ((event != null) && (++pos < rank)) {
+                event = getNext(context);
             }
         }
         return context;
@@ -399,19 +516,27 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
     public synchronized ITmfContext seekEvent(final ITmfTimestamp timestamp) {
 
         // A null timestamp indicates to seek the first event
-        if (timestamp == null)
-            return seekEvent(0);
+        if (timestamp == null) {
+            ITmfContext context = seekEvent((ITmfLocation) null);
+            context.setRank(0);
+            return context;
+        }
 
         // Position the trace at the checkpoint
-        final ITmfContext context = fIndexer.seekIndex(timestamp);
+        ITmfContext context = fIndexer.seekIndex(timestamp);
 
         // And locate the requested event context
         final ITmfContext nextEventContext = context.clone(); // Must use clone() to get the right subtype...
-        ITmfEvent event = readEvent(nextEventContext);
+        ITmfEvent event = getNext(nextEventContext);
         while (event != null && event.getTimestamp().compareTo(timestamp, false) < 0) {
-            context.setLocation(nextEventContext.getLocation().clone());
-            context.increaseRank();
-            event = readEvent(nextEventContext);
+            context.dispose();
+            context = nextEventContext.clone();
+            event = getNext(nextEventContext);
+        }
+        nextEventContext.dispose();
+        if (event == null) {
+            context.setLocation(null);
+            context.setRank(ITmfContext.UNKNOWN_RANK);
         }
         return context;
     }
@@ -421,10 +546,10 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
     // ------------------------------------------------------------------------
 
     /* (non-Javadoc)
-     * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#readEvent(org.eclipse.linuxtools.tmf.core.trace.ITmfContext)
+     * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#readNextEvent(org.eclipse.linuxtools.tmf.core.trace.ITmfContext)
      */
     @Override
-    public synchronized ITmfEvent readEvent(final ITmfContext context) {
+    public synchronized ITmfEvent getNext(final ITmfContext context) {
         // parseEvent() does not update the context
         final ITmfEvent event = fParser.parseEvent(context);
         if (event != null) {
@@ -439,7 +564,7 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
     /**
      * Hook for special event processing by the concrete class
      * (called by TmfTrace.getEvent())
-     * 
+     *
      * @param event the event
      */
     protected void processEvent(final ITmfEvent event) {
@@ -448,16 +573,15 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
 
     /**
      * Update the trace attributes
-     * 
+     *
      * @param context the current trace context
-     * @param rank
-     * @param timestamp
+     * @param timestamp the corresponding timestamp
      */
     protected synchronized void updateAttributes(final ITmfContext context, final ITmfTimestamp timestamp) {
-        if (fStartTime.compareTo(timestamp, false) > 0) {
+        if (fStartTime.equals(TmfTimestamp.BIG_BANG) || (fStartTime.compareTo(timestamp, false) > 0)) {
             fStartTime = timestamp;
         }
-        if (fEndTime.compareTo(timestamp, false) < 0) {
+        if (fEndTime.equals(TmfTimestamp.BIG_CRUNCH) || (fEndTime.compareTo(timestamp, false) < 0)) {
             fEndTime = timestamp;
         }
         if (context.hasValidRank()) {
@@ -465,7 +589,9 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
             if (fNbEvents <= rank) {
                 fNbEvents = rank + 1;
             }
-            fIndexer.updateIndex(context, timestamp);
+            if (fIndexer != null) {
+                fIndexer.updateIndex(context, timestamp);
+            }
         }
     }
 
@@ -477,30 +603,19 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
      * @see org.eclipse.linuxtools.tmf.core.component.TmfDataProvider#armRequest(org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest)
      */
     @Override
-    public ITmfContext armRequest(final ITmfDataRequest<T> request) {
-        if (request instanceof ITmfEventRequest<?>
-        && !TmfTimestamp.BIG_BANG.equals(((ITmfEventRequest<T>) request).getRange().getStartTime())
-        && request.getIndex() == 0) {
-            final ITmfContext context = seekEvent(((ITmfEventRequest<T>) request).getRange().getStartTime());
-            ((ITmfEventRequest<T>) request).setStartIndex((int) context.getRank());
+    protected ITmfContext armRequest(final ITmfDataRequest request) {
+        if ((request instanceof ITmfEventRequest)
+            && !TmfTimestamp.BIG_BANG.equals(((ITmfEventRequest) request).getRange().getStartTime())
+            && (request.getIndex() == 0))
+        {
+            final ITmfContext context = seekEvent(((ITmfEventRequest) request).getRange().getStartTime());
+            ((ITmfEventRequest) request).setStartIndex((int) context.getRank());
             return context;
 
         }
         return seekEvent(request.getIndex());
     }
 
-    /* (non-Javadoc)
-     * @see org.eclipse.linuxtools.tmf.core.component.TmfDataProvider#getNext(org.eclipse.linuxtools.tmf.core.trace.ITmfContext)
-     */
-    @Override
-    @SuppressWarnings("unchecked")
-    public T getNext(final ITmfContext context) {
-        if (context instanceof TmfContext)
-            return (T) readEvent(context);
-        return null;
-    }
-
-
     // ------------------------------------------------------------------------
     // toString
     // ------------------------------------------------------------------------
@@ -510,7 +625,7 @@ public abstract class TmfTrace<T extends ITmfEvent> extends TmfEventProvider<T>
      */
     @Override
     @SuppressWarnings("nls")
-    public String toString() {
+    public synchronized String toString() {
         return "TmfTrace [fPath=" + fPath + ", fCacheSize=" + fCacheSize
                 + ", fNbEvents=" + fNbEvents + ", fStartTime=" + fStartTime
                 + ", fEndTime=" + fEndTime + ", fStreamingInterval=" + fStreamingInterval + "]";
This page took 0.036234 seconds and 5 git commands to generate.