lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / handlers / AddContextOnDomainHandler.java
CommitLineData
b793fbe1 1/**********************************************************************
11252342 2 * Copyright (c) 2012, 2013 Ericsson
cfdb727a 3 *
b793fbe1
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:
b793fbe1
BH
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;
9315aeee 21import org.eclipse.linuxtools.internal.lttng2.core.control.model.TraceSessionState;
b793fbe1 22import org.eclipse.linuxtools.internal.lttng2.ui.views.control.ControlView;
b793fbe1
BH
23import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceDomainComponent;
24import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceSessionComponent;
25import org.eclipse.ui.IWorkbenchPage;
26
27/**
b793fbe1
BH
28 * <p>
29 * Command handler implementation to add contexts to all channels and all events.
30 * </p>
cfdb727a 31 *
dbd4432d 32 * @author Bernd Hufmann
b793fbe1
BH
33 */
34public class AddContextOnDomainHandler extends BaseAddContextHandler {
35
36 // ------------------------------------------------------------------------
37 // Attributes
38 // ------------------------------------------------------------------------
cfdb727a 39
b793fbe1
BH
40 // ------------------------------------------------------------------------
41 // Operations
42 // ------------------------------------------------------------------------
11252342 43
b793fbe1
BH
44 @Override
45 public void addContexts(CommandParameter param, List<String> contextNames, IProgressMonitor monitor) throws ExecutionException {
46 if (param instanceof DomainCommandParameter) {
47 TraceDomainComponent domain = ((DomainCommandParameter)param).getDomain();
48 domain.addContexts(contextNames, monitor);
49 }
50 }
51
b793fbe1
BH
52 @Override
53 public boolean isEnabled() {
cfdb727a 54
b793fbe1
BH
55 // Get workbench page for the Control View
56 IWorkbenchPage page = getWorkbenchPage();
57 if (page == null) {
58 return false;
59 }
cfdb727a 60
b793fbe1
BH
61 TraceDomainComponent domain = null;
62 TraceSessionComponent session = null;
cfdb727a 63
b793fbe1
BH
64 // Check if one domain is selected
65 ISelection selection = page.getSelection(ControlView.ID);
66 if (selection instanceof StructuredSelection) {
67 StructuredSelection structered = ((StructuredSelection) selection);
68 for (Iterator<?> iterator = structered.iterator(); iterator.hasNext();) {
cfdb727a 69 Object element = iterator.next();
b793fbe1
BH
70 if (element instanceof TraceDomainComponent) {
71 TraceDomainComponent tmpDomain = (TraceDomainComponent) element;
72 session = (TraceSessionComponent) tmpDomain.getParent();
cfdb727a 73
b793fbe1
BH
74 // Add only TraceDomainComponent whose TraceSessionComponent parent is inactive and not destroyed
75 if ((session.getSessionState() == TraceSessionState.INACTIVE) && (!session.isDestroyed())) {
76 domain = tmpDomain;
77 }
78 }
79 }
80 }
cfdb727a 81
b793fbe1 82 boolean isEnabled = domain != null;
cfdb727a 83
b793fbe1
BH
84 fLock.lock();
85 try {
86 fParam = null;
87 if (isEnabled) {
88 fParam = new DomainCommandParameter(session, domain);
89 }
90 } finally {
91 fLock.unlock();
92 }
93
94 return isEnabled;
95 }
96
97
98}
This page took 0.043538 seconds and 5 git commands to generate.