Fix for bug 382684 (connection re-use)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / handlers / EnableChannelOnDomainHandler.java
... / ...
CommitLineData
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.internal.lttng2.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.internal.lttng2.core.control.model.IChannelInfo;
22import org.eclipse.linuxtools.internal.lttng2.core.control.model.TraceSessionState;
23import org.eclipse.linuxtools.internal.lttng2.ui.views.control.ControlView;
24import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceDomainComponent;
25import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceSessionComponent;
26import org.eclipse.ui.IWorkbenchPage;
27
28/**
29 * <p>
30 * Command handler implementation to enable a trace channel for known domain.
31 * </p>
32 *
33 * @author Bernd Hufmann
34 */
35public class EnableChannelOnDomainHandler extends BaseEnableChannelHandler {
36
37 // ------------------------------------------------------------------------
38 // Attributes
39 // ------------------------------------------------------------------------
40
41 // ------------------------------------------------------------------------
42 // Operations
43 // ------------------------------------------------------------------------
44 /*
45 * (non-Javadoc)
46 * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers.BaseCreateChannelHandler#enableChannel(org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers.CommandParameter, java.util.List, org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.IChannelInfo, boolean, org.eclipse.core.runtime.IProgressMonitor)
47 */
48 @Override
49 public void enableChannel(CommandParameter param, List<String> channelNames, IChannelInfo info, boolean isKernel, IProgressMonitor monitor) throws ExecutionException {
50 if (param instanceof DomainCommandParameter) {
51 ((DomainCommandParameter)param).getDomain().enableChannels(channelNames, info, monitor);
52 }
53 }
54
55 /*
56 * (non-Javadoc)
57 * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers.BaseCreateChannelHandler#getDomain(org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers.CommandParameter)
58 */
59 @Override
60 public TraceDomainComponent getDomain(CommandParameter param) {
61 if (param instanceof DomainCommandParameter) {
62 return ((DomainCommandParameter)param).getDomain();
63 }
64 return null;
65 }
66
67 /*
68 * (non-Javadoc)
69 * @see org.eclipse.core.commands.AbstractHandler#isEnabled()
70 */
71 @Override
72 public boolean isEnabled() {
73
74 // Get workbench page for the Control View
75 IWorkbenchPage page = getWorkbenchPage();
76 if (page == null) {
77 return false;
78 }
79
80 TraceDomainComponent domain = null;
81 TraceSessionComponent session = null;
82
83 // Check if one domain is selected
84 ISelection selection = page.getSelection(ControlView.ID);
85 if (selection instanceof StructuredSelection) {
86 StructuredSelection structered = ((StructuredSelection) selection);
87 for (Iterator<?> iterator = structered.iterator(); iterator.hasNext();) {
88 Object element = iterator.next();
89 if (element instanceof TraceDomainComponent) {
90 TraceDomainComponent tmpDomain = (TraceDomainComponent) element;
91 session = (TraceSessionComponent) tmpDomain.getParent();
92
93 // Add only TraceDomainComponent whose TraceSessionComponent parent is inactive and not destroyed
94 if ((session.getSessionState() == TraceSessionState.INACTIVE) && (!session.isDestroyed())) {
95 domain = tmpDomain;
96 }
97 }
98 }
99 }
100
101 boolean isEnabled = domain != null;
102
103 fLock.lock();
104 try {
105 fParam = null;
106 if (isEnabled) {
107 fParam = new DomainCommandParameter(session, domain);
108 }
109 } finally {
110 fLock.unlock();
111 }
112
113 return isEnabled;
114 }
115
116}
This page took 0.023508 seconds and 5 git commands to generate.