systemd/tools/generate-gperfs.py

25 lines
452 B
Python
Raw Normal View History

2022-05-14 02:56:24 +08:00
#!/usr/bin/env python3
2023-04-12 17:00:04 +08:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2022-05-14 02:56:24 +08:00
"""
Generate %-from-name.gperf from %-list.txt
"""
import sys
name, prefix, input = sys.argv[1:]
print("""\
%{
#if __GNUC__ >= 7
_Pragma("GCC diagnostic ignored \\"-Wimplicit-fallthrough\\"")
#endif
%}""")
print("""\
struct {}_name {{ const char* name; int id; }};
%null-strings
%%""".format(name))
for line in open(input):
print("{0}, {1}{0}".format(line.rstrip(), prefix))