Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / lttng / state / trace / StateTraceManager.java
CommitLineData
5d10d135
ASL
1/*******************************************************************************
2 * Copyright (c) 2009, 2010 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 * Alvaro Sanchez-Leon (alvsan09@gmail.com) - Initial API and implementation
11 *******************************************************************************/
12package org.eclipse.linuxtools.lttng.state.trace;
13
14import java.util.Collections;
15import java.util.HashMap;
16import java.util.Vector;
17
18import org.eclipse.linuxtools.lttng.TraceDebug;
19import org.eclipse.linuxtools.lttng.event.LttngEvent;
20import org.eclipse.linuxtools.lttng.event.LttngSyntheticEvent;
21import org.eclipse.linuxtools.lttng.event.LttngSyntheticEvent.SequenceInd;
22import org.eclipse.linuxtools.lttng.event.LttngTimestamp;
23import org.eclipse.linuxtools.lttng.model.LTTngTreeNode;
24import org.eclipse.linuxtools.lttng.request.ILttngSyntEventRequest;
25import org.eclipse.linuxtools.lttng.request.IRequestStatusListener;
26import org.eclipse.linuxtools.lttng.request.LttngSyntEventRequest;
27import org.eclipse.linuxtools.lttng.state.LttngStateException;
28import org.eclipse.linuxtools.lttng.state.evProcessor.ITransEventProcessor;
29import org.eclipse.linuxtools.lttng.state.evProcessor.state.StateEventToHandlerFactory;
30import org.eclipse.linuxtools.lttng.state.model.LttngTraceState;
31import org.eclipse.linuxtools.lttng.state.model.StateModelFactory;
32import org.eclipse.linuxtools.lttng.state.resource.ILttngStateContext;
33import org.eclipse.linuxtools.lttng.trace.LTTngTextTrace;
34import org.eclipse.linuxtools.lttng.trace.LTTngTrace;
5d10d135
ASL
35import org.eclipse.linuxtools.tmf.event.TmfEvent;
36import org.eclipse.linuxtools.tmf.event.TmfTimeRange;
37import org.eclipse.linuxtools.tmf.event.TmfTimestamp;
38import org.eclipse.linuxtools.tmf.experiment.TmfExperiment;
39import org.eclipse.linuxtools.tmf.request.TmfDataRequest;
5d10d135
ASL
40import org.eclipse.linuxtools.tmf.trace.ITmfTrace;
41import org.eclipse.linuxtools.tmf.trace.TmfCheckpoint;
42import org.eclipse.linuxtools.tmf.trace.TmfLocation;
43
550d787e 44public class StateTraceManager extends LTTngTreeNode implements IStateTraceManager, ILttngStateContext {
5d10d135
ASL
45
46 // constants
47 private static final long DEFAULT_OFFSET = 0L;
48 private static final int DEFAULT_CHUNK = 1;
49
50 // configurable check point interval
b12f4544 51 private static final long LTTNG_CHECK_POINT_INTERVAL = 50000L;
5d10d135
ASL
52 private long fcheckPointInterval = LTTNG_CHECK_POINT_INTERVAL;
53
54 private TmfExperiment<LttngEvent> fExperiment = null;
55
56 // immutable Objects
57 private final ITmfTrace fTrace;
58 private int fcpuNumber = -1;
59 private final ITransEventProcessor fStateUpdateProcessor;
60
61 // potentially thread shared
62 private final HashMap<Long, LttngTraceState> stateCheckpointsList = new HashMap<Long, LttngTraceState>();
63 private final Vector<TmfCheckpoint> timestampCheckpointsList = new Vector<TmfCheckpoint>();
64 private LttngTraceState fStateModel;
550d787e 65 private LttngTraceState fCheckPointStateModel;
5d10d135
ASL
66
67 // locks
c1c69938
FC
68 private Object fCheckPointsLock = new Object();
69 private Object fStateModelLock = new Object();
5d10d135 70
5d10d135
ASL
71
72
73 // =======================================================================
74 // Constructor
75 // =======================================================================
76 /**
77 * @param id
78 * @param parent
79 * @param name
80 * @param trace
5d10d135
ASL
81 * @throws LttngStateException
82 */
550d787e 83 public StateTraceManager(Long id, LTTngTreeNode parent, String name, ITmfTrace trace) throws LttngStateException {
5d10d135
ASL
84 super(id, parent, name, trace);
85
86 if (trace == null) {
9c4eb5f7 87 throw new LttngStateException("No TmfTrace object available!"); //$NON-NLS-1$
5d10d135
ASL
88 }
89
90 fTrace = trace;
5d10d135 91 fStateUpdateProcessor = StateEventToHandlerFactory.getInstance();
550d787e 92
5d10d135 93 init();
550d787e
FC
94
95 fStateModel = StateModelFactory.getStateEntryInstance(this);
96 fStateModel.init(this);
97
98 fCheckPointStateModel = StateModelFactory.getStateEntryInstance(this);
99 fCheckPointStateModel.init(this);
5d10d135
ASL
100 }
101
102 // =======================================================================
103 // Methods
104 // =======================================================================
105 @SuppressWarnings("unchecked")
106 private void init() {
107 // resolve the experiment
108 Object obj = getParent().getValue();
109 if (obj != null && obj instanceof TmfExperiment<?>) {
110 fExperiment = (TmfExperiment<LttngEvent>) obj;
111 }
112
113 // initialize the number of cpus
114 if (fTrace instanceof LTTngTrace) {
115 fcpuNumber = ((LTTngTrace) fTrace).getCpuNumber();
116 } else if (fTrace instanceof LTTngTextTrace) {
117 fcpuNumber = ((LTTngTextTrace) fTrace).getCpuNumber();
118 }
119 }
550d787e 120
5d10d135 121
8827c197 122
8827c197 123
5d10d135
ASL
124
125 /*
126 * (non-Javadoc)
127 *
128 * @see org.eclipse.linuxtools.lttng.state.IStateManager#getEventLog()
129 */
d4011df2 130 @Override
5d10d135
ASL
131 public ITmfTrace getTrace() {
132 return fTrace;
133 }
134
135 /**
136 * Save a checkpoint if it is needed at that point
137 * <p>
138 * The function will use "eventCount" internally to determine if a save was
139 * needed
140 *
141 * @param eventCounter
142 * The event "count" or event "id" so far
143 * @param eventTime
144 * The timestamp of this event
145 *
146 * @return boolean True if a checkpoint was saved, false otherwise
147 */
550d787e 148 private void saveCheckPointIfNeeded(Long eventCounter, TmfTimestamp eventTime) {
5d10d135
ASL
149 // Save a checkpoint every LTTNG_STATE_SAVE_INTERVAL event
150 if ((eventCounter.longValue() % fcheckPointInterval) == 0) {
c1c69938 151
5d10d135 152 LttngTraceState stateCheckPoint;
c1c69938 153 synchronized (fCheckPointsLock) {
550d787e 154 stateCheckPoint = fCheckPointStateModel.clone();
5d10d135
ASL
155 }
156
9c4eb5f7
FC
157 TraceDebug.debug("Check point created here: " + eventCounter //$NON-NLS-1$
158 + " -> " + eventTime.toString() + "************" //$NON-NLS-1$ //$NON-NLS-2$
159 + getTrace().getName() + " >>>>> Thread: " //$NON-NLS-1$
5d10d135
ASL
160 + Thread.currentThread().getId());
161
c1c69938 162 synchronized (fCheckPointsLock) {
5d10d135
ASL
163 // Save the checkpoint
164 stateCheckpointsList.put(eventCounter, stateCheckPoint);
165 // Save correlation between timestamp and checkpoint index
166
550d787e
FC
167 timestampCheckpointsList.add(new TmfCheckpoint(new TmfTimestamp(eventTime), new TmfLocation<Long>(
168 eventCounter)));
5d10d135
ASL
169 }
170 }
171 }
172
173 /**
174 * @return the lttng_check_point_interval
175 */
176 public long getCheckPointInterval() {
177 return fcheckPointInterval;
178 }
179
180 /**
181 * @param check_point_interval
182 * , the lttng_check_point_interval to set
183 */
184 public void setCheckPointInterval(long check_point_interval) {
185 this.fcheckPointInterval = check_point_interval;
186 }
187
736aecd5
ASL
188 /*
189 * (non-Javadoc)
190 *
550d787e
FC
191 * @see org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#
192 * restoreCheckPointByTimestamp
736aecd5 193 * (org.eclipse.linuxtools.tmf.event.TmfTimestamp)
5d10d135 194 */
d4011df2 195 @Override
5d10d135 196 @SuppressWarnings("unchecked")
a79913eb 197 public TmfCheckpoint restoreCheckPointByTimestamp(TmfTimestamp eventTime) {
736aecd5 198 TmfTimeRange experimentRange = fExperiment.getTimeRange();
a79913eb 199 TmfCheckpoint checkpoint = new TmfCheckpoint(fTrace.getStartTime(), new TmfLocation<Long>(0L));
5d10d135
ASL
200
201 // The GUI can have time limits higher than this log, since GUI can
b626c6f7
BH
202 // handle multiple logs. Ignore special null value of experiment time range.
203 if ((eventTime.getValue() < 0) ||
204 (!experimentRange.equals(TmfTimeRange.Null) && (eventTime.getValue() > experimentRange.getEndTime().getValue()))) {
5d10d135
ASL
205 return null;
206 }
207
736aecd5
ASL
208 // The GUI can have time limits lower than this trace, since experiment
209 // can handle multiple traces
210 if ((eventTime.getValue() < fTrace.getStartTime().getValue())) {
211 eventTime = fTrace.getStartTime();
5dbe4d3b 212 }
736aecd5 213
c1c69938
FC
214 LttngTraceState traceState;
215 synchronized (fCheckPointsLock) {
216 Collections.sort(timestampCheckpointsList);
217 // Initiate the compare with a checkpoint containing the target time
218 // stamp to find
219 int index = Collections.binarySearch(timestampCheckpointsList, new TmfCheckpoint(eventTime,
220 new TmfLocation<Long>(0L)));
221 // adjust index to round down to earlier checkpoint when exact match
222 // not
223 // found
224 index = getPrevIndex(index);
225
226 if (index == 0) {
227 // No checkpoint restore is needed, start with a brand new
228 // TraceState
229 traceState = StateModelFactory.getStateEntryInstance(this);
230 } else {
231
232 // Useful CheckPoint found
a79913eb 233 checkpoint = timestampCheckpointsList.get(index);
c1c69938
FC
234 // get the location associated with the checkpoint
235 TmfLocation<Long> location = (TmfLocation<Long>) checkpoint.getLocation();
236 // reference a new copy of the checkpoint template
237 traceState = stateCheckpointsList.get(location.getLocation()).clone();
238 }
239
5dbe4d3b 240 }
5d10d135 241
5dbe4d3b 242 // Restore the stored traceState
c1c69938 243 synchronized (fStateModelLock) {
5dbe4d3b 244 fStateModel = traceState;
5d10d135
ASL
245 }
246
a79913eb
FC
247 return checkpoint;
248 }
249
250 /* (non-Javadoc)
251 * @see org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#restoreCheckPointByIndex(long)
252 */
253 @Override
254 public TmfCheckpoint restoreCheckPointByIndex(long eventIndex) {
255 TmfCheckpoint checkpoint = new TmfCheckpoint(fTrace.getStartTime(), new TmfLocation<Long>(0L));
256
257 LttngTraceState traceState;
258 synchronized (fCheckPointsLock) {
259 Collections.sort(timestampCheckpointsList);
260 // Initiate the compare with a checkpoint containing the target time
261 // stamp to find
262 int index = Collections.binarySearch(timestampCheckpointsList, new TmfCheckpoint(null,
263 new TmfLocation<Long>(eventIndex)));
264 // adjust index to round down to earlier checkpoint when exact match not found
265 index = getPrevIndex(index);
266
267 if (index == 0) {
268 // No checkpoint restore is needed, start with a brand new
269 // TraceState
270 traceState = StateModelFactory.getStateEntryInstance(this);
271 } else {
272
273 // Useful CheckPoint found
274 checkpoint = timestampCheckpointsList.get(index);
275 // get the location associated with the checkpoint
276 @SuppressWarnings("unchecked")
277 TmfLocation<Long> location = (TmfLocation<Long>) checkpoint.getLocation();
278 // reference a new copy of the checkpoint template
279 traceState = stateCheckpointsList.get(location.getLocation()).clone();
280 }
281
282 }
283
284 // Restore the stored traceState
285 synchronized (fStateModelLock) {
286 fStateModel = traceState;
287 }
288
289 return checkpoint;
5d10d135
ASL
290 }
291
292 /**
293 * Adjust the result from a binary search to the round down position
294 *
295 * @param position
296 * if Negative is: (-(insertion point) -1)
297 * @return position or if no match found, earlier than insertion point
298 */
299 private int getPrevIndex(int position) {
300 int roundDownPosition = position;
301 if (position < 0) {
302 roundDownPosition = -(position + 2);
303 }
304
305 roundDownPosition = roundDownPosition < 0 ? 0 : roundDownPosition;
306 return roundDownPosition;
307 }
308
5d10d135
ASL
309 // TODO: Remove this request type when the UI handle their own requests
310 /**
311 * Request Event data of a specified time range
312 *
313 * @param timeWindow
314 * @param listener
315 * @param processor
316 * @return ILttngEventRequest The request made
317 */
550d787e 318 ILttngSyntEventRequest getDataRequestByTimeRange(TmfTimeRange timeWindow, IRequestStatusListener listener,
5d10d135
ASL
319 final ITransEventProcessor processor) {
320
550d787e
FC
321 ILttngSyntEventRequest request = new StateTraceManagerRequest(timeWindow, DEFAULT_OFFSET,
322 TmfDataRequest.ALL_DATA, DEFAULT_CHUNK, listener, getExperimentTimeWindow(), processor) {
5d10d135
ASL
323 };
324
325 return request;
326 }
327
5d10d135
ASL
328
329 /*
330 * (non-Javadoc)
331 *
332 * @see
333 * org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#getStateModel
334 * ()
335 */
d4011df2 336 @Override
c1c69938
FC
337 public LttngTraceState getStateModel() {
338 LttngTraceState stateModel = null;
339 synchronized (fStateModelLock) {
340 stateModel = fStateModel;
5d10d135 341 }
c1c69938 342 return stateModel;
5d10d135
ASL
343 }
344
550d787e
FC
345 /*
346 * (non-Javadoc)
347 *
348 * @see org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#
349 * getCheckPointStateModel()
350 */
d4011df2 351 @Override
c1c69938
FC
352 public LttngTraceState getCheckPointStateModel() {
353 LttngTraceState checkPointStateModel = null;
354 synchronized (fCheckPointsLock) {
355 checkPointStateModel = fCheckPointStateModel;
550d787e 356 }
c1c69938 357 return checkPointStateModel;
550d787e
FC
358 }
359
5d10d135
ASL
360 /**
361 * @return the stateCheckpointsList
362 */
363 HashMap<Long, LttngTraceState> getStateCheckpointsList() {
364 return stateCheckpointsList;
365 }
366
367 /**
368 * @return the timestampCheckpointsList
369 */
370 Vector<TmfCheckpoint> getTimestampCheckpointsList() {
371 return timestampCheckpointsList;
372 }
373 // =======================================================================
374 // Inner Class
375 // =======================================================================
376 class StateTraceManagerRequest extends LttngSyntEventRequest {
377 // =======================================================================
378 // Data
379 // =======================================================================
380 final TmfEvent[] evt = new TmfEvent[1];
381 final ITransEventProcessor fprocessor;
382 LttngSyntheticEvent synEvent;
383 Long fCount = getSynEventCount();
384
385 // =======================================================================
386 // Constructor
387 // =======================================================================
550d787e
FC
388 public StateTraceManagerRequest(TmfTimeRange range, long offset, int nbEvents, int maxBlockSize,
389 IRequestStatusListener listener, TmfTimeRange experimentTimeRange, ITransEventProcessor processor) {
5d10d135 390
550d787e 391 super(range, offset, nbEvents, maxBlockSize, listener, experimentTimeRange, processor);
5d10d135 392 fprocessor = processor;
9c4eb5f7 393 TraceDebug.debug("Instance created for range: " + range.toString()); //$NON-NLS-1$
5d10d135
ASL
394 fCount = 0L;
395 }
396
397 // =======================================================================
398 // Methods
399 // =======================================================================
400 /*
401 * (non-Javadoc)
402 *
403 * @see
404 * org.eclipse.linuxtools.lttng.request.LttngSyntEventRequest#handleData
405 * ()
406 */
407 @Override
f9673903
FC
408 public void handleData(LttngSyntheticEvent event) {
409 super.handleData(event);
410 if (event != null) {
411 synEvent = event;
5d10d135
ASL
412 if (synEvent.getSynType() == SequenceInd.AFTER) {
413 // Note : We call this function before incrementing
414 // eventCount to save a default check point at the "0th"
415 // event
416 saveCheckPoint(fCount, synEvent.getTimestamp());
417 fCount++;
418
419 if (TraceDebug.isDEBUG()) {
420 if (fCount % 1000 == 0) {
9c4eb5f7 421 TraceDebug.debug("handled: " + fCount + " sequence: " + synEvent.getSynType()); //$NON-NLS-1$ //$NON-NLS-2$
5d10d135
ASL
422 }
423 }
424 }
425 }
426 }
427
428 /**
429 * To be overridden by active save e.g. check points, this no action
430 * default is used for requests which do not require rebuilding of
431 * checkpoints e.g. requiring data of a new time range selection
432 *
433 * @param count
434 * @param time
435 */
436 public void saveCheckPoint(Long count, TmfTimestamp time) {
437
438 }
439 }
440
441 /*
442 * (non-Javadoc)
443 *
444 * @see org.eclipse.linuxtools.lttng.state.resource.ILttngStateContext#
445 * getNumberOfCpus()
446 */
d4011df2 447 @Override
5d10d135
ASL
448 public int getNumberOfCpus() {
449 return fcpuNumber;
450 }
451
452 /*
453 * (non-Javadoc)
454 *
455 * @see org.eclipse.linuxtools.lttng.state.resource.ILttngStateContext#
456 * getTraceTimeWindow()
457 */
d4011df2 458 @Override
5d10d135
ASL
459 public TmfTimeRange getTraceTimeWindow() {
460 if (fTrace != null) {
461 return fTrace.getTimeRange();
462
463 }
464 return null;
465 }
466
467 /*
468 * (non-Javadoc)
469 *
470 * @see
471 * org.eclipse.linuxtools.lttng.state.resource.ILttngStateContext#getTraceId
472 * ()
473 */
d4011df2 474 @Override
5d10d135
ASL
475 public String getTraceId() {
476 if (fTrace != null) {
477 return fTrace.getName();
478 }
479 return null;
480 }
481
482 /*
483 * (non-Javadoc)
484 *
485 * @see org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#
486 * getExperimentTimeWindow()
487 */
d4011df2 488 @Override
5d10d135
ASL
489 public TmfTimeRange getExperimentTimeWindow() {
490 if (fExperiment != null) {
491 return fExperiment.getTimeRange();
492 }
493 return null;
494 }
495
496 /*
497 * (non-Javadoc)
498 *
499 * @see
500 * org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#getExperimentName
501 * ()
502 */
d4011df2 503 @Override
5d10d135
ASL
504 public String getExperimentName() {
505 return fExperiment.getName();
506 }
507
508 /*
509 * (non-Javadoc)
510 *
511 * @see
512 * org.eclipse.linuxtools.lttng.state.resource.ILttngStateContext#getTraceIdRef
513 * ()
514 */
d4011df2 515 @Override
5d10d135
ASL
516 public ITmfTrace getTraceIdRef() {
517 return fTrace;
518 }
550d787e
FC
519
520 /*
521 * (non-Javadoc)
522 *
523 * @see
524 * org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#clearCheckPoints
525 * ()
526 */
d4011df2 527 @Override
c1c69938
FC
528 public void clearCheckPoints() {
529 synchronized (fCheckPointsLock) {
550d787e
FC
530 stateCheckpointsList.clear();
531 timestampCheckpointsList.clear();
532
533 fCheckPointStateModel = StateModelFactory.getStateEntryInstance(this);
c1c69938 534
550d787e
FC
535 try {
536 fCheckPointStateModel.init(this);
537 } catch (LttngStateException e) {
538 e.printStackTrace();
539 }
540 }
541 }
542
543 /*
544 * (non-Javadoc)
545 *
546 * @see
547 * org.eclipse.linuxtools.lttng.state.trace.IStateTraceManager#handleEvent
548 * (org.eclipse.linuxtools.lttng.event.LttngSyntheticEvent, java.lang.Long)
549 */
d4011df2 550 @Override
550d787e
FC
551 public void handleEvent(LttngSyntheticEvent synEvent, Long eventCount) {
552 fStateUpdateProcessor.process(synEvent, fCheckPointStateModel);
553
554 // Save checkpoint as needed
555 saveCheckPointIfNeeded(eventCount - 1, synEvent.getTimestamp());
556 }
557
558 /*
559 * (non-Javadoc)
560 *
561 * @see java.lang.Object#toString()
562 */
cb866e08 563 @Override
3b38ea61 564 @SuppressWarnings("nls")
550d787e
FC
565 public String toString() {
566 StringBuilder sb = new StringBuilder(super.toString());
567 sb.append("\n\tTotal number of processes in the Shared State model: " + fStateModel.getProcesses().length
568 + "\n\t" + "Total number of processes in the Check point State model: "
569 + fCheckPointStateModel.getProcesses().length);
570
571 TmfTimeRange traceTRange = fTrace.getTimeRange();
572 sb.append("\n\tTrace time interval for trace " + fTrace.getName() + "\n\t"
573 + new LttngTimestamp(traceTRange.getStartTime()));
574 sb.append(" - " + new LttngTimestamp(traceTRange.getEndTime()));
575 sb.append("\n\tCheckPoints available at: ");
576 for (TmfCheckpoint cpoint : timestampCheckpointsList) {
577 sb.append("\n\t" + "Location: " + cpoint.getLocation() + " - " + cpoint.getTimestamp());
578 }
579
580 return sb.toString();
581 }
582
b12f4544
FC
583 /*
584 * (non-Javadoc)
585 * @see org.eclipse.linuxtools.lttng.state.resource.ILttngStateContext#getIdentifier()
586 */
587 @Override
588 public long getIdentifier() {
589 return getId().longValue();
590 }
591
550d787e 592}
This page took 0.055898 seconds and 5 git commands to generate.