mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
tools: pylint generate-gperfs.py
This commit is contained in:
parent
8b1932cf2d
commit
782051f3cb
@ -1,5 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
# pylint: disable=unbalanced-tuple-unpacking,consider-using-f-string,consider-using-with
|
||||
|
||||
"""
|
||||
Generate %-from-name.gperf from %-list.txt
|
||||
@ -7,18 +8,22 @@ Generate %-from-name.gperf from %-list.txt
|
||||
|
||||
import sys
|
||||
|
||||
name, prefix, input = sys.argv[1:]
|
||||
if __name__ == '__main__':
|
||||
if len(sys.argv) != 4:
|
||||
sys.exit(f'Usage: {sys.argv[0]} name prefix file')
|
||||
|
||||
print("""\
|
||||
name, prefix, file = sys.argv[1:]
|
||||
|
||||
print("""\
|
||||
%{
|
||||
#if __GNUC__ >= 7
|
||||
_Pragma("GCC diagnostic ignored \\"-Wimplicit-fallthrough\\"")
|
||||
#endif
|
||||
%}""")
|
||||
print("""\
|
||||
struct {}_name {{ const char* name; int id; }};
|
||||
print(f"""\
|
||||
struct {name}_name {{ const char* name; int id; }};
|
||||
%null-strings
|
||||
%%""".format(name))
|
||||
%%""")
|
||||
|
||||
for line in open(input):
|
||||
print("{0}, {1}{0}".format(line.rstrip(), prefix))
|
||||
for line in open(file):
|
||||
print("{0}, {1}{0}".format(line.rstrip(), prefix))
|
||||
|
Loading…
Reference in New Issue
Block a user