From: Jan Vrany <jan.vrany@fit.cvut.cz>
To: gdb-patches@sourceware.org
Cc: Jan Vrany <jan.vrany@fit.cvut.cz>
Subject: [RFC 4/8] mi/python: C++ify python MI command handling code
Date: Thu, 18 Apr 2019 15:24:00 -0000 [thread overview]
Message-ID: <20190418152337.6376-5-jan.vrany@fit.cvut.cz> (raw)
In-Reply-To: <20190418152337.6376-1-jan.vrany@fit.cvut.cz>
Use gdbpy_ref<> instead of manually calling Py_DECREF().
Use gdb::unique_xmalloc_ptr<> instead of manually calling xfree().
gdb/Changelog:
* python/py-micmd.c (parse_mi_result): Use gdb::unique_xmalloc_ptr<>
instead of manually calling xfree().
(py_mi_invoke): Use gdbpy_ref<> instead of PyObject * with Py_DECREF().
Do not call Py_DECREF() on individual strings in python argument list
object as PyList_SetItem() steals reference.
(micmdpy_parse_command_name): Fix formatting.
(micmdpy_init): Use gdb::unique_xmalloc_ptr<> instead of manually
calling xfree().
---
gdb/ChangeLog | 11 ++++++++++
gdb/python/py-micmd.c | 50 ++++++++++++++++---------------------------
2 files changed, 29 insertions(+), 32 deletions(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index ef77fdbb5c..692b937fee 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,14 @@
+2018-12-11 Jan Vrany <jan.vrany@fit.cvut.cz>
+
+ * python/py-micmd.c (parse_mi_result): Use gdb::unique_xmalloc_ptr<>
+ instead of manually calling xfree().
+ (py_mi_invoke): Use gdbpy_ref<> instead of PyObject * with Py_DECREF().
+ Do not call Py_DECREF() on individual strings in python argument list
+ object as PyList_SetItem() steals reference.
+ (micmdpy_parse_command_name): Fix formatting.
+ (micmdpy_init): Use gdb::unique_xmalloc_ptr<> instead of manually
+ calling xfree().
+
2019-04-17 Tom Tromey <tromey@adacore.com>
* dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
diff --git a/gdb/python/py-micmd.c b/gdb/python/py-micmd.c
index ee612e2bc5..0683a02017 100644
--- a/gdb/python/py-micmd.c
+++ b/gdb/python/py-micmd.c
@@ -53,11 +53,9 @@ parse_mi_result (PyObject *result, const char *field_name)
ui_out_emit_list list_emitter (uiout, field_name);
for(i = 0; i < PyList_GET_SIZE (result); ++i)
{
- //struct cleanup *cleanup_item = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
ui_out_emit_tuple tuple_emitter (uiout, NULL);
item = PyList_GetItem (result, i);
parse_mi_result (item, NULL);
- //do_cleanups (cleanup_item);
}
}
else if ( PyDict_Check (result))
@@ -66,9 +64,8 @@ parse_mi_result (PyObject *result, const char *field_name)
Py_ssize_t pos = 0;
while ( PyDict_Next (result, &pos, &key, &value) )
{
- char *key_string = gdbpy_obj_to_string (key).release ();
- parse_mi_result (value, key_string);
- xfree ( (void *) key_string);
+ gdb::unique_xmalloc_ptr<char> key_string (gdbpy_obj_to_string (key));
+ parse_mi_result (value, key_string.get ());
}
}
}
@@ -79,7 +76,6 @@ void
py_mi_invoke (void *py_obj, char **argv, int argc)
{
micmdpy_object *obj = (micmdpy_object *) py_obj;
- PyObject *argobj, *result, **strings;
int i;
gdbpy_enter enter_py (get_current_arch (), current_language);
@@ -92,9 +88,8 @@ py_mi_invoke (void *py_obj, char **argv, int argc)
error (_("Python command object missing 'invoke' method."));
}
- strings = (PyObject **) malloc (sizeof(PyObject *) * argc);
- argobj = PyList_New (argc);
- if ( !argobj)
+ gdbpy_ref<> argobj (PyList_New (argc));
+ if (argobj == nullptr)
{
gdbpy_print_stack ();
error (_("Failed to create the python arguments list."));
@@ -102,28 +97,22 @@ py_mi_invoke (void *py_obj, char **argv, int argc)
for (i = 0; i < argc; ++i)
{
- strings[i] = PyUnicode_Decode (argv[i], strlen(argv[i]), host_charset (), NULL);
- if (PyList_SetItem (argobj, i, strings[i]) != 0)
+ /* Since PyList_SetItem steals the reference, we don't use
+ * gdbpy_ref<> to hold on arg string. */
+ PyObject* str = PyUnicode_Decode (argv[i], strlen (argv[i]), host_charset (), NULL);
+ if (PyList_SetItem (argobj.get (), i, str) != 0)
{
error (_("Failed to create the python arguments list."));
}
}
- result = PyObject_CallMethodObjArgs ((PyObject *) obj, invoke_cst, argobj,
- NULL);
+ gdbpy_ref<> result (PyObject_CallMethodObjArgs ((PyObject *) obj, invoke_cst, argobj.get (),
+ NULL));
- if (result)
+ if (result != nullptr)
{
- parse_mi_result (result, NULL);
- Py_DECREF (result);
+ parse_mi_result (result.get (), NULL);
}
-
- Py_DECREF (argobj);
- for (i = 0; i < argc; ++i)
- {
- Py_DECREF (strings[i]);
- }
- free (strings);
}
/* Parse the name of the MI command to register.
@@ -150,7 +139,7 @@ micmdpy_parse_command_name (const char *name)
/* Skip preceding whitespaces. */
/* Find first character of the final word. */
- for (; i > 0 && (isalnum (name[i - 1])
+ for (; i > 0 && (isalnum (name[i - 1])
|| name[i - 1] == '-'
|| name[i - 1] == '_');
--i)
@@ -158,10 +147,10 @@ micmdpy_parse_command_name (const char *name)
/* Skip the first dash to have to command name only.
* i.e. -thread-info -> thread-info
*/
- if(name[i] == '-' && i < len - 2)
+ if(name[i] == '-' && i < len - 2)
i++;
- if( i == lastchar)
+ if( i == lastchar)
{
PyErr_SetString (PyExc_RuntimeError, _("No command name found."));
return NULL;
@@ -185,20 +174,19 @@ static int
micmdpy_init (PyObject *self, PyObject *args, PyObject *kw)
{
const char *name;
- char *cmd_name;
if(! PyArg_ParseTuple (args, "s", &name))
return -1;
- cmd_name = micmdpy_parse_command_name (name);
- if (! cmd_name)
+ gdb::unique_xmalloc_ptr<char> cmd_name (micmdpy_parse_command_name (name));
+ if (cmd_name == nullptr)
return -1;
Py_INCREF (self);
try
{
- mi_command *micommand = new mi_command_py (cmd_name, NULL, (void *) self);
+ mi_command *micommand = new mi_command_py (cmd_name.get (), NULL, (void *) self);
bool result = insert_mi_cmd_entry (mi_cmd_up (micommand));
@@ -211,7 +199,6 @@ micmdpy_init (PyObject *self, PyObject *args, PyObject *kw)
}
catch (const gdb_exception &except)
{
- xfree (cmd_name);
Py_DECREF (self);
PyErr_Format (except.reason == RETURN_QUIT
? PyExc_KeyboardInterrupt : PyExc_RuntimeError,
@@ -219,7 +206,6 @@ micmdpy_init (PyObject *self, PyObject *args, PyObject *kw)
return -1;
}
- xfree (cmd_name);
return 0;
}
--
2.20.1
next prev parent reply other threads:[~2019-04-18 15:24 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-18 15:23 [RFC 0/8] Create MI commands using python Jan Vrany
2019-04-18 15:23 ` [RFC 1/8] Use std::map for MI commands in mi-cmds.c Jan Vrany
2019-04-25 19:13 ` Tom Tromey
2019-04-25 19:15 ` Tom Tromey
2019-04-25 19:34 ` Jan Vrany
2019-05-03 22:40 ` Simon Marchi
2019-05-03 22:45 ` Simon Marchi
2019-04-18 15:24 ` [RFC 8/8] mi/python: Allow redefinition of python MI commands Jan Vrany
2019-04-25 19:50 ` Tom Tromey
2019-05-03 15:26 ` Jan Vrany
2019-05-06 21:40 ` Tom Tromey
2019-05-07 11:26 ` Jan Vrany
2019-05-07 13:09 ` Simon Marchi
2019-05-07 13:19 ` Jan Vrany
2019-05-08 0:10 ` Simon Marchi
2019-05-08 18:00 ` Tom Tromey
2019-04-18 15:24 ` [RFC 7/8] mi/python: Add tests for python-defined " Jan Vrany
2019-04-25 19:48 ` Tom Tromey
2019-04-18 15:24 ` [RFC 3/8] Create MI commands using python Jan Vrany
2019-04-25 19:42 ` Tom Tromey
2019-04-18 15:24 ` [RFC 2/8] Use classes to represent MI Command instead of structures Jan Vrany
2019-04-25 19:25 ` Tom Tromey
2019-05-03 22:49 ` Simon Marchi
2019-05-03 22:57 ` Simon Marchi
2019-04-18 15:24 ` [RFC 6/8] mi/python: Handle python exception when executiong python-defined MI commands Jan Vrany
2019-04-25 19:46 ` Tom Tromey
2019-04-26 10:19 ` Jan Vrany
2019-04-18 15:24 ` Jan Vrany [this message]
2019-04-25 19:43 ` [RFC 4/8] mi/python: C++ify python MI command handling code Tom Tromey
2019-04-18 16:03 ` [RFC 0/8] Create MI commands using python Simon Marchi
2019-04-20 7:20 ` Jan Vrany
2019-04-18 16:12 ` [RFC 5/8] mi/python: Polish MI output of python commands Jan Vrany
2019-04-25 19:50 ` Tom Tromey
2019-04-25 18:03 ` [RFC 0/8] Create MI commands using python Tom Tromey
2019-04-25 19:00 ` Simon Marchi
2019-04-25 19:01 ` Simon Marchi
2019-05-14 11:24 ` [PATCH v2 0/5] " Jan Vrany
2019-05-14 11:24 ` [PATCH v2 2/5] Use classes to represent MI Command instead of structures Jan Vrany
2019-05-17 3:12 ` Simon Marchi
2019-05-14 11:24 ` [PATCH v2 1/5] Use std::map for MI commands in mi-cmds.c Jan Vrany
2019-05-14 11:24 ` [PATCH v2 3/5] Create MI commands using python Jan Vrany
2019-05-17 4:29 ` Simon Marchi
2019-05-28 20:35 ` Jan Vrany
2019-05-14 11:24 ` [PATCH v2 5/5] mi/python: Add tests for python-defined MI commands Jan Vrany
2019-05-14 11:57 ` [PATCH v2 4/5] mi/python: Allow redefinition of python " Jan Vrany
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190418152337.6376-5-jan.vrany@fit.cvut.cz \
--to=jan.vrany@fit.cvut.cz \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).