aboutsummaryrefslogtreecommitdiff
path: root/src/monkey/gdbmi_var_obj.c
blob: 435feecb788876ec6a5b5fb624709a5b63fdfbfc (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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/**[txh]********************************************************************

  Copyright (c) 2004 by Salvador E. Tropea.
  Covered by the GPL license.

  Module: Variable objects.
  Comments:
  GDB/MI commands for the "Variable Objects" section.
    @<p>

@<pre>
gdb command:              Imp? Description:
-var-create               Yes  create a variable object
-var-delete               Yes  delete the variable object and its children
-var-set-format           Yes  set the display format of this variable
-var-show-format          Yes  show the display format of this variable
-var-info-num-children    Yes  tells how many children this object has
-var-list-children        Yes* return a list of the object's children
-var-info-type            Yes  show the type of this variable object
-var-info-expression      Yes  print what this variable object represents
-var-show-attributes      Yes  is this variable editable?
-var-evaluate-expression  Yes  get the value of this variable
-var-assign               Yes  set the value of this variable
-var-update               Yes* update the variable and its children
@</pre>

Notes:  @<p>
1) I suggest letting gdb to choose the names for the variables.@*
2) -var-list-children supports an optional "show values" argument in MI v2.
It isn't implemented.@*

  @<p>

* MI v1 and v2 result formats supported.  @<p>

***************************************************************************/

#include "gdbmi.h"

/* Low level versions. */

void mi_var_create(mi_h *h, const char *name, int frame, const char *exp)
{
 const char *n=name ? name : "-";

 if (frame<0)
    mi_send(h,"-var-create %s * %s\n",n,exp);
 else
    mi_send(h,"-var-create %s %d %s\n",n,frame,exp);
}

void mi_var_delete(mi_h *h, const char *name)
{
 mi_send(h,"-var-delete %s\n",name);
}

void mi_var_set_format(mi_h *h, const char *name, const char *format)
{
 mi_send(h,"-var-set-format \"%s\" %s\n",name,format);
}

void mi_var_show_format(mi_h *h, const char *name)
{
 mi_send(h,"-var-show-format \"%s\"\n",name);
}

void mi_var_info_num_children(mi_h *h, const char *name)
{
 mi_send(h,"-var-info-num-children \"%s\"\n",name);
}

void mi_var_info_type(mi_h *h, const char *name)
{
 mi_send(h,"-var-info-type \"%s\"\n",name);
}

void mi_var_info_expression(mi_h *h, const char *name)
{
 mi_send(h,"-var-info-expression \"%s\"\n",name);
}

void mi_var_show_attributes(mi_h *h, const char *name)
{
 mi_send(h,"-var-show-attributes \"%s\"\n",name);
}

void mi_var_update(mi_h *h, const char *name)
{
 if (name)
    mi_send(h,"-var-update %s\n",name);
 else
    mi_send(h,"-var-update *\n");
}

void mi_var_assign(mi_h *h, const char *name, const char *expression)
{
 mi_send(h,"-var-assign \"%s\" \"%s\"\n",name,expression);
}

void mi_var_evaluate_expression(mi_h *h, const char *name)
{
 mi_send(h,"-var-evaluate-expression \"%s\"\n",name);
}

void mi_var_list_children(mi_h *h, const char *name)
{
 if (h->version>=MI_VERSION2U(2,0,0))
    mi_send(h,"-var-list-children --all-values \"%s\"\n",name);
 else
    mi_send(h,"-var-list-children \"%s\"\n",name);
}

/* High level versions. */

/**[txh]********************************************************************

  Description:
  Create a variable object. I recommend using gmi_var_create and letting
gdb choose the names.

  Command: -var-create
  Return: A new mi_gvar strcture or NULL on error.
  
***************************************************************************/

mi_gvar *gmi_var_create_nm(mi_h *h, const char *name, int frame, const char *exp)
{
 mi_var_create(h,name,frame,exp);
 return mi_res_gvar(h,NULL,exp);
}

/**[txh]********************************************************************

  Description:
  Create a variable object. The name is selected by gdb. Alternative:
  gmi_full_var_create.

  Command: -var-create [auto name]
  Return: A new mi_gvar strcture or NULL on error.
  
***************************************************************************/

mi_gvar *gmi_var_create(mi_h *h, int frame, const char *exp)
{
 return gmi_var_create_nm(h,NULL,frame,exp);
}

/**[txh]********************************************************************

  Description:
  Delete a variable object. Doesn't free the mi_gvar data.

  Command: -var-delete
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_delete(mi_h *h, mi_gvar *var)
{
 mi_var_delete(h,var->name);
 return mi_res_simple_done(h);
}

/**[txh]********************************************************************

  Description:
  Set the format used to represent the result.

  Command: -var-set-format
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_set_format(mi_h *h, mi_gvar *var, enum mi_gvar_fmt format)
{
 int ret;

 mi_var_set_format(h,var->name,mi_format_enum_to_str(format));
 ret=mi_res_simple_done(h);
 if (ret)
    var->format=format;
 return ret;
}

/**[txh]********************************************************************

  Description:
  Fill the format field with info from gdb.

  Command: -var-show-format
  Return: !=0 OK.
  
***************************************************************************/

int gmi_var_show_format(mi_h *h, mi_gvar *var)
{
 mi_var_show_format(h,var->name);
 return mi_res_gvar(h,var,NULL)!=NULL;
}

/**[txh]********************************************************************

  Description:
  Fill the numchild field with info from gdb.

  Command: -var-info-num-children
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_info_num_children(mi_h *h, mi_gvar *var)
{
 mi_var_info_num_children(h,var->name);
 return mi_res_gvar(h,var,NULL)!=NULL;
}

/**[txh]********************************************************************

  Description:
  Fill the type field with info from gdb.

  Command: -var-info-type
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_info_type(mi_h *h, mi_gvar *var)
{
 mi_var_info_type(h,var->name);
 return mi_res_gvar(h,var,NULL)!=NULL;
}

/**[txh]********************************************************************

  Description:
  Fill the expression and lang fields with info from gdb. Note that lang
isn't filled during creation.

  Command: -var-info-expression
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_info_expression(mi_h *h, mi_gvar *var)
{
 mi_var_info_expression(h,var->name);
 return mi_res_gvar(h,var,NULL)!=NULL;
}


/**[txh]********************************************************************

  Description:
  Fill the attr field with info from gdb. Note that attr isn't filled
during creation.

  Command: -var-show-attributes
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_show_attributes(mi_h *h, mi_gvar *var)
{
 mi_var_show_attributes(h,var->name);
 return mi_res_gvar(h,var,NULL)!=NULL;
}

/**[txh]********************************************************************

  Description:
  Create the variable and also fill the lang and attr fields. The name is
selected by gdb.

  Command: -var-create + -var-info-expression + -var-show-attributes
  Return: A new mi_gvar strcture or NULL on error.
  
***************************************************************************/

mi_gvar *gmi_full_var_create(mi_h *h, int frame, const char *exp)
{
 mi_gvar *var=gmi_var_create_nm(h,NULL,frame,exp);
 if (var)
   {/* What if it fails? */
    gmi_var_info_expression(h,var);
    gmi_var_show_attributes(h,var);
   }
 return var;
}

/**[txh]********************************************************************

  Description:
  Update variable. Use NULL for all. Note that *changed can be NULL if none
updated.

  Command: -var-update
  Return: !=0 OK. The changed list contains the list of changed vars.
  
***************************************************************************/

int gmi_var_update(mi_h *h, mi_gvar *var, mi_gvar_chg **changed)
{
 mi_var_update(h,var ? var->name : NULL);
 return mi_res_changelist(h,changed);
}

/**[txh]********************************************************************

  Description:
  Change variable. The new value replaces the value field.

  Command: -var-assign
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_assign(mi_h *h, mi_gvar *var, const char *expression)
{
 char *res;
 mi_var_assign(h,var->name,expression);
 res=mi_res_value(h);
 if (res)
   {
    free(var->value);
    var->value=res;
    return 1;
   }
 return 0;
}

/**[txh]********************************************************************

  Description:
  Fill the value field getting the current value for a variable.

  Command: -var-evaluate-expression
  Return: !=0 OK, value contains the result.
  
***************************************************************************/

int gmi_var_evaluate_expression(mi_h *h, mi_gvar *var)
{
 char *s;

 mi_var_evaluate_expression(h,var->name);
 s=mi_res_value(h);
 if (s)
   {
    free(var->value);
    var->value=s;
   }
 return s!=NULL;
}

/**[txh]********************************************************************

  Description:
  List children. It ONLY returns the first level information. :-(@*
  On success the child field contains the list of children.

  Command: -var-list-children
  Return: !=0 OK
  
***************************************************************************/

int gmi_var_list_children(mi_h *h, mi_gvar *var)
{
 mi_var_list_children(h,var->name);
 return mi_res_children(h,var);
}