lttng: Fix Javadoc and formatting in lttng2.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / handlers / AssignEventHandler.java
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 **********************************************************************/
12 package org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers;
13
14 import java.util.ArrayList;
15 import java.util.Arrays;
16 import java.util.Iterator;
17 import java.util.List;
18
19 import org.eclipse.core.commands.ExecutionEvent;
20 import org.eclipse.core.commands.ExecutionException;
21 import org.eclipse.core.runtime.IProgressMonitor;
22 import org.eclipse.core.runtime.IStatus;
23 import org.eclipse.core.runtime.Status;
24 import org.eclipse.core.runtime.jobs.Job;
25 import org.eclipse.jface.viewers.ISelection;
26 import org.eclipse.jface.viewers.StructuredSelection;
27 import org.eclipse.jface.window.Window;
28 import org.eclipse.linuxtools.internal.lttng2.ui.Activator;
29 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.ControlView;
30 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs.IGetEventInfoDialog;
31 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs.TraceControlDialogFactory;
32 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.messages.Messages;
33 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.ITraceControlComponent;
34 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.BaseEventComponent;
35 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.KernelProviderComponent;
36 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TargetNodeComponent;
37 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceChannelComponent;
38 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceSessionComponent;
39 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.UstProviderComponent;
40 import org.eclipse.ui.IWorkbenchPage;
41
42 /**
43 * <p>
44 * Command handler implementation to assign events to a session and channel and enable/configure them.
45 * This is done on the trace provider level.
46 * </p>
47 *
48 * @author Bernd Hufmann
49 */
50 public class AssignEventHandler extends BaseControlViewHandler {
51
52 // ------------------------------------------------------------------------
53 // Attributes
54 // ------------------------------------------------------------------------
55 /**
56 * The command execution parameter.
57 */
58 private Parameter fParam;
59
60 // ------------------------------------------------------------------------
61 // Operations
62 // ------------------------------------------------------------------------
63
64 /*
65 * (non-Javadoc)
66 * @see org.eclipse.core.commands.AbstractHandler#execute(org.eclipse.core.commands.ExecutionEvent)
67 */
68 @Override
69 public Object execute(ExecutionEvent event) throws ExecutionException {
70
71 fLock.lock();
72 try {
73 // Make a copy for thread safety
74 final Parameter param = new Parameter(fParam);
75
76 // Open dialog box to retrieve the session and channel where the events should be enabled in.
77 final IGetEventInfoDialog dialog = TraceControlDialogFactory.getInstance().getGetEventInfoDialog();
78 dialog.setIsKernel(param.isKernel());
79 dialog.setSessions(param.getSessions());
80
81 if (dialog.open() != Window.OK) {
82 return null;
83 }
84
85 Job job = new Job(Messages.TraceControl_EnableEventsJob) {
86 @Override
87 protected IStatus run(IProgressMonitor monitor) {
88
89 Exception error = null;
90
91 try {
92 List<String> eventNames = new ArrayList<String>();
93 List<BaseEventComponent> events = param.getEvents();
94 // Create list of event names
95 for (Iterator<BaseEventComponent> iterator = events.iterator(); iterator.hasNext();) {
96 BaseEventComponent event = iterator.next();
97 eventNames.add(event.getName());
98 }
99
100 TraceChannelComponent channel = dialog.getChannel();
101 if (channel == null) {
102 // enable events on default channel (which will be created by lttng-tools)
103 dialog.getSession().enableEvents(eventNames, param.isKernel(), monitor);
104 } else {
105 channel.enableEvents(eventNames, monitor);
106 }
107
108 } catch (ExecutionException e) {
109 error = e;
110 }
111
112 // refresh in all cases
113 refresh(new CommandParameter(dialog.getSession()));
114
115 if (error != null) {
116 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, Messages.TraceControl_EnableEventsFailure, error);
117 }
118 return Status.OK_STATUS;
119 }
120 };
121 job.setUser(true);
122 job.schedule();
123 } finally {
124 fLock.unlock();
125 }
126
127 return null;
128 }
129
130 /*
131 * (non-Javadoc)
132 * @see org.eclipse.core.commands.AbstractHandler#isEnabled()
133 */
134 @Override
135 public boolean isEnabled() {
136 ArrayList<BaseEventComponent> events = new ArrayList<BaseEventComponent>();
137 TraceSessionComponent[] sessions = null;
138 Boolean isKernel = null;
139
140 // Get workbench page for the Control View
141 IWorkbenchPage page = getWorkbenchPage();
142 if (page == null) {
143 return false;
144 }
145
146 // Check if one or more session are selected
147 ISelection selection = page.getSelection(ControlView.ID);
148 if (selection instanceof StructuredSelection) {
149
150 StructuredSelection structered = ((StructuredSelection) selection);
151 for (Iterator<?> iterator = structered.iterator(); iterator.hasNext();) {
152 Object element = iterator.next();
153 if (element instanceof BaseEventComponent) {
154 BaseEventComponent event = (BaseEventComponent) element;
155 ITraceControlComponent provider = event.getParent();
156
157 // check for kernel or UST provider
158 boolean temp = false;
159 if (provider instanceof KernelProviderComponent) {
160 temp = true;
161 } else if (provider instanceof UstProviderComponent) {
162 temp = false;
163 } else {
164 return false;
165 }
166 if (isKernel == null) {
167 isKernel = Boolean.valueOf(temp);
168 } else {
169 // don't mix events from Kernel and UST provider
170 if (isKernel.booleanValue() != temp) {
171 return false;
172 }
173 }
174
175 // Add BaseEventComponents
176 events.add(event);
177
178 if (sessions == null) {
179 TargetNodeComponent root = (TargetNodeComponent)event.getParent().getParent().getParent();
180 sessions = root.getSessions();
181 }
182 }
183 }
184 }
185
186 boolean isEnabled = ((!events.isEmpty()) && (sessions != null) && (sessions.length > 0));
187 fLock.lock();
188 try {
189 fParam = null;
190 if(isEnabled) {
191 fParam = new Parameter(sessions, events, isKernel);
192 }
193 } finally {
194 fLock.unlock();
195 }
196 return isEnabled;
197 }
198
199 /**
200 * Class containing parameter for the command execution.
201 */
202 final static private class Parameter {
203
204 /**
205 * The list of event components the command is to be executed on.
206 */
207 private final List<BaseEventComponent> fEvents;
208
209 /**
210 * The list of available sessions.
211 */
212 final private TraceSessionComponent[] fSessions;
213
214 /**
215 * Flag for indicating Kernel or UST.
216 */
217 final private boolean fIsKernel;
218
219 /**
220 * Constructor
221 *
222 * @param sessions - a array of trace sessions
223 * @param events - a lists of events to enable
224 * @param isKernel - domain (true for kernel or UST)
225 */
226 public Parameter(TraceSessionComponent[] sessions, List<BaseEventComponent> events, boolean isKernel) {
227 fSessions = Arrays.copyOf(sessions, sessions.length);
228 fEvents = new ArrayList<BaseEventComponent>();
229 fEvents.addAll(events);
230 fIsKernel = isKernel;
231 }
232
233 /**
234 * Copy constructor
235 * @param other - a parameter to copy
236 */
237 public Parameter(Parameter other) {
238 this(other.fSessions, other.fEvents, other.fIsKernel);
239 }
240
241 public TraceSessionComponent[] getSessions() {
242 return fSessions;
243 }
244
245 public List<BaseEventComponent> getEvents() {
246 return fEvents;
247 }
248
249 public boolean isKernel() {
250 return fIsKernel;
251 }
252 }
253 }
This page took 0.037132 seconds and 6 git commands to generate.