From: Simon Marchi <simon.marchi@polymtl.ca>
To: Tom Tromey <tom@tromey.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [RFA 3/3] Make it simpler to add events to Python
Date: Sat, 09 Sep 2017 17:05:00 -0000 [thread overview]
Message-ID: <a4216e07cec3ae81735950c56faae0f6@polymtl.ca> (raw)
In-Reply-To: <20170909003353.25883-4-tom@tromey.com>
On 2017-09-09 02:33, Tom Tromey wrote:
> The first patch in this series went through several iterations as I'd
> forgotten how many places had to be touched to add a new event and a
> new event type.
>
> This patch simplifies the process using two new ".def" files. Now, a
> new event type can be added by adding a line to "py-event-types.def",
> and a new event registry can be added by adding a line to
> "py-all-events.def".
Hi Tom,
This looks great. The patch is ok, I have two little nits below, which
you can address before pushing if you agree.
> diff --git a/gdb/python/py-event-types.def
> b/gdb/python/py-event-types.def
> new file mode 100644
> index 0000000..d35cbe5
> --- /dev/null
> +++ b/gdb/python/py-event-types.def
> @@ -0,0 +1,120 @@
> +/* Python event definitions -*- c++ -*-
> +
> + Copyright (C) 2017 Free Software Foundation, Inc.
> +
> + This file is part of GDB.
> +
> + This program is free software; you can redistribute it and/or
> modify
> + it under the terms of the GNU General Public License as published
> by
> + the Free Software Foundation; either version 3 of the License, or
> + (at your option) any later version.
> +
> + This program is distributed in the hope that it will be useful,
> + but WITHOUT ANY WARRANTY; without even the implied warranty of
> + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + GNU General Public License for more details.
> +
> + You should have received a copy of the GNU General Public License
> + along with this program. If not, see
> <http://www.gnu.org/licenses/>. */
> +
> +/* To use this file, define GDB_PY_DEFINE_EVENT_TYPE to expand how you
> + like, then include the file.
> +
I think it would be clearer if you added the macro "prototype" here,
otherwise the parameter names refer to nothing.
GDB_PY_DEFINE_EVENT_TYPE (name, py_path, py_bame, doc, base) ...
> + NAME is the name of the event.
> + PY_PATH is a string representing the module and python name of
> + the event.
> + PY_NAME a string representing what the event should be called in
> + python.
> + DOC Python documentation for the new event type
> + BASE the base event for this event usually just event_object_type.
> +*/
> +
> +GDB_PY_DEFINE_EVENT_TYPE (breakpoint,
> + "gdb.BreakpointEvent",
> + "BreakpointEvent",
The py_path and py_name are duplicated everywhere. We could get rid of
py_path. At the only place where it is used, we can replace it with
"gdb." py_name
Thanks,
Simon
next prev parent reply other threads:[~2017-09-09 17:05 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-09 0:34 [RFA 0/3] add a few Python events Tom Tromey
2017-09-09 0:34 ` [RFA 2/3] Small event ownership clean up in Python layer Tom Tromey
2017-09-09 17:05 ` Simon Marchi
2017-09-09 0:34 ` [RFA 1/3] Add new_inferior, inferior_deleted, and new_thread events Tom Tromey
2017-09-09 6:55 ` Eli Zaretskii
2017-09-09 16:47 ` Simon Marchi
2017-09-09 20:41 ` Tom Tromey
2017-09-09 21:09 ` Simon Marchi
2017-09-10 0:21 ` Tom Tromey
2017-09-10 19:37 ` Simon Marchi
2017-09-10 21:52 ` Tom Tromey
2017-09-11 11:54 ` Simon Marchi
2017-09-11 14:29 ` Eli Zaretskii
2017-09-09 16:48 ` Simon Marchi
2017-09-09 0:34 ` [RFA 3/3] Make it simpler to add events to Python Tom Tromey
2017-09-09 14:40 ` Tom Tromey
2017-09-09 17:05 ` Simon Marchi [this message]
2017-09-10 0:24 ` Tom Tromey
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=a4216e07cec3ae81735950c56faae0f6@polymtl.ca \
--to=simon.marchi@polymtl.ca \
--cc=gdb-patches@sourceware.org \
--cc=tom@tromey.com \
/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