3 # Pretty-printer for simple trace backend binary trace files
5 # Copyright IBM, Corp. 2010
7 # This work is licensed under the terms of the GNU GPL, version 2. See
8 # the COPYING file in the top-level directory.
10 # For help see docs/tracing.txt
15 from tracetool
import read_events
, Event
16 from tracetool
.backend
.simple
import is_string
18 header_event_id
= 0xffffffffffffffff
19 header_magic
= 0xf2b177cb0aa429b4
20 dropped_event_id
= 0xfffffffffffffffe
22 record_type_mapping
= 0
25 log_header_fmt
= '=QQQ'
26 rec_header_fmt
= '=QQII'
28 def read_header(fobj
, hfmt
):
29 '''Read a trace record header'''
30 hlen
= struct
.calcsize(hfmt
)
34 return struct
.unpack(hfmt
, hdr
)
36 def get_record(edict
, idtoname
, rechdr
, fobj
):
37 """Deserialize a trace record from a file into a tuple
38 (name, timestamp, pid, arg1, ..., arg6)."""
41 if rechdr
[0] != dropped_event_id
:
43 name
= idtoname
[event_id
]
44 rec
= (name
, rechdr
[1], rechdr
[3])
46 for type, name
in event
.args
:
49 (len,) = struct
.unpack('=L', l
)
53 (value
,) = struct
.unpack('=Q', fobj
.read(8))
56 rec
= ("dropped", rechdr
[1], rechdr
[3])
57 (value
,) = struct
.unpack('=Q', fobj
.read(8))
61 def get_mapping(fobj
):
62 (event_id
, ) = struct
.unpack('=Q', fobj
.read(8))
63 (len, ) = struct
.unpack('=L', fobj
.read(4))
66 return (event_id
, name
)
68 def read_record(edict
, idtoname
, fobj
):
69 """Deserialize a trace record from a file into a tuple (event_num, timestamp, pid, arg1, ..., arg6)."""
70 rechdr
= read_header(fobj
, rec_header_fmt
)
71 return get_record(edict
, idtoname
, rechdr
, fobj
)
73 def read_trace_header(fobj
):
74 """Read and verify trace file header"""
75 header
= read_header(fobj
, log_header_fmt
)
76 if header
is None or \
77 header
[0] != header_event_id
or \
78 header
[1] != header_magic
:
79 raise ValueError('Not a valid trace file!')
81 log_version
= header
[2]
82 if log_version
not in [0, 2, 3, 4]:
83 raise ValueError('Unknown version of tracelog format!')
85 raise ValueError('Log format %d not supported with this QEMU release!'
88 def read_trace_records(edict
, fobj
):
89 """Deserialize trace records from a file, yielding record tuples (event_num, timestamp, pid, arg1, ..., arg6)."""
91 dropped_event_id
: "dropped"
98 (rectype
, ) = struct
.unpack('=Q', t
)
99 if rectype
== record_type_mapping
:
100 event_id
, name
= get_mapping(fobj
)
101 idtoname
[event_id
] = name
103 rec
= read_record(edict
, idtoname
, fobj
)
107 class Analyzer(object):
108 """A trace file analyzer which processes trace records.
110 An analyzer can be passed to run() or process(). The begin() method is
111 invoked, then each trace record is processed, and finally the end() method
114 If a method matching a trace event name exists, it is invoked to process
115 that trace record. Otherwise the catchall() method is invoked."""
118 """Called at the start of the trace."""
121 def catchall(self
, event
, rec
):
122 """Called if no specific method for processing a trace event has been found."""
126 """Called at the end of the trace."""
129 def process(events
, log
, analyzer
, read_header
=True):
130 """Invoke an analyzer on each event in a log."""
131 if isinstance(events
, str):
132 events
= read_events(open(events
, 'r'))
133 if isinstance(log
, str):
134 log
= open(log
, 'rb')
137 read_trace_header(log
)
139 dropped_event
= Event
.build("Dropped_Event(uint64_t num_events_dropped)")
140 edict
= {"dropped": dropped_event
}
143 edict
[event
.name
] = event
145 def build_fn(analyzer
, event
):
146 if isinstance(event
, str):
147 return analyzer
.catchall
149 fn
= getattr(analyzer
, event
.name
, None)
151 return analyzer
.catchall
153 event_argcount
= len(event
.args
)
154 fn_argcount
= len(inspect
.getargspec(fn
)[0]) - 1
155 if fn_argcount
== event_argcount
+ 1:
156 # Include timestamp as first argument
157 return lambda _
, rec
: fn(*((rec
[1:2],) + rec
[3:3 + event_argcount
]))
158 elif fn_argcount
== event_argcount
+ 2:
159 # Include timestamp and pid
160 return lambda _
, rec
: fn(*rec
[1:3 + event_argcount
])
162 # Just arguments, no timestamp or pid
163 return lambda _
, rec
: fn(*rec
[3:3 + event_argcount
])
167 for rec
in read_trace_records(edict
, log
):
169 event
= edict
[event_num
]
170 if event_num
not in fn_cache
:
171 fn_cache
[event_num
] = build_fn(analyzer
, event
)
172 fn_cache
[event_num
](event
, rec
)
176 """Execute an analyzer on a trace file given on the command-line.
178 This function is useful as a driver for simple analysis scripts. More
179 advanced scripts will want to call process() instead."""
183 if len(sys
.argv
) == 4 and sys
.argv
[1] == '--no-header':
186 elif len(sys
.argv
) != 3:
187 sys
.stderr
.write('usage: %s [--no-header] <trace-events> ' \
188 '<trace-file>\n' % sys
.argv
[0])
191 events
= read_events(open(sys
.argv
[1], 'r'))
192 process(events
, sys
.argv
[2], analyzer
, read_header
=read_header
)
194 if __name__
== '__main__':
195 class Formatter(Analyzer
):
197 self
.last_timestamp
= None
199 def catchall(self
, event
, rec
):
201 if self
.last_timestamp
is None:
202 self
.last_timestamp
= timestamp
203 delta_ns
= timestamp
- self
.last_timestamp
204 self
.last_timestamp
= timestamp
206 fields
= [event
.name
, '%0.3f' % (delta_ns
/ 1000.0),
209 for type, name
in event
.args
:
211 fields
.append('%s=%s' % (name
, rec
[i
]))
213 fields
.append('%s=0x%x' % (name
, rec
[i
]))
215 print ' '.join(fields
)