Replace location by context in checkpoint indexer
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / TmfExperiment.java
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
14 package org.eclipse.linuxtools.tmf.core.trace;
15
16 import org.eclipse.core.resources.IFile;
17 import org.eclipse.core.resources.IProject;
18 import org.eclipse.core.resources.IResource;
19 import org.eclipse.linuxtools.internal.tmf.core.trace.TmfExperimentContext;
20 import org.eclipse.linuxtools.internal.tmf.core.trace.TmfExperimentLocation;
21 import org.eclipse.linuxtools.internal.tmf.core.trace.TmfLocationArray;
22 import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
23 import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
24 import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
25 import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
26 import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
27 import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest;
28 import org.eclipse.linuxtools.tmf.core.request.ITmfEventRequest;
29 import org.eclipse.linuxtools.tmf.core.signal.TmfEndSynchSignal;
30 import org.eclipse.linuxtools.tmf.core.signal.TmfExperimentDisposedSignal;
31 import org.eclipse.linuxtools.tmf.core.signal.TmfExperimentRangeUpdatedSignal;
32 import org.eclipse.linuxtools.tmf.core.signal.TmfExperimentSelectedSignal;
33 import org.eclipse.linuxtools.tmf.core.signal.TmfExperimentUpdatedSignal;
34 import org.eclipse.linuxtools.tmf.core.signal.TmfSignalHandler;
35 import org.eclipse.linuxtools.tmf.core.signal.TmfTraceUpdatedSignal;
36
37 /**
38 * TmfExperiment presents a time-ordered, unified view of a set of ITmfTrace:s
39 * that are part of a tracing experiment.
40 *
41 * @version 1.0
42 * @author Francois Chouinard
43 */
44 public class TmfExperiment<T extends ITmfEvent> extends TmfTrace<T> implements ITmfEventParser<T> {
45
46 // ------------------------------------------------------------------------
47 // Constants
48 // ------------------------------------------------------------------------
49
50 /**
51 * The default index page size
52 */
53 public static final int DEFAULT_INDEX_PAGE_SIZE = 5000;
54
55 // ------------------------------------------------------------------------
56 // Attributes
57 // ------------------------------------------------------------------------
58
59 /**
60 * The currently selected experiment (null if none)
61 */
62 protected static TmfExperiment<?> fCurrentExperiment = null;
63
64 /**
65 * The set of traces that constitute the experiment
66 */
67 protected ITmfTrace<T>[] fTraces;
68
69 /**
70 * The set of traces that constitute the experiment
71 */
72 private boolean fInitialized = false;
73
74 /**
75 * The experiment bookmarks file
76 */
77 private IFile fBookmarksFile;
78
79
80 // Saved experiment context (optimization)
81 private TmfExperimentContext fExperimentContext;
82
83 // ------------------------------------------------------------------------
84 // Construction
85 // ------------------------------------------------------------------------
86
87 /**
88 * @param type
89 * @param id
90 * @param traces
91 * @throws TmfTraceException
92 */
93 public TmfExperiment(final Class<T> type, final String id, final ITmfTrace<T>[] traces) {
94 this(type, id, traces, DEFAULT_INDEX_PAGE_SIZE);
95 }
96
97 /**
98 * @param type
99 * @param id
100 * @param traces
101 * @param indexPageSize
102 * @throws TmfTraceException
103 */
104 @SuppressWarnings({ "unchecked", "rawtypes" })
105 public TmfExperiment(final Class<T> type, final String path, final ITmfTrace<T>[] traces, final int indexPageSize) {
106 setCacheSize(indexPageSize);
107 setStreamingInterval(0);
108 setIndexer(new TmfCheckpointIndexer(this, indexPageSize));
109 setParser(this);
110 try {
111 super.initialize(null, path, type);
112 } catch (TmfTraceException e) {
113 e.printStackTrace();
114 }
115
116 fTraces = traces;
117 setTimeRange(TmfTimeRange.NULL_RANGE);
118 }
119
120 /**
121 * Clears the experiment
122 */
123 @Override
124 @SuppressWarnings("rawtypes")
125 public synchronized void dispose() {
126
127 final TmfExperimentDisposedSignal<T> signal = new TmfExperimentDisposedSignal<T>(this, this);
128 broadcast(signal);
129
130 if (fCurrentExperiment == this) {
131 fCurrentExperiment = null;
132 }
133
134 // Clean up the index if applicable
135 if (getIndexer() != null) {
136 getIndexer().dispose();
137 }
138
139 if (fTraces != null) {
140 for (final ITmfTrace trace : fTraces)
141 trace.dispose();
142 fTraces = null;
143 }
144 super.dispose();
145 }
146
147 // ------------------------------------------------------------------------
148 // ITmfTrace - Initializers
149 // ------------------------------------------------------------------------
150
151 /* (non-Javadoc)
152 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#validate(org.eclipse.core.resources.IProject, java.lang.String)
153 */
154 @Override
155 public boolean validate(final IProject project, final String path) {
156 return true;
157 }
158
159 /* (non-Javadoc)
160 * @see org.eclipse.linuxtools.tmf.core.trace.TmfTrace#initTrace(org.eclipse.core.resources.IResource, java.lang.String, java.lang.Class)
161 */
162 @Override
163 public void initTrace(final IResource resource, final String path, final Class<T> type) {
164 }
165
166 // ------------------------------------------------------------------------
167 // Accessors
168 // ------------------------------------------------------------------------
169
170 /**
171 * Selects the current, framework-wide, experiment
172 *
173 * @param experiment das experiment
174 */
175 public static void setCurrentExperiment(final TmfExperiment<?> experiment) {
176 if (fCurrentExperiment != null && fCurrentExperiment != experiment) {
177 fCurrentExperiment.dispose();
178 }
179 fCurrentExperiment = experiment;
180 }
181
182 /**
183 * @return das experiment
184 */
185 public static TmfExperiment<?> getCurrentExperiment() {
186 return fCurrentExperiment;
187 }
188
189 /**
190 * Get the list of traces. Handle with care...
191 *
192 * @return the experiment traces
193 */
194 public ITmfTrace<T>[] getTraces() {
195 return fTraces;
196 }
197
198 /**
199 * Returns the timestamp of the event at the requested index. If none,
200 * returns null.
201 *
202 * @param index the event index (rank)
203 * @return the corresponding event timestamp
204 */
205 public ITmfTimestamp getTimestamp(final int index) {
206 final ITmfContext context = seekEvent(index);
207 final ITmfEvent event = getNext(context);
208 return (event != null) ? event.getTimestamp() : null;
209 }
210
211 /**
212 * Set the file to be used for bookmarks on this experiment
213 *
214 * @param file the bookmarks file
215 */
216 public void setBookmarksFile(final IFile file) {
217 fBookmarksFile = file;
218 }
219
220 /**
221 * Get the file used for bookmarks on this experiment
222 *
223 * @return the bookmarks file or null if none is set
224 */
225 public IFile getBookmarksFile() {
226 return fBookmarksFile;
227 }
228
229 // ------------------------------------------------------------------------
230 // Request management
231 // ------------------------------------------------------------------------
232
233 @Override
234 protected synchronized ITmfContext armRequest(final ITmfDataRequest<T> request) {
235 if (request instanceof ITmfEventRequest<?>
236 && !TmfTimestamp.BIG_BANG.equals(((ITmfEventRequest<T>) request).getRange().getStartTime())
237 && request.getIndex() == 0)
238 {
239 final ITmfContext context = seekEvent(((ITmfEventRequest<T>) request).getRange().getStartTime());
240 ((ITmfEventRequest<T>) request).setStartIndex((int) context.getRank());
241 return context;
242
243 }
244
245 // Check if we are already at the right index
246 if ((fExperimentContext != null) && fExperimentContext.getRank() == request.getIndex()) {
247 return fExperimentContext;
248 }
249
250 return seekEvent(request.getIndex());
251 }
252
253 // ------------------------------------------------------------------------
254 // ITmfTrace trace positioning
255 // ------------------------------------------------------------------------
256
257 /* (non-Javadoc)
258 *
259 * Returns a brand new context based on the location provided and
260 * initializes the event queues
261 *
262 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#seekEvent(org.eclipse.linuxtools.tmf.core.trace.ITmfLocation)
263 */
264 @Override
265 public synchronized ITmfContext seekEvent(final ITmfLocation<?> location) {
266 // Validate the location
267 if (location != null && !(location instanceof TmfExperimentLocation)) {
268 return null; // Throw an exception?
269 }
270 // Make sure we have something to read from
271 if (fTraces == null) {
272 return null;
273 }
274
275 // Instantiate the location
276 final TmfExperimentLocation expLocation = (location == null)
277 ? new TmfExperimentLocation(new TmfLocationArray(new ITmfLocation<?>[fTraces.length]))
278 : (TmfExperimentLocation) location.clone();
279
280 // Create and populate the context's traces contexts
281 final TmfExperimentContext context = new TmfExperimentContext(new ITmfContext[fTraces.length]);
282
283 for (int i = 0; i < fTraces.length; i++) {
284 // Get the relevant trace attributes
285 final ITmfLocation<?> traceLocation = expLocation.getLocation().getLocations()[i];
286 context.getContexts()[i] = fTraces[i].seekEvent(traceLocation);
287 expLocation.getLocation().getLocations()[i] = context.getContexts()[i].getLocation().clone();
288 context.getEvents()[i] = fTraces[i].getNext(context.getContexts()[i]);
289 }
290
291 // Finalize context
292 context.setLocation(expLocation);
293 context.setLastTrace(TmfExperimentContext.NO_TRACE);
294 context.setRank(ITmfContext.UNKNOWN_RANK);
295
296 fExperimentContext = context;
297
298 return (ITmfContext) context;
299 }
300
301 /* (non-Javadoc)
302 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#seekEvent(double)
303 */
304 @Override
305 public ITmfContext seekEvent(final double ratio) {
306 final ITmfContext context = seekEvent((long) (ratio * getNbEvents()));
307 return context;
308 }
309
310 /* (non-Javadoc)
311 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getLocationRatio(org.eclipse.linuxtools.tmf.core.trace.ITmfLocation)
312 */
313 @Override
314 public double getLocationRatio(final ITmfLocation<?> location) {
315 if (location instanceof TmfExperimentLocation) {
316 return (double) seekEvent(location).getRank() / getNbEvents();
317 }
318 return 0.0;
319 }
320
321 /* (non-Javadoc)
322 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfTrace#getCurrentLocation()
323 */
324 @Override
325 public ITmfLocation<?> getCurrentLocation() {
326 ITmfLocation<?>[] locations = new ITmfLocation<?>[fTraces.length];
327 for (int i = 0; i < fTraces.length; i++) {
328 locations[i] = fTraces[i].getCurrentLocation();
329 }
330 return new TmfExperimentLocation(new TmfLocationArray(locations));
331 }
332
333 // ------------------------------------------------------------------------
334 // ITmfTrace trace positioning
335 // ------------------------------------------------------------------------
336
337 /* (non-Javadoc)
338 * @see org.eclipse.linuxtools.tmf.core.trace.ITmfEventParser#parseEvent(org.eclipse.linuxtools.tmf.core.trace.ITmfContext)
339 */
340 @Override
341 public synchronized T parseEvent(final ITmfContext context) {
342 final ITmfContext savedContext = context.clone();
343 final T event = getNext(savedContext);
344 return event;
345 }
346
347 /* (non-Javadoc)
348 * @see org.eclipse.linuxtools.tmf.core.trace.TmfTrace#getNext(org.eclipse.linuxtools.tmf.core.trace.ITmfContext)
349 */
350 @SuppressWarnings("unchecked")
351 @Override
352 public synchronized T getNext(ITmfContext context) {
353
354 // Validate the context
355 if (!(context instanceof TmfExperimentContext)) {
356 return null; // Throw an exception?
357 }
358 TmfExperimentContext expContext = (TmfExperimentContext) context;
359
360 // If an event was consumed previously, first get the next one from that trace
361 final int lastTrace = expContext.getLastTrace();
362 if (lastTrace != TmfExperimentContext.NO_TRACE) {
363 final ITmfContext traceContext = expContext.getContexts()[lastTrace];
364 expContext.getEvents()[lastTrace] = fTraces[lastTrace].getNext(traceContext);
365 expContext.setLastTrace(TmfExperimentContext.NO_TRACE);
366 }
367
368 // Scan the candidate events and identify the "next" trace to read from
369 int trace = TmfExperimentContext.NO_TRACE;
370 ITmfTimestamp timestamp = TmfTimestamp.BIG_CRUNCH;
371 for (int i = 0; i < fTraces.length; i++) {
372 final ITmfEvent event = expContext.getEvents()[i];
373 if (event != null && event.getTimestamp() != null) {
374 final ITmfTimestamp otherTS = event.getTimestamp();
375 if (otherTS.compareTo(timestamp, true) < 0) {
376 trace = i;
377 timestamp = otherTS;
378 }
379 }
380 }
381
382 T event = null;
383 if (trace != TmfExperimentContext.NO_TRACE) {
384 event = (T) expContext.getEvents()[trace];
385 if (event != null) {
386 updateAttributes(expContext, event.getTimestamp());
387 TmfExperimentLocation location = (TmfExperimentLocation) expContext.getLocation();
388 location.getLocation().getLocations()[trace] = expContext.getContexts()[trace].getLocation();
389 expContext.increaseRank();
390 expContext.setLastTrace(trace);
391 fExperimentContext = expContext;
392 processEvent(event);
393 }
394 }
395
396 return event;
397 }
398
399 /* (non-Javadoc)
400 * @see java.lang.Object#toString()
401 */
402 @Override
403 @SuppressWarnings("nls")
404 public String toString() {
405 return "[TmfExperiment (" + getName() + ")]";
406 }
407
408 // ------------------------------------------------------------------------
409 // Streaming support
410 // ------------------------------------------------------------------------
411
412 private synchronized void initializeStreamingMonitor() {
413
414 if (fInitialized) {
415 return;
416 }
417 fInitialized = true;
418
419 if (getStreamingInterval() == 0) {
420 final ITmfContext context = seekEvent(0);
421 final ITmfEvent event = getNext(context);
422 if (event == null)
423 return;
424 final TmfTimeRange timeRange = new TmfTimeRange(event.getTimestamp().clone(), TmfTimestamp.BIG_CRUNCH);
425 final TmfExperimentRangeUpdatedSignal signal = new TmfExperimentRangeUpdatedSignal(this, this, timeRange);
426
427 // Broadcast in separate thread to prevent deadlock
428 new Thread() {
429 @Override
430 public void run() {
431 broadcast(signal);
432 }
433 }.start();
434 return;
435 }
436
437 final Thread thread = new Thread("Streaming Monitor for experiment " + getName()) { //$NON-NLS-1$
438 private ITmfTimestamp safeTimestamp = null;
439 private TmfTimeRange timeRange = null;
440
441 @Override
442 public void run() {
443 while (!fExecutor.isShutdown()) {
444 if (!getIndexer().isIndexing()) {
445 ITmfTimestamp startTimestamp = TmfTimestamp.BIG_CRUNCH;
446 ITmfTimestamp endTimestamp = TmfTimestamp.BIG_BANG;
447 for (final ITmfTrace<T> trace : fTraces) {
448 if (trace.getStartTime().compareTo(startTimestamp) < 0)
449 startTimestamp = trace.getStartTime();
450 if (trace.getStreamingInterval() != 0 && trace.getEndTime().compareTo(endTimestamp) > 0)
451 endTimestamp = trace.getEndTime();
452 }
453 if (safeTimestamp != null && safeTimestamp.compareTo(getTimeRange().getEndTime(), false) > 0)
454 timeRange = new TmfTimeRange(startTimestamp, safeTimestamp);
455 else
456 timeRange = null;
457 safeTimestamp = endTimestamp;
458 if (timeRange != null) {
459 final TmfExperimentRangeUpdatedSignal signal =
460 new TmfExperimentRangeUpdatedSignal(TmfExperiment.this, TmfExperiment.this, timeRange);
461 broadcast(signal);
462 }
463 }
464 try {
465 Thread.sleep(getStreamingInterval());
466 } catch (final InterruptedException e) {
467 e.printStackTrace();
468 }
469 }
470 }
471 };
472 thread.start();
473 }
474
475 /* (non-Javadoc)
476 * @see org.eclipse.linuxtools.tmf.trace.ITmfTrace#getStreamingInterval()
477 */
478 @Override
479 public long getStreamingInterval() {
480 long interval = 0;
481 for (final ITmfTrace<T> trace : fTraces)
482 interval = Math.max(interval, trace.getStreamingInterval());
483 return interval;
484 }
485
486 // ------------------------------------------------------------------------
487 // Signal handlers
488 // ------------------------------------------------------------------------
489
490 private Integer fEndSynchReference;
491
492 /**
493 * Signal handler for the TmfExperimentSelectedSignal signal
494 *
495 * @param signal
496 */
497 @TmfSignalHandler
498 public void experimentSelected(final TmfExperimentSelectedSignal<T> signal) {
499 final TmfExperiment<?> experiment = signal.getExperiment();
500 if (experiment == this) {
501 setCurrentExperiment(experiment);
502 fEndSynchReference = Integer.valueOf(signal.getReference());
503 }
504 }
505
506 /**
507 * Signal handler for the TmfEndSynchSignal signal
508 *
509 * @param signal
510 */
511 @TmfSignalHandler
512 public void endSync(final TmfEndSynchSignal signal) {
513 if (fEndSynchReference != null && fEndSynchReference.intValue() == signal.getReference()) {
514 fEndSynchReference = null;
515 initializeStreamingMonitor();
516 }
517 }
518
519 /**
520 * Signal handler for the TmfTraceUpdatedSignal signal
521 *
522 * @param signal
523 */
524 @TmfSignalHandler
525 public void traceUpdated(final TmfTraceUpdatedSignal signal) {
526 if (signal.getTrace() == this) {
527 broadcast(new TmfExperimentUpdatedSignal(this, this));
528 }
529 }
530
531 /**
532 * Signal handler for the TmfExperimentRangeUpdatedSignal signal
533 *
534 * @param signal
535 */
536 @TmfSignalHandler
537 public void experimentRangeUpdated(final TmfExperimentRangeUpdatedSignal signal) {
538 if (signal.getExperiment() == this) {
539 getIndexer().buildIndex(getNbEvents(), signal.getRange(), false);
540 }
541 }
542
543 }
This page took 0.043205 seconds and 6 git commands to generate.