From: Eric Blake <eblake@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>, qemu-devel@nongnu.org
Cc: "Lluís Vilanova" <vilanova@ac.upc.edu>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 1/3] tracetool: prefix parse errors with line numbers
Date: Wed, 10 Jan 2018 14:47:57 -0600 [thread overview]
Message-ID: <58936cc4-19e7-ce86-1552-7edbe5b648da@redhat.com> (raw)
In-Reply-To: <20180110202553.31889-2-stefanha@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1342 bytes --]
On 01/10/2018 02:25 PM, Stefan Hajnoczi wrote:
> Include the file line number in the message that is printed when
> trace-events parse errors are raised.
>
> Suggested-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
> scripts/tracetool/__init__.py | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/tracetool/__init__.py b/scripts/tracetool/__init__.py
> index 0670ec17d5..fbccaaa0cf 100644
> --- a/scripts/tracetool/__init__.py
> +++ b/scripts/tracetool/__init__.py
> @@ -300,13 +300,18 @@ def read_events(fobj):
> """
>
> events = []
> - for line in fobj:
> + for lineno, line in enumerate(fobj):
If you use enumerate(fobj, 1) here...
> if not line.strip():
> continue
> if line.lstrip().startswith('#'):
> continue
>
> - event = Event.build(line)
> + try:
> + event = Event.build(line)
> + except ValueError as e:
> + arg0 = 'Error on line %d: %s' % (lineno + 1, e.args[0])
you could avoid the +1 here.
Up to you; either way, the patch is an improvement.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 619 bytes --]
next prev parent reply other threads:[~2018-01-10 20:48 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-10 20:25 [Qemu-devel] [PATCH 0/3] tracetool: improve error messages Stefan Hajnoczi
2018-01-10 20:25 ` [Qemu-devel] [PATCH 1/3] tracetool: prefix parse errors with line numbers Stefan Hajnoczi
2018-01-10 20:47 ` Eric Blake [this message]
2018-01-10 20:25 ` [Qemu-devel] [PATCH 2/3] tracetool: clarify that "formats" means "format strings" Stefan Hajnoczi
2018-01-10 20:25 ` [Qemu-devel] [PATCH 3/3] tracetool: report error on foo() instead of foo(void) Stefan Hajnoczi
2018-01-10 20:48 ` [Qemu-devel] [PATCH 0/3] tracetool: improve error messages Eric Blake
2018-01-15 14:03 ` Stefan Hajnoczi
2018-01-10 21:06 ` no-reply
2018-01-15 14:11 ` Stefan Hajnoczi
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=58936cc4-19e7-ce86-1552-7edbe5b648da@redhat.com \
--to=eblake@redhat.com \
--cc=dgilbert@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=vilanova@ac.upc.edu \
/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 NNTP newsgroup(s).