lttng: Rename lttng2 feature/plugins to lttng2.control
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.ui / src / org / eclipse / linuxtools / internal / lttng2 / control / ui / views / model / impl / TraceChannelComponent.java
CommitLineData
eb1bab5b 1/**********************************************************************
60ae41e1 2 * Copyright (c) 2012, 2014 Ericsson
cfdb727a 3 *
eb1bab5b
BH
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
cfdb727a
AM
8 *
9 * Contributors:
eb1bab5b 10 * Bernd Hufmann - Initial API and implementation
ba3a9bd2 11 * Bernd Hufmann - Updated for support of LTTng Tools 2.1
eb1bab5b 12 **********************************************************************/
8e8c0226 13package org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.impl;
eb1bab5b 14
b957fb8c 15import java.util.ArrayList;
6503ae0f
BH
16import java.util.List;
17
18import org.eclipse.core.commands.ExecutionException;
19import org.eclipse.core.runtime.IProgressMonitor;
8e8c0226
AM
20import org.eclipse.linuxtools.internal.lttng2.control.core.model.IChannelInfo;
21import org.eclipse.linuxtools.internal.lttng2.control.core.model.IEventInfo;
22import org.eclipse.linuxtools.internal.lttng2.control.core.model.LogLevelType;
23import org.eclipse.linuxtools.internal.lttng2.control.core.model.TraceEnablement;
24import org.eclipse.linuxtools.internal.lttng2.control.core.model.TraceLogLevel;
25import org.eclipse.linuxtools.internal.lttng2.control.core.model.impl.ChannelInfo;
26import org.eclipse.linuxtools.internal.lttng2.control.core.model.impl.ProbeEventInfo;
27import org.eclipse.linuxtools.internal.lttng2.control.ui.Activator;
28import org.eclipse.linuxtools.internal.lttng2.control.ui.views.messages.Messages;
29import org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.ITraceControlComponent;
30import org.eclipse.linuxtools.internal.lttng2.control.ui.views.property.TraceChannelPropertySource;
eb1bab5b 31import org.eclipse.swt.graphics.Image;
06b9339e 32import org.eclipse.ui.views.properties.IPropertySource;
eb1bab5b
BH
33
34
35/**
eb1bab5b
BH
36 * <p>
37 * Implementation of the trace channel component.
38 * </p>
cfdb727a 39 *
dbd4432d 40 * @author Bernd Hufmann
eb1bab5b
BH
41 */
42public class TraceChannelComponent extends TraceControlComponent {
11252342 43
eb1bab5b
BH
44 // ------------------------------------------------------------------------
45 // Constants
46 // ------------------------------------------------------------------------
11252342 47
eb1bab5b
BH
48 /**
49 * Path to icon file for this component (state enabled).
50 */
51 public static final String TRACE_CHANNEL_ICON_FILE_ENABLED = "icons/obj16/channel.gif"; //$NON-NLS-1$
52 /**
53 * Path to icon file for this component (state disabled).
54 */
55 public static final String TRACE_CHANNEL_ICON_FILE_DISABLED = "icons/obj16/channel_disabled.gif"; //$NON-NLS-1$
cfdb727a 56
eb1bab5b
BH
57 // ------------------------------------------------------------------------
58 // Attributes
59 // ------------------------------------------------------------------------
11252342 60
eb1bab5b
BH
61 /**
62 * The channel information.
63 */
64 private IChannelInfo fChannelInfo = null;
65 /**
66 * The image to be displayed in disabled state.
67 */
68 private Image fDisabledImage = null;
cfdb727a 69
eb1bab5b
BH
70 // ------------------------------------------------------------------------
71 // Constructors
72 // ------------------------------------------------------------------------
11252342 73
eb1bab5b 74 /**
cfdb727a 75 * Constructor
eb1bab5b
BH
76 * @param name - the name of the component.
77 * @param parent - the parent of this component.
78 */
79 public TraceChannelComponent(String name, ITraceControlComponent parent) {
80 super(name, parent);
81 setImage(TRACE_CHANNEL_ICON_FILE_ENABLED);
82 setToolTip(Messages.TraceControl_ChannelDisplayName);
83 fChannelInfo = new ChannelInfo(name);
31a6a4e4 84 fDisabledImage = Activator.getDefault().loadIcon(TRACE_CHANNEL_ICON_FILE_DISABLED);
eb1bab5b 85 }
cfdb727a 86
eb1bab5b
BH
87 // ------------------------------------------------------------------------
88 // Accessors
89 // ------------------------------------------------------------------------
11252342 90
eb1bab5b
BH
91 @Override
92 public Image getImage() {
93 if (fChannelInfo.getState() == TraceEnablement.DISABLED) {
94 return fDisabledImage;
95 }
96 return super.getImage();
97 }
98
99 /**
100 * Sets the channel information.
cfdb727a 101 *
eb1bab5b 102 * @param channelInfo
cfdb727a 103 * The channel info to assign to this component
eb1bab5b
BH
104 */
105 public void setChannelInfo(IChannelInfo channelInfo) {
106 fChannelInfo = channelInfo;
107 IEventInfo[] events = fChannelInfo.getEvents();
e0838ca1 108 List<ITraceControlComponent> eventComponents = new ArrayList<>();
eb1bab5b 109 for (int i = 0; i < events.length; i++) {
d132bcc7
BH
110 TraceEventComponent event = null;
111 if (events[i].getClass() == ProbeEventInfo.class) {
112 event = new TraceProbeEventComponent(events[i].getName(), this);
113 } else {
114 event = new TraceEventComponent(events[i].getName(), this);
115 }
116
b957fb8c 117 eventComponents.add(event);
eb1bab5b 118 event.setEventInfo(events[i]);
b957fb8c
BH
119 }
120 if (!eventComponents.isEmpty()) {
121 setChildren(eventComponents);
eb1bab5b
BH
122 }
123 }
124
125 /**
126 * @return the overwrite mode value.
127 */
128 public boolean isOverwriteMode() {
129 return fChannelInfo.isOverwriteMode();
130 }
131 /**
132 * Sets the overwrite mode value to the given mode.
133 * @param mode - mode to set.
134 */
135 public void setOverwriteMode(boolean mode){
136 fChannelInfo.setOverwriteMode(mode);
137 }
138 /**
139 * @return the sub-buffer size.
140 */
141 public long getSubBufferSize() {
142 return fChannelInfo.getSubBufferSize();
143 }
144 /**
145 * Sets the sub-buffer size to the given value.
146 * @param bufferSize - size to set to set.
147 */
148 public void setSubBufferSize(long bufferSize) {
149 fChannelInfo.setSubBufferSize(bufferSize);
150 }
151 /**
152 * @return the number of sub-buffers.
153 */
154 public int getNumberOfSubBuffers() {
155 return fChannelInfo.getNumberOfSubBuffers();
156 }
157 /**
158 * Sets the number of sub-buffers to the given value.
159 * @param numberOfSubBuffers - value to set.
160 */
161 public void setNumberOfSubBuffers(int numberOfSubBuffers) {
162 fChannelInfo.setNumberOfSubBuffers(numberOfSubBuffers);
163 }
164 /**
165 * @return the switch timer interval.
166 */
167 public long getSwitchTimer() {
168 return fChannelInfo.getSwitchTimer();
169 }
170 /**
171 * Sets the switch timer interval to the given value.
172 * @param timer - timer value to set.
173 */
174 public void setSwitchTimer(long timer) {
175 fChannelInfo.setSwitchTimer(timer);
176 }
177 /**
178 * @return the read timer interval.
179 */
180 public long getReadTimer() {
cfdb727a 181 return fChannelInfo.getReadTimer();
eb1bab5b
BH
182 }
183 /**
184 * Sets the read timer interval to the given value.
185 * @param timer - timer value to set..
186 */
187 public void setReadTimer(long timer) {
188 fChannelInfo.setReadTimer(timer);
189 }
190 /**
191 * @return the output type.
192 */
193 public String getOutputType() {
194 return fChannelInfo.getOutputType();
195 }
196 /**
197 * Sets the output type to the given value.
198 * @param type - type to set.
199 */
200 public void setOutputType(String type) {
201 fChannelInfo.setOutputType(type);
202 }
203 /**
204 * @return the channel state (enabled or disabled).
205 */
206 public TraceEnablement getState() {
207 return fChannelInfo.getState();
208 }
209 /**
210 * Sets the channel state (enablement) to the given value.
211 * @param state - state to set.
212 */
213 public void setState(TraceEnablement state) {
214 fChannelInfo.setState(state);
215 }
216 /**
217 * Sets the channel state (enablement) to the value specified by the given name.
218 * @param stateName - state to set.
219 */
220 public void setState(String stateName) {
221 fChannelInfo.setState(stateName);
222 }
11252342 223
06b9339e
BH
224 @Override
225 public Object getAdapter(Class adapter) {
226 if (adapter == IPropertySource.class) {
227 return new TraceChannelPropertySource(this);
228 }
229 return null;
cfdb727a 230 }
bbb3538a
BH
231
232 /**
233 * @return session name from parent
234 */
235 public String getSessionName() {
cfdb727a 236 return ((TraceDomainComponent)getParent()).getSessionName();
bbb3538a
BH
237 }
238
6503ae0f
BH
239 /**
240 * @return session from parent
241 */
242 public TraceSessionComponent getSession() {
cfdb727a 243 return ((TraceDomainComponent)getParent()).getSession();
6503ae0f
BH
244 }
245
bbb3538a
BH
246 /**
247 * @return if domain is kernel or UST
248 */
249 public boolean isKernel() {
250 return ((TraceDomainComponent)getParent()).isKernel();
251 }
cfdb727a 252
498704b3
BH
253 /**
254 * @return the parent target node
255 */
256 public TargetNodeComponent getTargetNode() {
257 return ((TraceDomainComponent)getParent()).getTargetNode();
258 }
cfdb727a 259
eb1bab5b
BH
260 // ------------------------------------------------------------------------
261 // Operations
262 // ------------------------------------------------------------------------
6503ae0f
BH
263
264 /**
265 * Enables a list of events with no additional parameters.
cfdb727a
AM
266 *
267 * @param eventNames
268 * - a list of event names to enabled.
269 * @param monitor
270 * - a progress monitor
6503ae0f 271 * @throws ExecutionException
cfdb727a 272 * If the command fails
6503ae0f 273 */
498704b3 274 public void enableEvents(List<String> eventNames, IProgressMonitor monitor) throws ExecutionException {
d4514365
BH
275 enableEvents(eventNames, null, monitor);
276 }
277
278 /**
279 * Enables a list of events with no additional parameters.
280 *
281 * @param eventNames
282 * - a list of event names to enabled.
283 * @param filterExpression
284 * - a filter expression
285 * @param monitor
286 * - a progress monitor
287 * @throws ExecutionException
288 * If the command fails
289 */
290 public void enableEvents(List<String> eventNames, String filterExpression, IProgressMonitor monitor) throws ExecutionException {
291 getControlService().enableEvents(getSessionName(), getName(), eventNames, isKernel(), filterExpression, monitor);
498704b3 292 }
cfdb727a 293
498704b3
BH
294 /**
295 * Enables all syscalls (for kernel domain)
cfdb727a
AM
296 *
297 * @param monitor
298 * - a progress monitor
498704b3 299 * @throws ExecutionException
cfdb727a 300 * If the command fails
498704b3
BH
301 */
302 public void enableSyscalls(IProgressMonitor monitor) throws ExecutionException {
303 getControlService().enableSyscalls(getSessionName(), getName(), monitor);
304 }
305
498704b3
BH
306 /**
307 * Enables a dynamic probe (for kernel domain)
cfdb727a
AM
308 *
309 * @param eventName
310 * - event name for probe
311 * @param isFunction
312 * - true for dynamic function entry/return probe else false
313 * @param probe
314 * - the actual probe
315 * @param monitor
316 * - a progress monitor
498704b3 317 * @throws ExecutionException
cfdb727a 318 * If the command fails
498704b3 319 */
cfdb727a
AM
320 public void enableProbe(String eventName, boolean isFunction, String probe,
321 IProgressMonitor monitor) throws ExecutionException {
d132bcc7 322 getControlService().enableProbe(getSessionName(), getName(), eventName, isFunction, probe, monitor);
498704b3
BH
323 }
324
ccc66d01
BH
325 /**
326 * Enables events using log level.
cfdb727a
AM
327 *
328 * @param eventName
329 * - a event name
330 * @param logLevelType
331 * - a log level type
332 * @param level
333 * - a log level
d4514365
BH
334 * @param filterExpression
335 * - a filter expression
cfdb727a
AM
336 * @param monitor
337 * - a progress monitor
ccc66d01 338 * @throws ExecutionException
cfdb727a 339 * If the command fails
ccc66d01 340 */
cfdb727a 341 public void enableLogLevel(String eventName, LogLevelType logLevelType,
d4514365 342 TraceLogLevel level, String filterExpression, IProgressMonitor monitor)
cfdb727a 343 throws ExecutionException {
d4514365 344 getControlService().enableLogLevel(getSessionName(), getName(), eventName, logLevelType, level, filterExpression, monitor);
ccc66d01
BH
345 }
346
6503ae0f
BH
347 /**
348 * Enables a list of events with no additional parameters.
cfdb727a
AM
349 *
350 * @param eventNames
351 * - a list of event names to enabled.
352 * @param monitor
353 * - a progress monitor
6503ae0f 354 * @throws ExecutionException
cfdb727a 355 * If the command fails
6503ae0f 356 */
cfdb727a
AM
357 public void disableEvent(List<String> eventNames, IProgressMonitor monitor)
358 throws ExecutionException {
359 getControlService().disableEvent(getParent().getParent().getName(),
360 getName(), eventNames, isKernel(), monitor);
6503ae0f 361 }
cfdb727a 362
b793fbe1
BH
363 /**
364 * Add contexts to given channels and or events
cfdb727a
AM
365 *
366 * @param contexts
367 * - a list of contexts to add
368 * @param monitor
369 * - a progress monitor
b793fbe1 370 * @throws ExecutionException
cfdb727a 371 * If the command fails
b793fbe1 372 */
cfdb727a
AM
373 public void addContexts(List<String> contexts, IProgressMonitor monitor)
374 throws ExecutionException {
375 getControlService().addContexts(getSessionName(), getName(), null,
376 isKernel(), contexts, monitor);
b793fbe1 377 }
eb1bab5b 378}
This page took 0.06172 seconds and 5 git commands to generate.