Added some more JUnit tests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / control / handlers / EnableEventOnChannelHandler.java
CommitLineData
498704b3
BH
1/**********************************************************************
2 * Copyright (c) 2012 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 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12package org.eclipse.linuxtools.lttng.ui.views.control.handlers;
13
14import java.util.Iterator;
15import java.util.List;
16
17import org.eclipse.core.commands.ExecutionException;
18import org.eclipse.core.runtime.IProgressMonitor;
19import org.eclipse.jface.viewers.ISelection;
20import org.eclipse.jface.viewers.StructuredSelection;
21import org.eclipse.linuxtools.lttng.ui.views.control.ControlView;
ccc66d01
BH
22import org.eclipse.linuxtools.lttng.ui.views.control.model.LogLevelType;
23import org.eclipse.linuxtools.lttng.ui.views.control.model.TraceLogLevel;
24import org.eclipse.linuxtools.lttng.ui.views.control.model.TraceSessionState;
498704b3 25import org.eclipse.linuxtools.lttng.ui.views.control.model.impl.TraceChannelComponent;
ccc66d01
BH
26import org.eclipse.linuxtools.lttng.ui.views.control.model.impl.TraceDomainComponent;
27import org.eclipse.linuxtools.lttng.ui.views.control.model.impl.TraceSessionComponent;
498704b3
BH
28import org.eclipse.ui.IWorkbenchPage;
29
30/**
31 * <b><u>EnableEventOnChannelHandler</u></b>
32 * <p>
33 * Command handler implementation to enable events for a known channel.
34 * </p>
35 */
36public class EnableEventOnChannelHandler extends BaseEnableEventHandler {
37
38 // ------------------------------------------------------------------------
39 // Attributes
40 // ------------------------------------------------------------------------
41 /**
42 * The channel component the command is to be executed on.
43 */
44 private TraceChannelComponent fChannel = null;
45
46 // ------------------------------------------------------------------------
47 // Operations
48 // ------------------------------------------------------------------------
49 /*
50 * (non-Javadoc)
ccc66d01 51 * @see org.eclipse.linuxtools.lttng.ui.views.control.handlers.BaseEnableEventHandler#enableEvents(java.util.List, boolean, org.eclipse.core.runtime.IProgressMonitor)
498704b3
BH
52 */
53 @Override
ccc66d01 54 public void enableEvents(List<String> eventNames, boolean isKernel, IProgressMonitor monitor) throws ExecutionException {
498704b3
BH
55 fChannel.enableEvents(eventNames, monitor);
56 }
57
58 /*
59 * (non-Javadoc)
60 * @see org.eclipse.linuxtools.lttng.ui.views.control.handlers.BaseEnableEventHandler#enableSyscalls(org.eclipse.core.runtime.IProgressMonitor)
61 */
62 @Override
ccc66d01 63 public void enableSyscalls(IProgressMonitor monitor) throws ExecutionException {
498704b3
BH
64 fChannel.enableSyscalls(monitor);
65 }
66
67 /*
68 * (non-Javadoc)
d132bcc7 69 * @see org.eclipse.linuxtools.lttng.ui.views.control.handlers.BaseEnableEventHandler#enableProbe(java.lang.String, boolean, java.lang.String, org.eclipse.core.runtime.IProgressMonitor)
498704b3
BH
70 */
71 @Override
d132bcc7
BH
72 public void enableProbe(String eventName, boolean isFunction, String probe, IProgressMonitor monitor) throws ExecutionException {
73 fChannel.enableProbe(eventName, isFunction, probe, monitor);
498704b3
BH
74 }
75
ccc66d01
BH
76 /*
77 * (non-Javadoc)
78 * @see org.eclipse.linuxtools.lttng.ui.views.control.handlers.BaseEnableEventHandler#enableLogLevel(java.lang.String, org.eclipse.linuxtools.lttng.ui.views.control.model.LogLevelType, org.eclipse.linuxtools.lttng.ui.views.control.model.TraceLogLevel, org.eclipse.core.runtime.IProgressMonitor)
79 */
80 @Override
81 public void enableLogLevel(String eventName, LogLevelType logLevelType, TraceLogLevel level, IProgressMonitor monitor) throws ExecutionException {
82 fChannel.enableLogLevel(eventName, logLevelType, level, monitor);
83 }
84
85 /*
86 * (non-Javadoc)
87 * @see org.eclipse.linuxtools.lttng.ui.views.control.handlers.BaseEnableEventHandler#getDomain()
88 */
89 @Override
90 public TraceDomainComponent getDomain() {
91 return (TraceDomainComponent) fChannel.getParent();
92 }
93
498704b3
BH
94 /*
95 * (non-Javadoc)
96 * @see org.eclipse.core.commands.AbstractHandler#isEnabled()
97 */
98 @Override
99 public boolean isEnabled() {
100 // Get workbench page for the Control View
101 IWorkbenchPage page = getWorkbenchPage();
102 if (page == null) {
103 return false;
104 }
105
106 fChannel = null;
107 ISelection selection = page.getSelection(ControlView.ID);
108 if (selection instanceof StructuredSelection) {
109 StructuredSelection structered = ((StructuredSelection) selection);
110 for (Iterator<?> iterator = structered.iterator(); iterator.hasNext();) {
111 Object element = (Object) iterator.next();
112 if (element instanceof TraceChannelComponent) {
ccc66d01
BH
113 // Add only if corresponding TraceSessionComponents is inactive and not destroyed
114 TraceChannelComponent channel = (TraceChannelComponent) element;
115 TraceSessionComponent session = channel.getSession();
116 if(session.getSessionState() == TraceSessionState.INACTIVE && !session.isDestroyed()) {
117 fChannel = channel;
118 fSession = session;
119 }
498704b3
BH
120 }
121 }
122 }
123 return fChannel != null;
124 }
125
126}
This page took 0.044407 seconds and 5 git commands to generate.