Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 01cdf83599b2c8f0f30247697728c6460199b499 (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
/*******************************************************************************
 * 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.output;




/**
 * GDB/MI environment PWD info extraction.
 */
public class MIEnvironmentPWDInfo extends MIInfo {

	String pwd = ""; //$NON-NLS-1$

	public MIEnvironmentPWDInfo(MIOutput o) {
		super(o);
		parse();
	}

	public String getWorkingDirectory() {
		return pwd;
	}

	void parse() {
		if (isDone()) {
			MIOutput out = getMIOutput();
			MIOOBRecord[] oobs = out.getMIOOBRecords();
			for (int i = 0; i < oobs.length; i++) {
				if (oobs[i] instanceof MIConsoleStreamOutput) {
					MIStreamRecord cons = (MIStreamRecord)oobs[i];
					String str = cons.getString();
					if (str.startsWith("Working directory")) { //$NON-NLS-1$
						int len = "Working directory".length(); //$NON-NLS-1$
						str = str.substring(len).trim();
						len = str.indexOf('.');
						if (len != -1) {
							str = str.substring(0, len);
						}
						pwd = str;
					}
				}
			}
		}
	}

}

Back to the top