Skip to content
Snippets Groups Projects
Commit 3596f524 authored by Lluís Vilanova's avatar Lluís Vilanova Committed by Stefan Hajnoczi
Browse files

trace: Extend API to manage event arguments


Lets the user manage event arguments as a list, and simplifies argument
concatenation.

Signed-off-by: default avatarLluís Vilanova <vilanova@ac.upc.edu>
Reviewed-by: default avatarEric Blake <eblake@redhat.com>
Message-id: 145641858432.30295.3069911069472672646.stgit@localhost
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
parent 62cb4145
No related branches found
No related tags found
No related merge requests found
......@@ -50,9 +50,14 @@ def __init__(self, args):
Parameters
----------
args :
List of (type, name) tuples.
List of (type, name) tuples or Arguments objects.
"""
self._args = args
self._args = []
for arg in args:
if isinstance(arg, Arguments):
self._args.extend(arg._args)
else:
self._args.append(arg)
def copy(self):
"""Create a new copy."""
......@@ -83,6 +88,12 @@ def build(arg_str):
res.append((arg_type, identifier))
return Arguments(res)
def __getitem__(self, index):
if isinstance(index, slice):
return Arguments(self._args[index])
else:
return self._args[index]
def __iter__(self):
"""Iterate over the (type, name) pairs."""
return iter(self._args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment