-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to generate C source with a small database containing the module meta-data. Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Jose R. Ziviani <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
- Loading branch information
Showing
5 changed files
with
128 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
import os | ||
import sys | ||
|
||
def print_array(name, values): | ||
if len(values) == 0: | ||
return | ||
list = ", ".join(values) | ||
print(" .%s = ((const char*[]){ %s, NULL })," % (name, list)) | ||
|
||
def parse_line(line): | ||
kind = "" | ||
data = "" | ||
get_kind = False | ||
get_data = False | ||
for item in line.split(): | ||
if item == "MODINFO_START": | ||
get_kind = True | ||
continue | ||
if item.startswith("MODINFO_END"): | ||
get_data = False | ||
continue | ||
if get_kind: | ||
kind = item | ||
get_kind = False | ||
get_data = True | ||
continue | ||
if get_data: | ||
data += " " + item | ||
continue | ||
return (kind, data) | ||
|
||
def generate(name, lines): | ||
arch = "" | ||
objs = [] | ||
deps = [] | ||
opts = [] | ||
for line in lines: | ||
if line.find("MODINFO_START") != -1: | ||
(kind, data) = parse_line(line) | ||
if kind == 'obj': | ||
objs.append(data) | ||
elif kind == 'dep': | ||
deps.append(data) | ||
elif kind == 'opts': | ||
opts.append(data) | ||
elif kind == 'arch': | ||
arch = data; | ||
else: | ||
print("unknown:", kind) | ||
exit(1) | ||
|
||
print(" .name = \"%s\"," % name) | ||
if arch != "": | ||
print(" .arch = %s," % arch) | ||
print_array("objs", objs) | ||
print_array("deps", deps) | ||
print_array("opts", opts) | ||
print("},{"); | ||
|
||
def print_pre(): | ||
print("/* generated by scripts/modinfo-generate.py */") | ||
print("#include \"qemu/osdep.h\"") | ||
print("#include \"qemu/module.h\"") | ||
print("const QemuModinfo qemu_modinfo[] = {{") | ||
|
||
def print_post(): | ||
print(" /* end of list */") | ||
print("}};") | ||
|
||
def main(args): | ||
print_pre() | ||
for modinfo in args: | ||
with open(modinfo) as f: | ||
lines = f.readlines() | ||
print(" /* %s */" % modinfo) | ||
(basename, ext) = os.path.splitext(modinfo) | ||
generate(basename, lines) | ||
print_post() | ||
|
||
if __name__ == "__main__": | ||
main(sys.argv[1:]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters