1 /* Convenience functions implemented in Python.
3 Copyright (C) 2008-2012 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "exceptions.h"
24 #include "python-internal.h"
27 #include "cli/cli-decode.h"
28 #include "completer.h"
29 #include "expression.h"
32 static PyTypeObject fnpy_object_type
;
37 convert_values_to_python (int argc
, struct value
**argv
)
40 PyObject
*result
= PyTuple_New (argc
);
45 for (i
= 0; i
< argc
; ++i
)
47 PyObject
*elt
= value_to_value_object (argv
[i
]);
53 PyTuple_SetItem (result
, i
, elt
);
58 /* Call a Python function object's invoke method. */
61 fnpy_call (struct gdbarch
*gdbarch
, const struct language_defn
*language
,
62 void *cookie
, int argc
, struct value
**argv
)
64 struct value
*value
= NULL
;
65 /* 'result' must be set to NULL, this initially indicates whether
66 the function was called, or not. */
67 PyObject
*result
= NULL
;
68 PyObject
*callable
, *args
;
69 struct cleanup
*cleanup
;
71 cleanup
= ensure_python_env (gdbarch
, language
);
73 args
= convert_values_to_python (argc
, argv
);
74 /* convert_values_to_python can return NULL on error. If we
75 encounter this, do not call the function, but allow the Python ->
76 error code conversion below to deal with the Python exception.
77 Note, that this is different if the function simply does not
82 callable
= PyObject_GetAttrString ((PyObject
*) cookie
, "invoke");
86 error (_("No method named 'invoke' in object."));
89 result
= PyObject_Call (callable
, args
, NULL
);
96 PyObject
*ptype
, *pvalue
, *ptraceback
;
99 PyErr_Fetch (&ptype
, &pvalue
, &ptraceback
);
101 /* Try to fetch an error message contained within ptype, pvalue.
102 When fetching the error message we need to make our own copy,
103 we no longer own ptype, pvalue after the call to PyErr_Restore. */
105 msg
= gdbpy_exception_to_string (ptype
, pvalue
);
106 make_cleanup (xfree
, msg
);
110 /* An error occurred computing the string representation of the
111 error message. This is rare, but we should inform the user. */
113 printf_filtered (_("An error occurred in a Python "
114 "convenience function\n"
115 "and then another occurred computing the "
116 "error message.\n"));
117 gdbpy_print_stack ();
120 /* Don't print the stack for gdb.GdbError exceptions.
121 It is generally used to flag user errors.
123 We also don't want to print "Error occurred in Python command"
124 for user errors. However, a missing message for gdb.GdbError
125 exceptions is arguably a bug, so we flag it as such. */
127 if (!PyErr_GivenExceptionMatches (ptype
, gdbpy_gdberror_exc
)
128 || msg
== NULL
|| *msg
== '\0')
130 PyErr_Restore (ptype
, pvalue
, ptraceback
);
131 gdbpy_print_stack ();
132 if (msg
!= NULL
&& *msg
!= '\0')
133 error (_("Error occurred in Python convenience function: %s"),
136 error (_("Error occurred in Python convenience function."));
142 Py_XDECREF (ptraceback
);
147 value
= convert_value_from_python (result
);
151 gdbpy_print_stack ();
152 error (_("Error while executing Python code."));
156 do_cleanups (cleanup
);
161 /* Initializer for a Function object. It takes one argument, the name
165 fnpy_init (PyObject
*self
, PyObject
*args
, PyObject
*kwds
)
168 char *docstring
= NULL
;
170 if (! PyArg_ParseTuple (args
, "s", &name
))
174 if (PyObject_HasAttrString (self
, "__doc__"))
176 PyObject
*ds_obj
= PyObject_GetAttrString (self
, "__doc__");
177 if (ds_obj
&& gdbpy_is_string (ds_obj
))
179 docstring
= python_string_to_host_string (ds_obj
);
180 if (docstring
== NULL
)
188 docstring
= xstrdup (_("This function is not documented."));
190 add_internal_function (name
, docstring
, fnpy_call
, self
);
194 /* Initialize internal function support. */
197 gdbpy_initialize_functions (void)
199 fnpy_object_type
.tp_new
= PyType_GenericNew
;
200 if (PyType_Ready (&fnpy_object_type
) < 0)
203 Py_INCREF (&fnpy_object_type
);
204 PyModule_AddObject (gdb_module
, "Function", (PyObject
*) &fnpy_object_type
);
209 static PyTypeObject fnpy_object_type
=
211 PyObject_HEAD_INIT (NULL
)
213 "gdb.Function", /*tp_name*/
214 sizeof (PyObject
), /*tp_basicsize*/
223 0, /*tp_as_sequence*/
231 Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_BASETYPE
, /*tp_flags*/
232 "GDB function object", /* tp_doc */
235 0, /* tp_richcompare */
236 0, /* tp_weaklistoffset */
244 0, /* tp_descr_get */
245 0, /* tp_descr_set */
246 0, /* tp_dictoffset */
247 fnpy_init
, /* tp_init */