From: Tamir Duberstein <tamird@gmail.com>
To: "Miguel Ojeda" <ojeda@kernel.org>,
"Alex Gaynor" <alex.gaynor@gmail.com>,
"Boqun Feng" <boqun.feng@gmail.com>,
"Gary Guo" <gary@garyguo.net>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <benno.lossin@proton.me>,
"Andreas Hindborg" <a.hindborg@kernel.org>,
"Alice Ryhl" <aliceryhl@google.com>,
"Trevor Gross" <tmgross@umich.edu>,
"Danilo Krummrich" <dakr@kernel.org>,
"Boris-Chengbiao Zhou" <bobo1239@web.de>,
"Kees Cook" <kees@kernel.org>, "Fiona Behrens" <me@kloenk.dev>
Cc: rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org,
Lukas Wirth <lukas.wirth@ferrous-systems.com>,
Tamir Duberstein <tamird@gmail.com>,
Daniel Almeida <daniel.almeida@collabora.com>
Subject: [PATCH v5 09/13] scripts: generate_rust_analyzer.py: identify crates explicitly
Date: Tue, 25 Mar 2025 16:06:32 -0400 [thread overview]
Message-ID: <20250325-rust-analyzer-host-v5-9-385e7f1e1e23@gmail.com> (raw)
In-Reply-To: <20250325-rust-analyzer-host-v5-0-385e7f1e1e23@gmail.com>
Use the return of `append_crate` to declare dependency on that crate.
This allows multiple crates with the same display_name be defined, which
we'll use to define host crates separately from target crates.
Reviewed-by: Fiona Behrens <me@kloenk.dev>
Reviewed-by: Daniel Almeida <daniel.almeida@collabora.com>
Tested-by: Daniel Almeida <daniel.almeida@collabora.com>
Signed-off-by: Tamir Duberstein <tamird@gmail.com>
---
scripts/generate_rust_analyzer.py | 82 +++++++++++++++++++--------------------
1 file changed, 40 insertions(+), 42 deletions(-)
diff --git a/scripts/generate_rust_analyzer.py b/scripts/generate_rust_analyzer.py
index 5370563688eb..09f5f40d689a 100755
--- a/scripts/generate_rust_analyzer.py
+++ b/scripts/generate_rust_analyzer.py
@@ -60,17 +60,14 @@ def generate_crates(
line = line.replace("\n", "")
cfg.append(line)
- # Now fill the crates list -- dependencies need to come first.
- #
- # Avoid O(n^2) iterations by keeping a map of indexes.
+ # Now fill the crates list.
crates: List[Crate] = []
- crates_indexes: Dict[str, int] = {}
def build_crate(
display_name: str,
root_module: pathlib.Path,
*,
- deps: List[str],
+ deps: List[Dependency],
cfg: List[str],
is_workspace_member: bool,
) -> Crate:
@@ -78,7 +75,7 @@ def generate_crates(
"display_name": display_name,
"root_module": str(root_module),
"is_workspace_member": is_workspace_member,
- "deps": [{"crate": crates_indexes[dep], "name": dep} for dep in deps],
+ "deps": deps,
"cfg": cfg,
"edition": "2021",
"env": {
@@ -86,18 +83,19 @@ def generate_crates(
},
}
- def register_crate(crate: Crate) -> None:
- crates_indexes[crate["display_name"]] = len(crates)
+ def register_crate(crate: Crate) -> Dependency:
+ index = len(crates)
crates.append(crate)
+ return {"crate": index, "name": crate["display_name"]}
def append_crate(
display_name: str,
root_module: pathlib.Path,
*,
- deps: List[str],
+ deps: List[Dependency],
cfg: List[str],
- ) -> None:
- register_crate(
+ ) -> Dependency:
+ return register_crate(
build_crate(
display_name,
root_module,
@@ -111,9 +109,9 @@ def generate_crates(
display_name: str,
root_module: pathlib.Path,
*,
- deps: List[str],
+ deps: List[Dependency],
cfg: List[str],
- ) -> None:
+ ) -> Dependency:
crate = build_crate(
display_name,
root_module,
@@ -143,15 +141,15 @@ def generate_crates(
"is_proc_macro": True,
"proc_macro_dylib_path": str(objtree / "rust" / proc_macro_dylib_name),
}
- register_crate(proc_macro_crate)
+ return register_crate(proc_macro_crate)
def append_sysroot_crate(
display_name: str,
*,
- deps: List[str],
+ deps: List[Dependency],
cfg: List[str],
- ) -> None:
- register_crate(
+ ) -> Dependency:
+ return register_crate(
build_crate(
display_name,
sysroot_src / display_name / "src" / "lib.rs",
@@ -164,52 +162,52 @@ def generate_crates(
# NB: sysroot crates reexport items from one another so setting up our transitive dependencies
# here is important for ensuring that rust-analyzer can resolve symbols. The sources of truth
# for this dependency graph are `(sysroot_src / crate / "Cargo.toml" for crate in crates)`.
- append_sysroot_crate("core", deps=[], cfg=crates_cfgs["core"])
- append_sysroot_crate("alloc", deps=["core"], cfg=[])
- append_sysroot_crate("std", deps=["alloc", "core"], cfg=[])
- append_sysroot_crate("proc_macro", deps=["core", "std"], cfg=[])
+ core = append_sysroot_crate("core", deps=[], cfg=crates_cfgs["core"])
+ alloc = append_sysroot_crate("alloc", deps=[core], cfg=[])
+ std = append_sysroot_crate("std", deps=[alloc, core], cfg=[])
+ proc_macro = append_sysroot_crate("proc_macro", deps=[core, std], cfg=[])
- append_crate(
+ compiler_builtins = append_crate(
"compiler_builtins",
srctree / "rust" / "compiler_builtins.rs",
deps=[],
cfg=[],
)
- append_proc_macro_crate(
+ macros = append_proc_macro_crate(
"macros",
srctree / "rust" / "macros" / "lib.rs",
- deps=["std", "proc_macro"],
+ deps=[std, proc_macro],
cfg=[],
)
- append_crate(
+ build_error = append_crate(
"build_error",
srctree / "rust" / "build_error.rs",
- deps=["core", "compiler_builtins"],
+ deps=[core, compiler_builtins],
cfg=[],
)
- append_proc_macro_crate(
+ pin_init_internal = append_proc_macro_crate(
"pin_init_internal",
srctree / "rust" / "pin-init" / "internal" / "src" / "lib.rs",
deps=[],
cfg=["kernel"],
)
- append_crate(
+ pin_init = append_crate(
"pin_init",
srctree / "rust" / "pin-init" / "src" / "lib.rs",
- deps=["core", "pin_init_internal", "macros"],
+ deps=[core, pin_init_internal, macros],
cfg=["kernel"],
)
def append_crate_with_generated(
display_name: str,
*,
- deps: List[str],
+ deps: List[Dependency],
cfg: List[str],
- ) -> None:
+ ) -> Dependency:
crate = build_crate(
display_name,
srctree / "rust" / display_name / "lib.rs",
@@ -228,19 +226,19 @@ def generate_crates(
"exclude_dirs": [],
}
}
- register_crate(crate_with_generated)
+ return register_crate(crate_with_generated)
- append_crate_with_generated("bindings", deps=["core"], cfg=[])
- append_crate_with_generated("uapi", deps=["core"], cfg=[])
- append_crate_with_generated(
+ bindings = append_crate_with_generated("bindings", deps=[core], cfg=[])
+ uapi = append_crate_with_generated("uapi", deps=[core], cfg=[])
+ kernel = append_crate_with_generated(
"kernel",
deps=[
- "core",
- "macros",
- "build_error",
- "bindings",
- "pin_init",
- "uapi",
+ core,
+ macros,
+ build_error,
+ bindings,
+ pin_init,
+ uapi,
],
cfg=[],
)
@@ -273,7 +271,7 @@ def generate_crates(
append_crate(
name,
path,
- deps=["core", "kernel"],
+ deps=[core, kernel],
cfg=cfg,
)
--
2.49.0
next prev parent reply other threads:[~2025-03-25 20:06 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-25 20:06 [PATCH v5 00/13] rust: generate_rust_analyzer.py: define host crates and scripts Tamir Duberstein
2025-03-25 20:06 ` [PATCH v5 01/13] scripts: generate_rust_analyzer.py: add missing whitespace Tamir Duberstein
2025-04-17 6:50 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 02/13] scripts: generate_rust_analyzer.py: use double quotes Tamir Duberstein
2025-04-17 6:51 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 03/13] scripts: generate_rust_analyzer.py: add trailing comma Tamir Duberstein
2025-04-17 6:51 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 04/13] scripts: generate_rust_analyzer.py: extract `{build,register}_crate` Tamir Duberstein
2025-04-17 6:53 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 05/13] scripts: generate_rust_analyzer.py: drop `"is_proc_macro": false` Tamir Duberstein
2025-03-31 16:46 ` Daniel Almeida
2025-04-17 6:55 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 06/13] scripts: generate_rust_analyzer.py: add type hints Tamir Duberstein
2025-03-31 17:09 ` Daniel Almeida
2025-03-31 17:47 ` Tamir Duberstein
2025-04-01 13:01 ` Daniel Almeida
2025-04-17 7:10 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 07/13] scripts: generate_rust_analyzer.py: avoid optional arguments Tamir Duberstein
2025-04-01 12:58 ` Daniel Almeida
2025-04-01 13:34 ` Tamir Duberstein
2025-04-17 11:17 ` Daniel Almeida
2025-04-17 7:13 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 08/13] scripts: generate_rust_analyzer.py: use str(pathlib.Path) Tamir Duberstein
2025-04-17 7:15 ` Trevor Gross
2025-03-25 20:06 ` Tamir Duberstein [this message]
2025-04-17 7:18 ` [PATCH v5 09/13] scripts: generate_rust_analyzer.py: identify crates explicitly Trevor Gross
2025-03-25 20:06 ` [PATCH v5 10/13] scripts: generate_rust_analyzer.py: define host crates Tamir Duberstein
2025-04-17 7:19 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 11/13] scripts: generate_rust_analyzer.py: avoid FD leak Tamir Duberstein
2025-04-17 7:19 ` Trevor Gross
2025-03-25 20:06 ` [PATCH v5 12/13] scripts: generate_rust_analyzer.py: define scripts Tamir Duberstein
2025-04-17 7:25 ` Trevor Gross
2025-04-17 13:10 ` Tamir Duberstein
2025-03-25 20:06 ` [PATCH v5 13/13] scripts: generate_rust_analyzer.py: use `cfg_groups` Tamir Duberstein
2025-04-17 7:29 ` Trevor Gross
2025-04-17 13:14 ` Tamir Duberstein
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250325-rust-analyzer-host-v5-9-385e7f1e1e23@gmail.com \
--to=tamird@gmail.com \
--cc=a.hindborg@kernel.org \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=benno.lossin@proton.me \
--cc=bjorn3_gh@protonmail.com \
--cc=bobo1239@web.de \
--cc=boqun.feng@gmail.com \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=gary@garyguo.net \
--cc=kees@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lukas.wirth@ferrous-systems.com \
--cc=me@kloenk.dev \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=tmgross@umich.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox