mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
tools: pylint generate-gperfs.py
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user