TMF: Introduce a framework to hook trace analysis modules/plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / ITmfTrace.java
CommitLineData
8c8bf09f 1/*******************************************************************************
e73a4ba5 2 * Copyright (c) 2009, 2013 Ericsson, École Polytechnique de Montréal
0283f7ff 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
0283f7ff 8 *
8c8bf09f
ASL
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
8636b448 11 * Francois Chouinard - Updated as per TMF Trace Model 1.0
e73a4ba5
GB
12 * Geneviève Bastien - Added timestamp transforms and timestamp
13 * creation functions
8c8bf09f
ASL
14 *******************************************************************************/
15
6c13869b 16package org.eclipse.linuxtools.tmf.core.trace;
8c8bf09f 17
35c160d9 18import java.util.Collections;
c068a752 19import java.util.List;
35c160d9 20import java.util.Map;
a51b2b9f 21
12c155f5 22import org.eclipse.core.resources.IProject;
a1091415 23import org.eclipse.core.resources.IResource;
a94410d9 24import org.eclipse.core.runtime.IStatus;
c068a752 25import org.eclipse.linuxtools.tmf.core.analysis.IAnalysisModule;
f17b2f70 26import org.eclipse.linuxtools.tmf.core.component.ITmfDataProvider;
72f1e62a 27import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
b4f71e4a 28import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
7898bb21 29import org.eclipse.linuxtools.tmf.core.statesystem.ITmfStateSystem;
200789b3 30import org.eclipse.linuxtools.tmf.core.statistics.ITmfStatistics;
e73a4ba5 31import org.eclipse.linuxtools.tmf.core.synchronization.ITmfTimestampTransform;
3bd46eef
AM
32import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
33import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimeRange;
a3db8436
AM
34import org.eclipse.linuxtools.tmf.core.trace.indexer.ITmfTraceIndexer;
35import org.eclipse.linuxtools.tmf.core.trace.location.ITmfLocation;
8c8bf09f
ASL
36
37/**
f17b2f70
FC
38 * The event stream structure in TMF. In its basic form, a trace has:
39 * <ul>
7e6347b0
FC
40 * <li> an associated Eclipse resource
41 * <li> a path to its location on the file system
f17b2f70
FC
42 * <li> the type of the events it contains
43 * <li> the number of events it contains
44 * <li> the time range (span) of the events it contains
45 * </ul>
46 * Concrete ITmfTrace classes have to provide a parameter-less constructor and
e73a4ba5
GB
47 * an initialization method (<i>initTrace</i>) if they are to be opened from the
48 * Project View. Also, a validation method (<i>validate</i>) has to be provided
49 * to ensure that the trace is of the correct type.
f17b2f70
FC
50 * <p>
51 * A trace can be accessed simultaneously from multiple threads by various
52 * application components. To avoid obvious multi-threading issues, the trace
53 * uses an ITmfContext as a synchronization aid for its read operations.
54 * <p>
55 * A proper ITmfContext can be obtained by performing a seek operation on the
56 * trace. Seek operations can be performed for a particular event (by rank or
57 * timestamp) or for a plain trace location.
58 * <p>
d337369a 59 * <b>Example 1</b>: Process a whole trace
f17b2f70 60 * <pre>
7e6347b0 61 * ITmfContext context = trace.seekEvent(0);
c32744d6 62 * ITmfEvent event = trace.getNext(context);
f17b2f70 63 * while (event != null) {
d337369a 64 * processEvent(event);
c32744d6 65 * event = trace.getNext(context);
f17b2f70
FC
66 * }
67 * </pre>
68 * <b>Example 2</b>: Process 50 events starting from the 1000th event
69 * <pre>
70 * int nbEventsRead = 0;
71 * ITmfContext context = trace.seekEvent(1000);
c32744d6 72 * ITmfEvent event = trace.getNext(context);
f17b2f70
FC
73 * while (event != null && nbEventsRead < 50) {
74 * nbEventsRead++;
d337369a 75 * processEvent(event);
c32744d6 76 * event = trace.getNext(context);
f17b2f70
FC
77 * }
78 * </pre>
79 * <b>Example 3</b>: Process the events between 2 timestamps (inclusive)
80 * <pre>
81 * ITmfTimestamp startTime = ...;
82 * ITmfTimestamp endTime = ...;
83 * ITmfContext context = trace.seekEvent(startTime);
c32744d6 84 * ITmfEvent event = trace.getNext(context);
f17b2f70 85 * while (event != null && event.getTimestamp().compareTo(endTime) <= 0) {
d337369a 86 * processEvent(event);
c32744d6 87 * event = trace.getNext(context);
f17b2f70
FC
88 * }
89 * </pre>
e73a4ba5 90 *
d337369a 91 * A trace is also an event provider so it can process event requests
7e6347b0 92 * asynchronously (and coalesce compatible, concurrent requests).
d337369a 93 * <p>
e73a4ba5
GB
94 *
95 * <b>Example 4</b>: Process a whole trace (see ITmfEventRequest for
96 * variants)
d337369a
FC
97 * <pre>
98 * ITmfRequest request = new TmfEventRequest&lt;MyEventType&gt;(MyEventType.class) {
e73a4ba5 99 * &#064;Override
d337369a
FC
100 * public void handleData(MyEventType event) {
101 * super.handleData(event);
102 * processEvent(event);
103 * }
e73a4ba5
GB
104 *
105 * &#064;Override
d337369a
FC
106 * public void handleCompleted() {
107 * finish();
108 * super.handleCompleted();
109 * }
110 * };
0283f7ff 111 *
d337369a
FC
112 * fTrace.handleRequest(request);
113 * if (youWant) {
114 * request.waitForCompletion();
0283f7ff 115 * }
d337369a 116 * </pre>
0283f7ff 117 *
5419a136 118 * @version 1.0
f7703ed6 119 * @author Francois Chouinard
0283f7ff 120 *
0316808c 121 * @see ITmfContext
d337369a 122 * @see ITmfEvent
0316808c
FC
123 * @see ITmfTraceIndexer
124 * @see ITmfEventParser
8c8bf09f 125 */
6256d8ad 126public interface ITmfTrace extends ITmfDataProvider {
12c155f5 127
0316808c
FC
128 // ------------------------------------------------------------------------
129 // Constants
130 // ------------------------------------------------------------------------
131
132 /**
133 * The default trace cache size
134 */
135 public static final int DEFAULT_TRACE_CACHE_SIZE = 1000;
136
8636b448
FC
137 // ------------------------------------------------------------------------
138 // Initializers
139 // ------------------------------------------------------------------------
085d898f 140
3118edf1
FC
141 /**
142 * Initialize a newly instantiated "empty" trace object. This is used to
25e48683
FC
143 * properly parameterize an ITmfTrace instantiated with its parameterless
144 * constructor.
d337369a 145 * <p>
e73a4ba5
GB
146 * Typically, the parameterless constructor will provide the block size and
147 * its associated parser and indexer.
0283f7ff 148 *
e73a4ba5
GB
149 * @param resource
150 * the trace resource
151 * @param path
152 * the trace path
153 * @param type
154 * the trace event type
155 * @throws TmfTraceException
156 * If we couldn't open the trace
3118edf1 157 */
57a2a5ca 158 void initTrace(IResource resource, String path, Class<? extends ITmfEvent> type) throws TmfTraceException;
12c155f5 159
3118edf1
FC
160 /**
161 * Validate that the trace is of the correct type.
0283f7ff 162 *
e73a4ba5
GB
163 * @param project
164 * the eclipse project
165 * @param path
166 * the trace path
167 * @return an IStatus object with validation result. Use severity OK to
168 * indicate success.
a94410d9 169 * @since 2.0
3118edf1 170 */
57a2a5ca 171 IStatus validate(IProject project, String path);
12c155f5 172
8636b448 173 // ------------------------------------------------------------------------
3118edf1 174 // Basic getters
8636b448 175 // ------------------------------------------------------------------------
b0a282fb 176
abfad0aa 177 /**
25e48683 178 * @return the trace event type
12c155f5 179 */
57a2a5ca 180 Class<? extends ITmfEvent> getEventType();
12c155f5
FC
181
182 /**
25e48683 183 * @return the associated trace resource
12c155f5 184 */
57a2a5ca 185 IResource getResource();
12c155f5 186
25e48683
FC
187 /**
188 * @return the trace path
189 */
57a2a5ca 190 String getPath();
25e48683 191
20658947
FC
192 /**
193 * @return the trace cache size
194 */
57a2a5ca 195 int getCacheSize();
20658947 196
200789b3
AM
197 /**
198 * @return The statistics provider for this trace
199 * @since 2.0
200 */
57a2a5ca 201 ITmfStatistics getStatistics();
200789b3 202
7898bb21 203 /**
35c160d9 204 * Return the map of state systems associated with this trace.
a51b2b9f 205 *
35c160d9
AM
206 * This view should be read-only (implementations should use
207 * {@link Collections#unmodifiableMap}).
a51b2b9f 208 *
35c160d9 209 * @return The map of state systems
7898bb21
AM
210 * @since 2.0
211 */
57a2a5ca 212 Map<String, ITmfStateSystem> getStateSystems();
7898bb21 213
6c5e0863
AM
214 /**
215 * If a state system is not build by the trace itself, it's possible to
216 * register it if it comes from another source. It will then be accessible
217 * with {@link #getStateSystems} normally.
218 *
219 * @param id
220 * The unique ID to assign to this state system. In case of
221 * conflicting ID's, the new one will overwrite the previous one
222 * (default Map behavior).
223 * @param ss
224 * The already-built state system
225 * @since 2.0
226 */
57a2a5ca 227 void registerStateSystem(String id, ITmfStateSystem ss);
6c5e0863 228
51e75066
AM
229 /**
230 * Index the trace. Depending on the trace type, this could be done at the
231 * constructor or initTrace phase too, so this could be implemented as a
232 * no-op.
233 *
234 * @param waitForCompletion
235 * Should we block the caller until indexing is finished, or not.
236 * @since 2.0
237 */
57a2a5ca 238 void indexTrace(boolean waitForCompletion);
51e75066 239
c068a752
GB
240 /**
241 * Returns an analysis module with the given id
242 *
243 * @param analysisId
244 * The analysis module id
245 * @return The {@link IAnalysisModule} object
246 */
247 IAnalysisModule getAnalysisModule(String analysisId);
248
249 /**
250 * Return a list of analysis modules that are of a given class
251 *
252 * @param moduleclass
253 * Class returned module must extend
254 * @return List of {@link IAnalysisModule} of class moduleclass
255 */
256 List<IAnalysisModule> getAnalysisModules(Class<? extends IAnalysisModule> moduleclass);
257
258 /**
259 * Returns a map of analysis modules applicable to this trace. The key is
260 * the analysis id.
261 *
262 * This view should be read-only (implementations should use
263 * {@link Collections#unmodifiableMap}).
264 *
265 * @return The map of analysis modules
266 */
267 Map<String, IAnalysisModule> getAnalysisModules();
268
25e48683
FC
269 // ------------------------------------------------------------------------
270 // Trace characteristics getters
271 // ------------------------------------------------------------------------
272
12c155f5
FC
273 /**
274 * @return the number of events in the trace
275 */
57a2a5ca 276 long getNbEvents();
12c155f5
FC
277
278 /**
3118edf1 279 * @return the trace time range
3bd46eef 280 * @since 2.0
12c155f5 281 */
57a2a5ca 282 TmfTimeRange getTimeRange();
12c155f5 283
3118edf1
FC
284 /**
285 * @return the timestamp of the first trace event
3bd46eef 286 * @since 2.0
3118edf1 287 */
57a2a5ca 288 ITmfTimestamp getStartTime();
12c155f5 289
3118edf1
FC
290 /**
291 * @return the timestamp of the last trace event
3bd46eef 292 * @since 2.0
3118edf1 293 */
57a2a5ca 294 ITmfTimestamp getEndTime();
62d1696a 295
13cb5f43
FC
296 /**
297 * @return the streaming interval in ms (0 if not a streaming trace)
298 */
57a2a5ca 299 long getStreamingInterval();
13cb5f43 300
25e48683
FC
301 // ------------------------------------------------------------------------
302 // Trace positioning getters
303 // ------------------------------------------------------------------------
1b70b6dc 304
3118edf1 305 /**
25e48683 306 * @return the current trace location
a3db8436 307 * @since 3.0
3118edf1 308 */
57a2a5ca 309 ITmfLocation getCurrentLocation();
3791b5df
FC
310
311 /**
25e48683 312 * Returns the ratio (proportion) corresponding to the specified location.
0283f7ff 313 *
e73a4ba5
GB
314 * @param location
315 * a trace specific location
25e48683 316 * @return a floating-point number between 0.0 (beginning) and 1.0 (end)
a3db8436 317 * @since 3.0
3791b5df 318 */
57a2a5ca 319 double getLocationRatio(ITmfLocation location);
3791b5df 320
8636b448 321 // ------------------------------------------------------------------------
7e6347b0 322 // SeekEvent operations (returning a trace context)
8636b448
FC
323 // ------------------------------------------------------------------------
324
12c155f5 325 /**
7e6347b0
FC
326 * Position the trace at the specified (trace specific) location.
327 * <p>
328 * A null location is interpreted as seeking for the first event of the
329 * trace.
25e48683 330 * <p>
7e6347b0
FC
331 * If not null, the location requested must be valid otherwise the returned
332 * context is undefined (up to the implementation to recover if possible).
25e48683 333 * <p>
e73a4ba5
GB
334 *
335 * @param location
336 * the trace specific location
3118edf1 337 * @return a context which can later be used to read the corresponding event
a3db8436 338 * @since 3.0
8c8bf09f 339 */
57a2a5ca 340 ITmfContext seekEvent(ITmfLocation location);
12c155f5 341
c76c54bb 342 /**
7e6347b0 343 * Position the trace at the 'rank'th event in the trace.
09e86496 344 * <p>
e73a4ba5 345 * A rank <= 0 is interpreted as seeking for the first event of the trace.
7e6347b0
FC
346 * <p>
347 * If the requested rank is beyond the last trace event, the context
348 * returned will yield a null event if used in a subsequent read.
0283f7ff 349 *
e73a4ba5
GB
350 * @param rank
351 * the event rank
3118edf1 352 * @return a context which can later be used to read the corresponding event
c76c54bb 353 */
57a2a5ca 354 ITmfContext seekEvent(long rank);
12c155f5 355
3118edf1
FC
356 /**
357 * Position the trace at the first event with the specified timestamp. If
e73a4ba5
GB
358 * there is no event with the requested timestamp, a context pointing to the
359 * next chronological event is returned.
09e86496
FC
360 * <p>
361 * A null timestamp is interpreted as seeking for the first event of the
362 * trace.
363 * <p>
364 * If the requested timestamp is beyond the last trace event, the context
365 * returned will yield a null event if used in a subsequent read.
0283f7ff 366 *
e73a4ba5
GB
367 * @param timestamp
368 * the timestamp of desired event
3118edf1 369 * @return a context which can later be used to read the corresponding event
3bd46eef 370 * @since 2.0
3118edf1 371 */
57a2a5ca 372 ITmfContext seekEvent(ITmfTimestamp timestamp);
3118edf1
FC
373
374 /**
7e6347b0
FC
375 * Position the trace at the event located at the specified ratio in the
376 * trace file.
09e86496 377 * <p>
7e6347b0
FC
378 * The notion of ratio (0.0 <= r <= 1.0) is trace specific and left
379 * voluntarily vague. Typically, it would refer to the event proportional
380 * rank (arguably more intuitive) or timestamp in the trace file.
0283f7ff 381 *
e73a4ba5
GB
382 * @param ratio
383 * the proportional 'rank' in the trace
3118edf1
FC
384 * @return a context which can later be used to read the corresponding event
385 */
57a2a5ca 386 ITmfContext seekEvent(double ratio);
3118edf1 387
66262ad8
BH
388 /**
389 * Returns the initial range offset
390 *
391 * @return the initial range offset
392 * @since 2.0
393 */
57a2a5ca 394 ITmfTimestamp getInitialRangeOffset();
bb52f9bc
GB
395
396 /**
397 * Returns the ID of the host this trace is from. The host ID is not
398 * necessarily the hostname, but should be a unique identifier for the
399 * machine on which the trace was taken. It can be used to determine if two
400 * traces were taken on the exact same machine (timestamp are already
401 * synchronized, resources with same id are the same if taken at the same
402 * time, etc).
403 *
404 * @return The host id of this trace
405 * @since 3.0
406 */
e73a4ba5
GB
407 String getHostId();
408
409 // ------------------------------------------------------------------------
410 // Timestamp transformation functions
411 // ------------------------------------------------------------------------
412
413 /**
414 * Returns the timestamp transformation for this trace
415 *
416 * @return the timestamp transform
417 * @since 3.0
418 */
419 ITmfTimestampTransform getTimestampTransform();
420
421 /**
422 * Sets the trace's timestamp transform
423 *
424 * @param tt
425 * The timestamp transform for all timestamps of this trace
426 * @since 3.0
427 */
428 void setTimestampTransform(final ITmfTimestampTransform tt);
429
430 /**
431 * Creates a timestamp for this trace, using the transformation formula
432 *
433 * @param ts
434 * The time in long with which to create the timestamp
435 * @return The new timestamp
436 * @since 3.0
437 */
438 ITmfTimestamp createTimestamp(long ts);
bb52f9bc 439
8c8bf09f 440}
This page took 0.074427 seconds and 5 git commands to generate.