tmf: Add an ID to the AbstractStateChangeInput
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / ITmfTrace.java
... / ...
CommitLineData
1/*******************************************************************************
2 * Copyright (c) 2009, 2011, 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 org.eclipse.core.resources.IProject;
17import org.eclipse.core.resources.IResource;
18import org.eclipse.linuxtools.tmf.core.component.ITmfDataProvider;
19import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
20import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
21import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
22import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
23import org.eclipse.linuxtools.tmf.core.statesystem.ITmfStateSystem;
24
25/**
26 * The event stream structure in TMF. In its basic form, a trace has:
27 * <ul>
28 * <li> an associated Eclipse resource
29 * <li> a path to its location on the file system
30 * <li> the type of the events it contains
31 * <li> the number of events it contains
32 * <li> the time range (span) of the events it contains
33 * </ul>
34 * Concrete ITmfTrace classes have to provide a parameter-less constructor and
35 * an initialization method (<i>initTrace</i>) if they are to be opened from
36 * the Project View. Also, a validation method (<i>validate</i>) has to be
37 * provided to ensure that the trace is of the correct type.
38 * <p>
39 * A trace can be accessed simultaneously from multiple threads by various
40 * application components. To avoid obvious multi-threading issues, the trace
41 * uses an ITmfContext as a synchronization aid for its read operations.
42 * <p>
43 * A proper ITmfContext can be obtained by performing a seek operation on the
44 * trace. Seek operations can be performed for a particular event (by rank or
45 * timestamp) or for a plain trace location.
46 * <p>
47 * <b>Example 1</b>: Process a whole trace
48 * <pre>
49 * ITmfContext context = trace.seekEvent(0);
50 * ITmfEvent event = trace.getNext(context);
51 * while (event != null) {
52 * processEvent(event);
53 * event = trace.getNext(context);
54 * }
55 * </pre>
56 * <b>Example 2</b>: Process 50 events starting from the 1000th event
57 * <pre>
58 * int nbEventsRead = 0;
59 * ITmfContext context = trace.seekEvent(1000);
60 * ITmfEvent event = trace.getNext(context);
61 * while (event != null && nbEventsRead < 50) {
62 * nbEventsRead++;
63 * processEvent(event);
64 * event = trace.getNext(context);
65 * }
66 * </pre>
67 * <b>Example 3</b>: Process the events between 2 timestamps (inclusive)
68 * <pre>
69 * ITmfTimestamp startTime = ...;
70 * ITmfTimestamp endTime = ...;
71 * ITmfContext context = trace.seekEvent(startTime);
72 * ITmfEvent event = trace.getNext(context);
73 * while (event != null && event.getTimestamp().compareTo(endTime) <= 0) {
74 * processEvent(event);
75 * event = trace.getNext(context);
76 * }
77 * </pre>
78 * A trace is also an event provider so it can process event requests
79 * asynchronously (and coalesce compatible, concurrent requests).
80 * <p>
81 * </pre>
82 * <b>Example 4</b>: Process a whole trace (see ITmfEventRequest for variants)
83 * <pre>
84 * ITmfRequest request = new TmfEventRequest&lt;MyEventType&gt;(MyEventType.class) {
85 * &#64;Override
86 * public void handleData(MyEventType event) {
87 * super.handleData(event);
88 * processEvent(event);
89 * }
90 * &#64;Override
91 * public void handleCompleted() {
92 * finish();
93 * super.handleCompleted();
94 * }
95 * };
96 *
97 * fTrace.handleRequest(request);
98 * if (youWant) {
99 * request.waitForCompletion();
100 * }
101 * </pre>
102 *
103 * @version 1.0
104 * @author Francois Chouinard
105 *
106 * @see ITmfContext
107 * @see ITmfEvent
108 * @see ITmfTraceIndexer
109 * @see ITmfEventParser
110 */
111public interface ITmfTrace extends ITmfDataProvider {
112
113 // ------------------------------------------------------------------------
114 // Constants
115 // ------------------------------------------------------------------------
116
117 /**
118 * The default trace cache size
119 */
120 public static final int DEFAULT_TRACE_CACHE_SIZE = 1000;
121
122 // ------------------------------------------------------------------------
123 // Initializers
124 // ------------------------------------------------------------------------
125
126 /**
127 * Initialize a newly instantiated "empty" trace object. This is used to
128 * properly parameterize an ITmfTrace instantiated with its parameterless
129 * constructor.
130 * <p>
131 * Typically, the parameterless constructor will provide the block size
132 * and its associated parser and indexer.
133 *
134 * @param resource the trace resource
135 * @param path the trace path
136 * @param type the trace event type
137 * @throws TmfTraceException If we couldn't open the trace
138 */
139 public void initTrace(IResource resource, String path, Class<? extends ITmfEvent> type) throws TmfTraceException;
140
141 /**
142 * Validate that the trace is of the correct type.
143 *
144 * @param project the eclipse project
145 * @param path the trace path
146 *
147 * @return true if trace is valid
148 */
149 public boolean validate(IProject project, String path);
150
151 // ------------------------------------------------------------------------
152 // Basic getters
153 // ------------------------------------------------------------------------
154
155 /**
156 * @return the trace event type
157 */
158 public Class<? extends ITmfEvent> getEventType();
159
160 /**
161 * @return the associated trace resource
162 */
163 public IResource getResource();
164
165 /**
166 * @return the trace path
167 */
168 public String getPath();
169
170 /**
171 * @return the trace cache size
172 */
173 public int getCacheSize();
174
175 /**
176 * @return The state system that is associated with this trace
177 * @since 2.0
178 */
179 public ITmfStateSystem getStateSystem();
180
181 // ------------------------------------------------------------------------
182 // Trace characteristics getters
183 // ------------------------------------------------------------------------
184
185 /**
186 * @return the number of events in the trace
187 */
188 public long getNbEvents();
189
190 /**
191 * @return the trace time range
192 */
193 public TmfTimeRange getTimeRange();
194
195 /**
196 * @return the timestamp of the first trace event
197 */
198 public ITmfTimestamp getStartTime();
199
200 /**
201 * @return the timestamp of the last trace event
202 */
203 public ITmfTimestamp getEndTime();
204
205 /**
206 * @return the streaming interval in ms (0 if not a streaming trace)
207 */
208 public long getStreamingInterval();
209
210 // ------------------------------------------------------------------------
211 // Trace positioning getters
212 // ------------------------------------------------------------------------
213
214 /**
215 * @return the current trace location
216 */
217 public ITmfLocation getCurrentLocation();
218
219 /**
220 * Returns the ratio (proportion) corresponding to the specified location.
221 *
222 * @param location a trace specific location
223 * @return a floating-point number between 0.0 (beginning) and 1.0 (end)
224 */
225 public double getLocationRatio(ITmfLocation location);
226
227 // ------------------------------------------------------------------------
228 // SeekEvent operations (returning a trace context)
229 // ------------------------------------------------------------------------
230
231 /**
232 * Position the trace at the specified (trace specific) location.
233 * <p>
234 * A null location is interpreted as seeking for the first event of the
235 * trace.
236 * <p>
237 * If not null, the location requested must be valid otherwise the returned
238 * context is undefined (up to the implementation to recover if possible).
239 * <p>
240 * @param location the trace specific location
241 * @return a context which can later be used to read the corresponding event
242 */
243 public ITmfContext seekEvent(ITmfLocation location);
244
245 /**
246 * Position the trace at the 'rank'th event in the trace.
247 * <p>
248 * A rank <= 0 is interpreted as seeking for the first event of the
249 * trace.
250 * <p>
251 * If the requested rank is beyond the last trace event, the context
252 * returned will yield a null event if used in a subsequent read.
253 *
254 * @param rank the event rank
255 * @return a context which can later be used to read the corresponding event
256 */
257 public ITmfContext seekEvent(long rank);
258
259 /**
260 * Position the trace at the first event with the specified timestamp. If
261 * there is no event with the requested timestamp, a context pointing to
262 * the next chronological event is returned.
263 * <p>
264 * A null timestamp is interpreted as seeking for the first event of the
265 * trace.
266 * <p>
267 * If the requested timestamp is beyond the last trace event, the context
268 * returned will yield a null event if used in a subsequent read.
269 *
270 * @param timestamp the timestamp of desired event
271 * @return a context which can later be used to read the corresponding event
272 */
273 public ITmfContext seekEvent(ITmfTimestamp timestamp);
274
275 /**
276 * Position the trace at the event located at the specified ratio in the
277 * trace file.
278 * <p>
279 * The notion of ratio (0.0 <= r <= 1.0) is trace specific and left
280 * voluntarily vague. Typically, it would refer to the event proportional
281 * rank (arguably more intuitive) or timestamp in the trace file.
282 *
283 * @param ratio the proportional 'rank' in the trace
284 * @return a context which can later be used to read the corresponding event
285 */
286 public ITmfContext seekEvent(double ratio);
287
288}
This page took 0.025323 seconds and 5 git commands to generate.