aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2012-01-21 13:26:08 -0600
committerDan Williams <dcbw@redhat.com>2012-01-21 13:26:08 -0600
commit2838456e7a53ddcbf841735fdd4337485ec759c9 (patch)
treec70c18b10bb4bf80bd46541d625afef5837ee910
parentc37fdf5f94711ffbdf966f2ab366bbd047dfc147 (diff)
decode: parse URB timestamps too
-rw-r--r--decode/packet.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/decode/packet.py b/decode/packet.py
index bc702faa..8bc10e66 100644
--- a/decode/packet.py
+++ b/decode/packet.py
@@ -42,8 +42,14 @@ funcs = {
}
def get_urb_info(l):
- num = 0
direction = defs.TO_UNKNOWN
+
+ tsstr = ""
+ if l[0] == '[':
+ idx = l.find(" ms]")
+ if idx <= 0:
+ return (defs.TO_UNKNOWN, -1, -1)
+ tsstr = l[1:idx]
idx = string.find(l, ">>> URB ")
if idx >= 0:
@@ -53,7 +59,7 @@ def get_urb_info(l):
if idx >= 0:
direction = defs.TO_HOST
else:
- return (defs.TO_UNKNOWN, -1)
+ return (defs.TO_UNKNOWN, -1, -1)
# Yay, valid packet, grab URB number
numstr = ""
@@ -66,7 +72,7 @@ def get_urb_info(l):
if not len(numstr):
raise Exception("Failed to get URB number ('%s')" % l)
- return (direction, int(numstr))
+ return (direction, int(numstr), int(tsstr))
class Packet:
def __init__(self, line, control_prot, transfer_prot):
@@ -74,9 +80,9 @@ class Packet:
self.func = URBF_UNKNOWN
self.control_prot = control_prot
self.transfer_prot = transfer_prot
- self.extra = []
self.data = None
self.urbnum = 0
+ self.timestamp = 0
self.protocol = None
self.has_data = False
self.typecode = None
@@ -90,7 +96,7 @@ class Packet:
# Check if this is actually a packet
self.lines.append(line)
- (self.direction, self.urbnum) = get_urb_info(line)
+ (self.direction, self.urbnum, self.timestamp) = get_urb_info(line)
def add_line(self, line):
line = line.strip()