Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d9acba8661226873129361e3df4666736f69b085 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*******************************************************************************
 * Copyright (c) 2000, 2010 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
 *     Wind River Systems   - Modified for new DSF Reference Implementation
 *     Jens Elmenthaler (Verigy) - Added Full GDB pretty-printing support (bug 302121)
 *******************************************************************************/

package org.eclipse.cdt.dsf.mi.service.command.output;


/**
 * GDB/MI var-list-children
 * -var-list-children var2
 *  ^done,numchild="6",children={child={name="var2.0",exp="0",numchild="0",type="char"},child={name="var2.1",exp="1",numchild="0",type="char"},child={name="var2.2",exp="2",numchild="0",type="char"},child={name="var2.3",exp="3",numchild="0",type="char"},child={name="var2.4",exp="4",numchild="0",type="char"},child={name="var2.5",exp="5",numchild="0",type="char"}}
 *  
 * -var-list-children var3 
 *  ^done,numchild="3",displayhint="array",children=[child={name="var6.[0].[1]",exp="[1]",numchild="0",type="std::basic_string<char, std::char_traits<char>, std::allocator<char> >",thread-id="1"\
,displayhint="string",dynamic="1"},child={name="var6.[0].[2]",exp="[2]",numchild="0",type="std::basic_string<char, std::char_traits<char>, std::allocator<char> >",thread-id="1",displayhint="string",dy\
namic="1"},child={name="var6.[0].[3]",exp="[3]",numchild="0",type="std::basic_string<char, std::char_traits<char>, std::allocator<char> >",thread-id="1",displayhint="string",dynamic="1"}],has_more="0"\
 */
public class MIVar {

    String name = ""; //$NON-NLS-1$
    String type = ""; //$NON-NLS-1$
    String exp = ""; //$NON-NLS-1$
	private boolean isDynamic = false;
    int numchild;
	private boolean hasMore = false;
	private MIDisplayHint displayHint = MIDisplayHint.NONE;

    public MIVar(String n, int num, String t) {
    	this(n, false, num, false, t, MIDisplayHint.NONE);
    }

	/**
	 * @param n
	 * @param isDynamic
	 * @param num
	 *            If isDynamic is true, the number of children currently fetched
	 *            by gdb.
	 * @param hasMore
	 *            If isDynamic is true, whether there are more children
	 *            available than just <code>num</code>.
	 * @param t
	 * 
	 * @since 4.0
	 */
	public MIVar(String n, boolean isDynamic, int num, boolean hasMore, String t) {
		this(n, isDynamic, num, hasMore, t, MIDisplayHint.NONE);
    }

	/**
	 * @param n
	 * @param isDynamic
	 * @param num
	 *            If isDynamic is true, the number of children currently fetched
	 *            by gdb.
	 * @param hasMore
	 *            If isDynamic is true, whether there are more children
	 *            available than just <code>num</code>.
	 * @param t
	 * @param displayHint
	 * @since 4.0
	 */
	public MIVar(String n, boolean isDynamic, int num, boolean hasMore, String t, MIDisplayHint displayHint) {
        name = n;
		this.isDynamic = isDynamic;
        numchild = num;
		this.hasMore = hasMore;
        type = t;
        this.displayHint = displayHint;
    }

    public MIVar(MITuple tuple) {
        parse(tuple);
    }

    public String getVarName() {
        return name;
    }

    public String getType() {
        return type;
    }

	/**
	 * @return Whether the value and children of this variable are provided
	 *         by a pretty printer.
	 *         
	 * @since 4.0
	 */
    public boolean isDynamic() {
		return isDynamic;
	}

	/**
	 * @return The number of children. If {@link #isDynamic()} returns true,
	 *         the returned value only reflects the number of children currently
	 *         fetched by gdb. Check {@link #hasMore()} in order to find out
	 *         whether the are more children. 
	 */
    public int getNumChild() {
        return numchild;
    }

	/**
	 * @return For dynamic varobjs ({@link #isDynamic() returns true} this
	 *         method returns whether there are children in addition to the
	 *         currently fetched, i.e. whether there are more children than
	 *         {@link #getNumChild()} returns.
	 *         
	 * @since 4.0
	 */
	public boolean hasMore() {
		return hasMore;
	}

    public String getExp() {
        return exp;
    }

	/**
	 * @return Whether the underlying value conceptually represents a string,
	 *         array, or map.
	 *         
	 * @since 4.0
	 */
    public MIDisplayHint getDisplayHint() {
    	return displayHint;
    }
    
    void parse(MITuple tuple) {
        MIResult[] results = tuple.getMIResults();
        for (int i = 0; i < results.length; i++) {
            String var = results[i].getVariable();
            MIValue value = results[i].getMIValue();
            String str = ""; //$NON-NLS-1$
            if (value != null && value instanceof MIConst) {
                str = ((MIConst)value).getCString();
            }

            if (var.equals("numchild")) { //$NON-NLS-1$
                try {
                    numchild = Integer.parseInt(str.trim());
                } catch (NumberFormatException e) {
                }
            } else if (var.equals("name")) { //$NON-NLS-1$
                name = str;
            } else if (var.equals("type")) { //$NON-NLS-1$
                type = str;
            } else if (var.equals("exp")) { //$NON-NLS-1$
                exp = str;
			} else if (var.equals("dynamic") && str.trim().equals("1")) { //$NON-NLS-1$ //$NON-NLS-2$
				isDynamic = true;
			} else if (var.equals("has_more") && str.trim().equals("1")) { //$NON-NLS-1$ //$NON-NLS-2$
				hasMore = true;
            } else if (var.equals("displayhint")) { //$NON-NLS-1$
            	displayHint = new MIDisplayHint(str);
            }
        }
    }
}

Back to the top