gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ust.core / src / org / eclipse / linuxtools / lttng2 / ust / core / analysis / memory / UstMemoryAnalysisModule.java
1 /*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 * Guilliano Molaire - Provide the requirements of the analysis
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.lttng2.ust.core.analysis.memory;
15
16 import org.eclipse.linuxtools.internal.lttng2.ust.core.memoryusage.MemoryUsageStateProvider;
17 import org.eclipse.linuxtools.internal.lttng2.ust.core.memoryusage.UstMemoryStrings;
18 import org.eclipse.linuxtools.lttng2.control.core.session.SessionConfigStrings;
19 import org.eclipse.linuxtools.lttng2.ust.core.trace.LttngUstTrace;
20 import org.eclipse.linuxtools.tmf.core.analysis.TmfAnalysisRequirement;
21 import org.eclipse.linuxtools.tmf.core.analysis.TmfAnalysisRequirement.ValuePriorityLevel;
22 import org.eclipse.linuxtools.tmf.core.exceptions.TmfAnalysisException;
23 import org.eclipse.linuxtools.tmf.core.statesystem.ITmfStateProvider;
24 import org.eclipse.linuxtools.tmf.core.statesystem.TmfStateSystemAnalysisModule;
25 import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
26
27 import com.google.common.collect.ImmutableSet;
28
29 /**
30 * This analysis build a state system from the libc memory instrumentation on a
31 * UST trace
32 *
33 * @author Geneviève Bastien
34 * @since 3.0
35 */
36 public class UstMemoryAnalysisModule extends TmfStateSystemAnalysisModule {
37
38 /**
39 * Analysis ID, it should match that in the plugin.xml file
40 */
41 public static String ID = "org.eclipse.linuxtools.lttng2.ust.analysis.memory"; //$NON-NLS-1$
42
43 private static final ImmutableSet<String> REQUIRED_EVENTS = ImmutableSet.of(
44 UstMemoryStrings.MALLOC,
45 UstMemoryStrings.FREE,
46 UstMemoryStrings.CALLOC,
47 UstMemoryStrings.REALLOC,
48 UstMemoryStrings.MEMALIGN,
49 UstMemoryStrings.POSIX_MEMALIGN
50 );
51
52 /** The requirements as an immutable set */
53 private static final ImmutableSet<TmfAnalysisRequirement> REQUIREMENTS;
54
55 static {
56 /* Initialize the requirements for the analysis: domain and events */
57 TmfAnalysisRequirement eventsReq = new TmfAnalysisRequirement(SessionConfigStrings.CONFIG_ELEMENT_EVENT, REQUIRED_EVENTS, ValuePriorityLevel.MANDATORY);
58 /*
59 * In order to have these events, the libc wrapper with probes should be
60 * loaded
61 */
62 eventsReq.addInformation(Messages.UstMemoryAnalysisModule_EventsLoadingInformation);
63 eventsReq.addInformation(Messages.UstMemoryAnalysisModule_EventsLoadingExampleInformation);
64
65 /* The domain type of the analysis */
66 TmfAnalysisRequirement domainReq = new TmfAnalysisRequirement(SessionConfigStrings.CONFIG_ELEMENT_DOMAIN);
67 domainReq.addValue(SessionConfigStrings.CONFIG_DOMAIN_TYPE_UST, ValuePriorityLevel.MANDATORY);
68
69 REQUIREMENTS = ImmutableSet.of(domainReq, eventsReq);
70 }
71
72 @Override
73 protected ITmfStateProvider createStateProvider() {
74 return new MemoryUsageStateProvider(getTrace());
75 }
76
77 @Override
78 public void setTrace(ITmfTrace trace) throws TmfAnalysisException {
79 if (!(trace instanceof LttngUstTrace)) {
80 throw new IllegalStateException("UstMemoryAnalysisModule: trace should be of type LttngUstTrace"); //$NON-NLS-1$
81 }
82 super.setTrace(trace);
83 }
84
85 @Override
86 protected LttngUstTrace getTrace() {
87 return (LttngUstTrace) super.getTrace();
88 }
89
90 @Override
91 public Iterable<TmfAnalysisRequirement> getAnalysisRequirements() {
92 return REQUIREMENTS;
93 }
94 }
This page took 0.042978 seconds and 5 git commands to generate.