Skip to content

Commit 8ba3ca0

Browse files
committed
Auto merge of #68668 - GuillaumeGomez:struct-variant-field-search, r=ollie27
Struct variant field search Fixes #16017. Reopening of #64724. cc @tomjakubowski cc @ollie27 r? @kinnison
2 parents 61d9231 + 8ee30db commit 8ba3ca0

File tree

4 files changed

+48
-24
lines changed

4 files changed

+48
-24
lines changed

src/librustdoc/html/render/cache.rs

+11-16
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ crate struct Cache {
4343
/// found on that implementation.
4444
pub impls: FxHashMap<DefId, Vec<Impl>>,
4545

46-
/// Maintains a mapping of local crate `NodeId`s to the fully qualified name
46+
/// Maintains a mapping of local crate `DefId`s to the fully qualified name
4747
/// and "short type description" of that node. This is used when generating
4848
/// URLs when a type is being linked to. External paths are not located in
4949
/// this map because the `External` type itself has all the information
@@ -358,6 +358,7 @@ impl DocFolder for Cache {
358358
| clean::ForeignTypeItem
359359
| clean::MacroItem(..)
360360
| clean::ProcMacroItem(..)
361+
| clean::VariantItem(..)
361362
if !self.stripped_mod =>
362363
{
363364
// Re-exported items mean that the same id can show up twice
@@ -373,13 +374,6 @@ impl DocFolder for Cache {
373374
}
374375
self.add_aliases(&item);
375376
}
376-
// Link variants to their parent enum because pages aren't emitted
377-
// for each variant.
378-
clean::VariantItem(..) if !self.stripped_mod => {
379-
let mut stack = self.stack.clone();
380-
stack.pop();
381-
self.paths.insert(item.def_id, (stack, ItemType::Enum));
382-
}
383377

384378
clean::PrimitiveItem(..) => {
385379
self.add_aliases(&item);
@@ -396,7 +390,8 @@ impl DocFolder for Cache {
396390
| clean::EnumItem(..)
397391
| clean::ForeignTypeItem
398392
| clean::StructItem(..)
399-
| clean::UnionItem(..) => {
393+
| clean::UnionItem(..)
394+
| clean::VariantItem(..) => {
400395
self.parent_stack.push(item.def_id);
401396
self.parent_is_trait_impl = false;
402397
true
@@ -564,7 +559,7 @@ fn extern_location(
564559

565560
/// Builds the search index from the collected metadata
566561
fn build_index(krate: &clean::Crate, cache: &mut Cache) -> String {
567-
let mut nodeid_to_pathid = FxHashMap::default();
562+
let mut defid_to_pathid = FxHashMap::default();
568563
let mut crate_items = Vec::with_capacity(cache.search_index.len());
569564
let mut crate_paths = vec![];
570565

@@ -586,21 +581,21 @@ fn build_index(krate: &clean::Crate, cache: &mut Cache) -> String {
586581
}
587582
}
588583

589-
// Reduce `NodeId` in paths into smaller sequential numbers,
584+
// Reduce `DefId` in paths into smaller sequential numbers,
590585
// and prune the paths that do not appear in the index.
591586
let mut lastpath = String::new();
592587
let mut lastpathid = 0usize;
593588

594589
for item in search_index {
595-
item.parent_idx = item.parent.map(|nodeid| {
596-
if nodeid_to_pathid.contains_key(&nodeid) {
597-
*nodeid_to_pathid.get(&nodeid).expect("no pathid")
590+
item.parent_idx = item.parent.map(|defid| {
591+
if defid_to_pathid.contains_key(&defid) {
592+
*defid_to_pathid.get(&defid).expect("no pathid")
598593
} else {
599594
let pathid = lastpathid;
600-
nodeid_to_pathid.insert(nodeid, pathid);
595+
defid_to_pathid.insert(defid, pathid);
601596
lastpathid += 1;
602597

603-
let &(ref fqp, short) = paths.get(&nodeid).unwrap();
598+
let &(ref fqp, short) = paths.get(&defid).unwrap();
604599
crate_paths.push((short, fqp.last().unwrap().clone()));
605600
pathid
606601
}

src/librustdoc/html/static/main.js

+22-8
Original file line numberDiff line numberDiff line change
@@ -1364,14 +1364,15 @@ function getSearchElement() {
13641364
var href;
13651365
var type = itemTypes[item.ty];
13661366
var name = item.name;
1367+
var path = item.path;
13671368

13681369
if (type === "mod") {
1369-
displayPath = item.path + "::";
1370-
href = rootPath + item.path.replace(/::/g, "/") + "/" +
1370+
displayPath = path + "::";
1371+
href = rootPath + path.replace(/::/g, "/") + "/" +
13711372
name + "/index.html";
13721373
} else if (type === "primitive" || type === "keyword") {
13731374
displayPath = "";
1374-
href = rootPath + item.path.replace(/::/g, "/") +
1375+
href = rootPath + path.replace(/::/g, "/") +
13751376
"/" + type + "." + name + ".html";
13761377
} else if (type === "externcrate") {
13771378
displayPath = "";
@@ -1380,14 +1381,27 @@ function getSearchElement() {
13801381
var myparent = item.parent;
13811382
var anchor = "#" + type + "." + name;
13821383
var parentType = itemTypes[myparent.ty];
1384+
var pageType = parentType;
1385+
var pageName = myparent.name;
1386+
13831387
if (parentType === "primitive") {
13841388
displayPath = myparent.name + "::";
1389+
} else if (type === "structfield" && parentType === "variant") {
1390+
// Structfields belonging to variants are special: the
1391+
// final path element is the enum name.
1392+
var splitPath = item.path.split("::");
1393+
var enumName = splitPath.pop();
1394+
path = splitPath.join("::");
1395+
displayPath = path + "::" + enumName + "::" + myparent.name + "::";
1396+
anchor = "#variant." + myparent.name + ".field." + name;
1397+
pageType = "enum";
1398+
pageName = enumName;
13851399
} else {
1386-
displayPath = item.path + "::" + myparent.name + "::";
1400+
displayPath = path + "::" + myparent.name + "::";
13871401
}
1388-
href = rootPath + item.path.replace(/::/g, "/") +
1389-
"/" + parentType +
1390-
"." + myparent.name +
1402+
href = rootPath + path.replace(/::/g, "/") +
1403+
"/" + pageType +
1404+
"." + pageName +
13911405
".html" + anchor;
13921406
} else {
13931407
displayPath = item.path + "::";
@@ -1668,7 +1682,7 @@ function getSearchElement() {
16681682
// (String) name]
16691683
var paths = rawSearchIndex[crate].p;
16701684

1671-
// convert `paths` into an object form
1685+
// convert `rawPaths` entries into object form
16721686
var len = paths.length;
16731687
for (i = 0; i < len; ++i) {
16741688
paths[i] = {ty: paths[i][0], name: paths[i][1]};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const QUERY = 'name';
2+
3+
const EXPECTED = {
4+
'others': [
5+
{ 'path': 'struct_like_variant::Enum::Bar', 'name': 'name', 'desc': 'This is a name.' },
6+
],
7+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#![crate_name = "struct_like_variant"]
2+
3+
pub enum Enum {
4+
Bar {
5+
/// This is a name.
6+
name: String
7+
}
8+
}

0 commit comments

Comments
 (0)