ctf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.ust.ui / src / org / eclipse / tracecompass / lttng2 / ust / ui / analysis / callstack / LttngUstCallStackAnalysis.java
CommitLineData
50659279 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2014, 2015 Ericsson
50659279
AM
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 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
9bc60be7 13package org.eclipse.tracecompass.lttng2.ust.ui.analysis.callstack;
50659279 14
d0c7e4ba
AM
15import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
16
116738ad 17import org.eclipse.tracecompass.internal.lttng2.ust.core.callstack.LttngUstCallStackProvider;
9bc60be7 18import org.eclipse.tracecompass.lttng2.ust.core.trace.LttngUstTrace;
2bdf0193
AM
19import org.eclipse.tracecompass.tmf.core.exceptions.TmfAnalysisException;
20import org.eclipse.tracecompass.tmf.core.statesystem.ITmfStateProvider;
21import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
22import org.eclipse.tracecompass.tmf.ui.views.callstack.AbstractCallStackAnalysis;
50659279
AM
23
24/**
25 * Call-stack analysis to populate the TMF CallStack View from UST cyg-profile
26 * events.
27 *
28 * @author Alexandre Montplaisir
50659279
AM
29 */
30public class LttngUstCallStackAnalysis extends AbstractCallStackAnalysis {
31
f479550c
GB
32 /**
33 * @since 1.0
34 */
50659279 35 @Override
f479550c 36 public boolean setTrace(ITmfTrace trace) throws TmfAnalysisException {
50659279 37 if (!(trace instanceof LttngUstTrace)) {
f479550c 38 return false;
50659279 39 }
f479550c 40 return super.setTrace(trace);
50659279
AM
41 }
42
43 @Override
44 protected LttngUstTrace getTrace() {
45 return (LttngUstTrace) super.getTrace();
46 }
47
48 @Override
49 protected ITmfStateProvider createStateProvider() {
d0c7e4ba 50 return new LttngUstCallStackProvider(checkNotNull(getTrace()));
50659279
AM
51 }
52
53}
This page took 0.085926 seconds and 5 git commands to generate.