2 # SPDX-License-Identifier: GPL-2.0
3 """generate_rust_analyzer - Generates the `rust-project.json` file for `rust-analyzer`.
12 def generate_crates(srctree, objtree, sysroot_src):
13 # Generate the configuration list.
15 with open(objtree / "include" / "generated" / "rustc_cfg") as fd:
17 line = line.replace("--cfg=", "")
18 line = line.replace("\n", "")
21 # Now fill the crates list -- dependencies need to come first.
23 # Avoid O(n^2) iterations by keeping a map of indexes.
27 def append_crate(display_name, root_module, deps, cfg=[], is_workspace_member=True, is_proc_macro=False):
28 crates_indexes[display_name] = len(crates)
30 "display_name": display_name,
31 "root_module": str(root_module),
32 "is_workspace_member": is_workspace_member,
33 "is_proc_macro": is_proc_macro,
34 "deps": [{"crate": crates_indexes[dep], "name": dep} for dep in deps],
38 "RUST_MODFILE": "This is only for rust-analyzer"
42 # First, the ones in `rust/` since they are a bit special.
45 sysroot_src / "core" / "src" / "lib.rs",
47 is_workspace_member=False,
52 srctree / "rust" / "compiler_builtins.rs",
58 srctree / "rust" / "alloc" / "lib.rs",
59 ["core", "compiler_builtins"],
64 srctree / "rust" / "macros" / "lib.rs",
68 crates[-1]["proc_macro_dylib_path"] = "rust/libmacros.so"
72 srctree / "rust"/ "bindings" / "lib.rs",
76 crates[-1]["env"]["OBJTREE"] = str(objtree.resolve(True))
80 srctree / "rust" / "kernel" / "lib.rs",
81 ["core", "alloc", "macros", "bindings"],
84 crates[-1]["source"] = {
86 str(srctree / "rust" / "kernel"),
92 # Then, the rest outside of `rust/`.
94 # We explicitly mention the top-level folders we want to cover.
95 for folder in ("samples", "drivers"):
96 for path in (srctree / folder).rglob("*.rs"):
97 logging.info("Checking %s", path)
98 name = path.name.replace(".rs", "")
100 # Skip those that are not crate roots.
101 if f"{name}.o" not in open(path.parent / "Makefile").read():
104 logging.info("Adding %s", name)
108 ["core", "alloc", "kernel"],
115 parser = argparse.ArgumentParser()
116 parser.add_argument('--verbose', '-v', action='store_true')
117 parser.add_argument("srctree", type=pathlib.Path)
118 parser.add_argument("objtree", type=pathlib.Path)
119 parser.add_argument("sysroot_src", type=pathlib.Path)
120 args = parser.parse_args()
123 format="[%(asctime)s] [%(levelname)s] %(message)s",
124 level=logging.INFO if args.verbose else logging.WARNING
128 "crates": generate_crates(args.srctree, args.objtree, args.sysroot_src),
129 "sysroot_src": str(args.sysroot_src),
132 json.dump(rust_project, sys.stdout, sort_keys=True, indent=4)
134 if __name__ == "__main__":