Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1a6e9bbaf7762e75ff4f4b8845248ed688bad701 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*******************************************************************************
 * Copyright (c) 2000, 2004 QNX Software Systems 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:
 *     QNX Software Systems - Initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.debug.mi.core;

import org.eclipse.cdt.core.IBinaryParser.IBinaryObject;
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
import org.eclipse.cdt.debug.mi.core.cdi.Session;
import org.eclipse.cdt.debug.mi.core.cdi.model.Target;
import org.eclipse.cdt.debug.mi.core.command.CommandFactory;
import org.eclipse.cdt.debug.mi.core.command.MIGDBSet;
import org.eclipse.cdt.debug.mi.core.output.MIInfo;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.ILaunchConfiguration;

/**
 * Cygwin debugger extension point.
 */
public class CygwinGDBCDIDebugger extends GDBCDIDebugger {

	protected void initializeLibraries(ILaunchConfiguration config, Session session) throws CoreException {
		// the "search-solib-path" and "stop-on-solib-events" options are not supported in CygWin
	}

	public Session createLaunchSession(ILaunchConfiguration config, IBinaryObject exe, IProgressMonitor monitor) throws CoreException {
		Session session = super.createLaunchSession(config, exe, monitor);
		ICDITarget[] targets = session.getTargets();
		for (int i = 0; i < targets.length; ++i) {
			Target target = (Target)targets[i];
			MISession miSession = target.getMISession();
			String miVersion = miSession.getCommandFactory().getMIVersion();
			miSession.setCommandFactory(new CygwinCommandFactory(miVersion));
			// For windows we need to start the inferior in a new console window
			// to separate the Inferior std{in,out,err} from gdb std{in,out,err}
			try {
				CommandFactory factory = miSession.getCommandFactory();
				MIGDBSet set = factory.createMIGDBSet(new String[] { "new-console" }); //$NON-NLS-1$
				miSession.postCommand(set);
				MIInfo info = set.getMIInfo();
				if (info == null) {
					throw new MIException(MIPlugin.getResourceString("src.common.No_answer")); //$NON-NLS-1$
				}
			} catch (MIException e) {
				// We ignore this exception, for example
				// on GNU/Linux the new-console is an error.
			}
		}
		return session;
	}

	public Session createAttachSession(ILaunchConfiguration config, IBinaryObject exe, IProgressMonitor monitor) throws CoreException {
		Session session = super.createAttachSession(config, exe, monitor);
		ICDITarget[] targets = session.getTargets();
		for (int i = 0; i < targets.length; ++i) {
			Target target = (Target)targets[i];
			MISession miSession = target.getMISession();
			String miVersion = miSession.getCommandFactory().getMIVersion();
			miSession.setCommandFactory(new CygwinCommandFactory(miVersion));
		}
		initializeLibraries(config, session);
		return session;
	}

	public Session createCoreSession(ILaunchConfiguration config, IBinaryObject exe, IProgressMonitor monitor) throws CoreException {
		Session session = super.createCoreSession(config, exe, monitor);
		ICDITarget[] targets = session.getTargets();
		for (int i = 0; i < targets.length; ++i) {
			Target target = (Target)targets[i];
			MISession miSession = target.getMISession();
			String miVersion = miSession.getCommandFactory().getMIVersion();
			miSession.setCommandFactory(new CygwinCommandFactory(miVersion));
		}
		initializeLibraries(config, session);
		return session;
	}

}

Back to the top