]> git.proxmox.com Git - mirror_qemu.git/commit - linux-user/trace-events
trace-events: fix code style: print 0x before hex numbers
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Mon, 31 Jul 2017 16:01:35 +0000 (19:01 +0300)
committerStefan Hajnoczi <stefanha@redhat.com>
Tue, 1 Aug 2017 11:13:07 +0000 (12:13 +0100)
commit8908eb1a4aaf6b6573de3c44dfdaac6049061c02
treed1b5bf8364b89a6723c6a59a1198ebabd78a03d6
parentc3e5875afc0f93315470dfa5f31251fb9546c267
trace-events: fix code style: print 0x before hex numbers

The only exception are groups of numers separated by symbols
'.', ' ', ':', '/', like 'ab.09.7d'.

This patch is made by the following:

> find . -name trace-events | xargs python script.py

where script.py is the following python script:
=========================
 #!/usr/bin/env python

import sys
import re
import fileinput

rhex = '%[-+ *.0-9]*(?:[hljztL]|ll|hh)?(?:x|X|"\s*PRI[xX][^"]*"?)'
rgroup = re.compile('((?:' + rhex + '[.:/ ])+' + rhex + ')')
rbad = re.compile('(?<!0x)' + rhex)

files = sys.argv[1:]

for fname in files:
    for line in fileinput.input(fname, inplace=True):
        arr = re.split(rgroup, line)
        for i in range(0, len(arr), 2):
            arr[i] = re.sub(rbad, '0x\g<0>', arr[i])

        sys.stdout.write(''.join(arr))
=========================

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-id: 20170731160135.12101-5-vsementsov@virtuozzo.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
28 files changed:
accel/tcg/trace-events
block/trace-events
hw/audio/trace-events
hw/char/trace-events
hw/display/trace-events
hw/dma/trace-events
hw/i386/xen/trace-events
hw/input/trace-events
hw/intc/trace-events
hw/isa/trace-events
hw/misc/trace-events
hw/net/trace-events
hw/nvram/trace-events
hw/ppc/trace-events
hw/s390x/trace-events
hw/scsi/trace-events
hw/sd/trace-events
hw/timer/trace-events
hw/usb/trace-events
hw/vfio/trace-events
hw/virtio/trace-events
linux-user/trace-events
migration/trace-events
nbd/trace-events
net/trace-events
target/arm/trace-events
target/s390x/trace-events
target/sparc/trace-events