qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Luiz Capitulino <lcapitulino@redhat.com>
To: peter.maydell@linaro.org
Cc: qemu-devel@nongnu.org, anthony@codemonkey.ws
Subject: [Qemu-devel] [PULL 03/11] qapi script: remember line number in schema parsing
Date: Tue, 11 Mar 2014 09:41:03 -0400	[thread overview]
Message-ID: <1394545271-27573-4-git-send-email-lcapitulino@redhat.com> (raw)
In-Reply-To: <1394545271-27573-1-git-send-email-lcapitulino@redhat.com>

From: Wenchao Xia <wenchaoqemu@gmail.com>

Before this patch, 'QAPISchemaError' scans whole input until 'pos'
to get error line number. After this patch, the scan is avoided since
line number is remembered in schema parsing. This patch also benefits
other error report functions, which would be introduced later.

Signed-off-by: Wenchao Xia <wenchaoqemu@gmail.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
---
 scripts/qapi.py | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/scripts/qapi.py b/scripts/qapi.py
index d0e7934..1954292 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -39,12 +39,10 @@ class QAPISchemaError(Exception):
     def __init__(self, schema, msg):
         self.fp = schema.fp
         self.msg = msg
-        self.line = self.col = 1
-        for ch in schema.src[0:schema.pos]:
-            if ch == '\n':
-                self.line += 1
-                self.col = 1
-            elif ch == '\t':
+        self.col = 1
+        self.line = schema.line
+        for ch in schema.src[schema.line_pos:schema.pos]:
+            if ch == '\t':
                 self.col = (self.col + 7) % 8 + 1
             else:
                 self.col += 1
@@ -60,6 +58,8 @@ class QAPISchema:
         if self.src == '' or self.src[-1] != '\n':
             self.src += '\n'
         self.cursor = 0
+        self.line = 1
+        self.line_pos = 0
         self.exprs = []
         self.accept()
 
@@ -100,6 +100,8 @@ class QAPISchema:
                 if self.cursor == len(self.src):
                     self.tok = None
                     return
+                self.line += 1
+                self.line_pos = self.cursor
             elif not self.tok.isspace():
                 raise QAPISchemaError(self, 'Stray "%s"' % self.tok)
 
-- 
1.8.1.4

  parent reply	other threads:[~2014-03-11 13:41 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-11 13:41 [Qemu-devel] [PULL for-2.0 00/11] QMP queue Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 01/11] qapi script: remember explicitly defined enum values Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 02/11] qapi script: add check for duplicated key Luiz Capitulino
2014-03-11 13:41 ` Luiz Capitulino [this message]
2014-03-11 13:41 ` [Qemu-devel] [PULL 04/11] qapi script: check correctness of union Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 05/11] qapi script: code move for generate_enum_name() Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 06/11] qapi script: use same function to generate enum string Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 07/11] qapi script: support enum type as discriminator in union Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 08/11] qapi: convert BlockdevOptions to use enum discriminator Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 09/11] qapi script: do not allow string discriminator Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 10/11] qapi script: do not add "_" for every capitalized char in enum Luiz Capitulino
2014-03-11 13:41 ` [Qemu-devel] [PULL 11/11] tests: test-qmp-commands: Fix double free Luiz Capitulino
2014-03-12 11:47 ` [Qemu-devel] [PULL for-2.0 00/11] QMP queue Peter Maydell

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=1394545271-27573-4-git-send-email-lcapitulino@redhat.com \
    --to=lcapitulino@redhat.com \
    --cc=anthony@codemonkey.ws \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.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 NNTP newsgroup(s).