[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 03/11] trace: [tracetool] Simplify event line par
From: |
Lluís Vilanova |
Subject: |
[Qemu-devel] [PATCH v2 03/11] trace: [tracetool] Simplify event line parsing |
Date: |
Fri, 03 Feb 2012 22:11:19 +0100 |
User-agent: |
StGit/0.15 |
Signed-off-by: Lluís Vilanova <address@hidden>
---
scripts/tracetool.py | 46 ++++++++++++++--------------------------------
1 files changed, 14 insertions(+), 32 deletions(-)
diff --git a/scripts/tracetool.py b/scripts/tracetool.py
index 7042728..f675d96 100755
--- a/scripts/tracetool.py
+++ b/scripts/tracetool.py
@@ -38,19 +38,9 @@ Options:
'''
sys.exit(1)
-def get_name(line, sep='('):
- head, sep, tail = line.partition(sep)
- return head
-
-def get_args(line, sep1='(', sep2=')'):
- head, sep1, tail = line.partition(sep1)
- args, sep2, fmt_str = tail.partition(sep2)
- return args
-
-def get_argnames(line, sep=','):
+def get_argnames(args):
nfields = 0
str = []
- args = get_args(line)
for field in args.split():
nfields = nfields + 1
# Drop pointer star
@@ -71,21 +61,7 @@ def get_argnames(line, sep=','):
else:
return ''
-def get_argc(line):
- argc = 0
- argnames = get_argnames(line)
- if argnames:
- for name in argnames.split(','):
- argc = argc + 1
- return argc
-
-def get_fmt(line, sep=')'):
- event, sep, fmt = line.partition(sep)
- return fmt
-
-def calc_sizeofargs(line):
- args = get_args(line)
- argc = get_argc(line)
+def calc_sizeofargs(args, argc):
strtype = ('const char*', 'char*', 'const char *', 'char *')
str = []
newstr = ""
@@ -495,16 +471,22 @@ trace_gen = {
}
# A trace event
+import re
+cre = re.compile("(?P<name>[^(\s]+)\((?P<args>[^)]*)\)\s*(?P<fmt>\".*)?")
+
class Event(object):
def __init__(self, num, line):
self.num = num
- self.args = get_args(line)
+ m = cre.match(line)
+ assert m is not None
+ groups = m.groupdict('')
+ self.args = groups["args"]
self.arglist = self.args.split(',')
- self.name = get_name(line)
- self.argc = get_argc(line)
- self.argnames = get_argnames(line)
- self.sizestr = calc_sizeofargs(line)
- self.fmt = get_fmt(line)
+ self.name = groups["name"]
+ self.argc = len(self.arglist)
+ self.argnames = get_argnames(self.args)
+ self.sizestr = calc_sizeofargs(self.args, self.argc)
+ self.fmt = groups["fmt"]
# Generator that yields Event objects given a trace-events file object
def read_events(fobj):
- [Qemu-devel] [PATCH v2 00/11] tracetool: Improvements for future expansion, Lluís Vilanova, 2012/02/03
- [Qemu-devel] [PATCH v2 04/11] trace: [ŧrac etool] Do not precompute the event number, Lluís Vilanova, 2012/02/03
- [Qemu-devel] [PATCH v2 05/11] trace: [tracetool] Add support for event properties, Lluís Vilanova, 2012/02/03
- [Qemu-devel] [PATCH v2 06/11] trace: [tracetool] Process the "disable" event property, Lluís Vilanova, 2012/02/03
- [Qemu-devel] [PATCH v2 07/11] trace: [tracetool] Rewrite event argument parsing, Lluís Vilanova, 2012/02/03
- [Qemu-devel] [PATCH v2 08/11] trace: [tracetool] Make format-specific code optional and with access to event information, Lluís Vilanova, 2012/02/03
- [Qemu-devel] [PATCH v2 09/11] trace: [tracetool] Automatically establish available backends and formats, Lluís Vilanova, 2012/02/03
- [Qemu-devel] [PATCH v2 10/11] trace: Provide a per-event status define for conditional compilation, Lluís Vilanova, 2012/02/03