Skip to content

Commit ab75a17

Browse files
authored
Rollup merge of rust-lang#64094 - kawa-yoiko:rustdoc-search, r=GuillaumeGomez
Improve searching in rustdoc and add tests 👋 I have made searching in rustdoc more intuitive, added a couple more tests and made a little shell script to aid testing. Closes rust-lang#63005. It took me quite a while to figure out how to run the tests for rustdoc (instead of running tests for other crates with rustdoc); the only pointer I found was [hidden in the rustc book](https://rust-lang.github.io/rustc-guide/rustdoc.html#cheat-sheet). Maybe this could be better documented? I shall be delighted to help if it is desirable.
2 parents 5b99539 + cb84aa4 commit ab75a17

File tree

8 files changed

+169
-10
lines changed

8 files changed

+169
-10
lines changed

src/librustdoc/html/static/main.js

+6-10
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,11 @@ if (!DOMTokenList.prototype.remove) {
547547
results.sort(function(aaa, bbb) {
548548
var a, b;
549549

550+
// sort by exact match with regard to the last word (mismatch goes later)
551+
a = (aaa.word !== val);
552+
b = (bbb.word !== val);
553+
if (a !== b) { return a - b; }
554+
550555
// Sort by non levenshtein results and then levenshtein results by the distance
551556
// (less changes required to match means higher rankings)
552557
a = (aaa.lev);
@@ -558,11 +563,6 @@ if (!DOMTokenList.prototype.remove) {
558563
b = (bbb.item.crate !== window.currentCrate);
559564
if (a !== b) { return a - b; }
560565

561-
// sort by exact match (mismatch goes later)
562-
a = (aaa.word !== valLower);
563-
b = (bbb.word !== valLower);
564-
if (a !== b) { return a - b; }
565-
566566
// sort by item name length (longer goes later)
567567
a = aaa.word.length;
568568
b = bbb.word.length;
@@ -1028,7 +1028,7 @@ if (!DOMTokenList.prototype.remove) {
10281028
if (lev > MAX_LEV_DISTANCE) {
10291029
continue;
10301030
} else if (lev > 0) {
1031-
lev_add = 1;
1031+
lev_add = lev / 10;
10321032
}
10331033
}
10341034

@@ -1099,10 +1099,6 @@ if (!DOMTokenList.prototype.remove) {
10991099
if (index !== -1 || lev <= MAX_LEV_DISTANCE) {
11001100
if (index !== -1 && paths.length < 2) {
11011101
lev = 0;
1102-
} else if (searchWords[j] === val) {
1103-
// Small trick to fix when you're looking for a one letter type
1104-
// and there are other short named types.
1105-
lev = -1;
11061102
}
11071103
if (results[fullId] === undefined) {
11081104
results[fullId] = {

src/test/rustdoc-js-std/vec-new.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ const EXPECTED = {
44
'others': [
55
{ 'path': 'std::vec::Vec', 'name': 'new' },
66
{ 'path': 'std::vec::Vec', 'name': 'ne' },
7+
{ 'path': 'std::rc::Rc', 'name': 'ne' },
78
],
89
};

src/test/rustdoc-js/exact-match.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const QUERY = 'si::pc';
2+
3+
const EXPECTED = {
4+
'others': [
5+
{ 'path': 'exact_match::Si', 'name': 'pc' },
6+
{ 'path': 'exact_match::Psi', 'name': 'pc' },
7+
{ 'path': 'exact_match::Si', 'name': 'pa' },
8+
],
9+
};

src/test/rustdoc-js/exact-match.rs

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
macro_rules! imp {
2+
($name:ident) => {
3+
pub struct $name {
4+
pub op: usize,
5+
}
6+
impl $name {
7+
pub fn op() {}
8+
pub fn cmp() {}
9+
pub fn map() {}
10+
pub fn pop() {}
11+
pub fn ptr() {}
12+
pub fn rpo() {}
13+
pub fn drop() {}
14+
pub fn copy() {}
15+
pub fn zip() {}
16+
pub fn sup() {}
17+
pub fn pa() {}
18+
pub fn pb() {}
19+
pub fn pc() {}
20+
pub fn pd() {}
21+
pub fn pe() {}
22+
pub fn pf() {}
23+
pub fn pg() {}
24+
pub fn ph() {}
25+
pub fn pi() {}
26+
pub fn pj() {}
27+
pub fn pk() {}
28+
pub fn pl() {}
29+
pub fn pm() {}
30+
pub fn pn() {}
31+
pub fn po() {}
32+
}
33+
};
34+
($name:ident, $($names:ident),*) => {
35+
imp!($name);
36+
imp!($($names),*);
37+
};
38+
}
39+
macro_rules! en {
40+
($name:ident) => {
41+
pub enum $name {
42+
Ptr,
43+
Rp,
44+
Rpo,
45+
Pt,
46+
Drop,
47+
Dr,
48+
Dro,
49+
Sup,
50+
Op,
51+
Cmp,
52+
Map,
53+
Mp,
54+
}
55+
};
56+
($name:ident, $($names:ident),*) => {
57+
en!($name);
58+
en!($($names),*);
59+
};
60+
}
61+
62+
imp!(Ot, Foo, Cmp, Map, Loc, Lac, Toc, Si, Sig, Sip, Psy, Psi, Py, Pi, Pa, Pb, Pc, Pd);
63+
imp!(Pe, Pf, Pg, Ph, Pj, Pk, Pl, Pm, Pn, Po, Pq, Pr, Ps, Pt, Pu, Pv, Pw, Px, Pz, Ap, Bp, Cp);
64+
imp!(Dp, Ep, Fp, Gp, Hp, Ip, Jp, Kp, Lp, Mp, Np, Op, Pp, Qp, Rp, Sp, Tp, Up, Vp, Wp, Xp, Yp, Zp);
65+
66+
en!(Place, Plac, Plae, Plce, Pace, Scalar, Scalr, Scaar, Sclar, Salar);
67+
68+
pub struct P;
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const QUERY = 'ig::pc';
2+
3+
const EXPECTED = {
4+
'others': [
5+
{ 'path': 'module_substring::Sig', 'name': 'pc' },
6+
{ 'path': 'module_substring::Si', 'name': 'pc' },
7+
{ 'path': 'module_substring::Si', 'name': 'pa' },
8+
],
9+
};
+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
macro_rules! imp {
2+
($name:ident) => {
3+
pub struct $name {
4+
pub op: usize,
5+
}
6+
impl $name {
7+
pub fn op() {}
8+
pub fn cmp() {}
9+
pub fn map() {}
10+
pub fn pop() {}
11+
pub fn ptr() {}
12+
pub fn rpo() {}
13+
pub fn drop() {}
14+
pub fn copy() {}
15+
pub fn zip() {}
16+
pub fn sup() {}
17+
pub fn pa() {}
18+
pub fn pb() {}
19+
pub fn pc() {}
20+
pub fn pd() {}
21+
pub fn pe() {}
22+
pub fn pf() {}
23+
pub fn pg() {}
24+
pub fn ph() {}
25+
pub fn pi() {}
26+
pub fn pj() {}
27+
pub fn pk() {}
28+
pub fn pl() {}
29+
pub fn pm() {}
30+
pub fn pn() {}
31+
pub fn po() {}
32+
}
33+
};
34+
($name:ident, $($names:ident),*) => {
35+
imp!($name);
36+
imp!($($names),*);
37+
};
38+
}
39+
macro_rules! en {
40+
($name:ident) => {
41+
pub enum $name {
42+
Ptr,
43+
Rp,
44+
Rpo,
45+
Pt,
46+
Drop,
47+
Dr,
48+
Dro,
49+
Sup,
50+
Op,
51+
Cmp,
52+
Map,
53+
Mp,
54+
}
55+
};
56+
($name:ident, $($names:ident),*) => {
57+
en!($name);
58+
en!($($names),*);
59+
};
60+
}
61+
62+
imp!(Ot, Foo, Cmp, Map, Loc, Lac, Toc, Si, Sig, Sip, Psy, Psi, Py, Pi, Pa, Pb, Pc, Pd);
63+
imp!(Pe, Pf, Pg, Ph, Pj, Pk, Pl, Pm, Pn, Po, Pq, Pr, Ps, Pt, Pu, Pv, Pw, Px, Pz, Ap, Bp, Cp);
64+
imp!(Dp, Ep, Fp, Gp, Hp, Ip, Jp, Kp, Lp, Mp, Np, Op, Pp, Qp, Rp, Sp, Tp, Up, Vp, Wp, Xp, Yp, Zp);
65+
66+
en!(Place, Plac, Plae, Plce, Pace, Scalar, Scalr, Scaar, Sclar, Salar);
67+
68+
pub struct P;

src/test/rustdoc-js/search-short-types.js

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ const QUERY = 'P';
33
const EXPECTED = {
44
'others': [
55
{ 'path': 'search_short_types', 'name': 'P' },
6+
{ 'path': 'search_short_types::VeryLongTypeName', 'name': 'p' },
67
{ 'path': 'search_short_types', 'name': 'Ap' },
8+
{ 'path': 'search_short_types::VeryLongTypeName', 'name': 'ap' },
79
],
810
};

src/test/rustdoc-js/search-short-types.rs

+6
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,9 @@ imp!(Dp, Ep, Fp, Gp, Hp, Ip, Jp, Kp, Lp, Mp, Np, Op, Pp, Qp, Rp, Sp, Tp, Up, Vp,
6666
en!(Place, Plac, Plae, Plce, Pace, Scalar, Scalr, Scaar, Sclar, Salar);
6767

6868
pub struct P;
69+
70+
pub struct VeryLongTypeName;
71+
impl VeryLongTypeName {
72+
pub fn p() {}
73+
pub fn ap() {}
74+
}

0 commit comments

Comments
 (0)