-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #125207 - GuillaumeGomez:migrate-rustdoc-scrape-example…
…s-ordering, r=jieyouxu Migrate `run-make/rustdoc-scrape-examples-remap` to `rmake.rs` Part of #121876. r? `@jieyouxu`
- Loading branch information
Showing
5 changed files
with
57 additions
and
52 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,6 @@ | ||
use run_make_support::{htmldocck, rustc, rustdoc, source_path, tmp_dir}; | ||
use std::fs::read_dir; | ||
use std::path::Path; | ||
#[path = "../rustdoc-scrape-examples-remap/scrape.rs"] | ||
mod scrape; | ||
|
||
fn main() { | ||
let lib_dir = tmp_dir(); | ||
let out_dir = tmp_dir().join("rustdoc"); | ||
let crate_name = "foobar"; | ||
let deps = read_dir("examples") | ||
.unwrap() | ||
.filter_map(|entry| entry.ok().map(|e| e.path())) | ||
.filter(|path| path.is_file() && path.extension().is_some_and(|ext| ext == "rs")) | ||
.collect::<Vec<_>>(); | ||
|
||
rustc().input("src/lib.rs").crate_name(crate_name).crate_type("lib").emit("metadata").run(); | ||
|
||
let mut out_deps = Vec::with_capacity(deps.len()); | ||
for dep in deps { | ||
let dep_stem = dep.file_stem().unwrap(); | ||
let out_example = out_dir.join(format!("{}.calls", dep_stem.to_str().unwrap())); | ||
rustdoc() | ||
.input(&dep) | ||
.crate_name(&dep_stem) | ||
.crate_type("bin") | ||
.output(&out_dir) | ||
.extern_(crate_name, lib_dir.join(format!("lib{crate_name}.rmeta"))) | ||
.arg("-Zunstable-options") | ||
.arg("--scrape-examples-output-path") | ||
.arg(&out_example) | ||
.arg("--scrape-examples-target-crate") | ||
.arg(crate_name) | ||
.run(); | ||
out_deps.push(out_example); | ||
} | ||
|
||
let mut rustdoc = rustdoc(); | ||
rustdoc | ||
.input("src/lib.rs") | ||
.output(&out_dir) | ||
.crate_name(crate_name) | ||
.crate_type("lib") | ||
.arg("-Zunstable-options"); | ||
for dep in out_deps { | ||
rustdoc.arg("--with-examples").arg(dep); | ||
} | ||
rustdoc.run(); | ||
|
||
assert!(htmldocck().arg(out_dir).arg("src/lib.rs").status().unwrap().success()); | ||
scrape::scrape(); | ||
} |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
mod scrape; | ||
|
||
fn main() { | ||
scrape::scrape(); | ||
} |
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,49 @@ | ||
use run_make_support::{htmldocck, rustc, rustdoc, source_path, tmp_dir}; | ||
use std::fs::read_dir; | ||
use std::path::Path; | ||
|
||
pub fn scrape() { | ||
let lib_dir = tmp_dir(); | ||
let out_dir = tmp_dir().join("rustdoc"); | ||
let crate_name = "foobar"; | ||
let deps = read_dir("examples") | ||
.unwrap() | ||
.filter_map(|entry| entry.ok().map(|e| e.path())) | ||
.filter(|path| path.is_file() && path.extension().is_some_and(|ext| ext == "rs")) | ||
.collect::<Vec<_>>(); | ||
|
||
rustc().input("src/lib.rs").crate_name(crate_name).crate_type("lib").emit("metadata").run(); | ||
|
||
let mut out_deps = Vec::with_capacity(deps.len()); | ||
for dep in deps { | ||
let dep_stem = dep.file_stem().unwrap(); | ||
let out_example = out_dir.join(format!("{}.calls", dep_stem.to_str().unwrap())); | ||
rustdoc() | ||
.input(&dep) | ||
.crate_name(&dep_stem) | ||
.crate_type("bin") | ||
.output(&out_dir) | ||
.extern_(crate_name, lib_dir.join(format!("lib{crate_name}.rmeta"))) | ||
.arg("-Zunstable-options") | ||
.arg("--scrape-examples-output-path") | ||
.arg(&out_example) | ||
.arg("--scrape-examples-target-crate") | ||
.arg(crate_name) | ||
.run(); | ||
out_deps.push(out_example); | ||
} | ||
|
||
let mut rustdoc = rustdoc(); | ||
rustdoc | ||
.input("src/lib.rs") | ||
.output(&out_dir) | ||
.crate_name(crate_name) | ||
.crate_type("lib") | ||
.arg("-Zunstable-options"); | ||
for dep in out_deps { | ||
rustdoc.arg("--with-examples").arg(dep); | ||
} | ||
rustdoc.run(); | ||
|
||
assert!(htmldocck().arg(out_dir).arg("src/lib.rs").status().unwrap().success()); | ||
} |