Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a75ca3e9395ea658c9c1e15f412fb689e75aeb50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*******************************************************************************
 * Copyright (c) 2014 Wind River Systems, Inc. and others. All rights reserved.
 * This program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.ui.handler;

import java.util.List;

import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.tcf.te.runtime.callback.Callback;
import org.eclipse.tcf.te.runtime.interfaces.properties.IPropertiesContainer;
import org.eclipse.tcf.te.runtime.properties.PropertiesContainer;
import org.eclipse.tcf.te.runtime.services.ServiceManager;
import org.eclipse.tcf.te.runtime.services.interfaces.IDebugService;
import org.eclipse.tcf.te.runtime.services.interfaces.IDelegateService;
import org.eclipse.tcf.te.runtime.services.interfaces.IService;
import org.eclipse.tcf.te.tcf.locator.interfaces.nodes.IPeerNode;
import org.eclipse.tcf.te.tcf.locator.steps.StartDebuggerStep.IDelegate;

/**
 * Start debugger command handler implementation.
 */
public class StartDebugCommandHandler extends AbstractPeerNodeCommandHandler {

	/* (non-Javadoc)
	 * @see org.eclipse.tcf.te.tcf.ui.handler.AbstractPeerNodeCommandHandler#internalExecute(org.eclipse.core.commands.ExecutionEvent, org.eclipse.jface.viewers.IStructuredSelection, java.util.List)
	 */
	@Override
	protected Object internalExecute(ExecutionEvent event, IStructuredSelection selection, List<IPeerNode> peerNodes) {
		for (final IPeerNode peerNode : peerNodes) {
			IDebugService dbgService = ServiceManager.getInstance().getService(peerNode, IDebugService.class, false);
			if (dbgService != null) {
				final IProgressMonitor monitor = new NullProgressMonitor();
				IPropertiesContainer props = new PropertiesContainer();
				dbgService.attach(peerNode, props, monitor, new Callback() {
					@Override
	                protected void internalDone(Object caller, IStatus status) {
						// Check if there is a delegate registered
						IService[] services = ServiceManager.getInstance().getServices(peerNode, IDelegateService.class, false);
						for (IService s : services) {
							if (s instanceof IDelegateService) {
								IDelegateService service = (IDelegateService) s;
								IDelegate delegate = service.getDelegate(peerNode, IDelegate.class);
								if (delegate != null) {
									delegate.postAttachDebugger(peerNode, monitor, new Callback());
									break;
								}
							}
						}
					}
				});
			}
        }

		return null;
	}
}

Back to the top