1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
#!/usr/bin/env python3
# Copyright (C) 2012-2019 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see
# <http://www.gnu.org/licenses/>.
import os.path
import re
import sys
if len(sys.argv) != 2:
print("syntax: %s SYMFILE..." % sys.argv[0], file=sys.stderr)
sys.exit(1)
def check_sorting(group, symfile, line, groupfile, lastgroup):
sortedgroup = sorted(group, key=str.lower)
issorted = True
first = None
last = None
err = False
# Check that groups are in order and groupfile exists
if lastgroup is not None and lastgroup.lower() > groupfile.lower():
print("Symbol block at %s:%s: block not sorted" %
(symfile, line), file=sys.stderr)
print("Move %s block before %s block" %
(groupfile, lastgroup), file=sys.stderr)
print("", file=sys.stderr)
err = True
# Check that symbols within a group are in order
for i in range(len(group)):
if sortedgroup[i] != group[i]:
if first is None:
first = i
last = i
issorted = False
if not issorted:
actual = group[first:last]
expect = sortedgroup[first:last]
print("Symbol block at %s:%s: symbols not sorted" %
(symfile, line), file=sys.stderr)
for g in actual:
print(" %s" % g, file=sys.stderr)
print("Correct ordering", file=sys.stderr)
for g in expect:
print(" %s" % g, file=sys.stderr)
print("", file=sys.stderr)
err = True
return err
ret = 0
lastgroup = None
for symfile in sys.argv[2:]:
with open(symfile, "r") as fh:
lineno = 0
groupfile = ""
group = []
thisline = 0
for line in fh:
thisline = thisline + 1
line = line.strip()
filenamematch = re.search(r'''^#\s*((\w+\/)*(\w+\.h))\s*$''', line)
if filenamematch is not None:
groupfile = filenamematch.group(1)
elif line == "":
if len(group) > 0:
if check_sorting(group, symfile, lineno,
groupfile, lastgroup):
ret = 1
group = []
lineno = thisline
lastgroup = groupfile
elif line[0] == '#':
# Ignore comments
pass
else:
line = line.strip(";")
group.append(line)
if len(group) > 0:
if check_sorting(group, symfile, lineno,
groupfile, lastgroup):
ret = 1
lastgroup = None
sys.exit(ret)
|