Added some more JUnit tests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / control / handlers / NewConnectionHandler.java
CommitLineData
eb1bab5b
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 org.eclipse.core.commands.ExecutionEvent;
15import org.eclipse.core.commands.ExecutionException;
eb1bab5b
BH
16import org.eclipse.jface.dialogs.MessageDialog;
17import org.eclipse.jface.window.Window;
18import org.eclipse.linuxtools.lttng.ui.views.control.ControlView;
19import org.eclipse.linuxtools.lttng.ui.views.control.Messages;
20import org.eclipse.linuxtools.lttng.ui.views.control.dialogs.INewConnectionDialog;
d132bcc7 21import org.eclipse.linuxtools.lttng.ui.views.control.dialogs.TraceControlDialogFactory;
eb1bab5b
BH
22import org.eclipse.linuxtools.lttng.ui.views.control.model.ITraceControlComponent;
23import org.eclipse.linuxtools.lttng.ui.views.control.model.impl.TargetNodeComponent;
24import org.eclipse.rse.core.IRSESystemType;
25import org.eclipse.rse.core.RSECorePlugin;
26import org.eclipse.rse.core.model.IHost;
27import org.eclipse.rse.core.model.ISystemRegistry;
28import org.eclipse.ui.IWorkbenchPage;
29import org.eclipse.ui.IWorkbenchPart;
30import org.eclipse.ui.IWorkbenchWindow;
31import org.eclipse.ui.PlatformUI;
32
33/**
34 * <b><u>NewConnectionHandler</u></b>
35 * <p>
36 * Command handler for creation new connection for trace control.
37 * </p>
38 */
498704b3 39public class NewConnectionHandler extends BaseControlViewHandler {
eb1bab5b
BH
40
41 // ------------------------------------------------------------------------
42 // Constants
43 // ------------------------------------------------------------------------
44 /**
45 * The trace control system type defined for LTTng version 2.0 and later.
46 */
47 public final static String TRACE_CONTROL_SYSTEM_TYPE = "org.eclipse.linuxtools.lttng.ui.control.systemType"; //$NON-NLS-1$
48
49 // ------------------------------------------------------------------------
50 // Attributes
51 // ------------------------------------------------------------------------
52 /**
53 * The parent trace control component the new node will be added to.
54 */
4775bcbf 55 private ITraceControlComponent fRoot = null;
eb1bab5b
BH
56
57 /*
58 * (non-Javadoc)
4775bcbf 59 * @see org.eclipse.core.commands.AbstractHandler#execute(org.eclipse.core.commands.ExecutionEvent)
eb1bab5b
BH
60 */
61 @Override
62 public Object execute(ExecutionEvent event) throws ExecutionException {
4775bcbf 63 assert (fRoot != null);
eb1bab5b
BH
64
65 IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
66 if (window == null) {
67 return false;
68 }
69
70 ISystemRegistry registry = RSECorePlugin.getTheSystemRegistry();
71
72 // get system type definition for LTTng 2.x connection
73 IRSESystemType sysType = RSECorePlugin.getTheCoreRegistry().getSystemTypeById(TRACE_CONTROL_SYSTEM_TYPE);
74
75 // get all hosts for this system type
76 IHost[] hosts = registry.getHostsBySystemType(sysType);
77
78 // Open dialog box for the node name and address
d132bcc7
BH
79 final INewConnectionDialog dialog = TraceControlDialogFactory.getInstance().getNewConnectionDialog();
80 dialog.setTraceControlParent(fRoot);
81 dialog.setHosts(hosts);
eb1bab5b 82
6503ae0f
BH
83 if (dialog.open() != Window.OK) {
84 return null;
85 }
eb1bab5b 86
6503ae0f
BH
87 String hostName = dialog.getConnectionName();
88 String hostAddress = dialog.getHostName();
eb1bab5b 89
6503ae0f
BH
90 // get the singleton RSE registry
91 IHost host = null;
eb1bab5b 92
6503ae0f
BH
93 for (int i = 0; i < hosts.length; i++) {
94 if (hosts[i].getAliasName().equals(hostName)) {
95 host = hosts[i];
96 break;
eb1bab5b 97 }
6503ae0f 98 }
eb1bab5b 99
6503ae0f
BH
100 if (host == null) {
101 // if there's no host then we will create it
102 try {
103 // create the host object as an SSH Only connection
104 host = registry.createHost(
105 sysType, //System Type Name
106 hostName, //Connection name
107 hostAddress, //IP Address
108 "Connection to Host"); //description //$NON-NLS-1$
eb1bab5b 109 }
6503ae0f
BH
110 catch (Exception e) {
111 MessageDialog.openError(window.getShell(),
112 Messages.TraceControl_EclipseCommandFailure,
113 Messages.TraceControl_NewNodeCreationFailure + " (" + hostName + ", " + hostAddress + ")" + ":\n" + e.toString()); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
114 return null;
eb1bab5b
BH
115 }
116 }
6503ae0f
BH
117
118 if (host != null) {
119 // successful creation of host
120 TargetNodeComponent node = null;
121 if (!fRoot.containsChild(hostName)) {
122 node = new TargetNodeComponent(hostName, fRoot, host);
123 fRoot.addChild(node);
124 }
125 else {
126 node = (TargetNodeComponent)fRoot.getChild(hostName);
127 }
128
129 node.connect();
130 }
eb1bab5b
BH
131 return null;
132 }
133
4775bcbf 134
eb1bab5b
BH
135 /*
136 * (non-Javadoc)
4775bcbf 137 * @see org.eclipse.core.commands.AbstractHandler#isEnabled()
eb1bab5b
BH
138 */
139 @Override
140 public boolean isEnabled() {
498704b3
BH
141
142 // Get workbench page for the Control View
143 IWorkbenchPage page = getWorkbenchPage();
144 if (page == null) {
eb1bab5b
BH
145 return false;
146 }
147
498704b3 148 fRoot = null;
eb1bab5b 149
498704b3
BH
150 // no need to verify part because it has been already done in getWorkbenchPage()
151 IWorkbenchPart part = page.getActivePart();
4775bcbf 152 fRoot = ((ControlView) part).getTraceControlRoot();
eb1bab5b 153
4775bcbf 154 return (fRoot != null);
eb1bab5b
BH
155 }
156}
This page took 0.043146 seconds and 5 git commands to generate.