lttng.ust: Split the function name into its own aspect/column
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / lttng2 / ust / core / trace / LttngUstTrace.java
1 /**********************************************************************
2 * Copyright (c) 2013, 2014 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 * Matthew Khouzam - Initial API and implementation
11 * Alexandre Montplaisir - Add UST callstack state system
12 * Marc-Andre Laperle - Handle BufferOverflowException (Bug 420203)
13 **********************************************************************/
14
15 package org.eclipse.tracecompass.lttng2.ust.core.trace;
16
17 import java.util.Collection;
18 import java.util.Map;
19
20 import org.eclipse.core.resources.IProject;
21 import org.eclipse.core.resources.IResource;
22 import org.eclipse.core.runtime.IStatus;
23 import org.eclipse.core.runtime.Status;
24 import org.eclipse.jdt.annotation.NonNull;
25 import org.eclipse.jdt.annotation.Nullable;
26 import org.eclipse.tracecompass.internal.lttng2.ust.core.Activator;
27 import org.eclipse.tracecompass.internal.lttng2.ust.core.trace.layout.LttngUst20EventLayout;
28 import org.eclipse.tracecompass.internal.lttng2.ust.core.trace.layout.LttngUst27EventLayout;
29 import org.eclipse.tracecompass.internal.lttng2.ust.core.trace.layout.LttngUst28EventLayout;
30 import org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo.UstDebugInfoBinaryAspect;
31 import org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo.UstDebugInfoFunctionAspect;
32 import org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo.UstDebugInfoSourceAspect;
33 import org.eclipse.tracecompass.lttng2.ust.core.trace.layout.ILttngUstEventLayout;
34 import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
35 import org.eclipse.tracecompass.tmf.core.event.aspect.ITmfEventAspect;
36 import org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException;
37 import org.eclipse.tracecompass.tmf.core.trace.TraceValidationStatus;
38 import org.eclipse.tracecompass.tmf.ctf.core.trace.CtfTmfTrace;
39 import org.eclipse.tracecompass.tmf.ctf.core.trace.CtfTraceValidationStatus;
40 import org.eclipse.tracecompass.tmf.ctf.core.trace.CtfUtils;
41
42 import com.google.common.collect.ImmutableSet;
43
44 /**
45 * Class to contain LTTng-UST traces
46 *
47 * @author Matthew Khouzam
48 */
49 public class LttngUstTrace extends CtfTmfTrace {
50
51 /**
52 * Name of the tracer that generates this trace type, as found in the CTF
53 * metadata.
54 *
55 * @since 2.0
56 */
57 public static final String TRACER_NAME = "lttng-ust"; //$NON-NLS-1$
58
59 private static final int CONFIDENCE = 100;
60
61 private static final @NonNull Collection<ITmfEventAspect<?>> LTTNG_UST_ASPECTS;
62
63 static {
64 ImmutableSet.Builder<ITmfEventAspect<?>> builder = ImmutableSet.builder();
65 builder.addAll(CtfTmfTrace.CTF_ASPECTS);
66 builder.add(UstDebugInfoBinaryAspect.INSTANCE);
67 builder.add(UstDebugInfoFunctionAspect.INSTANCE);
68 builder.add(UstDebugInfoSourceAspect.INSTANCE);
69 LTTNG_UST_ASPECTS = builder.build();
70 }
71
72 private @Nullable ILttngUstEventLayout fLayout = null;
73
74 /**
75 * Default constructor
76 */
77 public LttngUstTrace() {
78 super(LttngUstEventFactory.instance());
79 }
80
81 /**
82 * Get the event layout to use with this trace. This normally depends on the
83 * tracer's version.
84 *
85 * @return The event layout
86 * @since 2.0
87 */
88 public @NonNull ILttngUstEventLayout getEventLayout() {
89 ILttngUstEventLayout layout = fLayout;
90 if (layout == null) {
91 throw new IllegalStateException("Cannot get the layout of a non-initialized trace!"); //$NON-NLS-1$
92 }
93 return layout;
94 }
95
96 @Override
97 public void initTrace(IResource resource, String path,
98 Class<? extends ITmfEvent> eventType) throws TmfTraceException {
99 super.initTrace(resource, path, eventType);
100
101 /* Determine the event layout to use from the tracer's version */
102 fLayout = getLayoutFromEnv();
103 }
104
105 private @NonNull ILttngUstEventLayout getLayoutFromEnv() {
106 String tracerName = CtfUtils.getTracerName(this);
107 int tracerMajor = CtfUtils.getTracerMajorVersion(this);
108 int tracerMinor = CtfUtils.getTracerMinorVersion(this);
109
110 if (TRACER_NAME.equals(tracerName)) {
111 if (tracerMajor >= 2) {
112 if (tracerMinor >= 8) {
113 return LttngUst28EventLayout.getInstance();
114 } else if (tracerMinor >= 7) {
115 return LttngUst27EventLayout.getInstance();
116 }
117 return LttngUst20EventLayout.getInstance();
118 }
119 }
120
121 /* Fallback to the UST 2.0 layout and hope for the best */
122 return LttngUst20EventLayout.getInstance();
123 }
124
125 @Override
126 public Iterable<ITmfEventAspect<?>> getEventAspects() {
127 return LTTNG_UST_ASPECTS;
128 }
129
130 /**
131 * {@inheritDoc}
132 * <p>
133 * This implementation sets the confidence to 100 if the trace is a valid
134 * CTF trace in the "ust" domain.
135 */
136 @Override
137 public IStatus validate(final IProject project, final String path) {
138 IStatus status = super.validate(project, path);
139 if (status instanceof CtfTraceValidationStatus) {
140 Map<String, String> environment = ((CtfTraceValidationStatus) status).getEnvironment();
141 /* Make sure the domain is "ust" in the trace's env vars */
142 String domain = environment.get("domain"); //$NON-NLS-1$
143 if (domain == null || !domain.equals("\"ust\"")) { //$NON-NLS-1$
144 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, Messages.LttngUstTrace_DomainError);
145 }
146 return new TraceValidationStatus(CONFIDENCE, Activator.PLUGIN_ID);
147 }
148 return status;
149 }
150
151 // ------------------------------------------------------------------------
152 // Fields/methods bridging the Debug-info symbol provider
153 // ------------------------------------------------------------------------
154
155 /*
156 * FIXME Once the symbol provider is split in core/ui components, the
157 * UstDebugInfoSymbolProvider should be moved to the core plugin, and this
158 * here can be removed.
159 */
160
161 /**
162 * Configuration of the symbol provider.
163 *
164 * @since 2.0
165 */
166 public static class SymbolProviderConfig {
167
168 private final boolean fUseCustomRootDir;
169 private final @NonNull String fCustomRootDirPath;
170
171 /**
172 * Constructor
173 *
174 * Note that a path can be specified even if 'useCustomRootDir' is
175 * false. This will keep the setting in the text field even when it is
176 * grayed out.
177 *
178 * @param useCustomRootDir
179 * Should a custom directory be used
180 * @param rootDirPath
181 * Custom directory path
182 */
183 public SymbolProviderConfig(boolean useCustomRootDir, @NonNull String rootDirPath) {
184 fUseCustomRootDir = useCustomRootDir;
185 fCustomRootDirPath = rootDirPath;
186 }
187
188 /**
189 * @return Should a custom directory be used
190 */
191 public boolean useCustomRootDir() {
192 return fUseCustomRootDir;
193 }
194
195 /**
196 * @return The configured root directory
197 */
198 public String getCustomRootDirPath() {
199 return fCustomRootDirPath;
200 }
201
202 /**
203 * Return the "real" path to use for symbol resolution. This is a
204 * convenience method that avoids having to check the state of
205 * {@link #useCustomRootDir()} separately.
206 *
207 * @return The actual root directory to use
208 */
209 public String getActualRootDirPath() {
210 if (fUseCustomRootDir) {
211 return fCustomRootDirPath;
212 }
213 return ""; //$NON-NLS-1$
214 }
215 }
216
217 private @NonNull SymbolProviderConfig fCurrentProviderConfig =
218 /* Default settings for new traces */
219 new SymbolProviderConfig(false, ""); //$NON-NLS-1$
220
221
222 /**
223 * Get the current symbol provider configuration for this trace.
224 *
225 * @return The current symbol provider configuration
226 * @since 2.0
227 */
228 public @NonNull SymbolProviderConfig getSymbolProviderConfig() {
229 return fCurrentProviderConfig;
230 }
231
232 /**
233 * Set the symbol provider configuration for this trace.
234 *
235 * @param config
236 * The new symbol provider configuration to use
237 * @since 2.0
238 */
239 public void setSymbolProviderConfig(@NonNull SymbolProviderConfig config) {
240 fCurrentProviderConfig = config;
241 }
242 }
This page took 0.037115 seconds and 6 git commands to generate.