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 / BaseEnableChannelHandler.java
CommitLineData
c56972bb 1/**********************************************************************
60ae41e1 2 * Copyright (c) 2012, 2014 Ericsson
cfdb727a 3 *
c56972bb
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:
c56972bb
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12package org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers;
13
14import java.util.ArrayList;
15import java.util.List;
16
17import org.eclipse.core.commands.ExecutionEvent;
18import org.eclipse.core.commands.ExecutionException;
19import org.eclipse.core.runtime.IProgressMonitor;
20import org.eclipse.core.runtime.IStatus;
21import org.eclipse.core.runtime.Status;
22import org.eclipse.core.runtime.jobs.Job;
23import org.eclipse.jface.window.Window;
9315aeee 24import org.eclipse.linuxtools.internal.lttng2.core.control.model.IChannelInfo;
c56972bb 25import org.eclipse.linuxtools.internal.lttng2.ui.Activator;
d62bfa55 26import org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs.IEnableChannelDialog;
c56972bb 27import org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs.TraceControlDialogFactory;
9315aeee 28import org.eclipse.linuxtools.internal.lttng2.ui.views.control.messages.Messages;
c56972bb
BH
29import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceDomainComponent;
30
31/**
c56972bb 32 * <p>
cfdb727a 33 * Base implementation of a command handler to enable a trace channel.
c56972bb 34 * </p>
cfdb727a 35 *
dbd4432d 36 * @author Bernd Hufmann
c56972bb 37 */
d62bfa55 38abstract class BaseEnableChannelHandler extends BaseControlViewHandler {
c56972bb
BH
39
40 // ------------------------------------------------------------------------
41 // Attributes
42 // ------------------------------------------------------------------------
43 protected CommandParameter fParam;
44
45 // ------------------------------------------------------------------------
46 // Operations
47 // ------------------------------------------------------------------------
cfdb727a 48
c56972bb 49 /**
cfdb727a
AM
50 * Enables channels with given names which are part of this domain. If a
51 * given channel doesn't exists it creates a new channel with the given
52 * parameters (or default values if given parameter is null).
53 *
54 * @param param
55 * - a parameter instance with data for the command execution
56 * @param channelNames
57 * - a list of channel names to enable on this domain
58 * @param info
59 * - channel information to set for the channel (use null for
60 * default)
61 * @param isKernel
62 * - a flag for indicating kernel or UST.
63 * @param monitor
64 * - a progress monitor
c56972bb 65 * @throws ExecutionException
cfdb727a 66 * If something goes wrong when enabling the channel
c56972bb 67 */
77735e82 68 public abstract void enableChannel(CommandParameter param,
cfdb727a
AM
69 List<String> channelNames, IChannelInfo info, boolean isKernel,
70 IProgressMonitor monitor) throws ExecutionException;
71
c56972bb 72 /**
cfdb727a 73 * @param param - a parameter instance with data for the command execution
c56972bb
BH
74 * @return returns the relevant domain (null if domain is not known)
75 */
77735e82 76 public abstract TraceDomainComponent getDomain(CommandParameter param);
c56972bb 77
c56972bb
BH
78 @Override
79 public Object execute(ExecutionEvent event) throws ExecutionException {
80 fLock.lock();
81 try {
82 final CommandParameter param = fParam.clone();
83
d62bfa55 84 final IEnableChannelDialog dialog = TraceControlDialogFactory.getInstance().getEnableChannelDialog();
e799e5f3 85 dialog.setTargetNodeComponent(param.getSession().getTargetNode());
c56972bb 86 dialog.setDomainComponent(getDomain(param));
a07c7629 87 dialog.setHasKernel(param.getSession().hasKernelProvider());
c56972bb
BH
88
89 if (dialog.open() != Window.OK) {
90 return null;
91 }
92
f455db37 93 Job job = new Job(Messages.TraceControl_CreateChannelStateJob) {
c56972bb
BH
94 @Override
95 protected IStatus run(IProgressMonitor monitor) {
f455db37 96 Exception error = null;
c56972bb 97
e0838ca1 98 List<String> channelNames = new ArrayList<>();
c56972bb
BH
99 channelNames.add(dialog.getChannelInfo().getName());
100
101 try {
102 enableChannel(param, channelNames, dialog.getChannelInfo(), dialog.isKernel(), monitor);
103 } catch (ExecutionException e) {
f455db37 104 error = e;
c56972bb
BH
105 }
106
f455db37
BH
107 // refresh in all cases
108 refresh(param);
c56972bb 109
f455db37 110 if (error != null) {
cfdb727a 111 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, Messages.TraceControl_CreateChannelStateFailure, error);
c56972bb
BH
112 }
113 return Status.OK_STATUS;
114 }
115 };
116 job.setUser(true);
117 job.schedule();
118 } finally {
119 fLock.unlock();
120 }
121 return null;
122 }
123
124}
This page took 0.046879 seconds and 5 git commands to generate.