Skip to content

Commit 52c71e6

Browse files
committed
fix inconsistent json outputs from rustdoc
Signed-off-by: ozkanonur <work@onurozkan.dev>
1 parent ea21839 commit 52c71e6

File tree

6 files changed

+31
-33
lines changed

6 files changed

+31
-33
lines changed

Cargo.lock

+2
Original file line numberDiff line numberDiff line change
@@ -2294,6 +2294,7 @@ dependencies = [
22942294
"anyhow",
22952295
"clap 4.1.4",
22962296
"fs-err",
2297+
"rustc-hash",
22972298
"rustdoc-json-types",
22982299
"serde",
22992300
"serde_json",
@@ -4846,6 +4847,7 @@ dependencies = [
48464847
name = "rustdoc-json-types"
48474848
version = "0.1.0"
48484849
dependencies = [
4850+
"rustc-hash",
48494851
"serde",
48504852
"serde_json",
48514853
]

src/rustdoc-json-types/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ path = "lib.rs"
88

99
[dependencies]
1010
serde = { version = "1.0", features = ["derive"] }
11+
rustc-hash = "1.1.0"
1112

1213
[dev-dependencies]
1314
serde_json = "1.0"

src/rustdoc-json-types/lib.rs

+8-9
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
//! These types are the public API exposed through the `--output-format json` flag. The [`Crate`]
44
//! struct is the root of the JSON blob and all other items are contained within.
55
6-
use std::collections::HashMap;
7-
use std::path::PathBuf;
8-
6+
use rustc_hash::FxHashMap;
97
use serde::{Deserialize, Serialize};
8+
use std::path::PathBuf;
109

1110
/// rustdoc format-version.
1211
pub const FORMAT_VERSION: u32 = 24;
@@ -24,11 +23,11 @@ pub struct Crate {
2423
pub includes_private: bool,
2524
/// A collection of all items in the local crate as well as some external traits and their
2625
/// items that are referenced locally.
27-
pub index: HashMap<Id, Item>,
26+
pub index: FxHashMap<Id, Item>,
2827
/// Maps IDs to fully qualified paths and other info helpful for generating links.
29-
pub paths: HashMap<Id, ItemSummary>,
28+
pub paths: FxHashMap<Id, ItemSummary>,
3029
/// Maps `crate_id` of items to a crate name and html_root_url if it exists.
31-
pub external_crates: HashMap<u32, ExternalCrate>,
30+
pub external_crates: FxHashMap<u32, ExternalCrate>,
3231
/// A single version number to be used in the future when making backwards incompatible changes
3332
/// to the JSON output.
3433
pub format_version: u32,
@@ -54,8 +53,8 @@ pub struct ItemSummary {
5453
///
5554
/// Note that items can appear in multiple paths, and the one chosen is implementation
5655
/// defined. Currently, this is the full path to where the item was defined. Eg
57-
/// [`String`] is currently `["alloc", "string", "String"]` and [`HashMap`] is
58-
/// `["std", "collections", "hash", "map", "HashMap"]`, but this is subject to change.
56+
/// [`String`] is currently `["alloc", "string", "String"]` and [`HashMap`][`std::collections::HashMap`]
57+
/// is `["std", "collections", "hash", "map", "HashMap"]`, but this is subject to change.
5958
pub path: Vec<String>,
6059
/// Whether this item is a struct, trait, macro, etc.
6160
pub kind: ItemKind,
@@ -80,7 +79,7 @@ pub struct Item {
8079
/// Some("") if there is some documentation but it is empty (EG `#[doc = ""]`).
8180
pub docs: Option<String>,
8281
/// This mapping resolves [intra-doc links](https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md) from the docstring to their IDs
83-
pub links: HashMap<String, Id>,
82+
pub links: FxHashMap<String, Id>,
8483
/// Stringified versions of the attributes on this item (e.g. `"#[inline]"`)
8584
pub attrs: Vec<String>,
8685
pub deprecation: Option<Deprecation>,

src/tools/jsondoclint/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ edition = "2021"
99
anyhow = "1.0.62"
1010
clap = { version = "4.0.15", features = ["derive"] }
1111
fs-err = "2.8.1"
12+
rustc-hash = "1.1.0"
1213
rustdoc-json-types = { version = "0.1.0", path = "../../rustdoc-json-types" }
1314
serde = { version = "1.0", features = ["derive"] }
1415
serde_json = "1.0.85"

src/tools/jsondoclint/src/validator/tests.rs

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use std::collections::HashMap;
2-
1+
use rustc_hash::FxHashMap;
32
use rustdoc_json_types::{Crate, Item, ItemKind, ItemSummary, Visibility, FORMAT_VERSION};
43

54
use crate::json_find::SelectorPart;
@@ -27,7 +26,7 @@ fn errors_on_missing_links() {
2726
root: id("0"),
2827
crate_version: None,
2928
includes_private: false,
30-
index: HashMap::from_iter([(
29+
index: FxHashMap::from_iter([(
3130
id("0"),
3231
Item {
3332
name: Some("root".to_owned()),
@@ -36,7 +35,7 @@ fn errors_on_missing_links() {
3635
span: None,
3736
visibility: Visibility::Public,
3837
docs: None,
39-
links: HashMap::from_iter([("Not Found".to_owned(), id("1"))]),
38+
links: FxHashMap::from_iter([("Not Found".to_owned(), id("1"))]),
4039
attrs: vec![],
4140
deprecation: None,
4241
inner: ItemEnum::Module(Module {
@@ -46,8 +45,8 @@ fn errors_on_missing_links() {
4645
}),
4746
},
4847
)]),
49-
paths: HashMap::new(),
50-
external_crates: HashMap::new(),
48+
paths: FxHashMap::default(),
49+
external_crates: FxHashMap::default(),
5150
format_version: rustdoc_json_types::FORMAT_VERSION,
5251
};
5352

@@ -73,7 +72,7 @@ fn errors_on_local_in_paths_and_not_index() {
7372
root: id("0:0:1572"),
7473
crate_version: None,
7574
includes_private: false,
76-
index: HashMap::from_iter([
75+
index: FxHashMap::from_iter([
7776
(
7877
id("0:0:1572"),
7978
Item {
@@ -83,7 +82,7 @@ fn errors_on_local_in_paths_and_not_index() {
8382
span: None,
8483
visibility: Visibility::Public,
8584
docs: None,
86-
links: HashMap::from_iter([(("prim@i32".to_owned(), id("0:1:1571")))]),
85+
links: FxHashMap::from_iter([(("prim@i32".to_owned(), id("0:1:1571")))]),
8786
attrs: Vec::new(),
8887
deprecation: None,
8988
inner: ItemEnum::Module(Module {
@@ -102,22 +101,22 @@ fn errors_on_local_in_paths_and_not_index() {
102101
span: None,
103102
visibility: Visibility::Public,
104103
docs: None,
105-
links: HashMap::default(),
104+
links: FxHashMap::default(),
106105
attrs: Vec::new(),
107106
deprecation: None,
108107
inner: ItemEnum::Primitive(Primitive { name: "i32".to_owned(), impls: vec![] }),
109108
},
110109
),
111110
]),
112-
paths: HashMap::from_iter([(
111+
paths: FxHashMap::from_iter([(
113112
id("0:1:1571"),
114113
ItemSummary {
115114
crate_id: 0,
116115
path: vec!["microcore".to_owned(), "i32".to_owned()],
117116
kind: ItemKind::Primitive,
118117
},
119118
)]),
120-
external_crates: HashMap::default(),
119+
external_crates: FxHashMap::default(),
121120
format_version: rustdoc_json_types::FORMAT_VERSION,
122121
};
123122

@@ -137,7 +136,7 @@ fn checks_local_crate_id_is_correct() {
137136
root: id("root"),
138137
crate_version: None,
139138
includes_private: false,
140-
index: HashMap::from_iter([(
139+
index: FxHashMap::from_iter([(
141140
id("root"),
142141
Item {
143142
id: id("root"),
@@ -146,7 +145,7 @@ fn checks_local_crate_id_is_correct() {
146145
span: None,
147146
visibility: Visibility::Public,
148147
docs: None,
149-
links: HashMap::default(),
148+
links: FxHashMap::default(),
150149
attrs: Vec::new(),
151150
deprecation: None,
152151
inner: ItemEnum::Module(Module {
@@ -156,8 +155,8 @@ fn checks_local_crate_id_is_correct() {
156155
}),
157156
},
158157
)]),
159-
paths: HashMap::default(),
160-
external_crates: HashMap::default(),
158+
paths: FxHashMap::default(),
159+
external_crates: FxHashMap::default(),
161160
format_version: FORMAT_VERSION,
162161
};
163162
check(&krate, &[]);

tests/run-make/rustdoc-verify-output-files/Makefile

+5-9
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,11 @@ all:
2222
# Check if expected json file is generated
2323
[ -e $(OUTPUT_DIR)/foobar.json ]
2424

25-
# TODO
26-
# We should re-generate json doc once again and compare the diff with previously
27-
# generated one. Because layout of json docs changes in each compilation, we can't
28-
# do that currently.
29-
#
30-
# See https://github.com/rust-lang/rust/issues/103785#issuecomment-1307425590 for details.
25+
# Copy first json output to check if it's exactly same after second compilation
26+
cp -R $(OUTPUT_DIR)/foobar.json $(TMP_OUTPUT_DIR)/foobar.json
3127

32-
# remove generated json doc
33-
rm $(OUTPUT_DIR)/foobar.json
28+
# Generate json doc on the same output
29+
$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --out-dir $(OUTPUT_DIR) -Z unstable-options --output-format json
3430

35-
# Check if json doc compilation broke any of the html files generated previously
31+
# Check if all docs(including both json and html formats) are still the same after multiple compilations
3632
$(DIFF) -r -q $(OUTPUT_DIR) $(TMP_OUTPUT_DIR)

0 commit comments

Comments
 (0)