if (PyObject_HasAttrString (py_bp, stop_func))
{
- gdbpy_ref<> result (gdbpy_call_method (py_bp, stop_func));
+ gdbpy_ref<> result = gdbpy_call_method (py_bp, stop_func);
stop = 1;
if (result != NULL)
/* Now call the DisassembleInfo.read_memory method. This might have been
overridden by the user. */
- gdbpy_ref<> result_obj (gdbpy_call_method ((PyObject *) obj, "read_memory",
- len, offset));
+ gdbpy_ref<> result_obj = gdbpy_call_method ((PyObject *) obj, "read_memory",
+ len, offset);
/* Handle any exceptions. */
if (result_obj == nullptr)
if (bpfinish_obj->py_bp.bp->enable_state == bp_enabled
&& PyObject_HasAttrString (py_obj, outofscope_func))
{
- gdbpy_ref<> meth_result (gdbpy_call_method (py_obj, outofscope_func));
+ gdbpy_ref<> meth_result = gdbpy_call_method (py_obj, outofscope_func);
if (meth_result == NULL)
gdbpy_print_stack ();
}
struct symbol **sym, const struct block **sym_block,
const struct language_defn **language)
{
- gdbpy_ref<> result (gdbpy_call_method (obj, "symbol"));
+ gdbpy_ref<> result = gdbpy_call_method (obj, "symbol");
if (result == NULL)
return EXT_LANG_BT_ERROR;
{
if (PyObject_HasAttrString (obj, "value"))
{
- gdbpy_ref<> vresult (gdbpy_call_method (obj, "value"));
+ gdbpy_ref<> vresult = gdbpy_call_method (obj, "value");
if (vresult == NULL)
return EXT_LANG_BT_ERROR;
{
if (PyObject_HasAttrString (filter, func))
{
- gdbpy_ref<> result (gdbpy_call_method (filter, func));
+ gdbpy_ref<> result = gdbpy_call_method (filter, func);
if (result != NULL)
{
/* Get the underlying frame. This is needed to determine GDB
architecture, and also, in the cases of frame variables/arguments to
read them if they returned filter object requires us to do so. */
- gdbpy_ref<> py_inf_frame (gdbpy_call_method (filter, "inferior_frame"));
+ gdbpy_ref<> py_inf_frame = gdbpy_call_method (filter, "inferior_frame");
if (py_inf_frame == NULL)
return EXT_LANG_BT_ERROR;
address printing. */
if (PyObject_HasAttrString (filter, "address"))
{
- gdbpy_ref<> paddr (gdbpy_call_method (filter, "address"));
+ gdbpy_ref<> paddr = gdbpy_call_method (filter, "address");
if (paddr == NULL)
return EXT_LANG_BT_ERROR;
/* Print frame function name. */
if (PyObject_HasAttrString (filter, "function"))
{
- gdbpy_ref<> py_func (gdbpy_call_method (filter, "function"));
+ gdbpy_ref<> py_func = gdbpy_call_method (filter, "function");
const char *function = NULL;
if (py_func == NULL)
if (PyObject_HasAttrString (filter, "filename"))
{
- gdbpy_ref<> py_fn (gdbpy_call_method (filter, "filename"));
+ gdbpy_ref<> py_fn = gdbpy_call_method (filter, "filename");
if (py_fn == NULL)
return EXT_LANG_BT_ERROR;
if (PyObject_HasAttrString (filter, "line"))
{
- gdbpy_ref<> py_line (gdbpy_call_method (filter, "line"));
+ gdbpy_ref<> py_line = gdbpy_call_method (filter, "line");
int line;
if (py_line == NULL)
if (m_window != nullptr
&& PyObject_HasAttrString (m_window.get (), "close"))
{
- gdbpy_ref<> result (gdbpy_call_method (m_window.get (), "close"));
+ gdbpy_ref<> result = gdbpy_call_method (m_window.get (), "close");
if (result == nullptr)
gdbpy_print_stack ();
}
if (PyObject_HasAttrString (m_window.get (), "render"))
{
- gdbpy_ref<> result (gdbpy_call_method (m_window.get (), "render"));
+ gdbpy_ref<> result = gdbpy_call_method (m_window.get (), "render");
if (result == nullptr)
gdbpy_print_stack ();
}
if (PyObject_HasAttrString (m_window.get (), "hscroll"))
{
- gdbpy_ref<> result (gdbpy_call_method (m_window.get (), "hscroll",
- num_to_scroll));
+ gdbpy_ref<> result = gdbpy_call_method (m_window.get(), "hscroll",
+ num_to_scroll);
if (result == nullptr)
gdbpy_print_stack ();
}
if (PyObject_HasAttrString (m_window.get (), "vscroll"))
{
- gdbpy_ref<> result (gdbpy_call_method (m_window.get (), "vscroll",
- num_to_scroll));
+ gdbpy_ref<> result = gdbpy_call_method (m_window.get (), "vscroll",
+ num_to_scroll);
if (result == nullptr)
gdbpy_print_stack ();
}
if (PyObject_HasAttrString (m_window.get (), "click"))
{
- gdbpy_ref<> result (gdbpy_call_method (m_window.get (), "click",
- mouse_x, mouse_y, mouse_button));
+ gdbpy_ref<> result = gdbpy_call_method (m_window.get (), "click",
+ mouse_x, mouse_y, mouse_button);
if (result == nullptr)
gdbpy_print_stack ();
}
This variant accepts no arguments. */
-static inline PyObject *
+static inline gdbpy_ref<>
gdbpy_call_method (PyObject *o, const char *method)
{
/* PyObject_CallMethod's 'method' and 'format' parameters were missing the
'const' qualifier before Python 3.4. */
- return PyObject_CallMethod (o,
- const_cast<char *> (method),
- nullptr);
+ return gdbpy_ref<> (PyObject_CallMethod (o,
+ const_cast<char *> (method),
+ nullptr));
}
/* Typesafe wrapper around PyObject_CallMethod.
mismatches are impossible. */
template<typename Arg, typename... Args>
-static inline PyObject *
+static inline gdbpy_ref<>
gdbpy_call_method (PyObject *o, const char *method,
Arg arg, Args... args)
{
/* PyObject_CallMethod's 'method' and 'format' parameters were missing the
'const' qualifier before Python 3.4. */
- return PyObject_CallMethod (o,
- const_cast<char *> (method),
- const_cast<char *> (fmt.data ()),
- arg, args...);
+ return gdbpy_ref<> (PyObject_CallMethod (o,
+ const_cast<char *> (method),
+ const_cast<char *> (fmt.data ()),
+ arg, args...));
}
/* Poison PyObject_CallMethod. The typesafe wrapper gdbpy_call_method should be