1 # -*- coding: utf-8 -*-
4 Syslog built-in backend.
7 __author__
= "Paul Durrant <paul.durrant@citrix.com>"
8 __copyright__
= "Copyright 2016, Citrix Systems Inc."
9 __license__
= "GPL version 2 or (at your option) any later version"
11 __maintainer__
= "Stefan Hajnoczi"
12 __email__
= "stefanha@redhat.com"
17 from tracetool
import out
23 def generate_h_begin(events
, group
):
24 out('#include <syslog.h>',
28 def generate_h(event
, group
):
29 argnames
= ", ".join(event
.args
.names())
30 if len(event
.args
) > 0:
31 argnames
= ", " + argnames
33 if "vcpu" in event
.properties
:
34 # already checked on the generic format code
37 cond
= "trace_event_get_state(%s)" % ("TRACE_" + event
.name
.upper())
39 out(' if (%(cond)s) {',
40 '#line %(event_lineno)d "%(event_filename)s"',
41 ' syslog(LOG_INFO, "%(name)s " %(fmt)s %(argnames)s);',
42 '#line %(out_next_lineno)d "%(out_filename)s"',
45 event_lineno
=event
.lineno
,
46 event_filename
=os
.path
.relpath(event
.filename
),
48 fmt
=event
.fmt
.rstrip("\n"),
52 def generate_h_backend_dstate(event
, group
):
53 out(' trace_event_get_state_dynamic_by_id(%(event_id)s) || \\',
54 event_id
="TRACE_" + event
.name
.upper())