Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3e6f734f1066ee06fe64d69dbc6915c339fe58c7 (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
/*
 * (c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 */

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

import java.util.ArrayList;
import java.util.List;

/**
 * GDB/MI data list regiter names response extraction.
 */
public class MIDataListRegisterNamesInfo extends MIInfo {

	String[] names;
	protected int realNameCount = 0;

	public MIDataListRegisterNamesInfo(MIOutput rr) {
		super(rr);
	}

	/**
	 * @return the list of register names. This list can include 0 length
	 * strings in the case where the underlying GDB has a sparse set of 
	 * registers. They are returned as 0 length strings 
	 */
	public String[] getRegisterNames() {
		if (names == null) {
			parse();
		}
		return names;
	}

	void parse() {
		List aList = new ArrayList();
		if (isDone()) {
			MIOutput out = getMIOutput();
			MIResultRecord rr = out.getMIResultRecord();
			if (rr != null) {
				MIResult[] results = rr.getMIResults();
				for (int i = 0; i < results.length; i++) {
					String var = results[i].getVariable();
					if (var.equals("register-names")) { //$NON-NLS-1$
						MIValue value = results[i].getMIValue();
						if (value instanceof MIList) {
							parseRegisters((MIList) value, aList);
						}
					}
				}
			}
		}
		names = (String[]) aList.toArray(new String[aList.size()]);
	}

	void parseRegisters(MIList list, List aList) {
		MIValue[] values = list.getMIValues();
		for (int i = 0; i < values.length; i++) {
			if (values[i] instanceof MIConst) {
				String str = ((MIConst) values[i]).getCString();

				/* this cannot filter nulls because index is critical in retreival 
				 * and index is assigned in the layers above. The MI spec allows 
				 * empty returns, for some register names. */
				if (str != null && str.length() > 0) {
					realNameCount++;
					aList.add(str);
				} else {
					aList.add(""); //$NON-NLS-1$
				}
			}
		}
	}

	/**
	 * @return the number of non-null and non-empty names in the 
	 * register list
	 */
	public int getNumRealNames() {
		if (names == null)
			parse();
		return realNameCount;
	}
}

Back to the top